Changes between Version 1 and Version 2 of Ticket #30911


Ignore:
Timestamp:
Oct 25, 2019, 1:02:32 PM (5 years ago)
Author:
Christopher Sardegna
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30911 – Description

    v1 v2  
    4949- Changing _any_ query parameters will make them successful (e.x., adjust a date by one day, even if no rows occur on that day)
    5050- Removing _any_ parameters will make it work as well, even if those conditions are never hit in the data (e.x., removing nulls when there are no rows with null data)
    51 - Adding a `LIMIT`, even if it is larger than the data returned, will make it work (e.x. `LIMIT 99999999999999` for an 8,527 row query)
     51- Adding a `LIMIT`, even if it is larger than the data returned, will make it work (e.x. `[:99999999999999]` generating `LIMIT 99999999999999` for an 8,527 row query)
    5252- Only two `prov_id` items have this issue, not all of them
    5353- Combining a broken `prov_id` with a `prov_id` that has no rows (one not in the db) works
Back to Top