From c19f0588c32b7e58a42c610c5bcb671e524f573d Mon Sep 17 00:00:00 2001 From: Timothy Sehn Date: Fri, 26 Aug 2022 10:30:01 -0700 Subject: [PATCH] broken because shell regex can't match latin1 --- integration-tests/bats/sql-charsets-collations.bats | 3 --- 1 file changed, 3 deletions(-) diff --git a/integration-tests/bats/sql-charsets-collations.bats b/integration-tests/bats/sql-charsets-collations.bats index a6d7e0f21f..4753e630fa 100644 --- a/integration-tests/bats/sql-charsets-collations.bats +++ b/integration-tests/bats/sql-charsets-collations.bats @@ -32,7 +32,6 @@ teardown() { dolt sql -q "create table german1 (c char(10)) CHARACTER SET latin1 COLLATE latin1_german1_ci" run dolt sql -q "show create table german1"; [ $status -eq 0 ] - skip "Defining charsets and collations on a table not supported" [[ $output =~ "CHARACTER SET latin1" ]] || false [[ $output =~ "COLLATE latin1_german1_ci" ]] || false } @@ -50,7 +49,6 @@ teardown() { dolt sql -q "create table german1 (c char(10) CHARACTER SET latin1 COLLATE latin1_german1_ci)" dolt sql -q "insert into german1 values ('Bar'), ('Bär')" run dolt sql -q "SELECT * FROM german1 WHERE c = 'Bär'" - skip "This panics" [ $status -eq 0 ] [[ $output =~ 'Bar' ]] || false [[ $output =~ 'Bär' ]] || false @@ -84,7 +82,6 @@ teardown() { [[ $output =~ 'latin1_german2_ci' ]] || false [[ ! $output =~ 'latin1_german1_ci' ]] || false - skip "Panics" run dolt sql -q "SELECT * FROM german1 WHERE c = 'Bär'" [ $status -eq 0 ] [[ ! $output =~ 'Bar' ]] || false