Changes between Version 1 and Version 2 of Ticket #35093


Ignore:
Timestamp:
Jan 8, 2024, 6:46:03 AM (9 months ago)
Author:
Eyal Segal
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35093 – Description

    v1 v2  
    33`Model.objects.annotate(**{"VALUE_WITH_APOSTROPHE'-2": Count('attribute_name')})`
    44
    5 This generates a `ValueError: Column aliases cannot contain whitespace characters, quotation marks, semicolons, or SQL comments.` While SQL syntax allows such aliases, Django ORM does not, leading to a lack of flexibility and unexpected errors in ORM interactions.
     5This generates a `ValueError: Column aliases cannot contain whitespace characters, quotation marks, semicolons, or SQL comments.` While SQL syntax allows such value for fields, Django ORM does not, leading to a lack of flexibility and unexpected errors in ORM interactions.
    66
    77Impact:
Back to Top