MCPcopy Create free account
hub / github.com/apecloud/myduckserver / TestTpccQueryPlans

Function TestTpccQueryPlans

main_test.go:740–752  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

738
739func 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
753func TestTpcdsQueryPlans(t *testing.T) {
754 t.Skip("myduckserver has different query plans")
755 indexBehaviors := []*indexBehaviorTestParams{

Callers

nothing calls this directly

Calls 2

NewDuckHarnessFunction · 0.85
RunMethod · 0.45

Tested by

no test coverage detected