Skip to content
New issue

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

Support DMLs in ExecuteStreamingSql #93

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

apstndb
Copy link

@apstndb apstndb commented May 19, 2023

I am not familiar with this codebase so I don't know it is preferred fix, but I verified that it can fix spanner-cli incompatibility.

$ spanner-cli --project fake --instance fake --database fake                                                    
Connected.
spanner> CREATE TABLE Counter(pk INT64, col INT64) PRIMARY KEY(pk);
Query OK, 0 rows affected (0.00 sec)

spanner> INSERT INTO Counter(pk, col) VALUES(0, 0);
Query OK, 0 rows affected (0.00 sec)

spanner> SELECT * FROM Counter;
+----+-----+
| pk | col |
+----+-----+
| 0  | 0   |
+----+-----+
1 rows in set (0.183 msecs)

#92

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant