We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Experience
Table Engine
It only happened in pg protocol.
CREATE TABLE "QUo"( "rEpELLAT" TIMESTAMP(3) TIME INDEX, minus FLOAT NOT NULL, "SAEPe" BOOLEAN DEFAULT false, "culPa" INT NULL, "SUSCipit" FLOAT NOT NULL, quibusdam BIGINT NOT NULL, at INT, "Non" INT NOT NULL, "lABORE" FLOAT NULL, PRIMARY KEY(at) ) ENGINE=mito
{ severity: Error, code: "XX000", message: "", detail: None, hint: None, position: None, where: None, schema: None, table: None, column: None, data_type: None, constraint: None, file: None, line: None, routine: None }
Returns some hint to users
doesn't matter
0.6.0
No response
The text was updated successfully, but these errors were encountered:
Escaping at column will do the trick:
at
CREATE TABLE "QUo"( "rEpELLAT" TIMESTAMP(3) TIME INDEX, minus FLOAT NOT NULL, "SAEPe" BOOLEAN DEFAULT false, "culPa" INT NULL, "SUSCipit" FLOAT NOT NULL, "quibusdam" BIGINT NOT NULL, "at" INT, "Non" INT NOT NULL, "lABORE" FLOAT NULL, PRIMARY KEY("at") ) ENGINE=mito;
AT is a keyword in SQL.
AT
Sorry, something went wrong.
Escaping at column will do the trick: CREATE TABLE "QUo"( "rEpELLAT" TIMESTAMP(3) TIME INDEX, minus FLOAT NOT NULL, "SAEPe" BOOLEAN DEFAULT false, "culPa" INT NULL, "SUSCipit" FLOAT NOT NULL, "quibusdam" BIGINT NOT NULL, "at" INT, "Non" INT NOT NULL, "lABORE" FLOAT NULL, PRIMARY KEY("at") ) ENGINE=mito; AT is a keyword in SQL.
Yes, the problem here is that error message is missing.🥺
No branches or pull requests
What type of bug is this?
User Experience
What subsystems are affected?
Table Engine
Minimal reproduce step
It only happened in pg protocol.
What did you expect to see?
{ severity: Error, code: "XX000", message: "", detail: None, hint: None, position: None, where: None, schema: None, table: None, column: None, data_type: None, constraint: None, file: None, line: None, routine: None }
What did you see instead?
Returns some hint to users
What operating system did you use?
doesn't matter
What version of GreptimeDB did you use?
0.6.0
Relevant log output and stack trace
No response
The text was updated successfully, but these errors were encountered: