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 67b9900 commit 3f3a794Copy full SHA for 3f3a794
tests/fast/test_relation.py
@@ -283,7 +283,10 @@ def test_value_relation(self, duckdb_cursor):
283
# Accept both historical and current Binder error message variants
284
with pytest.raises(
285
duckdb.BinderException,
286
- match=r'Referenced column "a" not found in FROM clause!|Referenced column "a" was not found because the FROM clause is missing',
+ match=(
287
+ r'Referenced column "a" not found in FROM clause!|'
288
+ r'Referenced column "a" was not found because the FROM clause is missing'
289
+ ),
290
):
291
duckdb_cursor.values(duckdb.ColumnExpression("a"))
292
0 commit comments