We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eedb979 commit b4ec27fCopy full SHA for b4ec27f
tests/test_error_handling.py
@@ -17,4 +17,7 @@ def test_statement_with_error_trace(cratedb_service):
17
assert ex.match(
18
re.escape('InvalidColumnNameException["_id" conflicts with system column pattern]')
19
)
20
- assert ex.match('InvalidColumnNameException: "_id" conflicts with system column pattern')
+ assert ex.match(
21
+ "io.crate.exceptions.InvalidColumnNameException: "
22
+ '"_id" conflicts with system column pattern'
23
+ )
0 commit comments