Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/984#discussion_r150097140
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/test/rowSet/RowSet.java ---
@@ -85,8 +85,7 @@
* new row set with the updated columns, then merge the new
* and old row sets to create a new immutable row set.
*/
-
- public interface RowSetWriter extends TupleWriter {
+ interface RowSetWriter extends TupleWriter {
--- End diff --
Ah, forgot that the file defines an interface, not a class. (The situation
I described was an interface nested inside a class.) So, you're good.
---