use of com.alibaba.druid.sql.ast.expr.SQLHexExpr in project druid by alibaba.
the class LiteralHexadecimalTest method test_2.
public void test_2() throws Exception {
String sql = "X'4D7953514C'";
SQLHexExpr hex = (SQLHexExpr) new MySqlExprParser(sql).expr();
Assert.assertEquals("MySQL", new String(hex.toBytes(), "utf-8"));
}
use of com.alibaba.druid.sql.ast.expr.SQLHexExpr in project druid by alibaba.
the class LiteralHexadecimalTest method test_5.
public void test_5() throws Exception {
String sql = "0x636174";
SQLHexExpr hex = (SQLHexExpr) new MySqlExprParser(sql).expr();
Assert.assertEquals("cat", new String(hex.toBytes(), "utf-8"));
}
Aggregations