The queries SELECT * FROM t, s WHERE a = c; and SELECT * FROM t INNER JOIN s ON a = c; now run as expected. Didn't have time to try conjunctions of multiple attributes, but if the optimizer output matches expectations then they should work. 🤞
And sorry about all the old commits. I merged from storage-rework since we'll be merging it to master soon.
Resolves #17
The queries
SELECT * FROM t, s WHERE a = c;
andSELECT * FROM t INNER JOIN s ON a = c;
now run as expected. Didn't have time to try conjunctions of multiple attributes, but if the optimizer output matches expectations then they should work. 🤞And sorry about all the old commits. I merged from
storage-rework
since we'll be merging it tomaster
soon.