IceMimosa opened a new pull request #4159: URL: https://github.com/apache/carbondata/pull/4159
Sometimes we want to reuse the CarbonWriterBuilder object to build CarbonWriter with different output paths, but it does not work. For example: ```kotlin val builder = CarbonWriter.builder().withCsvInput(...).writtenBy(...) // 1. first writing with path1 val writer1 = builder.outputPath(path1).build() // write data, it works // 2. second writing with path2 val writer2 = builder.outputPath(path2).build() // write data, it does not work. It still writes data to path1 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
