Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/819#discussion_r43659410
--- Diff:
tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestTablePartitions.java
---
@@ -1689,6 +1715,18 @@ public final void testTimePartitionColumn() throws
Exception {
assertEquals(expectedResult, resultSetToString(res));
res.close();
+ // IN
+ res = executeString("SELECT * FROM " + tableName
+ + " WHERE key IN (cast('11:20:40' as time), cast('12:10:20' as
time)) order by col1, col2, key desc");
--- End diff --
SQL standard form like ``TIME '11:20:40'`` would be proper here.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---