added test for table sequence

This commit is contained in:
2026-03-19 11:52:34 +01:00
parent 6423bd505b
commit 6b2db17f58
11 changed files with 137 additions and 26 deletions
+2
View File
@@ -13,6 +13,7 @@
namespace matador::query {
class table;
class column_expression;
// ReSharper disable CppNonExplicitConvertingConstructor
class table_column {
@@ -35,6 +36,7 @@ public:
table_column(const std::shared_ptr<abstract_column_expression>& expression) noexcept;
table_column(column_expression&& expression) noexcept;
table_column& operator=(const table_column& other);
table_column(const table_column& other) = default;
table_column(table_column&& other) noexcept = default;