Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
| binary_truncated_min_max.parquet | A file containing six columns with exact, fully-truncated and partially-truncated max and min statistics and with the expected is_{min/max}_value_exact. (see [note](Binary-truncated-min-and-max-statistics)).|
| json.parquet | A single optional BYTE_ARRAY column annotated with the JSON logical type (also carries the legacy converted type JSON). Four rows: `{"a":1}`, `{"a":1,"b":null}` (null field value inside a non-null document), `[1,null,3]` (null element inside an array), and a NULL row. See [note](#json-and-bson-logical-types) below. |
| bson.parquet | A single optional BYTE_ARRAY column annotated with the BSON logical type (also carries the legacy converted type BSON). Three rows: BSON `{"a":1}`, `{"a":1,"b":null}` (null field value inside a non-null document), and a NULL row. See [note](#json-and-bson-logical-types) below. |
| flba12_timestamp.parquet | Three `FIXED_LEN_BYTE_ARRAY(12)` columns annotated with `TIMESTAMP`. See [flba12_timestamp.md](flba12_timestamp.md) for details. |

TODO: Document what each file is in the table above.

Expand Down
49 changes: 49 additions & 0 deletions data/flba12_timestamp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->

# `flba12_timestamp.parquet`

Three columns with physical type `FIXED_LEN_BYTE_ARRAY(12)` and logical type `TIMESTAMP`.

## Schema

```
message flba12_timestamp {
optional fixed_len_byte_array(12) timestamp_millis (TIMESTAMP(MILLIS,true));
optional fixed_len_byte_array(12) timestamp_micros (TIMESTAMP(MICROS,true));
optional fixed_len_byte_array(12) timestamp_nanos (TIMESTAMP(NANOS,true));
}
```

All columns use `TYPE_DEFINED_ORDER`. For the `timestamp_nanos` column, two out of the six rows
require more than 64 bits to represent.

## Values

The same six timestamp values appear in every column, only the unit scale differs. The values
below are interpreted as ISO-8601 timestamps in the Proleptic Gregorian calendar.

| Row | Timestamp (UTC) | Epoch Seconds | Note |
|-----|-----------------------|------------------|---------------------------------------------|
| 0 | 1970-01-01T00:00:00Z | 0 | Epoch (all-zero bytes) |
| 1 | 1970-01-01T00:00:01Z | 1 | Small positive |
| 2 | 1969-12-31T23:59:59Z | -1 | Small negative (exercises two's-complement) |
| 3 | 2262-04-11T23:47:16Z | 9,223,372,036 | Near INT64-nanos max |
| 4 | 9999-12-31T23:59:59Z | 253,402,300,799 | Far future — NANOS exceeds INT64 |
| 5 | 0001-01-01T00:00:00Z | -62,135,596,800 | Far past — NANOS is below INT64 minimum |
Binary file added data/flba12_timestamp.parquet
Binary file not shown.