❯ python -c 'import sqlglot; e = sqlglot.parse_one("ALTER TABLE table1 MODIFY COLUMN name1 SET TAG foo='bar'", read="snowflake"); print(repr(e))' Traceback (most recent call last): File "<string>", line 1, in <module> File "/Users/tekumara/code3/sqlglot/sqlglot/__...
Now I switch to the role DBA, create a new table, and then add a new column (for testing if we can alter the table): use role dba; create table TEST ( id number); alter table TEST add column v variant; -- successful While I'm still using the role DBA, I will tr...