From 773544da13ead426ffd8ecfd1dcc962fd013dd5e Mon Sep 17 00:00:00 2001 From: Rebecca Schofield Date: Tue, 15 Sep 2015 22:20:14 -0500 Subject: [PATCH] use THIS --- DBEngine.h | 2 +- Relation.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {