Repository: kudu Updated Branches: refs/heads/master d5082d8ec -> 61557b327
Followup to 7eaeb6d9: fix typo in schema_design.adoc Accidentally wrote 'unix_microtime' instead of 'unixtime_micros' in the documentation in the previous patch. I also separated out the 64-bit types for better clarity, since it wasn't obvious before that 'unixtime_micros' is a 64-bit type. Change-Id: Ied008e4ae1dea0243cb944470cbad2053bebd3d7 Reviewed-on: http://gerrit.cloudera.org:8080/4354 Tested-by: Kudu Jenkins Reviewed-by: Adar Dembo <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/b5fc3a64 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/b5fc3a64 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/b5fc3a64 Branch: refs/heads/master Commit: b5fc3a64b845220328720a57626fae5b0921eb6e Parents: d5082d8 Author: Todd Lipcon <[email protected]> Authored: Fri Sep 9 13:38:05 2016 -0700 Committer: Adar Dembo <[email protected]> Committed: Sat Sep 10 00:44:49 2016 +0000 ---------------------------------------------------------------------- docs/schema_design.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/b5fc3a64/docs/schema_design.adoc ---------------------------------------------------------------------- diff --git a/docs/schema_design.adoc b/docs/schema_design.adoc index 3b000ba..ee35da8 100644 --- a/docs/schema_design.adoc +++ b/docs/schema_design.adoc @@ -256,7 +256,8 @@ of the column. Columns use plain encoding by default. [options="header"] |=== | Column Type | Encoding -| integer, unix_microtime | plain, bitshuffle, run length (except for 64-bit) +| int8, int16, int32 | plain, bitshuffle, run length +| int64, unixtime_micros | plain, bitshuffle | float, double | plain, bitshuffle | bool | plain, run length | string, binary | plain, prefix, dictionary
