(t *testing.T)
| 738 | |
| 739 | func TestTpchQueryPlans(t *testing.T) { |
| 740 | t.Skip("myduckserver has different query plans") |
| 741 | indexBehaviors := []*indexBehaviorTestParams{ |
| 742 | {"nativeIndexes", nil, true}, |
| 743 | } |
| 744 | |
| 745 | for _, indexInit := range indexBehaviors { |
| 746 | t.Run(indexInit.name, func(t *testing.T) { |
| 747 | harness := NewDuckHarness(indexInit.name, 1, 1, indexInit.nativeIndexes, indexInit.driverInitializer) |
| 748 | enginetest.TestTpchPlans(t, harness) |
| 749 | }) |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | func TestTpcdsQueryPlans(t *testing.T) { |
| 754 | t.Skip("myduckserver has different query plans") |
| 755 | indexBehaviors := []*indexBehaviorTestParams{ |
nothing calls this directly
no test coverage detected