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
CreateTable (); fails. That is, I wan't to create an empty table, but the parser is expecting a token before the final paren.
1 create table "AlbumStyles" ();
^
Unexpected rparen token: ")". Instead, I was expecting to see one of the following:
- A "kw_like" token
- A "kw_primary" token
- A "kw_unique" token
- A "quoted_word" token
- A "word" token
- A "kw_constraint" token
- A "kw_check" token
- A "kw_foreign" token
- A "kw_unique" token
- A "kw_primary" token
createtable "Foo" ()
pg-mem version
3.0.2
(BTW, amazing project. Something I've been wishing for for a decade.)
The text was updated successfully, but these errors were encountered:
Describe the bug
CreateTable ();
fails. That is, I wan't to create an empty table, but the parser is expecting a token before the final paren.pg-mem version
3.0.2
(BTW, amazing project. Something I've been wishing for for a decade.)
The text was updated successfully, but these errors were encountered: