(c tableNamer)
| 11 | } |
| 12 | |
| 13 | func parseTableName(c tableNamer) *ast.TableName { |
| 14 | name := ast.TableName{ |
| 15 | Name: identifier(c.Table_name().GetText()), |
| 16 | } |
| 17 | if c.Schema_name() != nil { |
| 18 | name.Schema = c.Schema_name().GetText() |
| 19 | } |
| 20 | return &name |
| 21 | } |
| 22 | |
| 23 | func hasNotNullConstraint(checks []parser.IColumn_constraintContext) bool { |
| 24 | for i := range checks { |
no test coverage detected