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:36 UTC

[1/3] drill git commit: fix link for CTAS statement in SQL commands page

Repository: drill
Updated Branches:
  refs/heads/gh-pages 9754b79d9 -> 0602842d4


fix link for CTAS statement in SQL commands page


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/d0de42c8
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/d0de42c8
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/d0de42c8

Branch: refs/heads/gh-pages
Commit: d0de42c8e782997027be4c3e3cccdbd4155c7007
Parents: 9754b79
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Thu Jul 21 17:26:57 2016 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Thu Jul 21 17:26:57 2016 -0700

----------------------------------------------------------------------
 _docs/sql-reference/sql-commands/005-supported-sql-commands.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/d0de42c8/_docs/sql-reference/sql-commands/005-supported-sql-commands.md
----------------------------------------------------------------------
diff --git a/_docs/sql-reference/sql-commands/005-supported-sql-commands.md b/_docs/sql-reference/sql-commands/005-supported-sql-commands.md
index d1e5cbc..5a87073 100644
--- a/_docs/sql-reference/sql-commands/005-supported-sql-commands.md
+++ b/_docs/sql-reference/sql-commands/005-supported-sql-commands.md
@@ -1,6 +1,6 @@
 ---
 title: Supported SQL Commands
-date:  
+date: 2016-07-22 00:26:58 UTC
 parent: "SQL Commands"
 ---
 The following table provides a list of the SQL commands that Drill supports,
@@ -12,7 +12,7 @@ with their descriptions and example syntax:
 | [ALTER SYSTEM SET]({{site.baseurl}}/docs/alter-system)                   | Changes a system setting. The new setting persists across all sessions. For a list of Drill options and their descriptions, see [Planning and Execution Options]{{site.baseurl/docs/planning-and-execution-options/}}.                               | ALTER SYSTEM SET \`option_name` =  value;                                                                          |
 | [ALTER SYSTEM RESET]({{site.baseurl}}/docs/alter-system)                 | Changes a system setting back to its default system setting. For a list of Drill options and their descriptions, see [Planning and Execution Options]{{site.baseurl/docs/planning-and-execution-options/}}.                                          | ALTER SYSTEM RESET \`option_name`;                                                                                 |
 | [ALTER SYSTEM RESET ALL]({{site.baseurl}}/docs/alter-system)             | Changes all system settings back to their default system values. For a list of Drill options and their descriptions, see [Planning and Execution Options]{{site.baseurl/docs/planning-and-execution-options/}}.                                      | ALTER SYSTEM RESET ALL;                                                                                            |
-| [CREATE TABLE AS(CTAS) ]({{site.baseurl}}/docs/create-table-as--ctas)    | Creates a new table and populates the new table with rows returned from a SELECT query. Use the CREATE TABLE AS (CTAS) statement in place of INSERT INTO.                                                                                            | CREATE TABLE name AS query;                                                                                        |
+| [CREATE TABLE AS(CTAS)]({{site.baseurl}}/docs/create-table-as-ctas/)     | Creates a new table and populates the new table with rows returned from a SELECT query. Use the CREATE TABLE AS (CTAS) statement in place of INSERT INTO.                                                                                            | CREATE TABLE name AS query;                                                                                        |
 | [CREATE VIEW]({{site.baseurl}}/docs/create-view)                         | Creates a virtual structure for the result set of a stored query.-                                                                                                                                                                                   | CREATE [OR REPLACE] VIEW [workspace.]view_name [ (column_name [, ...]) ] AS query;                                 |
 | [DESCRIBE ]({{site.baseurl}}/docs/describe)                              | Returns information about columns in a table or view.                                                                                                                                                                                                | DESCRIBE [workspace.]table_name                                                                                    |
 | [DROP VIEW]({{site.baseurl}}/docs/drop-view)                             | Removes a view.                                                                                                                                                                                                                                      | DROP VIEW [workspace.]view_name ;                                                                                  |


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

Posted by br...@apache.org.
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 %}


[3/3] drill git commit: update version of the driver 2.2.12 to 2.2.14 for installing on linux

Posted by br...@apache.org.
update version of the driver 2.2.12 to 2.2.14 for installing on linux


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/0602842d
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/0602842d
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/0602842d

Branch: refs/heads/gh-pages
Commit: 0602842d49a3eee1a1e7ba2aa2a4c5f5c63d2912
Parents: 1d256e7
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Thu Jul 21 17:44:51 2016 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Thu Jul 21 17:44:51 2016 -0700

----------------------------------------------------------------------
 .../010-installing-the-driver-on-linux.md                        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/0602842d/_docs/odbc-jdbc-interfaces/installing-the-odbc-driver/010-installing-the-driver-on-linux.md
----------------------------------------------------------------------
diff --git a/_docs/odbc-jdbc-interfaces/installing-the-odbc-driver/010-installing-the-driver-on-linux.md b/_docs/odbc-jdbc-interfaces/installing-the-odbc-driver/010-installing-the-driver-on-linux.md
index d0ea397..326f1b0 100644
--- a/_docs/odbc-jdbc-interfaces/installing-the-odbc-driver/010-installing-the-driver-on-linux.md
+++ b/_docs/odbc-jdbc-interfaces/installing-the-odbc-driver/010-installing-the-driver-on-linux.md
@@ -1,6 +1,6 @@
 ---
 title: "Installing the Driver on Linux"
-date: 2016-01-20 21:22:49 UTC
+date: 2016-07-22 00:44:51 UTC
 parent: "Installing the ODBC Driver"
 ---
 Install the MapR Drill ODBC Driver on the machine from which you connect to
@@ -27,7 +27,7 @@ Verify that your system meets the system requirements before you start.
   * An installed ODBC driver manager:
     * iODBC 3.52.7 or above  
       OR 
-    * unixODBC 2.2.12 or above  
+    * unixODBC 2.2.14 or above  
     On Linux, 3.52.7 is available as a tarball. After unpacking the tarball, see the README for instructions about building the driver manager.
   * The client must be able to resolve the actual host name of the Drill node or nodes from the IP address. Verify that a DNS entry was created on the client machine for the Drill node or nodes.   
 If not, create an entry in `/etc/hosts` for each node in the following format: