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
+18
View File
@@ -0,0 +1,18 @@
#ifndef MATADOR_TABLE_SEQUENCE_FIXTURE_HPP
#define MATADOR_TABLE_SEQUENCE_FIXTURE_HPP
#include "matador/sql/connection.hpp"
namespace matador::test {
class TableSequenceFixture {
public:
TableSequenceFixture();
~TableSequenceFixture();
protected:
sql::connection db;
std::string sequence_table_name{"test_seq_table"};
};
}
#endif //MATADOR_TABLE_SEQUENCE_FIXTURE_HPP