This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new f50ebd6  add avro timestamp file (#124)
f50ebd6 is described below

commit f50ebd6f6db71ea357f46d3635cad8920d0c1544
Author: Namgung Chan <[email protected]>
AuthorDate: Thu Mar 5 09:00:01 2026 +0900

    add avro timestamp file (#124)
    
    ```
    avro.schema     
{"type":"record","name":"timestampRecord","fields":[{"name":"id","type":"int"},{"name":"ts_millis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"ts_micros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"ts_nanos","type":{"type":"long","logicalType":"timestamp-nanos"}},{"name":"local_ts_millis","type":{"type":"long","logicalType":"local-timestamp-millis"}},{"name":"local_ts_micros","type":{"type":"long","logicalType":"local-timesta
 [...]
    ```
    
    for testing
    
https://github.com/apache/datafusion/pull/17861/changes#diff-58e03e2fdb95cb16b92c2b825f4c5eeb08783ede54c0792e65d4202826fd8c2bR346-R413
---
 data/avro/README.md                    |   3 ++-
 data/avro/timestamp_logical_types.avro | Bin 0 -> 672 bytes
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/data/avro/README.md b/data/avro/README.md
index b5b2468..844bc9b 100644
--- a/data/avro/README.md
+++ b/data/avro/README.md
@@ -49,4 +49,5 @@ Additional notes:
 | fixed256_decimal.avro               | Generated from 
https://gist.github.com/jecsand838/3890349bdb33082a3e8fdcae3257eef7             
                                                                                
                                                                                
                     |
 | fixed_length_decimal_legacy_32.avro | Generated from 
https://gist.github.com/jecsand838/3890349bdb33082a3e8fdcae3257eef7             
                                                                                
                                                                                
                     |
 | int128_decimal.avro                 | Generated from 
https://gist.github.com/jecsand838/3890349bdb33082a3e8fdcae3257eef7             
                                                                                
                                                                                
                     |
-| int256_decimal.avro                 | Generated from 
https://gist.github.com/jecsand838/3890349bdb33082a3e8fdcae3257eef7       
+| int256_decimal.avro                 | Generated from 
https://gist.github.com/jecsand838/3890349bdb33082a3e8fdcae3257eef7             
                                                                                
                                                                                
                     |
+| timestamp_logical_types.avro        | Contains two rows with timestamp-* and 
local-timestamp-* logical types for millis/micros/nanos.                        
                                                                                
                                                                             |
diff --git a/data/avro/timestamp_logical_types.avro 
b/data/avro/timestamp_logical_types.avro
new file mode 100644
index 0000000..0c24e56
Binary files /dev/null and b/data/avro/timestamp_logical_types.avro differ

Reply via email to