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
When issuing a CREATE TABLE t0(c0 INT); statement to sqlcheck, it crashes with the following error: free(): invalid pointer. When putting the statement in a file and using the -f flag, it instead results in an error Parenthesis is not closed.. It seems that sqlcheck expects whitespace after the table name, since the following is processed as expected: CREATE TABLE t0 (c0 INT);.
When issuing a
CREATE TABLE t0(c0 INT);
statement to sqlcheck, it crashes with the following error:free(): invalid pointer
. When putting the statement in a file and using the-f
flag, it instead results in an errorParenthesis is not closed.
. It seems that sqlcheck expects whitespace after the table name, since the following is processed as expected:CREATE TABLE t0 (c0 INT);
.I found this based on commit 3070b2d.
The text was updated successfully, but these errors were encountered: