Re: Is class inheritance supported in ignite 2.4.0?

2018-03-22 Thread vkulichenko
Wilhelm, When you're working with SQL in Ignite, you should think about data types in the same way as about tables in relational databases. SQL works with a particular schema, and therefore if there is a 'Vehicle' table, it can only store attributes that are generic for all vehicles. There is no w

Is class inheritance supported in ignite 2.4.0?

2018-03-22 Thread Wilhelm
Hello Is class inheritance supported by ignite and SQL search? I tried creating a Person class who own a Vehicule and Vehicule can be a car, boat, truck, motocycle. If I add a Vehicule to the Vehicule cache then it is ok but if I add a Car (Car inherit from Vehicule) then it is not showing up? I