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
it looks like that CQL 3.0 change the result set when issuing a query that returns zero rows. In CQL 2.0 it would return a single row with a CqlRow with empty columns. Now it returns zero rows, which means that fetch_rows returns nil. And to_hash doesn't exist on nil, so migrations blow up.
The text was updated successfully, but these errors were encountered:
it looks like that CQL 3.0 change the result set when issuing a query that returns zero rows. In CQL 2.0 it would return a single row with a CqlRow with empty columns. Now it returns zero rows, which means that
fetch_rows
returnsnil
. Andto_hash
doesn't exist onnil
, so migrations blow up.The text was updated successfully, but these errors were encountered: