Skip to content
#

query-engine

Here are 80 public repositories matching this topic...

findinpath
findinpath commented Feb 25, 2022

Syntax for changing Iceberg table properties

ALTER TABLE an-iceberg-table SET PROPERTIES a-property-name = 'a-value'

Implementation tips

Implement the method io.trino.spi.connector.ConnectorMetadata#setTableProperties in io.trino.plugin.iceberg.IcebergMetadata.

Use org.apache.iceberg.BaseTable#updateProperties for updating table properties.

Test tips

Add

alamb
alamb commented Feb 12, 2022

Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The doc site https://arrow.apache.org/datafusion/ is the public face of DataFusion. While it currently has a great foundation / layout, the content is a bit out of date (and could always use more love)

Making DataFusion more accessible to new users would be great way to get involved with t

suessflorian
suessflorian commented Jan 16, 2022

Spinning up an instance;

import (
	"github.com/dolthub/go-mysql-server/auth"
	"github.com/dolthub/go-mysql-server/memory"
	"github.com/dolthub/go-mysql-server/server"
	"github.com/dolthub/go-mysql-server/sql"
	"github.com/dolthub/go-mysql-server/sql/information_schema"
)

func main() {
	engine := sqle.NewDefault(
		sql.NewDatabaseProvider(
			memory.NewDatabase(TEST_DB_MYSQL_DAT

Improve this page

Add a description, image, and links to the query-engine topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the query-engine topic, visit your repo's landing page and select "manage topics."

Learn more