Skip to content

Commit e9fbf46

Browse files
committed
fix: data type fix
1 parent 89e7670 commit e9fbf46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/query_farm_airport_test_server/database_impl.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -704,14 +704,14 @@ def yellow_taxi_endpoint_generator(ticket_data: Any) -> list[flight.FlightEndpoi
704704
pa.schema(
705705
[
706706
pa.field("VendorID", pa.int32()),
707-
pa.field("tpep_pickup_datetime", pa.timestamp("ms")),
708-
pa.field("tpep_dropoff_datetime", pa.timestamp("ms")),
707+
pa.field("tpep_pickup_datetime", pa.timestamp("us")),
708+
pa.field("tpep_dropoff_datetime", pa.timestamp("us")),
709709
pa.field("passenger_count", pa.int64()),
710710
pa.field("trip_distance", pa.float64()),
711711
pa.field("RatecodeID", pa.int64()),
712712
pa.field("store_and_fwd_flag", pa.string()),
713-
pa.field("PULocationID", pa.int64()),
714-
pa.field("DOLocationID", pa.int64()),
713+
pa.field("PULocationID", pa.int32()),
714+
pa.field("DOLocationID", pa.int32()),
715715
pa.field("payment_type", pa.int64()),
716716
pa.field("fare_amount", pa.float64()),
717717
pa.field("extra", pa.float64()),

0 commit comments

Comments
 (0)