Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C2CAC200CB3 for ; Fri, 19 May 2017 00:41:29 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C167C160BC4; Thu, 18 May 2017 22:41:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E9595160BD0 for ; Fri, 19 May 2017 00:41:28 +0200 (CEST) Received: (qmail 67414 invoked by uid 500); 18 May 2017 22:41:28 -0000 Mailing-List: contact commits-help@hawq.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hawq.incubator.apache.org Delivered-To: mailing list commits@hawq.incubator.apache.org Received: (qmail 67342 invoked by uid 99); 18 May 2017 22:41:27 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2017 22:41:27 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id D7870C0145 for ; Thu, 18 May 2017 22:41:26 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.222 X-Spam-Level: X-Spam-Status: No, score=-4.222 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id JQN1KTX9-NkX for ; Thu, 18 May 2017 22:41:26 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 24D8A5F5A2 for ; Thu, 18 May 2017 22:41:24 +0000 (UTC) Received: (qmail 67179 invoked by uid 99); 18 May 2017 22:41:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2017 22:41:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3C2D5DFB01; Thu, 18 May 2017 22:41:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kdunn@apache.org To: commits@hawq.incubator.apache.org Date: Thu, 18 May 2017 22:41:27 -0000 Message-Id: <8c0bf544293043269d5f348c3efbadfd@git.apache.org> In-Reply-To: <75c0c0f236574deebd9a0dc5c0ba9166@git.apache.org> References: <75c0c0f236574deebd9a0dc5c0ba9166@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/6] incubator-hawq git commit: Fix syntax error archived-at: Thu, 18 May 2017 22:41:30 -0000 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 Authored: Mon May 1 12:32:10 2017 -0600 Committer: Kyle Dunn 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);