From a9a42f0ac250764667b39aa6a172d7c836370331 Mon Sep 17 00:00:00 2001 From: James Cor Date: Wed, 26 Oct 2022 13:14:58 -0700 Subject: [PATCH] removing unsigned from test --- integration-tests/bats/import-create-tables.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/bats/import-create-tables.bats b/integration-tests/bats/import-create-tables.bats index 3917525bc2..ab9059c31c 100755 --- a/integration-tests/bats/import-create-tables.bats +++ b/integration-tests/bats/import-create-tables.bats @@ -567,7 +567,7 @@ DELIM [[ "$output" =~ "CREATE TABLE \`test\`" ]] [[ "$output" =~ "\`pk\` int" ]] [[ "$output" =~ "\`str\` varchar(16383)" ]] - [[ "$output" =~ "\`int\` int unsigned" ]] + [[ "$output" =~ "\`int\` int" ]] [[ "$output" =~ "\`bool\` tinyint" ]] [[ "$output" =~ "\`float\` float" ]] [[ "$output" =~ "\`date\` date" ]]