added join_column_index and inverse_join_column_index to object and table classes

This commit is contained in:
2026-06-01 06:57:38 +02:00
parent bd06034ebf
commit cea7b97f2b
16 changed files with 164 additions and 75 deletions
+4
View File
@@ -32,6 +32,10 @@ std::string attribute::full_name() const {
return owner ? owner->name() + "." + name_ : name_;
}
size_t attribute::index() const {
return index_;
}
const utils::field_attributes &attribute::attributes() const {
return options_;
}