Re: Adding fields without adding to sql table DDL

2020-11-16 Thread Ilya Kasnacheev
Hello! I have no idea and I think it depends on the StreamReceived/allowOverwrite. Please try it and see. Regards, -- Ilya Kasnacheev пт, 13 нояб. 2020 г. в 18:06, ssansoy : > Last question would this work with datastreamer? e.g. adding a field > inside the transformation? > Thanks! > >

Re: Adding fields without adding to sql table DDL

2020-11-13 Thread ssansoy
Last question would this work with datastreamer? e.g. adding a field inside the transformation? Thanks! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Adding fields without adding to sql table DDL

2020-11-13 Thread Ilya Kasnacheev
Hello! No, it would not appear in select and in table schema. The only way of adding a field to table schema is by invoking ALTER TABLE ADD COLUMN. Regards, -- Ilya Kasnacheev пт, 13 нояб. 2020 г. в 17:37, ssansoy : > Thanks for the tip! > Is there documentation anywhere about how this

Re: Adding fields without adding to sql table DDL

2020-11-13 Thread Ilya Kasnacheev
Hello! I think you have just discovered that you can't add fields inside an entry processor. Try using a regular put for this. Then, you can also use these fields inside entry processor. Regards, -- Ilya Kasnacheev пт, 13 нояб. 2020 г. в 17:21, ssansoy : > Hi, we define our caches via a

Adding fields without adding to sql table DDL

2020-11-13 Thread ssansoy
Hi, we define our caches via a create table statement, and specify our various columns/fields. We would like to add some additional fields, that are not exposed as part of the DDL, so not visible in a select statement. Is this possible? If I try and get a BinaryObjectBuilder for my type, and add