LiteralValue represents a literal value in SQL
| 998 | |
| 999 | // LiteralValue represents a literal value in SQL |
| 1000 | type LiteralValue struct { |
| 1001 | Value interface{} |
| 1002 | Type string // INTEGER, FLOAT, STRING, BOOLEAN, NULL, etc. |
| 1003 | } |
| 1004 | |
| 1005 | func (l *LiteralValue) expressionNode() {} |
| 1006 | func (l LiteralValue) TokenLiteral() string { return fmt.Sprintf("%v", l.Value) } |
nothing calls this directly
no outgoing calls
no test coverage detected