(t *testing.T)
| 710 | |
| 711 | func TestImdbQueryPlans(t *testing.T) { |
| 712 | t.Skip("myduckserver has different query plans") |
| 713 | indexBehaviors := []*indexBehaviorTestParams{ |
| 714 | {"nativeIndexes", nil, true}, |
| 715 | } |
| 716 | |
| 717 | for _, indexInit := range indexBehaviors { |
| 718 | t.Run(indexInit.name, func(t *testing.T) { |
| 719 | harness := NewDuckHarness(indexInit.name, 1, 1, indexInit.nativeIndexes, indexInit.driverInitializer) |
| 720 | enginetest.TestImdbPlans(t, harness) |
| 721 | }) |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | func TestTpccQueryPlans(t *testing.T) { |
| 726 | t.Skip("myduckserver has different query plans") |
| 727 | indexBehaviors := []*indexBehaviorTestParams{ |
nothing calls this directly
no test coverage detected