vvysotskyi commented on a change in pull request #1910: DRILL-7393: Revisit Drill tests to ensure that patching is executed b… URL: https://github.com/apache/drill/pull/1910#discussion_r352549193
########## File path: common/src/test/java/org/apache/drill/test/BaseTest.java ########## @@ -15,24 +15,25 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.drill.exec.expr; +package org.apache.drill.test; -import org.apache.drill.BaseTestQuery; -import org.apache.drill.common.util.TestTools; -import org.junit.Test; +import org.apache.drill.common.util.GuavaPatcher; +import org.apache.drill.common.util.ProtobufPatcher; -public class TestPrune extends BaseTestQuery { +public class BaseTest { - String MULTILEVEL = TestTools.getWorkingPath() + "/../java-exec/src/test/resources/multilevel"; - - @Test - public void pruneCompound() throws Exception { - test(String.format("select * from dfs.`%s/csv` where x is null and dir1 in ('Q1', 'Q2')", MULTILEVEL)); - } - - @Test - public void pruneSimple() throws Exception { - test(String.format("select * from dfs.`%s/csv` where dir1 in ('Q1', 'Q2')", MULTILEVEL)); + static { + /* + * HBase and MapR-DB clients use older version of protobuf, + * and override some methods that became final in recent versions. + * This code removes these final modifiers. Review comment: Good ideas, but I have some questions: 1. I'm not sure how to tell maven to keep a specific version to use it in the future but do not use it for other libraries. 2. When I was shading Guava for Drill usage, I considered this approach, but we have a lot of libraries with their specific versions, for example, hbase, hadoop-common, hadoop-client, hadoop-hdfs. It would be excessive to shade them all. 3. Unfortunately, even the latest versions of most libraries use obsolete guava versions (I have checked hbase). ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services