(params []string)
| 86 | } |
| 87 | |
| 88 | func (fn *fromNode) rewriteToSqliteScanFunction(params []string) error { |
| 89 | baseTable, err := createSqliteScanTableFunction(params) |
| 90 | if err != nil { |
| 91 | return err |
| 92 | } |
| 93 | fn.parent[fn.childKey] = baseTable |
| 94 | return nil |
| 95 | } |
| 96 | |
| 97 | func createBaseTable(name string, ast astNode) (astNode, error) { |
| 98 | // TODO: validation and fill in other fields from ast |
no test coverage detected