From de0424830b9b4460fa7c156700e300ff144fde94 Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 7 Apr 2026 12:07:33 +0200 Subject: [PATCH] fix: correct typo in UDA type error message (missing quote) --- src/columns/Column.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/columns/Column.cpp b/src/columns/Column.cpp index 131b48da4..bb5e8b5ab 100644 --- a/src/columns/Column.cpp +++ b/src/columns/Column.cpp @@ -253,7 +253,7 @@ Column* Column::uda(const std::string& name) { return c; } else if (type != "") throw std::string( - "User defined attributes may only be of type 'string', 'uuid', date', 'duration' or " + "User defined attributes may only be of type 'string', 'uuid', 'date', 'duration' or " "'numeric'."); return nullptr;