Skip to content

Commit 8931b61

Browse files
authored
Merge pull request #2137 from codeaucafe/codeaucafe/1868/fix-OR-condition-index-panic
#1868: remove outdated skip list entries for OR index tests
2 parents 7078359 + 0922a79 commit 8931b61

1 file changed

Lines changed: 20 additions & 23 deletions

File tree

testing/go/enginetest/doltgres_engine_test.go

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,6 @@ func TestScripts(t *testing.T) {
581581
"division and int division operation on negative, small and big value for decimal type column of table", // numeric keys broken
582582
"different cases of function name should result in the same outcome", // ERROR: blob/text column 'b' used in key specification without a key length
583583
"Multi-db Aliasing", // need harness support for qualified table names
584-
"Complex Filter Index Scan #2", // panic in index lookup, needs investigation
585-
"Complex Filter Index Scan #3", // panic in index lookup, needs investigation
586584
"update columns with default", // broken, see repro in update_test.go
587585
"select * from t0 where i > 0.1 or i >= 0.1 order by i;", // incorrect result, needs a fix
588586
"int secondary index with float filter", // panic
@@ -592,27 +590,26 @@ func TestScripts(t *testing.T) {
592590
"SELECT -col2 AS col0 FROM tab2 GROUP BY col0, col2 HAVING NOT col2 <= - col0;", // incorrect result
593591
"SELECT -col2 AS col0 FROM tab2 GROUP BY col0, col2 HAVING col2 > -col0;", // incorrect result
594592
"select col2-100 as col0 from tab2 group by col0 having col0 > 0;", // incorrect result
595-
"complicated range tree", // panic in index lookup, needs investigation
596-
"preserve now()", // harness error
597-
"binary type primary key", // ERROR: blob/text column 'b' used in key specification without a key length
598-
"varbinary primary key", // ERROR: blob/text column 'b' used in key specification without a key length
599-
"insert into t1 (a, b) values ('1234567890', '12345')", // different error message
600-
"insert into t2 (a, b) values ('1234567890', '12345')", // different error message
601-
"invalid utf8 encoding strings", // need to investigate why some strings aren't giving errors, might be a harness error
602-
"mismatched collation using hash in tuples", // ERROR: plan is not resolved because of node '*plan.Project'
603-
"validate_password_strength and validate_password.length", // unsupported
604-
"validate_password_strength and validate_password.number_count", // unsupported
605-
"validate_password_strength and validate_password.mixed_case_count", // unsupported
606-
"validate_password_strength and validate_password.special_char_count", // unsupported
607-
"preserve enums through alter statements", // enum types unsupported
608-
"coalesce with system types", // unsupported
609-
"multi enum return types", // enum types unsupported
610-
"enum cast to int and string", // enum types unsupported
611-
"select * from vt where v = cast('def' as char(6));", // incorrect result
612-
"select * from vt where v < cast('def' as char(6));", // incorrect result
613-
"select * from vt where v >= cast('def' as char(6));", // incorrect result
614-
"histogram bucket merging error for implementor buckets", // unsupported "with recursive" syntax
615-
"varchar primary key", // literal values longer than the key length returns incorrect results for some queries
593+
"preserve now()", // harness error
594+
"binary type primary key", // ERROR: blob/text column 'b' used in key specification without a key length
595+
"varbinary primary key", // ERROR: blob/text column 'b' used in key specification without a key length
596+
"insert into t1 (a, b) values ('1234567890', '12345')", // different error message
597+
"insert into t2 (a, b) values ('1234567890', '12345')", // different error message
598+
"invalid utf8 encoding strings", // need to investigate why some strings aren't giving errors, might be a harness error
599+
"mismatched collation using hash in tuples", // ERROR: plan is not resolved because of node '*plan.Project'
600+
"validate_password_strength and validate_password.length", // unsupported
601+
"validate_password_strength and validate_password.number_count", // unsupported
602+
"validate_password_strength and validate_password.mixed_case_count", // unsupported
603+
"validate_password_strength and validate_password.special_char_count", // unsupported
604+
"preserve enums through alter statements", // enum types unsupported
605+
"coalesce with system types", // unsupported
606+
"multi enum return types", // enum types unsupported
607+
"enum cast to int and string", // enum types unsupported
608+
"select * from vt where v = cast('def' as char(6));", // incorrect result
609+
"select * from vt where v < cast('def' as char(6));", // incorrect result
610+
"select * from vt where v >= cast('def' as char(6));", // incorrect result
611+
"histogram bucket merging error for implementor buckets", // unsupported "with recursive" syntax
612+
"varchar primary key", // literal values longer than the key length returns incorrect results for some queries
616613
})
617614
defer h.Close()
618615
enginetest.TestScripts(t, h)

0 commit comments

Comments
 (0)