ConcatExpr represents a PostgreSQL string concatenation: A || B.
| 1999 | |
| 2000 | // ConcatExpr represents a PostgreSQL string concatenation: A || B. |
| 2001 | type ConcatExpr struct { |
| 2002 | Left, Right Expr |
| 2003 | } |
| 2004 | |
| 2005 | // Format formats the node. |
| 2006 | func (node *ConcatExpr) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected