Return-Path: X-Original-To: apmail-phoenix-dev-archive@minotaur.apache.org Delivered-To: apmail-phoenix-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CCF3819203 for ; Tue, 5 Apr 2016 00:08:28 +0000 (UTC) Received: (qmail 2333 invoked by uid 500); 5 Apr 2016 00:08:28 -0000 Delivered-To: apmail-phoenix-dev-archive@phoenix.apache.org Received: (qmail 2273 invoked by uid 500); 5 Apr 2016 00:08:28 -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 2262 invoked by uid 99); 5 Apr 2016 00:08:28 -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; Tue, 05 Apr 2016 00:08:28 +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 242ABC0222 for ; Tue, 5 Apr 2016 00:08:28 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.021 X-Spam-Level: X-Spam-Status: No, score=-4.021 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id gNfR6YYhpKVh for ; Tue, 5 Apr 2016 00:08:27 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id D0AF95FAF4 for ; Tue, 5 Apr 2016 00:08:26 +0000 (UTC) Received: (qmail 1457 invoked by uid 99); 5 Apr 2016 00:08:25 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Apr 2016 00:08:25 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 831B92C14E1 for ; Tue, 5 Apr 2016 00:08:25 +0000 (UTC) Date: Tue, 5 Apr 2016 00:08:25 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@phoenix.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (PHOENIX-2722) support mysql "limit,offset" clauses MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/PHOENIX-2722?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D15= 225343#comment-15225343 ]=20 ASF GitHub Bot commented on PHOENIX-2722: ----------------------------------------- Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/154#discussion_r58469617 =20 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/query/QueryCons= tants.java --- @@ -138,6 +138,9 @@ public final static String SYSTEM_SCHEMA_NAME =3D "SYSTEM"; public final static byte[] SYSTEM_SCHEMA_NAME_BYTES =3D Bytes.toBy= tes(SYSTEM_SCHEMA_NAME); public final static String PHOENIX_METADATA =3D "table"; + public final static String OFFSET =3D "offset"; + public final static byte[] offsetRowKeyBytes =3D "_OFFSET_".getByt= es(); --- End diff -- =20 Nit: use Bytes.toBytes(OFFSET) instead. Also, did you want it to be "_O= FFSET_" for the OFFSET constant? > support mysql "limit,offset" clauses=20 > ------------------------------------- > > Key: PHOENIX-2722 > URL: https://issues.apache.org/jira/browse/PHOENIX-2722 > Project: Phoenix > Issue Type: New Feature > Reporter: Ankit Singhal > Assignee: Ankit Singhal > Priority: Minor > Attachments: PHOENIX-2722.patch, PHOENIX-2722_formatted.patch > > > For serial query(query with =E2=80=9Cserial" hint or =E2=80=9Climit" wit= hout "order by=E2=80=9D), we can limit each scan(using page filter) to =E2= =80=9Climit+offset=E2=80=9D instead of limit earlier. > And then, for all queries, we can forward the relevant client iterators t= o the offset provided and then return the result. > syntax > {code} > [ LIMIT { count } ] > [ OFFSET start [ ROW | ROWS ] ] > [ FETCH { FIRST | NEXT } [ count ] { ROW | ROWS } ONLY ] > {code} > Some new keywords(OFFSET,FETCH,ROW, ROWS,ONLY) are getting introduced so = users might need to see that they are not using them as column name or some= thing. > WDYT, [~jamestaylor] -- This message was sent by Atlassian JIRA (v6.3.4#6332)