diff options
| author | Alvaro Herrera | 2017-06-15 15:44:33 +0000 |
|---|---|---|
| committer | Alvaro Herrera | 2017-06-15 15:44:33 +0000 |
| commit | 3ab7912c18b6df4d6843d0e0cd6183e7f4912cbb (patch) | |
| tree | 75ad9000ea04121326b744dbe08e473f54108f43 /src/include | |
| parent | 915379c3c2613f2b24d4e9c6fa79a43e7c6a86ec (diff) | |
Rename function for consistency
Avoid using prefix "staext" when everything else uses "statext".
Author: Kyotaro HORIGUCHI
Discussion: https://postgr.es/m/20170615.140041.165731947.horiguchi.kyotaro@lab.ntt.co.jp
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/statistics/statistics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/statistics/statistics.h b/src/include/statistics/statistics.h index a3f0d90195..58e1a624b5 100644 --- a/src/include/statistics/statistics.h +++ b/src/include/statistics/statistics.h @@ -78,7 +78,7 @@ typedef struct MVDependencies #define SizeOfDependencies (offsetof(MVDependencies, ndeps) + sizeof(uint32)) extern MVNDistinct *statext_ndistinct_load(Oid mvoid); -extern MVDependencies *staext_dependencies_load(Oid mvoid); +extern MVDependencies *statext_dependencies_load(Oid mvoid); extern void BuildRelationExtStatistics(Relation onerel, double totalrows, int numrows, HeapTuple *rows, |
