Are you executing 'select * from ...'? If so, key and value objects are returned in the result set, because there are predefined '_key' and '_val' fields that Ignite automatically adds to each table. You can select only one them.
Generally, it's not a good idea to do 'select *'. Always explicitly specify the list of fields you want to select, this will give you better control on how the query is executed. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/SQL-SELECT-clean-rows-tp5041p5055.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
