Re: How to detect sql schema changes and make update

2019-01-10 Thread Manu
Hi! take a look to https://github.com/hawkore/examples-apache-ignite-extensions/ they are implemented a solution to detect changes on query entities and propagate changes over cluster (fields, indexes and re-indexation) -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How to detect sql schema changes and make update

2018-08-20 Thread Dmitry Lazurkin
I found solution. Query "select column_name, data_type from information_schema.columns where table_schema = ? and table_name = ?" in local mode. On 08/16/2018 06:28 PM, Dmitry Lazurkin wrote: > Hello. > > I have cache with query entity. Now I want to add new field to query > entity of existing

How to detect sql schema changes and make update

2018-08-16 Thread Dmitry Lazurkin
Hello. I have cache with query entity. Now I want to add new field to query entity of existing cache. I take query entity from existing cache and query entity with new fields, search new field and add it with DLL 'ALTER TABLE'. And now I have problem because query entity from cache configuration