(n *parser.Attach_stmtContext)
| 100 | } |
| 101 | |
| 102 | func (c *cc) convertAttach_stmtContext(n *parser.Attach_stmtContext) ast.Node { |
| 103 | name := n.Schema_name().GetText() |
| 104 | return &ast.CreateSchemaStmt{ |
| 105 | Name: &name, |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | func (c *cc) convertCreate_table_stmtContext(n *parser.Create_table_stmtContext) ast.Node { |
| 110 | stmt := &ast.CreateTableStmt{ |
no test coverage detected