diff options
| author | Heikki Linnakangas | 2020-11-04 09:21:14 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2020-11-04 09:21:14 +0000 |
| commit | f81e97d0475cd4bc597adc23b665bd84fbf79a0d (patch) | |
| tree | 1d5c24adced36b141110fa0fd29592f317991773 /src/bin/pg_rewind/fetch.c | |
| parent | eb00f1d4bf96bdba236bcc089f3ae94db9b7c603 (diff) | |
pg_rewind: Replace the hybrid list+array data structure with simplehash.
Now that simplehash can be used in frontend code, let's make use of it.
Reviewed-by: Kyotaro Horiguchi, Soumyadeep Chakraborty
Discussion: https://www.postgresql.org/message-id/0c5b3783-af52-3ee5-f8fa-6e794061f70d%40iki.fi
Diffstat (limited to 'src/bin/pg_rewind/fetch.c')
| -rw-r--r-- | src/bin/pg_rewind/fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_rewind/fetch.c b/src/bin/pg_rewind/fetch.c index f18fe5386ed..f41d0f295ea 100644 --- a/src/bin/pg_rewind/fetch.c +++ b/src/bin/pg_rewind/fetch.c @@ -37,7 +37,7 @@ fetchSourceFileList(void) * Fetch all relation data files that are marked in the given data page map. */ void -executeFileMap(void) +execute_file_actions(filemap_t *filemap) { if (datadir_source) copy_executeFileMap(filemap); |
