mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix python issue reported by lgtm.com
`Call to ArgumentError.__init__ with too few arguments; should be no fewer than 2.`
This commit is contained in:
parent
b2f72c7857
commit
c13e330a1d
@ -92,14 +92,14 @@ if __name__ == "__main__":
|
|||||||
parser.add_argument('--tmp-prefix', default='/tmp',
|
parser.add_argument('--tmp-prefix', default='/tmp',
|
||||||
help='Prefix to store temporay downloaded file')
|
help='Prefix to store temporay downloaded file')
|
||||||
data_group = parser.add_mutually_exclusive_group(required=True)
|
data_group = parser.add_mutually_exclusive_group(required=True)
|
||||||
data_group.add_argument('--table-name',
|
table_name_argument = data_group.add_argument('--table-name',
|
||||||
help='Name of table with database, if you are uploading partitions')
|
help='Name of table with database, if you are uploading partitions')
|
||||||
data_group.add_argument('--file-path',
|
data_group.add_argument('--file-path',
|
||||||
help='Name of file, if you are uploading')
|
help='Name of file, if you are uploading')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
if args.table_name is not None and args.clickhouse_data_path is None:
|
if args.table_name is not None and args.clickhouse_data_path is None:
|
||||||
raise argparse.ArgumentError(
|
raise argparse.ArgumentError(table_name_argument,
|
||||||
"You should specify --clickhouse-data-path to upload --table")
|
"You should specify --clickhouse-data-path to upload --table")
|
||||||
|
|
||||||
s3_conn = S3API(
|
s3_conn = S3API(
|
||||||
|
Loading…
Reference in New Issue
Block a user