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
const parsed = parse('select "A" from "table_name");
const deparsed = deparse(parsed);
// departed is now 'select A from table_name'
const parsed = parse('select "AA" from "table_name");
const deparsed = deparse(parsed);
// departed is now 'select AA from table_name'