I’m trying to convert _time column into int (or uint) while querying through python client library but I’m getting the error
Traceback (most recent call last):
File "/home/ubuntu/python/push/push.py", line 62, in <module>
run()
File "/home/ubuntu/python/push/push.py", line 57, in run
read_tables()
File "/home/ubuntu/python/push/push.py", line 44, in read_tables
tables = client.query_api().query('''import "strings"
KeyError: 'r with _time'
@fgarcia It looks like this error is coming from the client and not from Flux itself. I’m guessing that the Python client expects the _time column to be a time type. Try mapping the int/uint version of the timestamp to a different column.