sequence tests progress

This commit is contained in:
2026-03-13 16:18:41 +01:00
parent 6bdf281eab
commit 86c9e6b1cd
14 changed files with 117 additions and 33 deletions
+4
View File
@@ -163,6 +163,10 @@ utils::result<bool, utils::error> connection::exists(const std::string &table_na
return connection_->exists(dialect().default_schema_name(), table_name);
}
utils::result<bool, utils::error> connection::sequence_exists(const std::string& sequence_name) const {
return connection_->sequence_exists(sequence_name);
}
bool has_unknown_columns(const std::vector<object::attribute> &columns) {
return std::any_of(std::begin(columns), std::end(columns), [](const auto &col) {
return col.type() == utils::basic_type::Null;