Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2964#discussion_r237548880
--- Diff:
store/sdk/src/test/java/org/apache/carbondata/sdk/file/CarbonReaderTest.java ---
@@ -575,7 +575,7 @@ public void testReadColumnTwice() throws IOException,
InterruptedException {
CarbonReader reader = CarbonReader
.builder(path, "_temp")
- .projection(new String[]{"name", "name", "age", "name"})
+ .projection(new String[]{"name", "age", "age", "name"})
--- End diff --
@qiuchenjian : NO, age is an int column (measure), check schema in writer
buildler.
No need of new test case, now this test case handle testing duplicate
measures and dimensions.
---