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
CREATE TABLE SomeTable (
Id String(40),
Data JSON,
HasSomeValue BOOL AS (IF(JSON_QUERY(Data, '$.value') IS NOT NULL), true, false)) STORED
) PRIMARY KEY (Id);
with the error:
failed to parse ddl: schema.ddl:<line_num>: got "(" while expecting ","
When I replace JSON_QUERY with JSON_VALUE, though not semantically correct, the tool is able to produce a correct diff.
The text was updated successfully, but these errors were encountered:
The following fails when running hammer diff:
with the error:
When I replace JSON_QUERY with JSON_VALUE, though not semantically correct, the tool is able to produce a correct diff.
The text was updated successfully, but these errors were encountered: