diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-01-24 07:57:09 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-01-24 07:57:09 +0900 |
commit | 289198c0d93a3d591f379c4134e90275bd426426 (patch) | |
tree | 66c166b19b6b8e64aa7be873405aa81fe4298e35 /src/backend/bootstrap/bootstrap.c | |
parent | 95931133a959404cf7320b49058b2f1c2e4606b9 (diff) | |
download | postgresql-289198c0d93a3d591f379c4134e90275bd426426.tar.gz postgresql-289198c0d93a3d591f379c4134e90275bd426426.zip |
Remove argument isprimary from index_build()
The flag was introduced in 3fdeb18, but f66e8bf actually forgot to
finish the cleanup as index_update_stats() has simplified its
interface.
Author: Michael Paquier
Discussion: https://postgr.es/m/20190122080852.GB3873@paquier.xyz
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 6677926ae6a..4d7ed8ad1a7 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -1130,7 +1130,7 @@ build_indices(void) heap = table_open(ILHead->il_heap, NoLock); ind = index_open(ILHead->il_ind, NoLock); - index_build(heap, ind, ILHead->il_info, false, false, false); + index_build(heap, ind, ILHead->il_info, false, false); index_close(ind, NoLock); table_close(heap, NoLock); |