We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table hints in DML statements are not yet supported
UPDATE https://cloud.google.com/spanner/docs/reference/standard-sql/dml-syntax#update-statement
[statement_hint_expr] UPDATE table_name [table_hint_expr] [[AS] alias] SET update_item [, ...] WHERE condition [return_clause];
DELETE https://cloud.google.com/spanner/docs/reference/standard-sql/dml-syntax#delete-statement
[statement_hint_expr] DELETE [FROM] table_name [table_hint_expr] [[AS] alias] WHERE condition [return_clause];
INSERT There is no hints of INSERT statement in the document, but actually it is a valid statement.
INSERT
$ gcloud spanner databases execute-sql ${SPANNER_DATABASE} --sql 'INSERT INTO DummyTable@{FORCE_INDEX=_BASE_TABLE}(PK) SELECT PK FROM DummyTable@{FORCE_INDEX=_BASE_TABLE}' Statement modified 0 rows
Relate #133
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Table hints in DML statements are not yet supported
UPDATE
https://cloud.google.com/spanner/docs/reference/standard-sql/dml-syntax#update-statement
DELETE
https://cloud.google.com/spanner/docs/reference/standard-sql/dml-syntax#delete-statement
INSERT
There is no hints of
INSERT
statement in the document, but actually it is a valid statement.Relate #133
The text was updated successfully, but these errors were encountered: