(n *pcast.CreateViewStmt)
| 910 | } |
| 911 | |
| 912 | func (c *cc) convertCreateViewStmt(n *pcast.CreateViewStmt) ast.Node { |
| 913 | return &ast.ViewStmt{ |
| 914 | View: c.convertTableName(n.ViewName), |
| 915 | Aliases: &ast.List{}, |
| 916 | Query: c.convert(n.Select), |
| 917 | Replace: n.OrReplace, |
| 918 | Options: &ast.List{}, |
| 919 | WithCheckOption: ast.ViewCheckOption(n.CheckOption), |
| 920 | } |
| 921 | } |
| 922 | |
| 923 | func (c *cc) convertDeallocateStmt(n *pcast.DeallocateStmt) ast.Node { |
| 924 | return todo(n) |
no test coverage detected