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.

10 lines
236 B
Bash

#!/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