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
fix: use official SQL syntax from Spanner documentation for singers sample (#475)
Fixes SQL syntax error in the singers sample database that was preventing the embedded emulator from starting.
The error was: "Syntax error: concatenated string literals must be separated by whitespace or comments"
Updated singers-data.sql to use the exact SQL syntax from the official Spanner documentation:
https://cloud.google.com/spanner/docs/query-execution-operators
Changes:
- Use double quotes for string literals (Spanner standard syntax)
- Use exact data values from the official documentation
- Remove intermediate comments that weren't in the original
- Properly handle apostrophes in song titles like "Let's Get Back Together"
This ensures the singers sample database loads correctly when using:
spanner-mycli --embedded-emulator --sample-database=singers
0 commit comments