Re: Key-value access to caches created with DDL

2017-09-02 Thread Denis Magda
Good, then we can do the same for the value type's name. Vladimir, what’s your opinion? If everybody agrees I’ll simply update this ticket expanding it: https://issues.apache.org/jira/browse/IGNITE-6242 — Denis > On Sep 2, 2017, at 1:41 AM, Alexander Paschenko > wrote: > > Sounds good to me.

Re: Key-value access to caches created with DDL

2017-09-02 Thread Alexander Paschenko
Sounds good to me. – Alex 2017-09-02 9:12 GMT+02:00 Denis Magda : > Igniters, > > Consider a table and cache created this way: > > CREATE TABLE `city` ( > `ID` INT(11), > `Name` CHAR(35), > `CountryCode` CHAR(3), > `District` CHAR(20), > `Population` INT(11), > PRIMARY KEY (`ID`, `Cou

Key-value access to caches created with DDL

2017-09-02 Thread Denis Magda
Igniters, Consider a table and cache created this way: CREATE TABLE `city` ( `ID` INT(11), `Name` CHAR(35), `CountryCode` CHAR(3), `District` CHAR(20), `Population` INT(11), PRIMARY KEY (`ID`, `CountryCode`) ) WITH "template=partitioned, backups=1, affinityKey=CountryCode"; Now in add