Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b796621

Browse files
committedOct 8, 2021
[CARBONDATA-4291] Carbon hive table supports float datatype
1 parent ce860d0 commit b796621

File tree

77 files changed

+1482
-474
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1482
-474
lines changed
 

‎core/src/main/java/org/apache/carbondata/core/datastore/page/ColumnPage.java

+4
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,8 @@ public Object getData(int rowId) {
445445
return getInt(rowId);
446446
} else if (dataType == LONG) {
447447
return getLong(rowId);
448+
} else if (dataType == DataTypes.FLOAT) {
449+
return getFloat(rowId);
448450
} else if (dataType == DataTypes.DOUBLE) {
449451
return getDouble(rowId);
450452
} else if (DataTypes.isDecimal(dataType)) {
@@ -560,6 +562,8 @@ private Object getNull(int rowId) {
560562
result = getInt(rowId);
561563
} else if (dataType == LONG) {
562564
result = getLong(rowId);
565+
} else if (dataType == DataTypes.FLOAT) {
566+
return getFloat(rowId);
563567
} else if (dataType == DataTypes.DOUBLE) {
564568
result = getDouble(rowId);
565569
} else if (DataTypes.isDecimal(dataType)) {

‎core/src/main/java/org/apache/carbondata/core/datastore/page/ColumnPageValueConverter.java

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ public interface ColumnPageValueConverter {
4343

4444
long decodeLong(int value);
4545

46+
float decodeFloat(byte value);
47+
48+
float decodeFloat(short value);
49+
50+
float decodeFloat(int value);
51+
4652
double decodeDouble(byte value);
4753

4854
double decodeDouble(short value);

0 commit comments

Comments
 (0)
Please sign in to comment.