I'm attempting to create a table and I'm setting the cache name according to
the examples in the documentation.
CREATE TABLE IF NOT EXISTS batch_test (x varchar(10), y int, z float, PRIMARY
KEY (y)) WITH "CACHE_NAME=foo_1234_test_test";
I've run this query through sqlline and a C++ executable using the ODBC driver.
I'm using Ignite 2.7.6. In both cases I'm not seeing the cache being created
+--------------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+-+
| TABLE_CAT | TABLE_SCHEM |
TABLE_NAME | TABLE_TYPE | REMARKS |
|
+--------------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+-+
| | PUBLIC
| BATCH_TEST | TABLE |
| |
+--------------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+-+
Any help is appreciated.