We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ed37c commit 99e61d9Copy full SHA for 99e61d9
go/codegen/experimental/codegen_test.go
@@ -14,19 +14,19 @@
14
package experimental
15
16
import (
17
- "fmt"
18
"testing"
19
20
"sqlflow.org/sqlflow/go/database"
21
pb "sqlflow.org/sqlflow/go/proto"
22
)
23
24
func TestXGBCodegen(t *testing.T) {
+ t.Skip("enable this test when finished generate code using runtime.feature.*")
25
+
26
sql := "SELECT * FROM iris TO TRAIN xgboost.gbtree WITH objective=\"binary:logistic\",num_class=3 LABEL class INTO sqlflow_models.xgb_classification;"
27
s := &pb.Session{DbConnStr: database.GetTestingMySQLURL()}
- code, err := GenerateCodeCouler(sql, s)
28
+ _, err := GenerateCodeCouler(sql, s)
29
if err != nil {
30
t.Errorf("error %s", err)
31
}
- fmt.Println(code)
32
0 commit comments