S02013

Error Code

S02013

Error Message

The left part of a join must be a table. RefId:S02013

Probable Causes

The leftTable parameter of table joiners (e.g., ej, lj) must be a table. This error occurs when a non-table object is passed as the leftTable.

For example, passing a vector "id" to ej.

login(`admin, `123456)
id = `XOM`GS`AAPL
x = 102.1 33.4 73.6
t = table(id, x);

select * from ej(id, t, `id)

Solutions

Check the leftTable parameter for table joiners.