GridSQL -> create table t2 (id int) replicated;
OK
GridSQL -> select * from (select col1 from t1 union all select col2 from t1) as x where x.col1 not in (select id from t2);
SQLException: ERROR: Can not prepare request: Table x has not been found in database mydb
Same query works when executed directly on all nodes.