Repository: phoenix Updated Branches: refs/heads/4.x-cdh5.11.2 bd554b437 -> d43f0a523
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/d43f0a52 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/d43f0a52 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/d43f0a52 Branch: refs/heads/4.x-cdh5.11.2 Commit: d43f0a523ffbf33aabb9934fdc53a5e5b671c351 Parents: bd554b4 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:31:20 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/d43f0a52/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 d05ab79..c806f76 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);
