summaryrefslogtreecommitdiff
path: root/src/backenddb/plugin_merchantdb_postgres.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backenddb/plugin_merchantdb_postgres.c')
-rw-r--r--src/backenddb/plugin_merchantdb_postgres.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
index 257f65c6..545d2960 100644
--- a/src/backenddb/plugin_merchantdb_postgres.c
+++ b/src/backenddb/plugin_merchantdb_postgres.c
@@ -323,7 +323,7 @@ postgres_initialize (void *cls)
" timestamp<$1"
" AND merchant_pub=$2"
" ORDER BY timestamp DESC, row_id DESC"
- " FETCH FIRST $3 ROWS ONLY",
+ " LIMIT $3",
3);
PG_PREPARE (pg,
@@ -338,7 +338,7 @@ postgres_initialize (void *cls)
" AND merchant_pub=$2"
" AND row_id<$3"
" ORDER BY timestamp DESC, row_id DESC"
- " FETCH FIRST $4 ROWS ONLY",
+ " LIMIT $4",
4);
/* Setup prepared "SELECT" statements */