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
---