[ https://issues.apache.org/jira/browse/IGNITE-14157?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17295127#comment-17295127 ]
Taras Ledkov commented on IGNITE-14157: --------------------------------------- [~jooger], merged to [sql-calcite|https://github.com/apache/ignite/commit/89600f98cfd56cc7f7276cbae6fb51af14ddac74] > SQL. Calcite: Return human-readable column names for expression results in > select > --------------------------------------------------------------------------------- > > Key: IGNITE-14157 > URL: https://issues.apache.org/jira/browse/IGNITE-14157 > Project: Ignite > Issue Type: Bug > Components: sql > Reporter: Fedor Malchikov > Assignee: Yury Gerzhedovich > Priority: Major > Labels: calcite > Time Spent: 1h 10m > Remaining Estimate: 0h > > Example: > {code:sql} > CREATE TABLE t1 ( id INT NOT NULL, int_col INT, PRIMARY KEY (id)); > SELECT COUNT(*) FROM t1; > +--------------------------------+ > | EXPR$0 | > +--------------------------------+ > +--------------------------------+ > {code} > H2 return as expected: > {code:java} > SELECT COUNT(*) FROM t1; > +--------------------------------+ > | COUNT(*) | > +--------------------------------+ > | 0 | > +--------------------------------+ > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)