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
Can't order by the first primary key (partition key), clustering (secondary) keys only To enable fallback order_by() python implementation, set "CASSANDRA_FALLBACK_ORDER_BY_PYTHON = True" in Django Settings.
/usr/lib/python2.7/site-packages/django_cassandra_engine/models/init.py in order_by, line 762
If I try to delete from the admin:
settings.py has CASSANDRA_FALLBACK_ORDER_BY_PYTHON = True
I get:
`
If I set it to CASSANDRA_FALLBACK_ORDER_BY_PYTHON = False I get:
`
my model is:
class AccountModel(DjangoCassandraModel):
pk = columns.UUID(primary_key=True, default=uuid.uuid4)
account_id = columns.Text()
divison_id = columns.Text()
The text was updated successfully, but these errors were encountered: