Return-Path: X-Original-To: apmail-asterixdb-notifications-archive@minotaur.apache.org Delivered-To: apmail-asterixdb-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 23802187C0 for ; Sun, 13 Mar 2016 07:16:42 +0000 (UTC) Received: (qmail 99194 invoked by uid 500); 13 Mar 2016 07:16:42 -0000 Delivered-To: apmail-asterixdb-notifications-archive@asterixdb.apache.org Received: (qmail 99162 invoked by uid 500); 13 Mar 2016 07:16:42 -0000 Mailing-List: contact notifications-help@asterixdb.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@asterixdb.incubator.apache.org Delivered-To: mailing list notifications@asterixdb.incubator.apache.org Received: (qmail 99152 invoked by uid 99); 13 Mar 2016 07:16:42 -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; Sun, 13 Mar 2016 07:16:42 +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 9A555C059B for ; Sun, 13 Mar 2016 07:16:41 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.549 X-Spam-Level: X-Spam-Status: No, score=-3.549 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, 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.329] 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 P_2duOuvcNg4 for ; Sun, 13 Mar 2016 07:16:40 +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 0508C5F2F2 for ; Sun, 13 Mar 2016 07:16:39 +0000 (UTC) Received: (qmail 99149 invoked by uid 99); 13 Mar 2016 07:16:39 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 Mar 2016 07:16:39 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 6F24B2C0AFA for ; Sun, 13 Mar 2016 07:16:33 +0000 (UTC) Date: Sun, 13 Mar 2016 07:16:33 +0000 (UTC) From: "Yingyi Bu (JIRA)" To: notifications@asterixdb.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (ASTERIXDB-1128) Need to add TPCH queries With Secondary Indices to our build tests MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/ASTERIXDB-1128?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yingyi Bu resolved ASTERIXDB-1128. ---------------------------------- Resolution: Fixed > Need to add TPCH queries With Secondary Indices to our build tests > ------------------------------------------------------------------ > > Key: ASTERIXDB-1128 > URL: https://issues.apache.org/jira/browse/ASTERIXDB-1128 > Project: Apache AsterixDB > Issue Type: Test > Components: Test Framework > Reporter: Pouria > Assignee: Yingyi Bu > > TPCH queries has been part of our tests for a while, but on a schema with no secondary index. > As the TPCH benchmark description lets users use secondary indices, we have recently switched to running these queries with secondary indices. This has revealed some issues (such as issue ASTERIXDB-1127); hence it makes sense to add running these queries both with and without secondary indices in our (build) tests. > Here is the set of secondary indices for the TPCH schema: > create index customer_fk_nation on Customer (c_nationkey); > create index lineitem_shipdateIx on LineItem (l_shipdate); > create index lineitem_receiptdateIx on LineItem (l_receiptdate); > create index lineitem_fk_orders on LineItem (l_orderkey); > create index lineitem_fk_part on LineItem (l_partkey); > create index lineitem_fk_supplier on LineItem (l_suppkey); > create index nation_fk_region on Nation(n_regionkey); > create index partsupp_fk_part on Partsupp (ps_partkey); > create index partsupp_fk_supplier on Partsupp (ps_suppkey); > create index orders_fk_customer on Orders (o_custkey); > create index orders_orderdateIx on Orders (o_orderdate); > create index supplier_fk_nation on Supplier (s_nationkey); -- This message was sent by Atlassian JIRA (v6.3.4#6332)