Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DA366200D27 for ; Wed, 25 Oct 2017 19:26:01 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D898A160BDA; Wed, 25 Oct 2017 17:26:01 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 22B531609CE for ; Wed, 25 Oct 2017 19:26:00 +0200 (CEST) Received: (qmail 23724 invoked by uid 500); 25 Oct 2017 17:26:00 -0000 Mailing-List: contact dev-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list dev@phoenix.apache.org Received: (qmail 23713 invoked by uid 99); 25 Oct 2017 17:25:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Oct 2017 17:25:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CBA06DFA3C; Wed, 25 Oct 2017 17:25:59 +0000 (UTC) From: karanmehta93 To: dev@phoenix.apache.org Reply-To: dev@phoenix.apache.org References: In-Reply-To: Subject: [GitHub] phoenix pull request #277: PHOENIX-3757 System mutex table not being created... Content-Type: text/plain Message-Id: <20171025172559.CBA06DFA3C@git1-us-west.apache.org> Date: Wed, 25 Oct 2017 17:25:59 +0000 (UTC) archived-at: Wed, 25 Oct 2017 17:26:02 -0000 Github user karanmehta93 commented on a diff in the pull request: https://github.com/apache/phoenix/pull/277#discussion_r146928345 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java --- @@ -2514,7 +2529,7 @@ private void createSysMutexTable(HBaseAdmin admin) throws IOException, SQLExcept return Lists.newArrayList(admin.listTableNames(QueryConstants.SYSTEM_SCHEMA_NAME + "\\..*")); } - private void createOtherSystemTables(PhoenixConnection metaConnection) throws SQLException { + private void createOtherSystemTables(PhoenixConnection metaConnection, HBaseAdmin hBaseAdmin) throws SQLException { --- End diff -- Will do. ---