You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by hu...@apache.org on 2016/01/22 06:56:23 UTC

incubator-hawq git commit: HAWQ-216. Fix bug for built-in function gp_update_global_sequence_entry

Repository: incubator-hawq
Updated Branches:
  refs/heads/master 08783b226 -> 0fd03f2d3


HAWQ-216. Fix bug for built-in function gp_update_global_sequence_entry


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/0fd03f2d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/0fd03f2d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/0fd03f2d

Branch: refs/heads/master
Commit: 0fd03f2d3a1f758ed79e23cb66a974f0a8906c17
Parents: 08783b2
Author: doli <do...@pivotal.io>
Authored: Thu Jan 21 17:17:19 2016 +0800
Committer: Ruilong Huo <rh...@pivotal.io>
Committed: Fri Jan 22 13:55:48 2016 +0800

----------------------------------------------------------------------
 src/backend/utils/gp/persistentutil.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/0fd03f2d/src/backend/utils/gp/persistentutil.c
----------------------------------------------------------------------
diff --git a/src/backend/utils/gp/persistentutil.c b/src/backend/utils/gp/persistentutil.c
index d373b01..7acb5ad 100644
--- a/src/backend/utils/gp/persistentutil.c
+++ b/src/backend/utils/gp/persistentutil.c
@@ -212,7 +212,7 @@ Datum
 gp_update_global_sequence_entry(PG_FUNCTION_ARGS)
 {
 	ItemPointer			tid;
-	int8				sequenceVal;
+	int64				sequenceVal;
 	GpGlobalSequence    sequence;
 
 	/* Must be super user */