S05013
Error Code
S05013
Error Message
All elements of a tuple column of a table must have the same type. RefId:
S05013
Probable Causes
When creating an in-memory table, this error occurs if a tuple column of the table contains different types of elements.
For example, an error may arise because the third element is a string, while the first and second elements are both integers.
t = table(1 2 3 as id, (1, 2, "3") as val)
Solutions
When creating an in-memory table, ensure that each tuple column in the table contains elements of the same type.
t = table(1 2 3 as id, (1, 2, 3) as val)