fresh-borzoni commented on code in PR #206:
URL: https://github.com/apache/fluss-rust/pull/206#discussion_r2723318362
##########
bindings/python/example/example.py:
##########
@@ -96,6 +102,10 @@ async def main():
pa.array(["Alice", "Bob", "Charlie"], type=pa.string()),
pa.array([95.2, 87.2, 92.1], type=pa.float32()),
pa.array([25, 30, 35], type=pa.int32()),
+ pa.array([date(1999, 5, 15), date(1994, 3, 20), date(1989, 11,
8)], type=pa.date32()),
+ pa.array([dt_time(9, 0, 0), dt_time(9, 30, 0), dt_time(10, 0,
0)], type=pa.time32("ms")),
+ pa.array([datetime(2024, 1, 15, 10, 30), datetime(2024, 1, 15,
11, 0), datetime(2024, 1, 15, 11, 30)], type=pa.timestamp("us")),
+ pa.array([Decimal("75000.00"), Decimal("82000.50"),
Decimal("95000.75")], type=pa.decimal128(10, 2)),
Review Comment:
it's an example for API usage, we read data back in the next blocks, so it's
fine for this purpose.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]