We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63963b0 commit b1ed951Copy full SHA for b1ed951
tests/test_flags.py
@@ -384,15 +384,15 @@ def test_joins(self):
384
if (
385
IGNORE_ORA_00932
386
and connection.vendor == "oracle"
387
- and "ORA-00932" in str(err)
+ and ("ORA-00932" in str(err) or "ORA-22848" in str(err))
388
):
389
# this is an oracle bug - intermittent failure on
390
# perfectly fine date format in SQL
391
# TODO - remove when fixed
392
# pytest.skip("Oracle bug ORA-00932 encountered - skipping")
393
not_working.append(field.name)
394
# continue
395
- pytest.skip("Oracle bug ORA-00932 encountered - skipping")
+ pytest.skip(f"Oracle bug {err} encountered - skipping")
396
raise
397
398
working.append(field.name)
0 commit comments