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
go
try to parse example inhttps://cloud.google.com/spanner/docs/full-text-search/tokenization, gives an error in spansql.ParseDLL
example CREATE TABLE Albums ( AlbumId STRING(MAX) NOT NULL, AlbumTitle STRING(MAX), Rating FLOAT64, AlbumTitle_Tokens TOKENLIST AS (TOKENIZE_FULLTEXT(AlbumTitle)) HIDDEN, Rating_Tokens TOKENLIST AS (TOKENIZE_NUMBER(Rating)) HIDDEN ) PRIMARY KEY(AlbumId);
spansql.ParseDDL("filename", test.sql)
gives error : filename:5: got "(", want ")" or ","
The text was updated successfully, but these errors were encountered:
harshachinta
Successfully merging a pull request may close this issue.
Client
go
Environment
Code and Dependencies
try to parse example inhttps://cloud.google.com/spanner/docs/full-text-search/tokenization, gives an error in
spansql.ParseDLL
example
CREATE TABLE Albums (
AlbumId STRING(MAX) NOT NULL,
AlbumTitle STRING(MAX),
Rating FLOAT64,
AlbumTitle_Tokens TOKENLIST AS (TOKENIZE_FULLTEXT(AlbumTitle)) HIDDEN,
Rating_Tokens TOKENLIST AS (TOKENIZE_NUMBER(Rating)) HIDDEN
) PRIMARY KEY(AlbumId);
spansql.ParseDDL("filename", test.sql)
gives error : filename:5: got "(", want ")" or ","
The text was updated successfully, but these errors were encountered: