Changes between Initial Version and Version 3 of Ticket #26758


Ignore:
Timestamp:
Jun 15, 2016, 4:58:33 PM (8 years ago)
Author:
Aaron C. de Bruyn
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26758 – Description

    initial v3  
    8484
    8585Attempting to run the SQL generated by the queryset directly against the DB results in the same error from Postgres.
     86
     87The version of PostgreSQL is 9.3.12:
     88
     8914:58:16 1d [aaron@praxis:~/code/-redacted-] [-redacted-] develop* ± python manage.py dbshell
     90WARNING 2016-06-15 14:58:22,113 __init__ 17636 140073877276480 /home/aaron/.virtualenvs/-redacted-/lib/python3.5/site-packages/favicon/urls.py:6: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
     91  url(r'^favicon\.ico$', RedirectView.as_view(url=conf.FAVICON_PATH, permanent=True), name='favicon'),
     92
     93WARNING 2016-06-15 14:58:22,115 remote 17636 140073877276480 /home/aaron/.virtualenvs/-redacted-/lib/python3.5/site-packages/raven/conf/remote.py:67: UserWarning: Transport selection via DSN is deprecated. You should explicitly pass the transport class to Client() instead.
     94  warnings.warn('Transport selection via DSN is deprecated. You should explicitly pass the transport class to Client() instead.')
     95
     96WARNING 2016-06-15 14:58:23,836 __init__ 17636 140073877276480 /home/aaron/.virtualenvs/-redacted-/lib/python3.5/site-packages/site_basics/urls.py:11: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
     97  url(r'^test_page_500/$', page_500, name="page_500"),
     98
     99WARNING 2016-06-15 14:58:24,717 __init__ 17636 140073877276480 /home/aaron/.virtualenvs/-redacted-/lib/python3.5/site-packages/django/db/models/fields/__init__.py:1393: RuntimeWarning: DateTimeField SrService.date_entered received a naive datetime (2016-06-08 00:00:00) while time zone support is active.
     100  RuntimeWarning)
     101
     102WARNING 2016-06-15 14:58:25,024 __init__ 17636 140073877276480 /home/aaron/.virtualenvs/-redacted-/lib/python3.5/site-packages/haystack/urls.py:15: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
     103  url(r'^$', SearchView(), name='haystack_search'),
     104
     105psql (9.3.12)
     106SSL connection (cipher: DHE-RSA-AES256-GCM-SHA384, bits: 256)
     107Type "help" for help.
     108
     109-redacted-=> select version();
     110                                                   version                                                   
     111--------------------------------------------------------------------------------------------------------------
     112 PostgreSQL 9.3.12 on x86_64-unknown-linux-gnu, compiled by gcc (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4, 64-bit
     113(1 row)
     114
     115-redacted-=> \q
     11614:58:40 1d [aaron@praxis:~/code/-redacted-] [-redacted-] develop* ±
Back to Top