mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
Remove argument isprimary from index_build()
The flag was introduced in3fdeb18, butf66e8bfactually 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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user