提交 da8c8f4d authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Allow initialization of old databases with new keywords in unquoted table or column names

上级 20ecaf66
...@@ -4344,32 +4344,17 @@ public class Parser { ...@@ -4344,32 +4344,17 @@ public class Parser {
// TODO: why does this function allow defaultSchemaName=null - which resets // TODO: why does this function allow defaultSchemaName=null - which resets
// the parser schemaName for everyone ? // the parser schemaName for everyone ?
private String readIdentifierWithSchema(String defaultSchemaName) { private String readIdentifierWithSchema(String defaultSchemaName) {
if (currentTokenType != IDENTIFIER) { String s = readColumnIdentifier();
throw DbException.getSyntaxError(sqlCommand, parseIndex,
"identifier");
}
String s = currentToken;
read();
schemaName = defaultSchemaName; schemaName = defaultSchemaName;
if (readIf(DOT)) { if (readIf(DOT)) {
schemaName = s; schemaName = s;
if (currentTokenType != IDENTIFIER) { s = readColumnIdentifier();
throw DbException.getSyntaxError(sqlCommand, parseIndex,
"identifier");
}
s = currentToken;
read();
} }
if (currentTokenType == DOT) { if (currentTokenType == DOT) {
if (equalsToken(schemaName, database.getShortName())) { if (equalsToken(schemaName, database.getShortName())) {
read(); read();
schemaName = s; schemaName = s;
if (currentTokenType != IDENTIFIER) { s = readColumnIdentifier();
throw DbException.getSyntaxError(sqlCommand, parseIndex,
"identifier");
}
s = currentToken;
read();
} }
} }
return s; return s;
...@@ -4389,8 +4374,17 @@ public class Parser { ...@@ -4389,8 +4374,17 @@ public class Parser {
private String readColumnIdentifier() { private String readColumnIdentifier() {
if (currentTokenType != IDENTIFIER) { if (currentTokenType != IDENTIFIER) {
throw DbException.getSyntaxError(sqlCommand, parseIndex, /*
"identifier"); * Sometimes a new keywords are introduced. During metadata
* initialization phase keywords are accepted as identifiers to
* allow migration from older versions.
*
* PageStore's LobStorageBackend also needs this in databases that
* were created in 1.4.197 and older versions.
*/
if (!session.getDatabase().isStarting() || !isKeyword(currentToken)) {
throw DbException.getSyntaxError(sqlCommand, parseIndex, "identifier");
}
} }
String s = currentToken; String s = currentToken;
read(); read();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论