From 04a1561e9ca73fd45298e92fd5d6a6353f83b66b Mon Sep 17 00:00:00 2001 From: totoro Date: Thu, 5 Jun 2025 19:39:51 +0900 Subject: [PATCH] Add DB_datetime less '<' comparator --- database/db_types.anubis | 7 +++++++ 1 file changed, 7 insertions(+), 0 deletions(-) diff --git a/database/db_types.anubis b/database/db_types.anubis index 7af3b98..30a842e 100644 --- a/database/db_types.anubis +++ b/database/db_types.anubis @@ -319,6 +319,13 @@ public define String to_String(dt) + s . +public define Bool + DB_datetime a < DB_datetime b + = + //convert datetime in String to allows String comparison + a.datetime < b.datetime +. + public define String get_time ( -- libgit2 0.21.4