----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/66805/ -----------------------------------------------------------
(Updated April 27, 2018, 7:44 a.m.) Review request for hive, Ashutosh Chauhan, Eugene Koifman, Jesús Camacho Rodríguez, and Vineet Garg. Changes ------- fixed a bug causing output entities missed from POSTHOOKs. Bugs: HIVE-19311 https://issues.apache.org/jira/browse/HIVE-19311 Repository: hive-git Description ------- Currently, "load data" statement is very limited. It errors out if any of the information is missing such as partitioning info if table is partitioned or appropriate names when table is bucketed. It should be able to launch an insert job to load the data instead. Diffs (updated) ----- data/files/load_data_job/bucketing.txt PRE-CREATION data/files/load_data_job/partitions/load_data_1_partition.txt PRE-CREATION data/files/load_data_job/partitions/load_data_2_partitions.txt PRE-CREATION itests/src/test/resources/testconfiguration.properties 1a346593fd ql/src/java/org/apache/hadoop/hive/ql/Context.java 70846ac3ce ql/src/java/org/apache/hadoop/hive/ql/ErrorMsg.java 7d33fa3892 ql/src/java/org/apache/hadoop/hive/ql/metadata/Table.java a51fdd322f ql/src/java/org/apache/hadoop/hive/ql/parse/LoadSemanticAnalyzer.java c07991d434 ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java 1dccf969ff ql/src/java/org/apache/hadoop/hive/ql/parse/UpdateDeleteSemanticAnalyzer.java 2f3b07f4af ql/src/test/queries/clientpositive/load_data_using_job.q PRE-CREATION ql/src/test/results/clientpositive/llap/load_data_using_job.q.out PRE-CREATION ql/src/test/results/clientpositive/spark/load_data_using_job.q.out PRE-CREATION Diff: https://reviews.apache.org/r/66805/diff/2/ Changes: https://reviews.apache.org/r/66805/diff/1-2/ Testing ------- Added a unit test. Thanks, Deepak Jaiswal