Repository: incubator-hawq
Updated Branches:
  refs/heads/master db4350370 -> 3a9978906


HAWQ-1398. Fixing invalid references in log statements.

This fix the compile error due to the previous patch for this JIRA.


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

Branch: refs/heads/master
Commit: 3a99789067358597abaf0516b6e4b0aaebefcfec
Parents: db43503
Author: Paul Guo <paul...@gmail.com>
Authored: Fri May 19 16:51:37 2017 +0800
Committer: Paul Guo <paul...@gmail.com>
Committed: Fri May 19 16:51:37 2017 +0800

----------------------------------------------------------------------
 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/3a997890/src/bin/gpfilesystem/hdfs/gpfshdfs.c
----------------------------------------------------------------------
diff --git a/src/bin/gpfilesystem/hdfs/gpfshdfs.c 
b/src/bin/gpfilesystem/hdfs/gpfshdfs.c
index d07b732..60f947f 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);

Reply via email to