diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-22 21:01:47 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-22 21:01:47 +0000 |
commit | 1661af7f3f10bd303d2a1e71054fe9ba57954604 (patch) | |
tree | 2f3fd38ea5b26712c3641bd5e15f45aff74001c7 /include/dblayer/functions_pgsql.inc.php | |
parent | 7629b2723a4e8691cef8c5056c300ac3b3143ce7 (diff) |
Bug 1738 fixed : merge from trunk
hour function doesn't exists for database other than mysql.
git-svn-id: http://piwigo.org/svn/branches/2.1@6579 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/dblayer/functions_pgsql.inc.php')
-rw-r--r-- | include/dblayer/functions_pgsql.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/dblayer/functions_pgsql.inc.php b/include/dblayer/functions_pgsql.inc.php index 6492e82ef..8a300b7ad 100644 --- a/include/dblayer/functions_pgsql.inc.php +++ b/include/dblayer/functions_pgsql.inc.php @@ -544,6 +544,11 @@ function pwg_db_get_recent_period($period, $date='CURRENT_DATE') return $d; } +function pwg_db_get_hour($date) +{ + return 'EXTRACT(HOUR FROM '.$date.')'; +} + function pwg_db_get_date_YYYYMM($date) { return 'TO_CHAR('.$date.', \'YYYYMM\')'; |