You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by yo...@apache.org on 2016/11/16 00:18:31 UTC

incubator-hawq-docs git commit: This closes #62. Clarifying that hawq register doesn't support partitioned tables.

Repository: incubator-hawq-docs
Updated Branches:
  refs/heads/develop 8245fbb2d -> 6aacfbbc7


This closes #62. Clarifying that hawq register doesn't support partitioned tables.


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

Branch: refs/heads/develop
Commit: 6aacfbbc7885757b7faf08e46a78ab318362c02c
Parents: 8245fbb
Author: David Yozie <yo...@apache.org>
Authored: Tue Nov 15 16:18:01 2016 -0800
Committer: David Yozie <yo...@apache.org>
Committed: Tue Nov 15 16:18:01 2016 -0800

----------------------------------------------------------------------
 datamgmt/load/g-register_files.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq-docs/blob/6aacfbbc/datamgmt/load/g-register_files.html.md.erb
----------------------------------------------------------------------
diff --git a/datamgmt/load/g-register_files.html.md.erb b/datamgmt/load/g-register_files.html.md.erb
index 2c96272..25c24ca 100644
--- a/datamgmt/load/g-register_files.html.md.erb
+++ b/datamgmt/load/g-register_files.html.md.erb
@@ -22,7 +22,7 @@ Requirements for running `hawq register` on the  server are:
 
 Files or folders in HDFS can be registered into an existing table, allowing them to be managed as a HAWQ internal table. When registering files, you can optionally specify the maximum amount of data to be loaded, in bytes, using the `--eof` option. If registering a folder, the actual file sizes are used. 
 
-Only HAWQ or Hive-generated Parquet tables are supported. Only single-level partitioned tables are supported; registering partitioned tables with more than one level will result in an error. 
+Only HAWQ or Hive-generated Parquet tables are supported. Partitioned tables are not supported. Attempting to register these tables will result in an error. 
 
 Metadata for the Parquet file(s) and the destination table must be consistent. Different data types are used by HAWQ tables and Parquet files, so data must be mapped. You must verify that the structure of the Parquet files and the HAWQ table are compatible before running `hawq register`. Not all HIVE data types can be mapped to HAWQ equivalents. The currently-supported HIVE data types are: boolean, int, smallint, tinyint, bigint, float, double, string, binary, char, and varchar.