diff --git a/integration-tests/bats/import-update-tables.bats b/integration-tests/bats/import-update-tables.bats index 57f669c5c4..e8831d2f54 100644 --- a/integration-tests/bats/import-update-tables.bats +++ b/integration-tests/bats/import-update-tables.bats @@ -1296,3 +1296,23 @@ DELIM [ $status -eq 0 ] [[ "$output" =~ '1,0,0,0,0,0,0,0,0,0,0,0000-00-00,00:00:00,0000-00-00 00:00:00,0000-00-00 00:00:00,0,first,""' ]] || false } + +@test "import-update-tables: import table with absent auto-increment column" { + dolt sql < auto-increment.csv +v1,v2 +4,2 +3,1 +DELIM + + dolt table import -u tbl auto-increment.csv +} \ No newline at end of file