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 ./tools/parse --mode dml '@{PDML_MAX_PARALLELISM=1} UPDATE DMLTest SET Col = 1 WHERE TRUE'
2024/10/01 23:54:37 syntax error::1:1: expected token: <ident>, but: @
1: @{PDML_MAX_PARALLELISM=1} UPDATE DMLTest SET Col = 1 WHERE TRUE
^
exit status 1
$ go run ./tools/parse --mode dml '@{PDML_MAX_PARALLELISM=1} UPDATE DMLTest SET Col = 1 WHERE TRUE'
2024/10/01 23:54:14 syntax error::1:1: expected token: <ident>, but: @
1: @{PDML_MAX_PARALLELISM=1} UPDATE DMLTest SET Col = 1 WHERE TRUE
^
exit status 1
The text was updated successfully, but these errors were encountered:
DMLs with statement hints are not yet supported.
https://cloud.google.com/spanner/docs/reference/standard-sql/dml-syntax#delete-statement
https://cloud.google.com/spanner/docs/reference/standard-sql/dml-syntax#update-statement
The text was updated successfully, but these errors were encountered: