[ https://issues.apache.org/jira/browse/HIVE-26414?focusedWorklogId=796907&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-796907 ]
ASF GitHub Bot logged work on HIVE-26414: ----------------------------------------- Author: ASF GitHub Bot Created on: 01/Aug/22 14:18 Start Date: 01/Aug/22 14:18 Worklog Time Spent: 10m Work Description: deniskuzZ commented on code in PR #3457: URL: https://github.com/apache/hive/pull/3457#discussion_r934585516 ########## ql/src/test/org/apache/hadoop/hive/ql/TestTxnCommands2.java: ########## @@ -3080,6 +3084,83 @@ public void testAcidOrcWritePreservesFieldNames() throws Exception { hiveConf.setBoolVar(HiveConf.ConfVars.HIVE_VECTORIZATION_ENABLED, true); } + @Test + public void testFailureScenariosCleanupCTAS() throws Exception { + boolean[] booleans = {true, false}; + for (boolean var1 : booleans) { Review Comment: do we really need to cover all 16 combinations? Issue Time Tracking ------------------- Worklog Id: (was: 796907) Time Spent: 11h (was: 10h 50m) > Aborted/Cancelled CTAS operations must initiate cleanup of uncommitted data > --------------------------------------------------------------------------- > > Key: HIVE-26414 > URL: https://issues.apache.org/jira/browse/HIVE-26414 > Project: Hive > Issue Type: Improvement > Reporter: Sourabh Badhya > Assignee: Sourabh Badhya > Priority: Major > Labels: pull-request-available > Time Spent: 11h > Remaining Estimate: 0h > > When a CTAS query fails before creation of table and after writing the data, > the data is present in the directory and not cleaned up currently by the > cleaner or any other mechanism currently. This is because the cleaner > requires a table corresponding to what its cleaning. In order surpass such a > situation, we can directly pass the relevant information to the cleaner so > that such uncommitted data is deleted. -- This message was sent by Atlassian Jira (v8.20.10#820010)