chucheng92 commented on code in PR #3475: URL: https://github.com/apache/calcite/pull/3475#discussion_r1365190806
########## core/src/test/resources/sql/sub-query.iq: ########## @@ -3685,4 +3685,15 @@ FROM dept d1; !ok +# [CALCITE-6041] MAP sub-query gives NullPointerException +SELECT map(SELECT empno, deptno from emp where deptno < 20); Review Comment: thanks for reviewing. q1: Map SubQuery use `LeafQueryOrExpr` which not allow `LIMIT`, `OrderBy`. see: https://github.com/apache/calcite/blob/23b7931c3e516bdb6cfedda956213f7fe06c6b24/core/src/main/codegen/templates/Parser.jj#L4892 q2: the default implemented map is LinkedHashMap, so the order of kv pair in map is deterministic unless the input rows from table is nondeterministic. Considering that we collect data from a fixed data set, this should also be deterministic. Of course, if necessary, I can change the where condition to be strict, such as only return a single kv pair. WDYT? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
