You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cqlc is suffering from the same issue, I am not getting all rows from my query. cqlc must be using * or some query preparation which is causing this. Can we force cqlc to use column names in query.
Thanks
The text was updated successfully, but these errors were encountered:
cqlc is performing query string compilation which it sends down to the underlying gocql layer, so in this sense cqlc is not doing anything query preparation of it's own - all of this is deferred to gocql.
So my first question would be whether cqlc is exhibiting a different behavior to using the gocql API in isolation? If so, do you have a cut down example that demonstrates the problem?
Please see issues at:
cqlc is suffering from the same issue, I am not getting all rows from my query. cqlc must be using * or some query preparation which is causing this. Can we force cqlc to use column names in query.
Thanks
The text was updated successfully, but these errors were encountered: