Return left, right values if is of form `table.column` or `schema`.`table` and also return true/false for if it even has left & right syntax
()
| 1141 | // Return left, right values if is of form `table.column` or `schema`.`table` and |
| 1142 | // also return true/false for if it even has left & right syntax |
| 1143 | func (m *IdentityNode) LeftRight() (string, string, bool) { |
| 1144 | if m.left == "" { |
| 1145 | m.left, m.right, _ = LeftRight(m.Text) |
| 1146 | } |
| 1147 | return m.left, m.right, m.left != "" |
| 1148 | } |
| 1149 | |
| 1150 | func NewNull(operator lex.Token) *NullNode { |
| 1151 | return &NullNode{} |
no test coverage detected