Skip to content
Snippets Groups Projects
Commit c98b3201 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Bugfix on escape character

parent 7d576599
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -918,7 +918,9 @@ public abstract class DBBrokerTemplate implements DBBroker {
sb.append("SELECT k.key_id AS key_id\n");
sb.append("FROM ");
sb.append(tapSchemaName);
sb.append(".`keys` k\n");
sb.append(".");
sb.append(escape("keys"));
sb.append(" k\n");
sb.append("JOIN ");
sb.append(tapSchemaName);
sb.append(".key_columns c ON k.key_id = c.key_id\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment