Skip to content

Commit

Permalink
update data type mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
WanYixian committed Nov 28, 2024
1 parent 9dd84e6 commit 11018d2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ingestion/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,21 +149,21 @@ When using file source to read parquet files, please define the schema informati
| File source type | RisingWave type |
| :----------- | :-------------- |
| boolean | boolean |
| integer | int |
| long | bigint |
| int32 | int |
| int64 | bigint |
| float | real |
| double | double |
| string | varchar |
| date | date |
| timestamptz | timestamptz |
| timestamp | timestamp |
| decimal | decimal |
| Int8 | Int16 |
| UInt8 | Int16 |
| UInt16 | Int32 |
| UInt32 | Int64 |
| UInt64 | Decimal |
| Float16 | Float32 |
| int8 | smallint |
| uint8 | int |
| uint16 | bigint |
| uint32 | decimal |
| uint64 | real |
| float16 | double precision|


## Topics in this section
Expand Down

0 comments on commit 11018d2

Please sign in to comment.