Hi all, Is it possible for a table through the SQL interface to only return some subset of data if querying against a specific column?
e.g. We have a cache configuration defined based on Java SQL Query annotations that contains an id field and some other string fields. The value of the id field in all entries also matches the value of the cache entry key). The table contains 3 entries, however if I execute “select id from table” through sqlline, I only am able to see 1 entry. However, if I execute “select id, name from table”, I see all of them. Are there any steps I can take to better diagnose this? Thank you Kurt
