skip LD dolt scripts

This commit is contained in:
Max Hoffman
2023-01-18 11:36:10 -08:00
parent 2ec13c92ce
commit 02fea6aebe

View File

@@ -765,6 +765,9 @@ func TestConcurrentTransactions(t *testing.T) {
}
func TestDoltScripts(t *testing.T) {
if !types.IsFormat_DOLT(types.Format_Default) {
t.Skip("only new format support system table indexing")
}
harness := newDoltHarness(t)
for _, script := range DoltScripts {
enginetest.TestScript(t, harness, script)
@@ -1167,7 +1170,7 @@ func TestHistorySystemTablePrepared(t *testing.T) {
if !types.IsFormat_DOLT(types.Format_Default) {
t.Skip("only new format support system table indexing")
}
harness := newDoltHarness(t).WithParallelism(2)
harness.Setup(setup.MydbData)
for _, test := range HistorySystemTableScriptTests {