diff --git a/DBEngine.h b/DBEngine.h index f701b20..64fcef2 100755 --- a/DBEngine.h +++ b/DBEngine.h @@ -45,7 +45,7 @@ public: bool unionComp(Relation r1, Relation r2) { //Two relations are union-compatible if they have the same # of attributes and each attribute must be //from the same domain - + //return (() && ()); } diff --git a/Relation.h b/Relation.h index 64b8aa3..7a90300 100755 --- a/Relation.h +++ b/Relation.h @@ -6,7 +6,7 @@ class Relation { string name; //The title the user gives it vector att; //A vector of the columns - itn size; + int size; public: Relation(string n, vector a) {