From dbf7930cbefe8ed3e482c1752370c7c436ad2e7a Mon Sep 17 00:00:00 2001 From: IrisWan <150207222+WanYixian@users.noreply.github.com> Date: Thu, 28 Nov 2024 15:11:30 +0800 Subject: [PATCH] Update overview.mdx (#97) --- ingestion/overview.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ingestion/overview.mdx b/ingestion/overview.mdx index bade4093..ae3939c2 100644 --- a/ingestion/overview.mdx +++ b/ingestion/overview.mdx @@ -146,7 +146,7 @@ SELECT count(*) from s3_source; When using file source to read parquet files, please define the schema information according to the following mapping. -| File source type | RisingWave type | +| Parquet data type | RisingWave file source data type | | :----------- | :-------------- | | boolean | boolean | | int16 | smallint | @@ -156,8 +156,6 @@ When using file source to read parquet files, please define the schema informati | double | double precision| | string | varchar | | date | date | -| `timestamp(_, Some(_))` | timestamptz | -| `timestamp(_, None)` | timestamp | | decimal | decimal | | int8 | smallint | | uint8 | smallint | @@ -165,6 +163,8 @@ When using file source to read parquet files, please define the schema informati | uint32 | bigint | | uint64 | decimal | | float16 | double precision| +| `timestamp(_, Some(_))` | timestamptz | +| `timestamp(_, None)` | timestamp | ## Topics in this section