Github user JamesRTaylor commented on a diff in the pull request:

    https://github.com/apache/phoenix/pull/75#discussion_r28982359
  
    --- Diff: 
phoenix-core/src/main/java/org/apache/phoenix/schema/types/PJsonDataType.java 
---
    @@ -0,0 +1,258 @@
    +package org.apache.phoenix.schema.types;
    +
    +import java.io.IOException;
    +import java.sql.Types;
    +import java.text.Format;
    +
    +import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
    +import org.apache.hadoop.hbase.util.Bytes;
    +import org.apache.phoenix.exception.SQLExceptionCode;
    +import org.apache.phoenix.exception.SQLExceptionInfo;
    +import org.apache.phoenix.schema.IllegalDataException;
    +import org.apache.phoenix.schema.SortOrder;
    +import org.apache.phoenix.schema.json.PhoenixJson;
    +import org.apache.phoenix.util.ByteUtil;
    +import org.apache.phoenix.util.StringUtil;
    +import org.codehaus.jackson.JsonParseException;
    +
    +import com.google.common.base.Preconditions;
    +
    +/**
    + * <p>
    + * A Phoenix data type to represent JSON. The json data type stores an 
exact
    + * copy of the input text, which processing functions must reparse on each
    + * execution. Because the json type stores an exact copy of the input 
text, it
    + * will preserve semantically-insignificant white space between tokens, as 
well
    + * as the order of keys within JSON objects. Also, if a JSON object within 
the
    + * value contains the same key more than once, all the key/value pairs are 
kept.
    + * It stores the data as string in single column of HBase and it has same 
data
    + * size limit as Phoenix's Varchar.
    + * <p>
    + * JSON data types are for storing JSON (JavaScript Object Notation) data, 
as
    + * specified in RFC 7159. Such data can also be stored as text, but the 
JSON
    + * data types have the advantage of enforcing that each stored value is 
valid
    + * according to the JSON rules.
    + */
    +public class PJsonDataType extends PDataType<String> {
    +
    +   public static final PJsonDataType INSTANCE = new PJsonDataType();
    +
    +   PJsonDataType() {
    +           super("JSON", Types.OTHER, PhoenixJson.class, null, 48);
    +   }
    +
    +   @Override
    +   public int toBytes(Object object, byte[] bytes, int offset) {
    +
    +           if (object == null) {
    +                   return 0;
    +           }
    +           byte[] b = toBytes(object);
    +           System.arraycopy(b, 0, bytes, offset, b.length);
    +           return b.length;
    +
    +   }
    +
    +   @Override
    +   public byte[] toBytes(Object object) {
    +           if (object == null) {
    +                   return ByteUtil.EMPTY_BYTE_ARRAY;
    +           }
    +           PhoenixJson phoenixJson = (PhoenixJson) object;
    +           return PVarchar.INSTANCE.toBytes(phoenixJson.toString());
    +   }
    +
    +   @Override
    +   public Object toObject(byte[] bytes, int offset, int length,
    +                   @SuppressWarnings("rawtypes") PDataType actualType,
    +                   SortOrder sortOrder, Integer maxLength, Integer scale) {
    +
    +           if (!actualType.isCoercibleTo(this)) {
    +                   throwConstraintViolationException(actualType, this);
    +           }
    +           if (length == 0) {
    +                   return null;
    +           }
    +           return getPhoenixJson(bytes, offset, length);
    +
    +   }
    +
    +   @Override
    +   public Object toObject(Object object,
    +                   @SuppressWarnings("rawtypes") PDataType actualType) {
    +           if (object == null) {
    +                   return null;
    +           }
    +           if (equalsAny(actualType, PJsonDataType.INSTANCE)) {
    +                   return object;
    +           }
    +           if (equalsAny(actualType, PVarchar.INSTANCE)) {
    +                   return getJsonFromVarchar(object, actualType);
    +           }
    +           return throwConstraintViolationException(actualType, this);
    +   }
    +
    +   @Override
    +   public boolean isCoercibleTo(
    +                   @SuppressWarnings("rawtypes") PDataType targetType) {
    +           return equalsAny(targetType, this, PVarchar.INSTANCE);
    +
    +   }
    +
    +   @Override
    +   public boolean isCoercibleTo(
    +                   @SuppressWarnings("rawtypes") PDataType targetType, 
Object value) {
    +           return isCoercibleTo(targetType);
    +   }
    +
    +   @Override
    +   public boolean isSizeCompatible(ImmutableBytesWritable ptr, Object 
value,
    --- End diff --
    
    Call PVarchar.isSizeCompatible() instead.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to