We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eedb979 commit aa3376cCopy full SHA for aa3376c
1 file changed
tests/test_error_handling.py
@@ -14,7 +14,7 @@ def test_statement_with_error_trace(cratedb_service):
14
connection.execute(sa.text("CREATE TABLE foo AS SELECT 1 AS _id"))
15
16
# Make sure both variants match, to validate it's actually an error trace.
17
+ assert ex.match(re.escape('InvalidColumnNameException["_id" conflicts with system column]'))
18
assert ex.match(
- re.escape('InvalidColumnNameException["_id" conflicts with system column pattern]')
19
+ 'io.crate.exceptions.InvalidColumnNameException: "_id" conflicts with system column'
20
)
- assert ex.match('InvalidColumnNameException: "_id" conflicts with system column pattern')
0 commit comments