Re: trouble about Underscore and Boolean

2016-05-07 Thread minisoft_rm
thanks your help. please refer to the following table schema:(you see...tinyint(1) columns are treated as Boolean :-( ) -- MySQL dump 10.13 Distrib 5.6.25, for osx10.8 (x86_64) -- -- Host: localhostDatabase: h5700ignite -- -- -- Server versi

Re: trouble about Underscore and Boolean

2016-05-07 Thread Alexey Kuznetsov
Hi! Are you talking about Schema Import Utility? If yes, then it is expected behaviour. Schema Import Utility generates POJOs using java naming convention. To overcome this you may use query fields aliases. But Schema Import Utility with this option (checkbox on UI) will be available in upcoming

trouble about Underscore and Boolean

2016-05-07 Thread minisoft_rm
dear experts, I meet troubles that very boring : trouble 1: I noticed that ignite generates fields without underscore... i.e. remove it if my table column : p_baseprice -> pBaseprice trouble2: ignite treats int(1) as Boolean how to indicate it as just integer??? please confirm if ignite is d

Re: MPI / OpenMP compared to Ignite

2016-05-07 Thread Alexei Scherbakov
Hi, OpenMP is like Ignite's Compute[1] subsystem running on the single JVM (because it uses shared memory). MPI is like Ignite's discovery SPI( and very limited, because MPI does not allow adding nodes dynamically after cluster start ) + communication SPI for message passing between nodes. Often O