We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89e7670 commit e9fbf46Copy full SHA for e9fbf46
src/query_farm_airport_test_server/database_impl.py
@@ -704,14 +704,14 @@ def yellow_taxi_endpoint_generator(ticket_data: Any) -> list[flight.FlightEndpoi
704
pa.schema(
705
[
706
pa.field("VendorID", pa.int32()),
707
- pa.field("tpep_pickup_datetime", pa.timestamp("ms")),
708
- pa.field("tpep_dropoff_datetime", pa.timestamp("ms")),
+ pa.field("tpep_pickup_datetime", pa.timestamp("us")),
+ pa.field("tpep_dropoff_datetime", pa.timestamp("us")),
709
pa.field("passenger_count", pa.int64()),
710
pa.field("trip_distance", pa.float64()),
711
pa.field("RatecodeID", pa.int64()),
712
pa.field("store_and_fwd_flag", pa.string()),
713
- pa.field("PULocationID", pa.int64()),
714
- pa.field("DOLocationID", pa.int64()),
+ pa.field("PULocationID", pa.int32()),
+ pa.field("DOLocationID", pa.int32()),
715
pa.field("payment_type", pa.int64()),
716
pa.field("fare_amount", pa.float64()),
717
pa.field("extra", pa.float64()),
0 commit comments