From afd3eaac82ecb933f90e8168e48097a93c4808f5 Mon Sep 17 00:00:00 2001 From: Zach Musgrave Date: Tue, 8 Jun 2021 17:03:22 -0700 Subject: [PATCH] Fixed batch test --- integration-tests/bats/sql-batch.bats | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/integration-tests/bats/sql-batch.bats b/integration-tests/bats/sql-batch.bats index 0a1ac8f0d4..3ef9711b59 100644 --- a/integration-tests/bats/sql-batch.bats +++ b/integration-tests/bats/sql-batch.bats @@ -53,6 +53,7 @@ SQL insert into test values (0,0,0,0,0,0); insert into test values (1,0,0,0,0,0); insert into test values (a,b,c); +insert into test values (2,0,0,0,0,0); -- will not run SQL [ "$status" -eq 1 ] [[ "$output" =~ "error on line 3 for query" ]] || false @@ -74,13 +75,13 @@ SQL [[ "$output" =~ "insert into test values poop" ]] || false run dolt sql <