Return-Path: X-Original-To: apmail-accumulo-notifications-archive@minotaur.apache.org Delivered-To: apmail-accumulo-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1105D106DE for ; Sat, 9 May 2015 23:43:00 +0000 (UTC) Received: (qmail 13336 invoked by uid 500); 9 May 2015 23:42:59 -0000 Delivered-To: apmail-accumulo-notifications-archive@accumulo.apache.org Received: (qmail 13294 invoked by uid 500); 9 May 2015 23:42:59 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 13277 invoked by uid 99); 9 May 2015 23:42:59 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 May 2015 23:42:59 +0000 Date: Sat, 9 May 2015 23:42:59 +0000 (UTC) From: "Russ Weeks (JIRA)" To: notifications@accumulo.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (ACCUMULO-3789) Code compiled against 1.6 lexicoders can't run in 1.7 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Russ Weeks created ACCUMULO-3789: ------------------------------------ Summary: Code compiled against 1.6 lexicoders can't run in 1.7 Key: ACCUMULO-3789 URL: https://issues.apache.org/jira/browse/ACCUMULO-3789 Project: Accumulo Issue Type: Bug Affects Versions: 1.7.0 Environment: Development environment Reporter: Russ Weeks Fix For: 1.7.0 Code which was built against the 1.6 Lexicoders will fail with a NoSuchMethod error when run against the 1.7 jars. Test case is attached. Sorry it depends on Gradle, the build file is pretty trivial. ===Steps to reproduce=== * Deploy accumulo 1.7.0-SNAPSHOT jars to local maven repository, I did {{mvn -DskipTests -Dfindbugs.skip=true install}} * Unzip attached file, run {{gradle clean test}} ===Expected Result=== * All unit tests pass ===Actual Result=== * The unit test "TestLexicoderCompatibility" fails with the error: {{java.lang.NoSuchMethodError: org.apache.accumulo.core.client.lexicoder.LongLexicoder.decode([B)Ljava/lang/Long; at lexicoder.TestLexicoderCompatibility.testLexicoderBackwardsCompatibility(TestLexicoderCompatibility.java:20) [snip] }} * Switching the {{testRuntime}} dependency to 1.6.1 instead of 1.7.0-SNAPSHOT will cause the test to pass. -- This message was sent by Atlassian JIRA (v6.3.4#6332)