For what it's worth, a little more poking - the create table sql included the option from the example in the docs...
CREATE TABLE IF NOT EXISTS TestTable [blah blah blah] This was used over and over again to test with, always with the same response (Failed to find query). To see if maybe the options were not correct, I issued this SQL instead: CREATE TABLE TestTable [blah blah blah] This was a different error: Table already exists. I then ran it with TestTable2 and no IF NOT EXISTS clause, and got an error, however the second time I ran it I got the Table Exists error. It appears than the DDL sql returns an error but is actually successful. Just posting this for future searchers... -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
