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 5F834200BEA for ; Tue, 27 Dec 2016 09:40:05 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5E2B5160B31; Tue, 27 Dec 2016 08:40:05 +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 A82A2160B23 for ; Tue, 27 Dec 2016 09:40:04 +0100 (CET) Received: (qmail 59011 invoked by uid 500); 27 Dec 2016 08:39:58 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 58957 invoked by uid 99); 27 Dec 2016 08:39:58 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Dec 2016 08:39:58 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 9D9C02C03DE for ; Tue, 27 Dec 2016 08:39:58 +0000 (UTC) Date: Tue, 27 Dec 2016 08:39:58 +0000 (UTC) From: "Khurram Faraaz (JIRA)" To: dev@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DRILL-5165) wrong results - LIMIT ALL and OFFSET clause in same query MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 27 Dec 2016 08:40:05 -0000 Khurram Faraaz created DRILL-5165: ------------------------------------- Summary: wrong results - LIMIT ALL and OFFSET clause in same query Key: DRILL-5165 URL: https://issues.apache.org/jira/browse/DRILL-5165 Project: Apache Drill Issue Type: Bug Components: Query Planning & Optimization Affects Versions: 1.10.0 Reporter: Khurram Faraaz Priority: Critical This issue was reported by a user on Drill's user list. Drill 1.10.0 commit ID : bbcf4b76 I tried a similar query on apache Drill 1.10.0 and Drill returns wrong results when compared to Postgres, for a query that uses LIMIT ALL and OFFSET clause in the same query. We need to file a JIRA to track this issue. {noformat} 0: jdbc:drill:schema=dfs.tmp> select col_int from typeall_l order by 1 limit all offset 10; +----------+ | col_int | +----------+ +----------+ No rows selected (0.211 seconds) 0: jdbc:drill:schema=dfs.tmp> select col_int from typeall_l order by col_int limit all offset 10; +----------+ | col_int | +----------+ +----------+ No rows selected (0.24 seconds) {noformat} Query => select col_int from typeall_l limit all offset 10; Drill 1.10.0 returns 85 rows whereas for same query, postgres=# select col_int from typeall_l limit all offset 10; Postgres 9.3 returns 95 rows, which is the correct expected result. Query plan for above query that returns wrong results {noformat} 0: jdbc:drill:schema=dfs.tmp> explain plan for select col_int from typeall_l limit all offset 10; +------+------+ | text | json | +------+------+ | 00-00 Screen 00-01 Project(col_int=[$0]) 00-02 SelectionVectorRemover 00-03 Limit(offset=[10]) 00-04 Scan(groupscan=[ParquetGroupScan [entries=[ReadEntryWithPath [path=maprfs:///tmp/typeall_l]], selectionRoot=maprfs:/tmp/typeall_l, numFiles=1, usedMetadataFile=false, columns=[`col_int`]]]) {noformat} -- This message was sent by Atlassian JIRA (v6.3.4#6332)