Changes between Version 4 and Version 7 of Ticket #26758


Ignore:
Timestamp:
Jun 16, 2016, 3:25:35 PM (8 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26758

    • Property Resolutionneedsinfo
    • Property Status newclosed
    • Property Cc Simon Charette added
  • Ticket #26758 – Description

    v4 v7  
    8585Attempting to run the SQL generated by the queryset directly against the DB results in the same error from Postgres.
    8686
    87 The version of PostgreSQL is 9.3.12:
    88 {{{
    89 14:58:16 1d [aaron@praxis:~/code/-redacted-] [-redacted-] develop* ± python manage.py dbshell
    90 WARNING 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 
    93 WARNING 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 
    96 WARNING 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 
    99 WARNING 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 
    102 WARNING 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 
    105 psql (9.3.12)
    106 SSL connection (cipher: DHE-RSA-AES256-GCM-SHA384, bits: 256)
    107 Type "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
    116 14:58:40 1d [aaron@praxis:~/code/-redacted-] [-redacted-] develop* ±
    117 }}}
     87The version of PostgreSQL is 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.
Back to Top