Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.1 b8f43669d -> a848b5457


PHOENIX-4473 Exception when Adding new columns to base table and view diverge 
(Ankit Singhal)


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/a848b545
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/a848b545
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/a848b545

Branch: refs/heads/4.x-HBase-1.1
Commit: a848b5457246ee6f478de9ec55ac2e773b68f0e9
Parents: b8f4366
Author: Thomas D'Silva <[email protected]>
Authored: Thu Dec 28 11:22:26 2017 -0800
Committer: Thomas D'Silva <[email protected]>
Committed: Thu Dec 28 11:30:48 2017 -0800

----------------------------------------------------------------------
 .../java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/a848b545/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
----------------------------------------------------------------------
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
index 5c16e5b..beac6c4 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
@@ -2932,7 +2932,7 @@ public class MetaDataEndpointImpl extends 
MetaDataProtocol implements Coprocesso
                         PhoenixDatabaseMetaData.ORDINAL_POSITION_BYTES, 
ordinalPositionBytes);
             
             // New PK columns have to be nullable after the first DDL
-            byte[] isNullableBytes = PBoolean.INSTANCE.toBytes(true);
+            byte[] isNullableBytes = 
PBoolean.INSTANCE.toBytes(ResultSetMetaData.columnNullable);
             
indexColumnDefinitionPut.add(PhoenixDatabaseMetaData.TABLE_FAMILY_BYTES,
                         PhoenixDatabaseMetaData.NULLABLE_BYTES, 
isNullableBytes);
             

Reply via email to