Changes between Initial Version and Version 2 of Ticket #31779


Ignore:
Timestamp:
Jul 11, 2020, 5:16:16 AM (4 years ago)
Author:
Sage Abdullah
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31779

    • Property Owner changed from nobody to Sage Abdullah
    • Property Status newassigned
  • Ticket #31779 – Description

    initial v2  
    11We explicitly say that JSONField is supported on MariaDB >= 10.2.7. However, it seems that there is an upstream bug that causes complex JSONField queries to crash: https://jira.mariadb.org/browse/MDEV-16209
    22
    3 I haven't isolated which test(s) caused the crash, but it's reproducible by running the tests with MariaDB < 10.2.16. Since this is an upstream issue, I think we can just bump the version requirement to 10.2.16 or add a warning that some things may not work with MariaDB < 10.2.16.
     3~~I haven't isolated which test(s) caused the crash~~, but it's reproducible by running the tests with MariaDB < 10.2.16. Since this is an upstream issue, I think we can just bump the version requirement to 10.2.16 or add a warning that some things may not work with MariaDB < 10.2.16.
     4
     5The following tests crash the database server:
     6
     7{{{
     8model_fields.test_jsonfield.TestSaveLoad.test_json_null_different_from_sql_null
     9model_fields.test_jsonfield.TestQuerying.test_exact
     10model_fields.test_jsonfield.TestQuerying.test_exact_complex
     11model_fields.test_jsonfield.TestQuerying.test_key_transform_raw_expression
     12model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_raw_expression
     13model_fields.test_jsonfield.TestQuerying.test_isnull_key_or_none
     14model_fields.test_jsonfield.TestQuerying.test_none_key
     15model_fields.test_jsonfield.TestQuerying.test_none_key_exclude
     16model_fields.test_jsonfield.TestQuerying.test_shallow_list_lookup
     17model_fields.test_jsonfield.TestQuerying.test_shallow_obj_lookup
     18model_fields.test_jsonfield.TestQuerying.test_obj_subquery_lookup
     19model_fields.test_jsonfield.TestQuerying.test_deep_lookup_objs
     20model_fields.test_jsonfield.TestQuerying.test_shallow_lookup_obj_target
     21model_fields.test_jsonfield.TestQuerying.test_deep_lookup_array
     22model_fields.test_jsonfield.TestQuerying.test_deep_lookup_mixed
     23model_fields.test_jsonfield.TestQuerying.test_usage_in_subquery
     24model_fields.test_jsonfield.TestQuerying.test_key_escape
     25model_fields.test_jsonfield.TestQuerying.test_none_key_and_exact_lookup
     26}}}
Back to Top