diff options
author | monty@narttu.mysql.fi <> | 2000-11-15 23:00:06 +0200 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2000-11-15 23:00:06 +0200 |
commit | e69becf133867fff26b59ba74ec1ee722ce1e81e (patch) | |
tree | 622092bf596b26a1f762020729c03d573a5b216d /sql/time.cc | |
parent | 7a013339f84c48ea6194a35d9c00d0d549466b1d (diff) | |
download | mariadb-git-e69becf133867fff26b59ba74ec1ee722ce1e81e.tar.gz |
changed to use IO_CACHE instead of FILE
Diffstat (limited to 'sql/time.cc')
-rw-r--r-- | sql/time.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sql/time.cc b/sql/time.cc index 17603d93dd4..ce4b5b0e30c 100644 --- a/sql/time.cc +++ b/sql/time.cc @@ -413,16 +413,6 @@ ulong convert_month_to_period(ulong month) return year*100+month%12+1; } -#ifdef NOT_NEEDED - -ulong add_to_period(ulong period,int months) -{ - if (period == 0L) - return 0L; - return convert_month_to_period(convert_period_to_month(period)+months); -} -#endif - /***************************************************************************** ** convert a timestamp string to a TIME value. |