File tree Expand file tree Collapse file tree 1 file changed +19
-18
lines changed
website/docs/streaming-lakehouse/integrate-data-lakes Expand file tree Collapse file tree 1 file changed +19
-18
lines changed Original file line number Diff line number Diff line change @@ -74,24 +74,25 @@ ds = lance.dataset("<warehouse_path>/<database_name>/<table_name>.lance")
7474
7575## Data Type Mapping
7676
77+ Lance internally stores data in Arrow format.
7778When integrating with Lance, Fluss automatically converts between Fluss data types and Lance data types.
7879The following table shows the mapping between [ Fluss data types] ( table-design/data-types.md ) and Lance data types:
7980
80- | Fluss Data Type | Lance Data Type |
81- | -------------------------------| ------------------------------- |
82- | BOOLEAN | BOOLEAN |
83- | TINYINT | TINYINT |
84- | SMALLINT | SMALLINT |
85- | INT | INT |
86- | BIGINT | BIGINT |
87- | FLOAT | FLOAT |
88- | DOUBLE | DOUBLE |
89- | DECIMAL | DECIMAL |
90- | STRING | STRING |
91- | CHAR | CHAR |
92- | DATE | DATE |
93- | TIME | TIME |
94- | TIMESTAMP | TIMESTAMP |
95- | TIMESTAMP WITH LOCAL TIMEZONE | TIMESTAMP WITH LOCAL TIMEZONE |
96- | BINARY | BINARY |
97- | BYTES | BYTES |
81+ | Fluss Data Type | Lance Data Type |
82+ | -------------------------------| -----------------|
83+ | BOOLEAN | BOOLEAN |
84+ | TINYINT | Int8 |
85+ | SMALLINT | Int16 |
86+ | INT | Int32 |
87+ | BIGINT | Int64 |
88+ | FLOAT | Float32 |
89+ | DOUBLE | Float64 |
90+ | DECIMAL | Decimal128 |
91+ | STRING | Utf8 |
92+ | CHAR | Utf8 |
93+ | DATE | Date |
94+ | TIME | TIME |
95+ | TIMESTAMP | TIMESTAMP |
96+ | TIMESTAMP WITH LOCAL TIMEZONE | TIMESTAMP |
97+ | BINARY | FixedSizeBinary |
98+ | BYTES | BINARY |
You can’t perform that action at this time.
0 commit comments