From 0c736e78a92042d0b27b4e2e815a42afa23fabd8 Mon Sep 17 00:00:00 2001 From: Cocoa Date: Sun, 19 May 2024 23:25:59 +0100 Subject: [PATCH] updated README.md --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index e7a669f..70ea6a4 100644 --- a/README.md +++ b/README.md @@ -49,27 +49,20 @@ Here is a list of supported DataTypes in the query |Type String| Arrow Type| |--------|---------| |int8|arrow.PrimitiveTypes.Int8| -|int16|arrow.PrimitiveTypes.Int16| -|int32|arrow.PrimitiveTypes.Int32| -|int64|arrow.PrimitiveTypes.Int64| |uint8|arrow.PrimitiveTypes.Uint8| +|int16|arrow.PrimitiveTypes.Int16| |uint16|arrow.PrimitiveTypes.Uint16| +|int32|arrow.PrimitiveTypes.Int32| |uint32|arrow.PrimitiveTypes.Uint32| +|int64|arrow.PrimitiveTypes.Int64| |uint64|arrow.PrimitiveTypes.Uint64| +|float16|arrow.FixedWidthTypes.Float16| |float32|arrow.PrimitiveTypes.Float32| |float64|arrow.PrimitiveTypes.Float64| -|date32|arrow.PrimitiveTypes.Date32| -|date64|arrow.PrimitiveTypes.Date64| |binary|arrow.BinaryTypes.Binary| |string|arrow.BinaryTypes.String| -|duration_s|arrow.FixedWidthTypes.Duration_s| -|duration_ms|arrow.FixedWidthTypes.Duration_ms| -|duration_us|arrow.FixedWidthTypes.Duration_us| -|duration_ns|arrow.FixedWidthTypes.Duration_ns| -|interval_month|arrow.FixedWidthTypes.MonthInterval| -|interval_daytime|arrow.FixedWidthTypes.DayTimeInterval| -|interval_monthdaynano|arrow.FixedWidthTypes.MonthDayNanoInterval| -|float16|arrow.FixedWidthTypes.Float16| +|date32|arrow.PrimitiveTypes.Date32| +|date64|arrow.PrimitiveTypes.Date64| |time32s|arrow.FixedWidthTypes.Time32s| |time32ms|arrow.FixedWidthTypes.Time32ms| |time64us|arrow.FixedWidthTypes.Time64us| @@ -78,3 +71,10 @@ Here is a list of supported DataTypes in the query |timestamp_ms|arrow.FixedWidthTypes.Timestamp_ms| |timestamp_us|arrow.FixedWidthTypes.Timestamp_us| |timestamp_ns|arrow.FixedWidthTypes.Timestamp_ns| +|duration_s|arrow.FixedWidthTypes.Duration_s| +|duration_ms|arrow.FixedWidthTypes.Duration_ms| +|duration_us|arrow.FixedWidthTypes.Duration_us| +|duration_ns|arrow.FixedWidthTypes.Duration_ns| +|interval_month|arrow.FixedWidthTypes.MonthInterval| +|interval_daytime|arrow.FixedWidthTypes.DayTimeInterval| +|interval_monthdaynano|arrow.FixedWidthTypes.MonthDayNanoInterval|