spark = SparkSession.builder \
.appName("gcs_fielset_test") \
.config("spark.sql.catalog.lance", "org.lance.spark.LanceNamespaceSparkCatalog") \
.config("spark.sql.catalog.lance.impl", "dir") \
.config("spark.executor.memory", "3g") \
.config("spark.sql.catalog.lance.parent", "lance_catalog") \
.config("spark.sql.defaultCatalog", "lance") \
.getOrCreate()
results = spark.sql("""
create table schema.t23(id int, score float) USING lance LOCATION '/tmp/schema/t23.lance/' TBLPROPERTIES ('format' = 'lance')
""")
results.show()