Skip to content

Commit

Permalink
feat:add single party func ceil
Browse files Browse the repository at this point in the history
  • Loading branch information
cs1317 authored Aug 9, 2023
1 parent 20a9fac commit 21fa29e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/planner/core/testdata/runsql_in.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,10 @@
{ "sql": "select log10(aggregate_float_0) as a from alice.tbl_1",
"skip_projection": false,
"rewritten_sql": "select log10(tbl_1.aggregate_float_0) as a from alice.tbl_1"
},
{ "sql": "select ceil(aggregate_float_0) as a from alice.tbl_1",
"skip_projection": false,
"rewritten_sql": "select ceil(tbl_1.aggregate_float_0) as a from alice.tbl_1"
}
]
}
Expand Down

0 comments on commit 21fa29e

Please sign in to comment.