Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Trino dialect, the extract function supports dow and week parameters #52651

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -999,6 +999,11 @@ protected ParseNode visitCoalesceExpression(CoalesceExpression node, ParseTreeCo
@Override
protected ParseNode visitExtract(Extract node, ParseTreeContext context) {
String fieldString = node.getField().toString();
if (fieldString.equalsIgnoreCase("dow")) {
renzhimin7 marked this conversation as resolved.
Show resolved Hide resolved
fieldString = "dayofweek_iso";
} else if (fieldString.equalsIgnoreCase("week")) {
fieldString = "week_iso";
}
return new FunctionCallExpr(fieldString,
new FunctionParams(Lists.newArrayList((Expr) visit(node.getExpression(), context))));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,15 @@ public void testJsonFnTransform() throws Exception {
assertPlanContains(sql, "CAST(json_query(parse_json('{\"a\": {\"b\": 1}}'), '$.a.b') AS VARCHAR)");
}

@Test
public void testExtractFnTransform() throws Exception {
String sql = "SELECT extract(dow FROM TIMESTAMP '2022-10-20 05:10:00')";
assertPlanContains(sql, "dayofweek_iso('2022-10-20 05:10:00')");
sql = "SELECT extract(dow FROM TIMESTAMP '2022-10-20 05:10:00')";
assertPlanContains(sql, "week_iso('2022-10-20 05:10:00')");
}


@Test
public void testBitFnTransform() throws Exception {
String sql = "select bitwise_and(19,25)";
Expand Down
Loading