jixuekang
Results
2
issues of
jixuekang
I am having a problem with sql translation to Trino that results in a query with an identifier column. ``` SELECT numbers , animal , n , a FROM (...
public String hive2PrestoTest() throws SQLException { String hiveSql = "select a as '中文' from b "; hiveSql = hiveSql.replace("`", ""); String prestoSql = null; try { RelNode relNode = getToRel().convertSql(hiveSql);...