From: Aaron J. <aja...@re...> - 2014-06-18 18:32:29
|
Sorry if this seems awefully mundane, but I've tried this several ways and it simply doesn't seem to work. EXECUTE DIRECT ON datanode1 select count(*) from app.someTable; ERROR: syntax error at or near "datanode1" - I've tried variations.. EXECUTE DIRECT ON NODE datanode1 select count(*) from app.someTable; EXECUTE DIRECT ON NODE datanode1 'select count(*) from app.someTable'; EXECUTE DIRECT ON datanode1 'select count(*) from app.someTable'; Those should be single quotes if they come across wrong. I'd venture to guess there is a BNF parser somewhere that processed this request and if so, I'll go dig down into that code to see if it's a bison parsing issue. Any suggestions or pointers would be helpful, or maybe I just screwed up the syntax. Aaron |