You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm able to call load_table_changes_as_pandas fine when passing in version numbers but receive errors when attempting to pass timestamps (or stringified timestamp as the api seems to expect).
When passing in timestamps I see the following error message: quote_from_bytes() expected bytes
# relevant date/timestamp code....fromdatetimeimportdatetimeasdtmstart=dtm(2024, 5, 17, 17, 27, 48, 0).timestamp()
end=dtm.timestamp(dtm.now())
# call load_table_changes_as_pandas# don't set start/end versions# do set start/end timestamp
When converting timestamps to string as api seems to expect, I receive the following...
{ 'error_code': 'BAD_REQUEST',
'message': "Invalid startingTimestamp: Text '1715988468.0' could not be "
'parsed at index 0.'}
# relevant date/timestamp code....fromdatetimeimportdatetimeasdtmstart=str(dtm(2024, 5, 17, 17, 27, 48, 0).timestamp())
end=str(dtm.timestamp(dtm.now()))
# call load_table_changes_as_pandas# don't set start/end versions# do set start/end timestamp
The text was updated successfully, but these errors were encountered:
I'm able to call load_table_changes_as_pandas fine when passing in version numbers but receive errors when attempting to pass timestamps (or stringified timestamp as the api seems to expect).
When passing in timestamps I see the following error message: quote_from_bytes() expected bytes
When converting timestamps to string as api seems to expect, I receive the following...
{ 'error_code': 'BAD_REQUEST',
'message': "Invalid startingTimestamp: Text '1715988468.0' could not be "
'parsed at index 0.'}
The text was updated successfully, but these errors were encountered: