You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
export name=$1
|
|
|
|
dolt table rm $name
|
|
dolt schema import -c --pks id $name $name.csv --dry-run > /tmp/dolt_tmp_query.sql
|
|
$EDITOR /tmp/dolt_tmp_query.sql
|
|
dolt sql < /tmp/dolt_tmp_query.sql
|
|
dolt table import -u $name $name.csv
|