Repository: hive Updated Branches: refs/heads/master c0c19d073 -> 54ca6fc51
HIVE-11835: Type decimal(1,1) reads 0.0, 0.00, etc from text file as NULL (Reviewed by Szehon) -- Add the forgotten new data file Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/54ca6fc5 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/54ca6fc5 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/54ca6fc5 Branch: refs/heads/master Commit: 54ca6fc51239e28309dcc7d68647ee2a25f1ca98 Parents: c0c19d0 Author: Xuefu Zhang <[email protected]> Authored: Mon Oct 5 05:46:20 2015 -0700 Committer: Xuefu Zhang <[email protected]> Committed: Mon Oct 5 05:46:20 2015 -0700 ---------------------------------------------------------------------- data/files/decimal_1_1.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/54ca6fc5/data/files/decimal_1_1.txt ---------------------------------------------------------------------- diff --git a/data/files/decimal_1_1.txt b/data/files/decimal_1_1.txt new file mode 100644 index 0000000..ec16804 --- /dev/null +++ b/data/files/decimal_1_1.txt @@ -0,0 +1,30 @@ +0.0 +0.0000 +.0 +0.1 +0.15 +0.9 +0.94 +0.99 +0.345 +1.0 +1 +0 +00 +22 +1E-9 +-0.0 +-0.0000 +-.0 +-0.1 +-0.15 +-0.9 +-0.94 +-0.99 +-0.345 +-1.0 +-1 +-0 +-00 +-22 +-1E-9
