Whole file
kayak/pypika
The author described this change as “Fix OracleQuery Dialect Quote Char”. It counts as a record because the check below fails on the code as it stood at 82d087703 and passes on a59ab3ea4, with nothing else changed between the two runs.
Projectkayak/pypika
Fix saved2020-11-04
Sharing licenceApache-2.0 · LICENSE.txt
Change size+2 −0
What the code was meant to do, written into the code itself as a save note
Fix OracleQuery Dialect Quote Char
The change
| 270 | 270 | ||
| 271 | 271 | ||
| 272 | 272 | class OracleQueryBuilder(QueryBuilder): | |
| 273 | + | QUOTE_CHAR = None | |
| 274 | + | ||
| 273 | 275 | def __init__(self, **kwargs: Any) -> None: | |
| 274 | 276 | super().__init__(dialect=Dialects.ORACLE, **kwargs) | |
| 275 | 277 |
The check that tells the two apart
fail→pass·pypika/tests/test_selects.py::SelectTests::test_oracle_query_uses_no_quote_chars
Check file pypika/tests/test_selects.py, taken without changes from the fix and copied onto the older code, so the exact same check runs against both versions.
Origin and history
The code before it82d08770301449ce3ddb8d7c1fe3357f3d3bda34
Broken version dated2020-11-03
Modulepypika.dialects
Units changedOracleQueryBuilder
Fingerprint4046d74f917b3e23
Checked2026-08-18 by goldset/0.1
Every field above is generated by our program. None of it is written by hand.
Other bugs found in kayak/pypika
- 2024-04-17fix `Field.__init__` (#742)
- 2023-09-26Fix: Allow the usage of `frozenset` in the `isin(...)` and `notin(...)` functions (#744)
- 2023-09-22fix(terms): fixed EmptyCriterion bug with ComplexCriterion (#732)
- 2021-08-26MySQLQuery
- 2021-01-11Fix empty Postgres array syntax (#539)
- 2021-01-04Fix PostgreSQLQueryBuilder returning clause code causing Py3.9 test failures