From dev-return-53473-archive-asf-public=cust-asf.ponee.io@phoenix.apache.org Tue Jul 31 23:22:23 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 9F216180674 for ; Tue, 31 Jul 2018 23:22:22 +0200 (CEST) Received: (qmail 24610 invoked by uid 500); 31 Jul 2018 21:22:21 -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 24287 invoked by uid 99); 31 Jul 2018 21:22:21 -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; Tue, 31 Jul 2018 21:22:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 65C12DFA57; Tue, 31 Jul 2018 21:22:20 +0000 (UTC) From: twdsilva To: dev@phoenix.apache.org Reply-To: dev@phoenix.apache.org References: In-Reply-To: Subject: [GitHub] phoenix pull request #313: PHOENIX-4799 Write cells using checkAndMutate to ... Content-Type: text/plain Message-Id: <20180731212220.65C12DFA57@git1-us-west.apache.org> Date: Tue, 31 Jul 2018 21:22:20 +0000 (UTC) Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/313#discussion_r206687568 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java --- @@ -1913,6 +1940,21 @@ private PTable createTableInternal(CreateTableStatement statement, byte[][] spli boolean isLocalIndex = indexType == IndexType.LOCAL; QualifierEncodingScheme encodingScheme = NON_ENCODED_QUALIFIERS; ImmutableStorageScheme immutableStorageScheme = ONE_CELL_PER_COLUMN; + + if (tableType == PTableType.VIEW) { --- End diff -- Done ---