TT-02972
Invalid relational operator: all group of values in the value list must have the same number of values as the left operand
Cause
You attempted an operation where the relational operator IN is specified with more than one value in the left operand but at least one group of values in the right operand has a different number of values than the number of values in the left operand. For example:
SELECT * FROM t WHERE (a,b)
IN ((1,1),(2));
In this example, the second group of values in the IN list contains one less entry than the number specified in the left operand.
Action
Add the missing value or values to the SQL statement and retry the operation. For more information on SQL statements, see SQL Statements in Oracle TimesTen In-Memory Database SQL Reference.
Additional Information
TimesTen cannot perform the operation.