Describe the bug
In the Bigquery if use RANGE_BUCKET with GENERATE_ARRAY in partition the parser fail
To Reproduce
This fail
CREATE TABLE data.test(
field_a INT OPTIONS(description='some description')
)
PARTITION BY RANGE_BUCKET(field_a, GENERATE_ARRAY(10, 1000, 1));
This work
CREATE TABLE data.test(
field_a INT OPTIONS(description='some description')
)
PARTITION BY RANGE_BUCKET(field_a, [1,2,3]]) ;
Expected behavior
Parser work in both cases