mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
IMPALA-2873: Fix nested TPC-H data loading
In commit 960808 I forgot to update the data-loading script for the conversion of a shell script to a python script. It turns out there were a couple of other little problems too. I checked manually that the data was loaded after these changes. Change-Id: Id81fc423348515ab446835868025cb839c77f52c Reviewed-on: http://gerrit.cloudera.org:8080/1851 Reviewed-by: Taras Bobrovytsky <tbobrovytsky@cloudera.com> Tested-by: Internal Jenkins
This commit is contained in:
committed by
Internal Jenkins
parent
7e92a5b8c9
commit
72d1889c08
4
testdata/bin/load_nested.py
vendored
4
testdata/bin/load_nested.py
vendored
@@ -276,8 +276,8 @@ if __name__ == "__main__":
|
||||
parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter)
|
||||
cli_options.add_logging_options(parser)
|
||||
cli_options.add_cluster_options(parser)
|
||||
parser.add_argument("-s", "--source-db")
|
||||
parser.add_argument("-t", "--target-db")
|
||||
parser.add_argument("-s", "--source-db", default="tpch_parquet")
|
||||
parser.add_argument("-t", "--target-db", default="tpch_nested_parquet")
|
||||
parser.add_argument("-c", "-p", "--chunks", type=int, default=1)
|
||||
args = parser.parse_args()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user