Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/70#discussion_r14870602
--- Diff:
tajo-core/src/test/java/org/apache/tajo/engine/query/TestSortQuery.java ---
@@ -169,4 +177,46 @@ public final void testTopkWithJson() throws Exception {
assertResultSet(res);
cleanupQuery(res);
}
+
+ @Test
+ public final void testSortNullColumn() throws Exception {
+ try {
+ executeString("DROP TABLE table1 PURGE;").close();
--- End diff --
It should be ```DROP TABLE IF EXISTS table 1 PURGE```. Otherwise, it will
cause 'no such table error' when a developer executes this test separately.
---
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.
---