Re: Duplicate column name while creating table

2019-12-11 Thread Ilya Kasnacheev
Hello! I have filed an issue https://issues.apache.org/jira/browse/IGNITE-12433 Regards, -- Ilya Kasnacheev ср, 11 дек. 2019 г. в 12:43, Denis Magda : > It sounds like the implementation specificities of Ignite DML. > > SQL folks, how about throwing an exception in case of the duplicate

Re: Duplicate column name while creating table

2019-12-11 Thread Denis Magda
It sounds like the implementation specificities of Ignite DML. SQL folks, how about throwing an exception in case of the duplicate name? - Denis On Thu, Dec 5, 2019 at 9:38 AM DS wrote: > *I am able to create the table with duplicate column name.* > > I was expecting some error saying

Duplicate column name while creating table

2019-12-04 Thread DS
*I am able to create the table with duplicate column name.* I was expecting some error saying "cannot create table; duplicate column name: NAME" Is there some reason that Ignite is not throwing error/exception OR is it a bug? CREATE TABLE Person(ID INTEGER PRIMARY KEY, NAME VARCHAR(100),