You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Wenlong Lyu (JIRA)" <ji...@apache.org> on 2018/04/18 08:54:00 UTC

[jira] [Created] (CALCITE-2263) Wrong start Pos in SqlOrderBy

Wenlong Lyu created CALCITE-2263:
------------------------------------

             Summary: Wrong start Pos in SqlOrderBy
                 Key: CALCITE-2263
                 URL: https://issues.apache.org/jira/browse/CALCITE-2263
             Project: Calcite
          Issue Type: Bug
            Reporter: Wenlong Lyu
            Assignee: Julian Hyde


{code:java}
// Parser.jj
if (orderBy != null || start != null || count != null) {
if (orderBy == null) {
orderBy = SqlNodeList.EMPTY;
}
e = new SqlOrderBy(getPos(), e, orderBy, start, count);

}
return e;{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)