(n *pcast.WildCardField)
| 719 | } |
| 720 | |
| 721 | func (c *cc) convertWildCardField(n *pcast.WildCardField) *ast.ColumnRef { |
| 722 | items := []ast.Node{} |
| 723 | if t := n.Table.String(); t != "" { |
| 724 | items = append(items, NewIdentifier(t)) |
| 725 | } |
| 726 | items = append(items, &ast.A_Star{}) |
| 727 | |
| 728 | return &ast.ColumnRef{ |
| 729 | Fields: &ast.List{ |
| 730 | Items: items, |
| 731 | }, |
| 732 | } |
| 733 | } |
| 734 | |
| 735 | func (c *cc) convertAdminStmt(n *pcast.AdminStmt) ast.Node { |
| 736 | return todo(n) |
no test coverage detected