Can eland (python) filter on datetime64 fields?

I get a NotImplementedError error for when I try to mask a field that's a datetime field:

s_t = pd.to_datetime("2023-02-03T23:28:00", utc=True) # UTC
t_m = (df['start'] >= s_t)

File /opt/conda/lib/python3.9/site-packages/eland/series.py:491, in Series.__ge__(self, other)
    489     return GreaterEqual(field=self.name, value=other)
    490 else:
--> 491     raise NotImplementedError(other, type(other))

NotImplementedError: (Timestamp('2023-02-03 23:28:00+0000', tz='UTC'), <class 'pandas._libs.tslibs.timestamps.Timestamp'>)

Is this just the way it is for fields with type datetime?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.