From d4b25f489b88df82e937a160c937b45f5a2b7dc9 Mon Sep 17 00:00:00 2001 From: Denis Hirn Date: Thu, 11 Jul 2024 10:39:33 +0200 Subject: [PATCH] Fix typo --- src/planner/binder/tableref/bind_basetableref.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/planner/binder/tableref/bind_basetableref.cpp b/src/planner/binder/tableref/bind_basetableref.cpp index 2f7b09866c00..db96004f3bf4 100644 --- a/src/planner/binder/tableref/bind_basetableref.cpp +++ b/src/planner/binder/tableref/bind_basetableref.cpp @@ -134,7 +134,7 @@ unique_ptr Binder::Bind(BaseTableRef &ref) { // something is wrong. if (cte.materialized == CTEMaterialize::CTE_MATERIALIZE_ALWAYS) { throw BinderException( - "There is a WITH item named \"%s\", but it cannot be references from this part of the query.", + "There is a WITH item named \"%s\", but it cannot be referenced from this part of the query.", ref.table_name); }