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");
Expected behavior
Both statements should parsed