summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/item.h b/sql/item.h
index 6e74329eb86..ceb73c18264 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -3878,8 +3878,9 @@ public:
{
cached_time= *ltime;
}
- bool set_lower(MYSQL_TIME *ltime);
- bool set_higher(MYSQL_TIME *ltime);
+ bool operator>(const MYSQL_TIME &ltime) const;
+ bool operator<(const MYSQL_TIME &ltime) const;
+ bool operator==(const MYSQL_TIME &ltime) const;
};