Readded Full-Text drop column test

This commit is contained in:
Daylon Wilkins
2023-08-15 14:47:33 -07:00
parent 4407d025bb
commit 9079bace2d
@@ -1007,13 +1007,6 @@ func TestFulltextIndexes(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("For some reason, this is flaky only on Windows CI. Investigation is underway.")
}
for i := range queries.FulltextTests {
//TODO: Dolt drops indexes automatically, which differs from the expectation of GMS
if queries.FulltextTests[i].Name == "ALTER TABLE DROP COLUMN used by index" {
queries.FulltextTests = append(queries.FulltextTests[:i], queries.FulltextTests[i+1:]...)
break
}
}
h := newDoltHarness(t)
defer h.Close()
enginetest.TestFulltextIndexes(t, h)