Replies: 5 comments
-
in TableGenerator::GenerateTestTables(), colC in table "test_7" is indeed between 0 and 9. |
Beta Was this translation helpful? Give feedback.
-
I got the same problem today, The output is excatly from 1 to 99. |
Beta Was this translation helpful? Give feedback.
-
your SeqScanExecutor works not correctly, you should think about how to utilize the output schema of the SeqScanPlan to get |
Beta Was this translation helpful? Give feedback.
-
Thank you soooo much bro, it may save me a lot of time, I'm now full scored. |
Beta Was this translation helpful? Give feedback.
-
I got the the same problem,and I found it is because I use the output schema to cut the tuple in SeqScan,actually I should use the table schema. |
Beta Was this translation helpful? Give feedback.
-
From the test of project and autograde, I find duplicated distinct test is failed.
But when I use local test(executor_test).
The assertion failed and show:
Expected equality of these values:
result_set.size()
Which is: 100
10
But I print data to screen, and see data is not duplicated from 1 to 99.
like :
| Col C = 1 |
| Col C = 2 |
| Col C = 3 |
| Col C = 4 |
......
| Col C = 97 |
| Col C = 98 |
| Col C = 99 |
So I wonder if this unit test is not OK . Hope your sendback, thank you.
Beta Was this translation helpful? Give feedback.
All reactions