()
| 57 | } |
| 58 | |
| 59 | func (r relation) FuncName() *ast.FuncName { |
| 60 | return &ast.FuncName{ |
| 61 | Catalog: r.Catalog, |
| 62 | Schema: r.Schema, |
| 63 | Name: r.Name, |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | func parseRelationFromNodes(list []*nodes.Node) (*relation, error) { |
| 68 | parts := stringSliceFromNodes(list) |
no outgoing calls
no test coverage detected