From e093dcdd2853911ca1ad710581182dfcb6c78ea3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 25 Aug 2006 04:06:58 +0000 Subject: Add the ability to create indexes 'concurrently', that is, without blocking concurrent writes to the table. Greg Stark, with a little help from Tom Lane. --- src/backend/bootstrap/bootparse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/bootstrap') diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index b25ea11a0b5..6300eafb9a2 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.83 2006/07/31 01:16:36 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.84 2006/08/25 04:06:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -257,7 +257,7 @@ Boot_DeclareIndexStmt: $10, NULL, NIL, NIL, false, false, false, - false, false, true, false); + false, false, true, false, false); do_end(); } ; @@ -275,7 +275,7 @@ Boot_DeclareUniqueIndexStmt: $11, NULL, NIL, NIL, true, false, false, - false, false, true, false); + false, false, true, false, false); do_end(); } ; -- cgit v1.2.3