added timestamp code, support columns for group by and order by and tested load has-many eager code

This commit is contained in:
2026-01-08 15:14:31 +01:00
parent 0bf945cd13
commit 930b9d1aa4
34 changed files with 853 additions and 846 deletions
+1
View File
@@ -52,6 +52,7 @@ public:
[[nodiscard]] bool is_varchar() const;
[[nodiscard]] bool is_date() const;
[[nodiscard]] bool is_time() const;
[[nodiscard]] bool is_timestamp() const;
[[nodiscard]] bool is_blob() const;
[[nodiscard]] bool is_null() const;
+4 -2
View File
@@ -8,11 +8,13 @@ namespace matador::object {
template < class Type >
class collection {
public:
using value_type = Type;
using value_type = Type;
void push_back(const Type& value) { data_.push_back(value); }
[[nodiscard]] size_t size() const { return data_.size(); }
private:
std::vector<Type> data_;
};
}