PHOENIX-3136 Do not relocate org.apache.calcite in queryserver/thin-client Relocation of these classes breaks compatibility with previous versions of Phoenix.
Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/6dd6343c Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/6dd6343c Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/6dd6343c Branch: refs/heads/4.8-HBase-0.98 Commit: 6dd6343caaa19861c59b6d54f669c2335acd4f68 Parents: 38c5511 Author: Josh Elser <els...@apache.org> Authored: Tue Aug 2 11:51:37 2016 -0400 Committer: Josh Elser <els...@apache.org> Committed: Tue Aug 2 19:21:22 2016 -0400 ---------------------------------------------------------------------- phoenix-queryserver-client/pom.xml | 7 +++---- phoenix-queryserver/pom.xml | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/6dd6343c/phoenix-queryserver-client/pom.xml ---------------------------------------------------------------------- diff --git a/phoenix-queryserver-client/pom.xml b/phoenix-queryserver-client/pom.xml index 40915e9..be4e770 100644 --- a/phoenix-queryserver-client/pom.xml +++ b/phoenix-queryserver-client/pom.xml @@ -113,10 +113,9 @@ <shadedPattern>${shaded.package}.com.fasterxml</shadedPattern> </relocation> <!-- ORG relocation --> - <relocation> - <pattern>org.apache.calcite</pattern> - <shadedPattern>${shaded.package}.org.apache.calcite</shadedPattern> - </relocation> + <!-- Calcite/Avatica is not relocated because the wire API (as of <=1.8.0) expects + consistent class names on client and server. Relocating these would break + backwards compatibility. --> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>${shaded.package}.org.apache.commons</shadedPattern> http://git-wip-us.apache.org/repos/asf/phoenix/blob/6dd6343c/phoenix-queryserver/pom.xml ---------------------------------------------------------------------- diff --git a/phoenix-queryserver/pom.xml b/phoenix-queryserver/pom.xml index 25fcdac..92e7169 100644 --- a/phoenix-queryserver/pom.xml +++ b/phoenix-queryserver/pom.xml @@ -105,10 +105,9 @@ <pattern>org.eclipse.jetty</pattern> <shadedPattern>${shaded.package}.org.eclipse.jetty</shadedPattern> </relocation> - <relocation> - <pattern>org.apache.calcite</pattern> - <shadedPattern>${shaded.package}.org.apache.calcite</shadedPattern> - </relocation> + <!-- Calcite/Avatica is not relocated because the wire API (as of <=1.8.0) expects + consistent class names on client and server. Relocating these would break + backwards compatibility. --> </relocations> </configuration> </execution>