We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Describe the bug In the Bigquery when we use apostrophes to delimiter description string in options make parse fail
To Reproduce This fail CREATE TABLE data.test ( col STRING OPTIONS(description='test') ) OPTIONS(description='test'); and this work
CREATE TABLE data.test ( col STRING OPTIONS(description='test') ) OPTIONS(description='test');
CREATE TABLE data.test ( col STRING OPTIONS(description="test") ) OPTIONS(description="test");
Expected behavior Both statements should parsed