You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by br...@apache.org on 2016/07/22 00:50:37 UTC

[2/3] drill git commit: remove useless .t

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 <bb...@maprtech.com>
Authored: Thu Jul 21 17:36:26 2016 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
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 %}