You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2016/04/29 23:30:13 UTC

[2/6] thrift git commit: THRIFT-3808 Missing `DOUBLE` in thrift type enumeration Client: Go Patch: Mahendran Kathirvel

THRIFT-3808 Missing `DOUBLE` in thrift type enumeration
Client: Go
Patch: Mahendran Kathirvel <as...@gmail.com>

This closes #1001


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

Branch: refs/heads/master
Commit: 7c3eac3ee28facfea3593b4a78488d73eb6a7f4d
Parents: f5972c9
Author: Mahendran Kathirvel <as...@gmail.com>
Authored: Fri Apr 29 16:30:24 2016 +0530
Committer: Jens Geyer <je...@apache.org>
Committed: Fri Apr 29 23:29:24 2016 +0200

----------------------------------------------------------------------
 lib/go/thrift/type.go | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/7c3eac3e/lib/go/thrift/type.go
----------------------------------------------------------------------
diff --git a/lib/go/thrift/type.go b/lib/go/thrift/type.go
index 7c68c2b..867cd8d 100644
--- a/lib/go/thrift/type.go
+++ b/lib/go/thrift/type.go
@@ -48,6 +48,7 @@ var typeNames = map[int]string{
 	VOID:   "VOID",
 	BOOL:   "BOOL",
 	BYTE:   "BYTE",
+	DOUBLE: "DOUBLE",
 	I16:    "I16",
 	I32:    "I32",
 	I64:    "I64",