ptupitsyn commented on issue #11325:
URL: https://github.com/apache/ignite/issues/11325#issuecomment-2084471399
```sql
CREATE TABLE IF NOT EXISTS employee (
id int,
name varchar,
address object,
companyid varchar,
age int,
city varchar,
street varchar,
streetnumber int,
flatnumber int,
PRIMARY KEY (id)
) WITH
"template=partitioned,backups=1,WRITE_SYNCHRONIZATION_MODE=FULL_SYNC,CACHE_GROUP=Employee,CACHE_NAME=Employee,KEY_TYPE=int,VALUE_TYPE=Employee";
```
Just add `address object` column and run your code, it will work.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]