()
| 132 | } |
| 133 | |
| 134 | func (ls OperationExpression) GetIdentifiers() []Identifier { |
| 135 | var identifiers []Identifier |
| 136 | |
| 137 | identifiers = append(identifiers, ls.Left.GetIdentifiers()...) |
| 138 | identifiers = append(identifiers, ls.Right.GetIdentifiers()...) |
| 139 | |
| 140 | return identifiers |
| 141 | } |
| 142 | |
| 143 | // CreateCommand - Part of Command that represent creation of table |
| 144 | // |
nothing calls this directly
no test coverage detected