mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
13 lines
211 B
Go
13 lines
211 B
Go
package query
|
|
|
|
import (
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestQueryPlanner(t *testing.T) {
|
|
Convey("Basic query plan", t, func() {
|
|
log.Println("query planner test")
|
|
})
|
|
}
|