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 62D2F200C64 for ; Fri, 28 Apr 2017 08:26:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 617F5160BA3; Fri, 28 Apr 2017 06:26:08 +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 A930D160B8C for ; Fri, 28 Apr 2017 08:26:07 +0200 (CEST) Received: (qmail 64560 invoked by uid 500); 28 Apr 2017 06:26:06 -0000 Mailing-List: contact dev-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list dev@phoenix.apache.org Received: (qmail 64549 invoked by uid 99); 28 Apr 2017 06:26:06 -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; Fri, 28 Apr 2017 06:26:06 +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 5F6E9C0C04 for ; Fri, 28 Apr 2017 06:26:06 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] 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 mmLVM2p5GKda for ; Fri, 28 Apr 2017 06:26:05 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 0DFC45F485 for ; Fri, 28 Apr 2017 06:26:05 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 4E6ACE00C7 for ; Fri, 28 Apr 2017 06:26:04 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 08C3621DD5 for ; Fri, 28 Apr 2017 06:26:04 +0000 (UTC) Date: Fri, 28 Apr 2017 06:26:04 +0000 (UTC) From: "Ankit Singhal (JIRA)" To: dev@phoenix.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (PHOENIX-3809) CURRENT_DATE() (with parentheses) is illegal in Calcite MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 28 Apr 2017 06:26:08 -0000 [ https://issues.apache.org/jira/browse/PHOENIX-3809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15988283#comment-15988283 ] Ankit Singhal commented on PHOENIX-3809: ---------------------------------------- bq. I think having a version that allows parentheses would ease the transition from 4.x to 5.0, so supporting it would be useful. Raised pull request for the same. https://github.com/apache/calcite/pull/438 though it's not a standard SQL but CURRENT_DATE (with and without parentheses) is also allowed in Mysql, so IMO continuing supporting at our side would not be that bad. > CURRENT_DATE() (with parentheses) is illegal in Calcite > ------------------------------------------------------- > > Key: PHOENIX-3809 > URL: https://issues.apache.org/jira/browse/PHOENIX-3809 > Project: Phoenix > Issue Type: Bug > Reporter: Ankit Singhal > Assignee: Ankit Singhal > Labels: calcite > > Calcite doesn't allow system functions to be specified with parenthesis who doesn't accept arguments. > For eg:- > CURRENT_DATE() is illegal whereas CURRENT_DATE is expected. > At validation level:- SqlValidatorImpl#validateCall > {code} > if ((call.operandCount() == 0) > && (operator.getSyntax() == SqlSyntax.FUNCTION_ID) > && !call.isExpanded()) { > // For example, "LOCALTIME()" is illegal. (It should be > // "LOCALTIME", which would have been handled as a > // SqlIdentifier.) > throw handleUnresolvedFunction(call, (SqlFunction) operator, > ImmutableList.of(), null); > } > {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)