mirror of
https://github.com/apache/impala.git
synced 2026-01-08 12:02:54 -05:00
Fix to enable metadata load for functional tables.
We used mkdir without a -p to load a hive13 parquet table. This failed when trying to load the metadata, which is necessary for changes that mutate the warehouse snapshot. With this change, it now passes. Change-Id: Id163643c55d44fe6a9503b54397f1f370b198554
This commit is contained in:
@@ -1297,7 +1297,7 @@ year int
|
||||
month int
|
||||
day int
|
||||
---- LOAD
|
||||
`hadoop fs -mkdir /test-warehouse/alltypesagg_hive_13_1_parquet && \
|
||||
`hadoop fs -mkdir -p /test-warehouse/alltypesagg_hive_13_1_parquet && \
|
||||
hadoop fs -put -f ${IMPALA_HOME}/testdata/data/alltypesagg_hive_13_1.parquet \
|
||||
/test-warehouse/alltypesagg_hive_13_1_parquet/
|
||||
====
|
||||
|
||||
Reference in New Issue
Block a user