Skip to content

Commit d4a1c13

Browse files
committed
small fix for table function
1 parent 5098278 commit d4a1c13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/expression/tablefunction/table_function.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ func (t *TableFunctionWrapper) NewInstance(ctx *sql.Context, db sql.Database, ar
5050
if err != nil {
5151
return nil, err
5252
}
53-
if !f.Resolved() {
54-
return nil, fmt.Errorf("table function is unresolved")
55-
}
53+
//if !f.Resolved() {
54+
// return nil, fmt.Errorf("table function is unresolved")
55+
//}
5656
nt.funcExpr = f
5757
return &nt, nil
5858
}

0 commit comments

Comments
 (0)