use of com.alibaba.cobar.parser.ast.expression.primary.literal.LiteralString in project cobar by alibaba.
the class MySQLOutputASTVisitor method visit.
@Override
public void visit(LiteralString node) {
String introducer = node.getIntroducer();
if (introducer != null) {
appendable.append(introducer);
} else if (node.isNchars()) {
appendable.append('N');
}
appendable.append('\'').append(node.getString()).append('\'');
}
Aggregations