Skip to content

Commit

Permalink
TEIIDDES-2988
Browse files Browse the repository at this point in the history
 * applied server src fixes to both client SQLStringVisitor's
  • Loading branch information
blafond committed Jan 31, 2017
1 parent 184bfa6 commit 251ef76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -3550,7 +3550,7 @@ public void visit(TextTable obj) {
append(SPACE);
append(NonReserved.SELECTOR);
append(SPACE);
append(escapeSinglePart(obj.getSelector()));
outputLiteral(String.class, false, obj.getSelector());
}
append(SPACE);
append(NonReserved.COLUMNS);
Expand Down Expand Up @@ -3587,7 +3587,7 @@ public void visit(TextTable obj) {
append(SPACE);
append(NonReserved.SELECTOR);
append(SPACE);
append(escapeSinglePart(col.getSelector()));
outputLiteral(String.class, false, col.getSelector());
append(SPACE);
append(col.getPosition());
}
Expand Down
Expand Up @@ -3275,7 +3275,7 @@ public void visit(TextTable obj) {
append(SPACE);
append(NonReserved.SELECTOR);
append(SPACE);
append(escapeSinglePart(obj.getSelector()));
outputLiteral(String.class, false, obj.getSelector());
}
append(SPACE);
append(NonReserved.COLUMNS);
Expand Down

0 comments on commit 251ef76

Please sign in to comment.