mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-26 02:44:33 +02:00
CLI now accepts multiple --pk for compound primary keys
This commit is contained in:
parent
d5dc92876e
commit
f47b5a9e19
2 changed files with 25 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ def insert_upsert_options(fn):
|
|||
),
|
||||
click.argument("table"),
|
||||
click.argument("json_file", type=click.File(), required=True),
|
||||
click.option("--pk", help="Column to use as the primary key, e.g. id"),
|
||||
click.option("--pk", help="Column to use as the primary key, e.g. id", multiple=True),
|
||||
click.option("--nl", is_flag=True, help="Expect newline-delimited JSON"),
|
||||
click.option("-c", "--csv", is_flag=True, help="Expect CSV"),
|
||||
click.option(
|
||||
|
|
@ -348,6 +348,8 @@ def insert_upsert_implementation(
|
|||
if nl and csv:
|
||||
click.echo("Use just one of --nl and --csv", err=True)
|
||||
return
|
||||
if pk and len(pk) == 1:
|
||||
pk = pk[0]
|
||||
if csv:
|
||||
reader = csv_std.reader(json_file)
|
||||
headers = next(reader)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue