Open sbv-csis opened 1 year ago
And t1 and t2 are simple one column tables:
$ bq --api http://127.0.0.1:9050 --project_id=test-project-bla query "select * from test-dataset-bla.t2";
+------+
| name |
+------+
| n1 |
+------+
$ bq --api http://127.0.0.1:9050 --project_id=test-project-bla query "select * from test-dataset-bla.t1";
$
This should be fixed by this PR: https://github.com/goccy/go-zetasqlite/pull/222 cc - @goccy
When using the INSERT ROW part of merge it seems to fail - when trying to use https://cloud.google.com/bigquery/docs/reference/standard-sql/dml-syntax#omitting_column_names_2
as far as I can read zetasql should support it - though with some kind of feature flag FEATURE_V_1_3_OMIT_INSERT_COLUMN_LIST
And when trying with explict select and values lists it still fails: