(n *parser.Expr_collateContext)
| 1211 | } |
| 1212 | |
| 1213 | func (c *cc) convertCollateExpr(n *parser.Expr_collateContext) ast.Node { |
| 1214 | return &ast.CollateExpr{ |
| 1215 | Xpr: c.convert(n.Expr()), |
| 1216 | Arg: NewIdentifier(n.Collation_name().GetText()), |
| 1217 | Location: n.GetStart().GetStart(), |
| 1218 | } |
| 1219 | } |
| 1220 | |
| 1221 | func (c *cc) convertCase(n *parser.Expr_caseContext) ast.Node { |
| 1222 | e := &ast.CaseExpr{ |
no test coverage detected