You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ go run github.com/cloudspannerecosystem/memefish/tools/parse@latest --mode query "@{spanner_emulator.disable_query_partitionability_check=true} SELECT * FROM Singers ORDER BY FirstName"
--- Error
syntax error: :1:19: expected token: =, but: .
1| @{spanner_emulator.disable_query_partitionability_check=true} SELECT * FROM Singers ORDER BY FirstName
| ^
Note: To fix it, breaking changes are required. ast.Ident → ast.Path.
The text was updated successfully, but these errors were encountered:
makenowjust
added a commit
to makenowjust/memefish
that referenced
this issue
Jan 1, 2025
Keys of Hint record are currently
ast.Ident
.but they must be a path.
Real example
All known hints have implicit engine name
spanner
.There are some options with
spanner_emulator
engine name for Spanner Emulator.https://github.com/GoogleCloudPlatform/cloud-spanner-emulator/blob/7ad3d598613bc6fef5ef9806bb5a3ee343f15586/backend/query/query_validator.cc#L117-L118
Like this.
Note: To fix it, breaking changes are required.
ast.Ident → ast.Path
.The text was updated successfully, but these errors were encountered: