django-redshift
django-redshift copied to clipboard
Amazon Redshift backend for Django
``` In [104]: connections['dw'] Out[104]: In [105]: conn=_ In [106]: conn.schema_editor() --------------------------------------------------------------------------- NotImplementedError Traceback (most recent call last) in () ----> 1 conn.schema_editor() /Users/erik/.virtualenvs/proj/lib/python2.7/site-packages/django/db/backends/__init__.pyc in schema_editor(self, *args, **kwargs) 557 def...
See notes for [changes to transaction management in 1.6](https://docs.djangoproject.com/en/1.7/topics/db/transactions/#why-django-uses-autocommit): > Before Django 1.6, autocommit was turned off, and it was emulated by forcing a commit after write operations in the...
Is it just setting ISOLATION_LEVEL_SERIALIZABLE ?
Installing django-redshift using `pip install django-redshift` puts a directory in site-packages named "django-redshift". To import it, one would use `import django-redshift`, but the dash there is a syntax error. Workarounds...