Django's database cache backend doesn't work with Snowflake because it [includes SQL queries that don't quote all of the fields](https://code.djangoproject.com/ticket/33340) as Snowflake requires (e.g. [expires](https://github.com/django/django/blob/main/django/core/cache/backends/db.py#L231)). Also, the `createcachetable` management command [creates an index](https://github.com/django/django/blob/a7e7043c8746933dafce652507d3b821801cdc7d/django/core/management/commands/createcachetable.py#L77-L80) (which isn't supported on Snowflake).