Skip to content

Commit 1ffb8d1

Browse files
authored
Merge pull request #202403 from jovanpop-msft/patch-236
Added normalized to UTC mapping
2 parents eaa3a78 + ac1c0d6 commit 1ffb8d1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/synapse-analytics/sql/develop-openrowset.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,11 @@ Parquet and Delta Lake files contain type descriptions for every column. The fol
348348
| INT64 |INT(64, true) |bigint |
349349
| INT64 |INT(64, false) |decimal(20,0) |
350350
| INT64 |DECIMAL |decimal |
351-
| INT64 |TIME (MICROS) |time - TIME(NANOS) is not supported |
352-
|INT64 |TIMESTAMP (MILLIS / MICROS) |datetime2 - TIMESTAMP(NANOS) is not supported |
351+
| INT64 |TIME (MICROS) | time |
352+
| INT64 |TIME (NANOS) | Not supported |
353+
| INT64 |TIMESTAMP ([normalized to utc](https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#instant-semantics-timestamps-normalized-to-utc)) (MILLIS / MICROS) | datetime2 |
354+
| INT64 |TIMESTAMP ([not normalized to utc](https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#local-semantics-timestamps-not-normalized-to-utc)) (MILLIS / MICROS) | bigint - make sure that you explicitly adjust `bigint` value with the timezone offset before converting it to a datetime value. |
355+
| INT64 |TIMESTAMP (NANOS) | Not supported |
353356
|[Complex type](https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#lists) |LIST |varchar(8000), serialized into JSON |
354357
|[Complex type](https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#maps)|MAP|varchar(8000), serialized into JSON |
355358

0 commit comments

Comments
 (0)