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 9C9B5200BA5 for ; Wed, 5 Oct 2016 02:12:27 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9B030160ADC; Wed, 5 Oct 2016 00:12:27 +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 D8193160ACC for ; Wed, 5 Oct 2016 02:12:26 +0200 (CEST) Received: (qmail 90621 invoked by uid 500); 5 Oct 2016 00:12:21 -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 90587 invoked by uid 99); 5 Oct 2016 00:12:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Oct 2016 00:12:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id B59192C2A69 for ; Wed, 5 Oct 2016 00:12:20 +0000 (UTC) Date: Wed, 5 Oct 2016 00:12:20 +0000 (UTC) From: "Eric Lomore (JIRA)" To: dev@phoenix.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (PHOENIX-3347) Change conformance or remove SELECT statements without FROM clauses MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 05 Oct 2016 00:12:27 -0000 [ https://issues.apache.org/jira/browse/PHOENIX-3347?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15547105#comment-15547105 ] Eric Lomore edited comment on PHOENIX-3347 at 10/5/16 12:12 AM: ---------------------------------------------------------------- {code}public boolean isFromRequired() Whether FROM clause is required in a SELECT statement. True in ORACLE_10, STRICT_92, STRICT_99, STRICT_2003; false otherwise.{code} Switching to any of these 3 should work as there are no other changes except this (the fix passes 3 additional test cases as it should) DEFAULT PRAGMATIC_99 PRAGMATIC_2003 http://calcite.apache.org/apidocs/org/apache/calcite/sql/validate/SqlConformance.html [~maryannxue], with your blessing, can I proceed with a quick patch to change conformance to DEFAULT or one of the others if that's preferred? Thanks! was (Author: lomoree): {code}public boolean isFromRequired() Whether FROM clause is required in a SELECT statement. True in ORACLE_10, STRICT_92, STRICT_99, STRICT_2003; false otherwise.{code} Switching to any of these 3 should work as there are no other changes except this. DEFAULT PRAGMATIC_99 PRAGMATIC_2003 http://calcite.apache.org/apidocs/org/apache/calcite/sql/validate/SqlConformance.html [~maryannxue], with your blessing, can I proceed with a quick patch to change conformance to DEFAULT or one of the others if that's preferred? Thanks! > Change conformance or remove SELECT statements without FROM clauses > ------------------------------------------------------------------- > > Key: PHOENIX-3347 > URL: https://issues.apache.org/jira/browse/PHOENIX-3347 > Project: Phoenix > Issue Type: Sub-task > Reporter: Eric Lomore > Assignee: Eric Lomore > > Current conformance settings do not allow SELECT statements without a FROM clause. Either need to change conformance or stop supporting SELECT without FROM as Phoenix currently does. > According to the Calcite parser, > {{FROM is mandatory in standard SQL, optional in dialects such as MySQL, PostgreSQL. The parser allows SELECT without FROM, but the validator fails if conformance is, say, STRICT_2003.}} > Based on PhoenixCalciteEmbeddedDriver.java, we are using ORACLE_10 conformance which does not support this > {code}setPropertyIfNotSpecified( > info2, > CalciteConnectionProperty.CONFORMANCE.camelName(), > SqlConformance.ORACLE_10.toString()){code} > Confirming this is the fact that it is specifically the SqlValidator throwing the exception in relevant test cases > {{Caused by: org.apache.calcite.sql.validate.SqlValidatorException: SELECT must have a FROM clause}} -- This message was sent by Atlassian JIRA (v6.3.4#6332)