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
INSERT [...] statements were parsed as an InsertStatment having a values property when parsing an insert ... values ..., or a select property when parsing an insert ... select ....
Given that the VALUES (...) is now handled as a statement (yes, it is a valid pgsql statement...Try it !), the INSERT statement is now parsed with a single insert property, wether it is an insert ... values or an insert ... select (see ast diff)
"default" keyword is now handled as an expression
Other changes
Handle "restart identity" on trucation thanks to @RafaelGSS (see his PR)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
8.0.0
Breaking changes
INSERT [...]
statements were parsed as anInsertStatment
having avalues
property when parsing aninsert ... values ...
, or aselect
property when parsing aninsert ... select ...
.Given that the
VALUES (...)
is now handled as a statement (yes, it is a valid pgsql statement...Try it !), theINSERT
statement is now parsed with a singleinsert
property, wether it is aninsert ... values
or aninsert ... select
(see ast diff)Other changes
Beta Was this translation helpful? Give feedback.
All reactions