Changes between Version 2 and Version 3 of Ticket #27808


Ignore:
Timestamp:
Feb 4, 2017, 4:12:28 PM (7 years ago)
Author:
Josef Kolář
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27808 – Description

    v2 v3  
    88NestedNullableIntegerArrayModel(field=[[None, None], [None, None]]).save()
    99}}}
    10 and Django generates
     10Django generates
    1111{{{#!sql
    1212INSERT INTO "postgres_tests_nestednullableintegerarraymodel" ("field") VALUES (%s) RETURNING "postgres_tests_nestednullableintegerarraymodel"."id"
     
    1616([[None, None], [None, None]], )
    1717}}}
    18 and this query fails in postgres on
     18but this query fails in postgres on
    1919{{{
    2020ERROR:  column "field" is of type integer[] but expression is of type text[]
Back to Top