fixed object generation on nested objects

This commit is contained in:
Sascha Kühl
2025-12-11 15:41:45 +01:00
parent 571cfd52ae
commit 79c46bbd38
8 changed files with 97 additions and 34 deletions
+3
View File
@@ -40,6 +40,9 @@ const std::string& restriction::ref_column_name() const {
std::ostream & operator<<(std::ostream &os, const class restriction &c) {
os << "constraint " << c.type_string() << " for column " << c.column_name();
if (c.is_foreign_key_constraint()) {
os << " references " << c.ref_table_name() << "." << c.ref_column_name();
}
return os;
}