Changes between Initial Version and Version 1 of Ticket #30791


Ignore:
Timestamp:
Sep 20, 2019, 10:51:23 PM (5 years ago)
Author:
Ryan Gartin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30791

    • Property Keywords postgres added
  • Ticket #30791 – Description

    initial v1  
    88**Example INCORRECT Output**:
    99`print(str(qs.query))`
    10 SELECT  ....   FROM stuff
    11 WHERE   "asdf"."end" <= 2019-09-21 02:48:43.856895+00:00
    12 AND     "asdf"."start" >= 2019-09-21 02:48:43.856895+00:00
    13 AND     "asdf"."uuid" = 854af4a2-cb2a-4b22-ae04-90f14aa86ddd
    14 AND     "asdf"."date" BETWEEN 1989-09-20 20:12:45.927138+00:00 AND 2001-09-20 18:03:09.927151+00:00
    15 AND     "asdf"."sex" IN (f)
    16 AND     "asdf"."gender" @> ['m']::VARCHAR(1)[]
     10`SELECT  ....   FROM stuff`
     11`WHERE   "asdf"."end" <= 2019-09-21 02:48:43.856895+00:00 `
     12`AND     "asdf"."start" >= 2019-09-21 02:48:43.856895+00:00 `
     13`AND     "asdf"."uuid" = 854af4a2-cb2a-4b22-ae04-90f14aa86ddd `
     14`AND     "asdf"."qwerty" BETWEEN 1989-09-20 20:12:45.927138+00:00 AND 2001-09-20 18:03:09.927151+00:00 `
     15`AND     "asdf"."gender" IN (f) `
     16`AND     "asdf"."letter" @> ['a']::VARCHAR(1)[] `
    1717
    1818
Back to Top