Skip to content

Commit

Permalink
replace 'timestamp' by 'TIMESTAMP' in db info
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfidan authored Nov 23, 2023
1 parent f5d7506 commit 2f37a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rainforest/database/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def info(self):
if self.__info == None:
cols = self.columns
rows = self.count()
times = self.select('timestamp').collect()
times = self.select('TIMESTAMP').collect()
t0 = datetime.utcfromtimestamp(np.min(times))
t1 = datetime.utcfromtimestamp(np.max(times))

Expand Down

0 comments on commit 2f37a69

Please sign in to comment.