Skip to content

Commit 1d0a43f

Browse files
Jiashu-Hucipherstakes
authored andcommitted
Update user guide to note decimal is not experimental anymore (apache#15515)
* update note * removed entire notes column
1 parent a1409fb commit 1d0a43f

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/source/user-guide/sql/data_types.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ select arrow_cast(now(), 'Timestamp(Second, None)');
6060

6161
## Numeric Types
6262

63-
| SQL DataType | Arrow DataType | Notes |
64-
| ------------------------------------ | :----------------------------- | ----------------------------------------------------------------------------------------------------- |
65-
| `TINYINT` | `Int8` | |
66-
| `SMALLINT` | `Int16` | |
67-
| `INT` or `INTEGER` | `Int32` | |
68-
| `BIGINT` | `Int64` | |
69-
| `TINYINT UNSIGNED` | `UInt8` | |
70-
| `SMALLINT UNSIGNED` | `UInt16` | |
71-
| `INT UNSIGNED` or `INTEGER UNSIGNED` | `UInt32` | |
72-
| `BIGINT UNSIGNED` | `UInt64` | |
73-
| `FLOAT` | `Float32` | |
74-
| `REAL` | `Float32` | |
75-
| `DOUBLE` | `Float64` | |
76-
| `DECIMAL(precision, scale)` | `Decimal128(precision, scale)` | Decimal support is currently experimental ([#3523](https://github.com/apache/datafusion/issues/3523)) |
63+
| SQL DataType | Arrow DataType |
64+
| ------------------------------------ | :----------------------------- |
65+
| `TINYINT` | `Int8` |
66+
| `SMALLINT` | `Int16` |
67+
| `INT` or `INTEGER` | `Int32` |
68+
| `BIGINT` | `Int64` |
69+
| `TINYINT UNSIGNED` | `UInt8` |
70+
| `SMALLINT UNSIGNED` | `UInt16` |
71+
| `INT UNSIGNED` or `INTEGER UNSIGNED` | `UInt32` |
72+
| `BIGINT UNSIGNED` | `UInt64` |
73+
| `FLOAT` | `Float32` |
74+
| `REAL` | `Float32` |
75+
| `DOUBLE` | `Float64` |
76+
| `DECIMAL(precision, scale)` | `Decimal128(precision, scale)` |
7777

7878
## Date/Time Types
7979

0 commit comments

Comments
 (0)