Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2318#discussion_r189922516
--- Diff:
store/sdk/src/test/java/org/apache/carbondata/sdk/file/CarbonReaderTest.java ---
@@ -77,6 +85,24 @@ public void testWriteAndReadFiles() throws IOException,
InterruptedException {
Assert.assertEquals(i, 100);
reader.close();
+
--- End diff --
This test case points to sequential read. One reader gets closed and second
one starts. What exactly happens when there is parallel read of two readers.
Can we have a test case for that?
---