added more tests

This commit is contained in:
Sascha Kühl
2025-02-06 16:17:47 +01:00
parent c76aa56440
commit 0b70f5d4ee
68 changed files with 2117 additions and 263 deletions
+3 -3
View File
@@ -10,7 +10,7 @@ struct types
{
enum { CSTR_LEN=255 };
unsigned long id_ = 0;
unsigned int id_ = 0;
char char_ = 'c';
short short_ = -127;
int int_ = -65000;
@@ -27,8 +27,8 @@ struct types
char cstr_[CSTR_LEN]{};
std::string string_ = "Welt";
std::string varchar_ = "Erde";
matador::date date_;
matador::time time_;
// matador::date date_;
// matador::time time_;
utils::blob binary_{ 1, 2, 3, 4 };
template < class Operator >