(n *pcast.TableName)
| 8 | ) |
| 9 | |
| 10 | func parseTableName(n *pcast.TableName) *ast.TableName { |
| 11 | return &ast.TableName{ |
| 12 | Schema: identifier(n.Schema.String()), |
| 13 | Name: identifier(n.Name.String()), |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func toList(node pcast.Node) *ast.List { |
| 18 | var items []ast.Node |
no test coverage detected