Zhen Chen created CALCITE-7176:
----------------------------------
Summary: FETCH and OFFSET in SortMergeRule do not support BIGINT
Key: CALCITE-7176
URL: https://issues.apache.org/jira/browse/CALCITE-7176
Project: Calcite
Issue Type: Bug
Components: core
Affects Versions: 1.40.0
Reporter: Zhen Chen
Assignee: Zhen Chen
Fix For: 1.41.0
The current code still uses RexLiteral.iintValue().
{code:java}
final int topFetch = topSort.fetch instanceof RexLiteral
? RexLiteral.intValue(topSort.fetch) : -1;
final int bottomFetch = bottomSort.fetch instanceof RexLiteral
? RexLiteral.intValue(bottomSort.fetch) : -1;
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)