Skip to content

Commit 49fa76a

Browse files
committed
Handle CI database errors
1 parent 59101ea commit 49fa76a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

integrations/oracle/tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def _oracle_feature_skip_reason(exc: BaseException) -> str | None:
3535
for error_code, reason in _ORACLE_FEATURE_SKIP_REASONS.items():
3636
if error_code in message:
3737
return reason
38+
if "PLS-00201" in message and "DBMS_VECTOR_CHAIN" in message:
39+
return "Oracle DBMS_VECTOR_CHAIN APIs are unavailable in this live database"
3840
return None
3941

4042

0 commit comments

Comments
 (0)