summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index bea443c27..742e026f5 100644
--- a/functions.php
+++ b/functions.php
@@ -171,10 +171,14 @@
$entry_guid = db_escape_string($entry_guid);
+ if (DB_TYPE == "pgsql") {
+ $extract_ts_qpart = ",EXTRACT(EPOCH FROM updated) as updated_timestamp";
+ }
+
$result = db_query($link, "
SELECT
- id,last_read,no_orig_date,title,feed_id,content_hash,
- EXTRACT(EPOCH FROM updated) as updated_timestamp
+ id,last_read,no_orig_date,title,feed_id,content_hash
+ $extract_ts_qpart
FROM
ttrss_entries
WHERE