@@ -2811,28 +2811,6 @@ def arrow_table_schema_with_all_microseconds_timestamp_precisions() -> "pa.Schem
28112811 )
28122812
28132813
2814- @pytest .fixture (scope = "session" )
2815- def arrow_table_schema_with_nanoseconds_timestamp_precisions () -> "pa.Schema" :
2816- """Pyarrow Schema with all microseconds timestamp."""
2817- import pyarrow as pa
2818-
2819- return pa .schema (
2820- [
2821- ("timestamp_s" , pa .timestamp (unit = "us" )),
2822- ("timestamptz_s" , pa .timestamp (unit = "us" , tz = "UTC" )),
2823- ("timestamp_ms" , pa .timestamp (unit = "us" )),
2824- ("timestamptz_ms" , pa .timestamp (unit = "us" , tz = "UTC" )),
2825- ("timestamp_us" , pa .timestamp (unit = "us" )),
2826- ("timestamptz_us" , pa .timestamp (unit = "us" , tz = "UTC" )),
2827- ("timestamp_ns" , pa .timestamp (unit = "us" )),
2828- ("timestamptz_ns" , pa .timestamp (unit = "ns" , tz = "UTC" )),
2829- ("timestamptz_us_etc_utc" , pa .timestamp (unit = "us" , tz = "UTC" )),
2830- ("timestamptz_ns_z" , pa .timestamp (unit = "ns" , tz = "UTC" )),
2831- ("timestamptz_s_0000" , pa .timestamp (unit = "us" , tz = "UTC" )),
2832- ]
2833- )
2834-
2835-
28362814@pytest .fixture (scope = "session" )
28372815def table_schema_with_all_microseconds_timestamp_precision () -> Schema :
28382816 """Iceberg table Schema with only date, timestamp and timestamptz values."""
0 commit comments