diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-25 04:06:58 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-25 04:06:58 +0000 |
commit | e093dcdd2853911ca1ad710581182dfcb6c78ea3 (patch) | |
tree | 59fc44746f9937abea6ad44e2098a8c3c4b7f7e6 /src/backend/commands/tablecmds.c | |
parent | 8f91e2b6071aaeae333f668d0f5d9189c5710a7a (diff) | |
download | postgresql-e093dcdd2853911ca1ad710581182dfcb6c78ea3.tar.gz postgresql-e093dcdd2853911ca1ad710581182dfcb6c78ea3.zip |
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.
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r-- | src/backend/commands/tablecmds.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index a1f76033377..7e8884496d0 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.200 2006/08/21 00:57:24 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.201 2006/08/25 04:06:48 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -3832,7 +3832,8 @@ ATExecAddIndex(AlteredTableInfo *tab, Relation rel, true, /* is_alter_table */ check_rights, skip_build, - quiet); + quiet, + false); } /* |