Files
dolt/integration-tests/bats/index-on-writes-2.bats
T

366 lines
15 KiB
Bash

#!/usr/bin/env bats
load $BATS_TEST_DIRNAME/helper/common.bash
load $BATS_TEST_DIRNAME/helper/index-on-writes-common.bash
setup() {
setup_common
create_tables
}
teardown() {
assert_feature_version
teardown_common
}
@test "index-on-writes-2: delete none two_pk, =, pk" {
test_mutation "delete from two_pk where pk1 = 1024 and pk2 = 1024" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, =, pk" {
test_mutation "delete from one_pk where pk1 = 1024" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, <=, pk" {
test_mutation "delete from two_pk where pk1 <= $((min_pk1-1)) and pk2 <= $((min_pk2-1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, <=, pk" {
test_mutation "delete from one_pk where pk1 <= $((min_pk1-1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, <, pk" {
test_mutation "delete from two_pk where pk1 < $min_pk1 and pk2 < $min_pk2" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, <, pk" {
test_mutation "delete from one_pk where pk1 < $min_pk1" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, >=, pk" {
test_mutation "delete from two_pk where pk1 >= $((max_pk1+1)) and pk2 >= $((max_pk2+1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, >=, pk" {
test_mutation "delete from one_pk where pk1 >= $((max_pk1+1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, >, pk" {
test_mutation "delete from two_pk where pk1 > $max_pk1 and pk2 > $max_pk2" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, >, pk" {
test_mutation "delete from one_pk where pk1 > $max_pk1" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, =, non-pk" {
test_mutation "delete from two_pk where c1 = 1024" "two_pk" "$two_pk"
}
@test "index-on-writes-2: delete none one_pk, =, non-pk" {
test_mutation "delete from one_pk where c1 = 1024" "one_pk" "$one_pk"
}
@test "index-on-writes-2: delete none two_pk, <=, non-pk" {
test_mutation "delete from two_pk where c1 <= $((min_c1-1))" "two_pk" "$two_pk"
}
@test "index-on-writes-2: delete none one_pk, <=, non-pk" {
test_mutation "delete from one_pk where c1 <= $((min_c1-1))" "one_pk" "$one_pk"
}
@test "index-on-writes-2: delete none two_pk, <, non-pk" {
test_mutation "delete from two_pk where c1 < $min_c1" "two_pk" "$two_pk"
}
@test "index-on-writes-2: delete none one_pk, <, non-pk" {
test_mutation "delete from one_pk where c1 < $min_c1" "one_pk" "$one_pk"
}
@test "index-on-writes-2: delete none two_pk, >=, non-pk" {
test_mutation "delete from two_pk where c1 >= $((max_c1+1))" "two_pk" "$two_pk"
}
@test "index-on-writes-2: delete none one_pk, >=, non-pk" {
test_mutation "delete from one_pk where c1 >= $((max_c1+1))" "one_pk" "$one_pk"
}
@test "index-on-writes-2: delete none two_pk, >, non-pk" {
test_mutation "delete from two_pk where c2 > $max_c2" "two_pk" "$two_pk"
}
@test "index-on-writes-2: delete none one_pk, >, non-pk" {
test_mutation "delete from one_pk where c2 > $max_c2" "one_pk" "$one_pk"
}
@test "index-on-writes-2: delete none two_pk, =, pk + non-pk" {
test_mutation "delete from two_pk where pk1 = 1024 and pk2 = 1024 and c1 = 1024" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, =, pk + non-pk" {
test_mutation "delete from one_pk where pk1 = 1024 and c1 = 1024" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, <=, pk + non-pk" {
test_mutation "delete from two_pk where pk1 <= $((min_pk1-1)) and pk2 <= $((min_pk2-1)) and c1 <= $((min_c1-1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, <=, pk + non-pk" {
test_mutation "delete from one_pk where pk1 <= $((min_pk1-1)) and c1 <= $((min_c1-1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, <, pk + non-pk" {
test_mutation "delete from two_pk where pk1 < $min_pk1 and pk2 < $min_pk2 and c1 < $min_c1" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, <, pk + non-pk" {
test_mutation "delete from one_pk where pk1 < $min_pk1 and c1 < $min_c1" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, >=, pk + non-pk" {
test_mutation "delete from two_pk where pk1 >= $((max_pk1+1)) and pk2 >= $((max_pk2+1)) and c1 >= $((max_c1+1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, >=, pk + non-pk" {
test_mutation "delete from one_pk where pk1 >= $((max_pk1+1)) and c1 >= $((max_c1+1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete none two_pk, >, pk + non-pk" {
test_mutation "delete from two_pk where pk1 > $max_pk1 and pk2 > $max_pk2 and c2 > $max_c2" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: delete none one_pk, >, pk + non-pk" {
test_mutation "delete from one_pk where pk1 > $max_pk1 and c2 > $max_c2" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, =, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 = 1024 and pk2 = 1024" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, =, pk" {
test_mutation "update one_pk set c2 = 256 where pk1 = 1024" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, <=, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 <= $((min_pk1-1)) and pk2 <= $((min_pk2-1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, <=, pk" {
test_mutation "update one_pk set c2 = 256 where pk1 <= $((min_pk1-1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, <, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 < $min_pk1 and pk2 < $min_pk2" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, <, pk" {
test_mutation "update one_pk set c2 = 256 where pk1 < $min_pk1" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, >=, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 >= $((max_pk1+1)) and pk2 >= $((max_pk2+1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, >=, pk" {
test_mutation "update one_pk set c2 = 256 where pk1 >= $((max_pk1+1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, >, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 > $max_pk1 and pk2 > $max_pk2" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, >, pk" {
test_mutation "update one_pk set c2 = 256 where pk1 > $max_pk1" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, =, non-pk" {
test_mutation "update two_pk set c2 = 256 where c1 = 1024" "two_pk" "$two_pk"
}
@test "index-on-writes-2: update none one_pk, =, non-pk" {
test_mutation "update one_pk set c2 = 256 where c1 = 1024" "one_pk" "$one_pk"
}
@test "index-on-writes-2: update none two_pk, <=, non-pk" {
test_mutation "update two_pk set c2 = 256 where c1 <= $((min_c1-1))" "two_pk" "$two_pk"
}
@test "index-on-writes-2: update none one_pk, <=, non-pk" {
test_mutation "update one_pk set c2 = 256 where c1 <= $((min_c1-1))" "one_pk" "$one_pk"
}
@test "index-on-writes-2: update none two_pk, <, non-pk" {
test_mutation "update two_pk set c2 = 256 where c1 < $min_c1" "two_pk" "$two_pk"
}
@test "index-on-writes-2: update none one_pk, <, non-pk" {
test_mutation "update one_pk set c2 = 256 where c1 < $min_c1" "one_pk" "$one_pk"
}
@test "index-on-writes-2: update none two_pk, >=, non-pk" {
test_mutation "update two_pk set c2 = 256 where c1 >= $((max_c1+1))" "two_pk" "$two_pk"
}
@test "index-on-writes-2: update none one_pk, >=, non-pk" {
test_mutation "update one_pk set c2 = 256 where c1 >= $((max_c1+1))" "one_pk" "$one_pk"
}
@test "index-on-writes-2: update none two_pk, >, non-pk" {
test_mutation "update two_pk set c2 = 256 where c2 > $max_c2" "two_pk" "$two_pk"
}
@test "index-on-writes-2: update none one_pk, >, non-pk" {
test_mutation "update one_pk set c2 = 256 where c2 > $max_c2" "one_pk" "$one_pk"
}
@test "index-on-writes-2: update none two_pk, =, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 = 1024 and pk2 = 1024 and c1 = 1024" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, =, pk + non-pk" {
test_mutation "update one_pk set c2 = 256 where pk1 = 1024 and c1 = 1024" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, <=, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 <= $((min_pk1-1)) and pk2 <= $((min_pk2-1)) and c1 <= $((min_c1-1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, <=, pk + non-pk" {
test_mutation "update one_pk set c2 = 256 where pk1 <= $((min_pk1-1)) and c1 <= $((min_c1-1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, <, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 < $min_pk1 and pk2 < $min_pk2 and c1 < $min_c1" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, <, pk + non-pk" {
test_mutation "update one_pk set c2 = 256 where pk1 < $min_pk1 and c1 < $min_c1" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, >=, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 >= $((max_pk1+1)) and pk2 >= $((max_pk2+1)) and c1 >= $((max_c1+1))" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, >=, pk + non-pk" {
test_mutation "update one_pk set c2 = 256 where pk1 >= $((max_pk1+1)) and c1 >= $((max_c1+1))" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: update none two_pk, >, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 > $max_pk1 and pk2 > $max_pk2 and c2 > $max_c2" "two_pk" "$two_pk" "yes"
}
@test "index-on-writes-2: update none one_pk, >, pk + non-pk" {
test_mutation "update one_pk set c2 = 256 where pk1 > $max_pk1 and c2 > $max_c2" "one_pk" "$one_pk" "yes"
}
@test "index-on-writes-2: delete partial two_pk, =, pk" {
test_mutation "delete from two_pk where pk1 = 2 and pk2 = 8" "two_pk" "$two_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial one_pk, =, pk" {
test_mutation "delete from one_pk where pk1 = 2" "one_pk" "$one_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, =, non-pk" {
test_mutation "delete from two_pk where c1 = 129" "two_pk" "$two_pk_one_row_deleted"
}
@test "index-on-writes-2: delete partial one_pk, =, non-pk" {
test_mutation "delete from one_pk where c1 = 129" "one_pk" "$one_pk_one_row_deleted"
}
@test "index-on-writes-2: delete partial two_pk, =, pk + non-pk" {
test_mutation "delete from two_pk where pk1 = 2 and pk2 = 8 and c1 = 129" "two_pk" "$two_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial one_pk, =, pk + non-pk" {
test_mutation "delete from one_pk where pk1 = 2 and c1 = 129" "one_pk" "$one_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, >, pk" {
test_mutation "delete from two_pk where pk1 > 1 and pk2 > 6" "two_pk" "$two_pk_two_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, >=, pk" {
test_mutation "delete from two_pk where pk1 >= 2 and pk2 >= 7" "two_pk" "$two_pk_two_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, <, pk" {
test_mutation "delete from two_pk where pk1 < 4 and pk2 < 9" "two_pk" "$two_pk_two_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, <=, pk" {
test_mutation "delete from two_pk where pk1 <= 3 and pk2 <= 8" "two_pk" "$two_pk_two_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, >, pk + non-pk" {
test_mutation "delete from two_pk where pk1 > 1 and pk2 > 6 and c1 = 129" "two_pk" "$two_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, >=, pk + non-pk" {
test_mutation "delete from two_pk where pk1 >= 2 and pk2 >= 7 and c1 = 129" "two_pk" "$two_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, <, pk + non-pk" {
test_mutation "delete from two_pk where pk1 < 4 and pk2 < 9 and c1 = 129" "two_pk" "$two_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: delete partial two_pk, <=, pk + non-pk" {
test_mutation "delete from two_pk where pk1 <= 3 and pk2 <= 8 and c1 = 129" "two_pk" "$two_pk_one_row_deleted" "yes"
}
@test "index-on-writes-2: update partial two_pk, =, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 = 2 and pk2 = 8" "two_pk" "$two_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial one_pk, =, pk" {
test_mutation "update one_pk set c2 = 256 where pk1 = 2" "one_pk" "$one_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, =, non-pk" {
test_mutation "update two_pk set c2 = 256 where c1 = 129" "two_pk" "$two_pk_one_row_updated"
}
@test "index-on-writes-2: update partial one_pk, =, non-pk" {
test_mutation "update one_pk set c2 = 256 where c1 = 129" "one_pk" "$one_pk_one_row_updated"
}
@test "index-on-writes-2: update partial two_pk, =, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 = 2 and pk2 = 8 and c1 = 129" "two_pk" "$two_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial one_pk, =, pk + non-pk" {
test_mutation "update one_pk set c2 = 256 where pk1 = 2 and c1 = 129" "one_pk" "$one_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, >, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 > 1 and pk2 > 6" "two_pk" "$two_pk_two_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, >=, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 >= 2 and pk2 >= 7" "two_pk" "$two_pk_two_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, <, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 < 4 and pk2 < 9" "two_pk" "$two_pk_two_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, <=, pk" {
test_mutation "update two_pk set c2 = 256 where pk1 <= 3 and pk2 <= 8" "two_pk" "$two_pk_two_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, >, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 > 1 and pk2 > 6 and c1 = 129" "two_pk" "$two_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, >=, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 >= 2 and pk2 >= 7 and c1 = 129" "two_pk" "$two_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, <, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 < 4 and pk2 < 9 and c1 = 129" "two_pk" "$two_pk_one_row_updated" "yes"
}
@test "index-on-writes-2: update partial two_pk, <=, pk + non-pk" {
test_mutation "update two_pk set c2 = 256 where pk1 <= 3 and pk2 <= 8 and c1 = 129" "two_pk" "$two_pk_one_row_updated" "yes"
}