summaryrefslogtreecommitdiff
path: root/sql/pgq/structure
diff options
context:
space:
mode:
authorMarko Kreen2007-10-12 09:39:07 +0000
committerMarko Kreen2007-10-12 09:39:07 +0000
commitf697dbe89b47e3c6b07a03243a5e119c757569f5 (patch)
tree9231548457394aa972dc103af9f7a202f17c2d80 /sql/pgq/structure
parent04a765ce990a9c8b382ec001e4adc50354663023 (diff)
convert to new txid interface apperaing in 8.3
Diffstat (limited to 'sql/pgq/structure')
-rw-r--r--sql/pgq/structure/tables.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/pgq/structure/tables.sql b/sql/pgq/structure/tables.sql
index 83e23d3b..57e749c1 100644
--- a/sql/pgq/structure/tables.sql
+++ b/sql/pgq/structure/tables.sql
@@ -73,8 +73,8 @@ create table pgq.queue (
queue_ntables integer not null default 3,
queue_cur_table integer not null default 0,
queue_rotation_period interval not null default '2 hours',
- queue_switch_step1 bigint not null default get_current_txid(),
- queue_switch_step2 bigint default get_current_txid(),
+ queue_switch_step1 bigint not null default txid_current(),
+ queue_switch_step2 bigint default txid_current(),
queue_switch_time timestamptz not null default now(),
queue_external_ticker boolean not null default false,
@@ -105,7 +105,7 @@ create table pgq.tick (
tick_queue int4 not null,
tick_id bigint not null,
tick_time timestamptz not null default now(),
- tick_snapshot txid_snapshot not null default get_current_snapshot(),
+ tick_snapshot txid_snapshot not null default txid_current_snapshot(),
constraint tick_pkey primary key (tick_queue, tick_id),
constraint tick_queue_fkey foreign key (tick_queue)
@@ -173,7 +173,7 @@ create table pgq.event_template (
ev_id bigint not null,
ev_time timestamptz not null,
- ev_txid bigint not null default get_current_txid(),
+ ev_txid bigint not null default txid_current(),
ev_owner int4,
ev_retry int4,