* @author <a href="mailto:shuo.qius@alibaba-inc.com">QIU Shuo</a>
*/
public class LiteralHexadecimalTest extends TestCase {
public void test_0() throws Exception {
String sql = "x'E982B1E7A195275C73'";
SQLHexExpr hex = (SQLHexExpr) new MySqlExprParser(sql).expr();
Assert.assertEquals("邱硕'\\s", new String(hex.toBytes(), "utf-8"));
}