Skip to content

Commit

Permalink
change avro type map
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzhichao committed Aug 12, 2016
1 parent ff10541 commit 212f4f5
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
*/
public enum AvroPrimitiveTypes
{
INTEGER("int"),
INTEGER("long"),
INTEGER_UNSIGNED("long"),
LONG("long"),
RAW("bytes"),
FLOAT("float"),
Expand All @@ -51,8 +52,8 @@ public enum AvroPrimitiveTypes
SMALLINT_UNSIGNED("int"),
MEDIUMINT("int"),
MEDIUMINT_UNSIGNED("int"),
INT("int"),
INT_UNSIGNED("int"),
INT("long"),
INT_UNSIGNED("long"),
BIGINT("long"),
BIGINT_UNSIGNED("long");

Expand Down

0 comments on commit 212f4f5

Please sign in to comment.