Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/fast/test_relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ def test_value_relation(self, duckdb_cursor):
rel = duckdb_cursor.values((const(1), const(2), const(3)), const(4))

# Using Expressions that can't be resolved:
with pytest.raises(duckdb.BinderException, match='Referenced column "a" not found in FROM clause!'):
with pytest.raises(
duckdb.BinderException, match='Referenced column "a" was not found because the FROM clause is missing'
):
duckdb_cursor.values(duckdb.ColumnExpression("a"))

def test_insert_into_operator(self):
Expand Down
Loading