You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by zt...@apache.org on 2015/10/12 15:48:52 UTC

incubator-hawq git commit: HAWQ-43. Include parquet for CREATE TABLE help doc

Repository: incubator-hawq
Updated Branches:
  refs/heads/master 8ec87e6a5 -> 445e075ee


HAWQ-43. Include parquet for CREATE TABLE help doc


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/445e075e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/445e075e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/445e075e

Branch: refs/heads/master
Commit: 445e075ee01a899c517739bb2647aa535b56b94b
Parents: 8ec87e6
Author: zhenglin tao <zh...@gmail.com>
Authored: Mon Oct 12 21:13:50 2015 +0800
Committer: zhenglin tao <zh...@gmail.com>
Committed: Mon Oct 12 21:13:50 2015 +0800

----------------------------------------------------------------------
 .gitignore                            | 1 +
 doc/src/sgml/ref/alter_table.sgml     | 6 +++---
 doc/src/sgml/ref/create_table.sgml    | 8 ++++----
 doc/src/sgml/ref/create_table_as.sgml | 7 ++++---
 4 files changed, 12 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/445e075e/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index d1100fa..7699cfe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,6 +39,7 @@ objfiles.txt
 # Eclipse Project
 .project
 .pydevproject
+.cproject
 
 # Generated files
 GNUmakefile

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/445e075e/doc/src/sgml/ref/alter_table.sgml
----------------------------------------------------------------------
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml
index 941d0f2..fd238b1 100755
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -119,14 +119,14 @@ and subpartition_element is:
 where storage_parameter is:
    APPENDONLY={TRUE|FALSE}
    BLOCKSIZE={8192-2097152}
-   ORIENTATION={COLUMN|ROW}
-   COMPRESSTYPE={ZLIB|QUICKLZ|RLE_TYPE|NONE}
+   ORIENTATION={PARQUET|ROW}
+   COMPRESSTYPE={ZLIB|SNAPPY|GZIP|NONE}
    COMPRESSLEVEL={0-9}
    FILLFACTOR={10-100}
    OIDS[=TRUE|FALSE]
 
 where storage_directive is:
-   COMPRESSTYPE={ZLIB | QUICKLZ | RLE_TYPE | NONE} 
+   COMPRESSTYPE={ZLIB|SNAPPY|GZIP|NONE} 
  | COMPRESSLEVEL={0-9} 
  | BLOCKSIZE={8192-2097152}
 

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/445e075e/doc/src/sgml/ref/create_table.sgml
----------------------------------------------------------------------
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index e89ed12..250c3ac 100755
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -50,7 +50,7 @@ CREATE [[GLOBAL | LOCAL] {TEMPORARY | TEMP}] TABLE table_name (
    | LIKE other_table [{INCLUDING | EXCLUDING} 
                       {DEFAULTS | CONSTRAINTS}] ...}
    [, ... ] ]
-   [column_reference_storage_directive [, �] ]
+   [column_reference_storage_directive [,...] ]
    )
    [ INHERITS ( parent_table [, ... ] ) ]
    [ WITH ( storage_parameter=value [, ... ] )
@@ -73,8 +73,8 @@ CREATE [[GLOBAL | LOCAL] {TEMPORARY | TEMP}] TABLE table_name (
 where storage_parameter is:
    APPENDONLY={TRUE|FALSE}
    BLOCKSIZE={8192-2097152}
-   ORIENTATION={COLUMN|ROW}
-   COMPRESSTYPE={ZLIB|QUICKLZ|RLE_TYPE|NONE}
+   ORIENTATION={PARQUET|ROW}
+   COMPRESSTYPE={ZLIB|SNAPPY|GZIP|NONE}
    COMPRESSLEVEL={0-9}
    FILLFACTOR={10-100}
    OIDS[=TRUE|FALSE]
@@ -137,7 +137,7 @@ and subpartition_element is:
 [ TABLESPACE tablespace ]
 
 where storage_directive is:
-   COMPRESSTYPE={ZLIB | QUICKLZ | RLE_TYPE | NONE} 
+   COMPRESSTYPE={ZLIB|SNAPPY|GZIP|NONE} 
  | COMPRESSLEVEL={0-9} 
  | BLOCKSIZE={8192-2097152}
 

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/445e075e/doc/src/sgml/ref/create_table_as.sgml
----------------------------------------------------------------------
diff --git a/doc/src/sgml/ref/create_table_as.sgml b/doc/src/sgml/ref/create_table_as.sgml
index bbd96c2..87d4f72 100755
--- a/doc/src/sgml/ref/create_table_as.sgml
+++ b/doc/src/sgml/ref/create_table_as.sgml
@@ -53,9 +53,10 @@ CREATE [ [GLOBAL | LOCAL] {TEMPORARY | TEMP} ] TABLE table_name
 where storage_parameter is:
 
    APPENDONLY={TRUE|FALSE}
-   ORIENTATION={COLUMN|ROW}
-   COMPRESSTYPE={ZLIB|QUICKLZ}
-   COMPRESSLEVEL={0-9 | 1}
+   BLOCKSIZE={8192-2097152}
+   ORIENTATION={PARQUET|ROW}
+   COMPRESSTYPE={ZLIB|SNAPPY|GZIP|NONE}
+   COMPRESSLEVEL={0-9}
    FILLFACTOR={10-100}
    OIDS[=TRUE|FALSE]