SYMPTOM:
T1: C_T1
T2: C_T2
T3: C_T3
Drag column "C_T2" and drop to "C_T3". Drag column "C_T1" and drop to "C_T2" as shown below:

Double click "C_T1". Execute SQL gets below error:
Encountered: IDENTIFIER Expected: SELECT, VALUES, WITH CAUSED BY: Exception: Syntax error
Check SQL is as below:
SELECT T1.C_T1 C_T1
FROM dbo.T1 T1
JOIN (dbo.T2 T2 JOIN dbo.T3 T3
ON (T2.C_T2 = T3.C_T3))
ON (T1.C_T1 = T2.C_T2)
Unexpected token SFORCE, requires SELECT in statement
CAUSE:
Some databases (such as Impala and Salesforce) don't support right heavy tree like: T1 join (T2 join T3).
Currently join orders are defined by orders of manipulations and there is no optimization. When create joins with some specific orders, right heavy join tree might be generated.
ACTION:
Delete problematic joins and recreate them by dragging from left to right.
Drag column "C_T1" and drop to "C_T2". Drag column "C_T2" and drop to "C_T3" as shown below:

Article Reference Number: KB442580