mirror of
https://github.com/actiontech/dble.git
synced 2026-04-25 15:49:44 -05:00
inner-1672: column around with `` can't be route (#3163)
Signed-off-by: dcy <dcy10000@gmail.com>
This commit is contained in:
@@ -659,7 +659,7 @@ public class ServerSchemaStatVisitor extends MySqlSchemaStatVisitor {
|
||||
}
|
||||
|
||||
private Column getColumnByExpr(SQLIdentifierExpr expr) {
|
||||
String column = expr.getName();
|
||||
String column = expr.getName().replaceAll("`", "");
|
||||
if (currentSchema == null) {
|
||||
return currentTable == null ? null : new Column(currentTable, column);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user