You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by kd...@apache.org on 2017/05/18 22:41:27 UTC

[4/6] incubator-hawq git commit: Fix syntax error

Fix syntax error


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

Branch: refs/heads/master
Commit: 50c0945e1af96a4532773120b356a47aedb88422
Parents: 61a9402
Author: Kyle Dunn <kd...@gmail.com>
Authored: Mon May 1 12:32:10 2017 -0600
Committer: Kyle Dunn <kd...@gmail.com>
Committed: Mon May 1 12:32:10 2017 -0600

----------------------------------------------------------------------
 src/bin/gpfilesystem/hdfs/gpfshdfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/50c0945e/src/bin/gpfilesystem/hdfs/gpfshdfs.c
----------------------------------------------------------------------
diff --git a/src/bin/gpfilesystem/hdfs/gpfshdfs.c b/src/bin/gpfilesystem/hdfs/gpfshdfs.c
index 90ef4e7..d07b732 100644
--- a/src/bin/gpfilesystem/hdfs/gpfshdfs.c
+++ b/src/bin/gpfilesystem/hdfs/gpfshdfs.c
@@ -114,7 +114,7 @@ gpfs_hdfs_connect(PG_FUNCTION_ARGS)
 	ccname = FSYS_UDF_GET_CCNAME(fcinfo);
 
 	if (NULL == host) {
-		elog(WARNING, "get host invalid in %s __func__);
+		elog(WARNING, "get host invalid in %s" __func__);
 		retval = -1;
 		errno = EINVAL;
 		PG_RETURN_INT32(retval);