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 2015/06/30 02:34:51 UTC

[3/4] drill git commit: remove extraneous sentence

remove extraneous sentence


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

Branch: refs/heads/gh-pages
Commit: ef7d3f367d2295d778e993d9b08d1624d5f6468a
Parents: 59ef70e
Author: Kristine Hahn <kh...@maprtech.com>
Authored: Mon Jun 29 14:31:59 2015 -0700
Committer: Kristine Hahn <kh...@maprtech.com>
Committed: Mon Jun 29 14:31:59 2015 -0700

----------------------------------------------------------------------
 _docs/sql-reference/sql-commands/035-partition-by-clause.md | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/ef7d3f36/_docs/sql-reference/sql-commands/035-partition-by-clause.md
----------------------------------------------------------------------
diff --git a/_docs/sql-reference/sql-commands/035-partition-by-clause.md b/_docs/sql-reference/sql-commands/035-partition-by-clause.md
index e079f00..aa9a0ba 100644
--- a/_docs/sql-reference/sql-commands/035-partition-by-clause.md
+++ b/_docs/sql-reference/sql-commands/035-partition-by-clause.md
@@ -16,8 +16,6 @@ When the base table in the SELECT statement is schema-less, include columns in t
     [ PARTITION_BY (column, . . .) ] 
     AS SELECT <column_list> FROM <source_name>;
 
-Include the columns in the PARTITION BY column list in the SELECT statement:  
-
 When columns in the source table have ambiguous names, such as COLUMNS[0], define one or more column aliases in the SELECT statement. Use the alias name or names in the CREATE TABLE list. List aliases in the same order as the corresponding columns in the SELECT statement. Matching order is important because Drill performs an overwrite operation.  
 
     CREATE TABLE dest_name (alias1, alias2, . . .)