Github user JamesRTaylor commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/303#discussion_r200206428
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
---
@@ -1488,20 +1904,19 @@ public void createTable(RpcController controller,
CreateTableRequest request,
if (tableType == PTableType.VIEW) {
byte[][] parentSchemaTableNames = new byte[3][];
byte[][] parentPhysicalSchemaTableNames = new byte[3][];
- /*
- * For a view, we lock the base physical table row. For a
mapped view, there is
- * no link present to the physical table. So the
viewPhysicalTableRow is null
- * in that case.
- */
+ /*
+ * For a mapped view, there is no link present
to the physical table. So the
+ * viewPhysicalTableRow is null in that case.
+ */
--- End diff --
Fix indentation
---