(rv *nodes.RangeVar)
| 88 | } |
| 89 | |
| 90 | func parseRelationFromRangeVar(rv *nodes.RangeVar) *relation { |
| 91 | return &relation{ |
| 92 | Catalog: rv.Catalogname, |
| 93 | Schema: rv.Schemaname, |
| 94 | Name: rv.Relname, |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | func parseRelation(in *nodes.Node) (*relation, error) { |
| 99 | switch n := in.Node.(type) { |
no outgoing calls
no test coverage detected