mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-31 03:18:43 -06:00
unskipping more tests
This commit is contained in:
@@ -110,6 +110,7 @@ SQL
|
||||
}
|
||||
|
||||
@test "column_tags: Merging branches that use the same tag referring to different column names fails" {
|
||||
skip_nbf_dolt_1
|
||||
dolt sql <<SQL
|
||||
CREATE TABLE test (
|
||||
pk BIGINT NOT NULL COMMENT 'tag:1234',
|
||||
|
||||
@@ -232,10 +232,7 @@ teardown() {
|
||||
}
|
||||
|
||||
@test "dump: SQL type - with keyless tables" {
|
||||
if [ "$DOLT_FORMAT_FEATURE_FLAG" = true ]
|
||||
then
|
||||
skip "V1 storage format does not support keyless tables yet"
|
||||
fi
|
||||
skip_nbf_dolt_1
|
||||
|
||||
dolt sql -q "CREATE TABLE new_table(pk int primary key);"
|
||||
dolt sql -q "INSERT INTO new_table VALUES (1);"
|
||||
|
||||
@@ -144,6 +144,7 @@ DELIM
|
||||
}
|
||||
|
||||
@test "import-create-tables: use -f to overwrite data in existing table with fk constraints" {
|
||||
skip_nbf_dolt_1
|
||||
cat <<DELIM > other.csv
|
||||
pk,c1,c2,c3,c4,c5
|
||||
8,1,2,3,4,5
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
#!/usr/bin/env bats
|
||||
load $BATS_TEST_DIRNAME/helper/common.bash
|
||||
|
||||
setup() {
|
||||
REPO_NAME="dolt_repo_$$"
|
||||
|
||||
@@ -313,7 +313,7 @@ NOT_VALID_REPO_ERROR="The current directory is not a valid dolt repository."
|
||||
}
|
||||
|
||||
@test "no-repo: init with new storage version" {
|
||||
DOLT_FORMAT_FEATURE_FLAG=true dolt init
|
||||
DOLT_DEFAULT_BIN_FORMAT="__DOLT_1__" dolt init
|
||||
run cat .dolt/noms/manifest
|
||||
[[ "$output" =~ "__DOLT_1__" ]]
|
||||
[[ ! "$output" =~ "__LD_1__" ]]
|
||||
|
||||
@@ -3,6 +3,7 @@ load $BATS_TEST_DIRNAME/helper/common.bash
|
||||
|
||||
setup() {
|
||||
setup_common
|
||||
skip_nbf_dolt_1
|
||||
|
||||
cat <<DELIM > 1pk5col-ints.csv
|
||||
pk,c1,c2,c3,c4,c5
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
load $BATS_TEST_DIRNAME/helper/common.bash
|
||||
|
||||
setup() {
|
||||
skip_nbf_dolt_1
|
||||
skiponwindows "tests are flaky on Windows"
|
||||
setup_common
|
||||
skip_nbf_dolt_1
|
||||
|
||||
# Needed for dolt_branches test
|
||||
cd $BATS_TMPDIR
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
load $BATS_TEST_DIRNAME/helper/common.bash
|
||||
|
||||
setup() {
|
||||
skip_nbf_dolt_1
|
||||
setup_common
|
||||
skip_nbf_dolt_1
|
||||
dolt sql <<"SQL"
|
||||
CREATE TABLE parent3 (pk BIGINT PRIMARY KEY, v1 BIGINT, INDEX (v1));
|
||||
CREATE TABLE child3 (pk BIGINT PRIMARY KEY, v1 BIGINT, CONSTRAINT fk_name1 FOREIGN KEY (v1) REFERENCES parent3 (v1));
|
||||
|
||||
Reference in New Issue
Block a user