Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Molinaro
tap_schema_manager
Commits
c98b3201
Commit
c98b3201
authored
Mar 08, 2018
by
Sonia Zorba
Browse files
Bugfix on escape character
parent
7d576599
Pipeline
#113
passed with stage
in 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
TASMAN-core/src/main/java/it/inaf/ia2/tsm/datalayer/DBBrokerTemplate.java
View file @
c98b3201
...
...
@@ -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"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment