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 DA0C2200B5B for ; Fri, 22 Jul 2016 02:50:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D9013160A91; Fri, 22 Jul 2016 00:50:37 +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 36C08160A73 for ; Fri, 22 Jul 2016 02:50:37 +0200 (CEST) Received: (qmail 99913 invoked by uid 500); 22 Jul 2016 00:50:36 -0000 Mailing-List: contact commits-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@drill.apache.org Delivered-To: mailing list commits@drill.apache.org Received: (qmail 99904 invoked by uid 99); 22 Jul 2016 00:50:36 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jul 2016 00:50:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 333C3E35E8; Fri, 22 Jul 2016 00:50:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bridgetb@apache.org To: commits@drill.apache.org Date: Fri, 22 Jul 2016 00:50:37 -0000 Message-Id: <0cddca60cd4942799719ed6853a8af78@git.apache.org> In-Reply-To: <60ffe17645c2462e9b3975c2f86a63c8@git.apache.org> References: <60ffe17645c2462e9b3975c2f86a63c8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] drill git commit: remove useless .t archived-at: Fri, 22 Jul 2016 00:50:38 -0000 remove useless .t Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/1d256e70 Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/1d256e70 Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/1d256e70 Branch: refs/heads/gh-pages Commit: 1d256e70a5320aa40e92926ef4e81d33f1346131 Parents: d0de42c Author: Bridget Bevens Authored: Thu Jul 21 17:36:26 2016 -0700 Committer: Bridget Bevens Committed: Thu Jul 21 17:36:26 2016 -0700 ---------------------------------------------------------------------- _docs/query-data/030-querying-hbase.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/1d256e70/_docs/query-data/030-querying-hbase.md ---------------------------------------------------------------------- diff --git a/_docs/query-data/030-querying-hbase.md b/_docs/query-data/030-querying-hbase.md index 525bc2d..1285ecb 100644 --- a/_docs/query-data/030-querying-hbase.md +++ b/_docs/query-data/030-querying-hbase.md @@ -1,6 +1,6 @@ --- title: "Querying HBase" -date: +date: 2016-07-22 00:36:27 UTC parent: "Query Data" --- @@ -140,7 +140,7 @@ steps: CONVERT_FROM(students.account.name, 'UTF8') AS name, CONVERT_FROM(students.address.state, 'UTF8') AS state, CONVERT_FROM(students.address.street, 'UTF8') AS street, - CONVERT_FROM(t.students.address.zipcode, 'UTF8') AS zipcode + CONVERT_FROM(students.address.zipcode, 'UTF8') AS zipcode FROM students; {% include startnote.html %}Use dot notation to drill down to a column in an HBase table: tablename.columnfamilyname.columnnname{% include endnote.html %}