summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/access/nbtree.h2
-rw-r--r--src/include/access/nbtxlog.h2
-rw-r--r--src/include/catalog/catversion.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h
index 7aa6afbbb80..1194be92811 100644
--- a/src/include/access/nbtree.h
+++ b/src/include/access/nbtree.h
@@ -105,7 +105,7 @@ typedef struct BTMetaPageData
/* following fields are available since page version 3 */
TransactionId btm_oldest_btpo_xact; /* oldest btpo_xact among of
* deleted pages */
- float4 btm_last_cleanup_num_heap_tuples; /* number of heap tuples
+ float8 btm_last_cleanup_num_heap_tuples; /* number of heap tuples
* during last cleanup */
} BTMetaPageData;
diff --git a/src/include/access/nbtxlog.h b/src/include/access/nbtxlog.h
index c55b618ff7d..819373031cd 100644
--- a/src/include/access/nbtxlog.h
+++ b/src/include/access/nbtxlog.h
@@ -52,7 +52,7 @@ typedef struct xl_btree_metadata
BlockNumber fastroot;
uint32 fastlevel;
TransactionId oldest_btpo_xact;
- double last_cleanup_num_heap_tuples;
+ float8 last_cleanup_num_heap_tuples;
} xl_btree_metadata;
/*
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h
index acd6791563b..2954cba6b32 100644
--- a/src/include/catalog/catversion.h
+++ b/src/include/catalog/catversion.h
@@ -53,6 +53,6 @@
*/
/* yyyymmddN */
-#define CATALOG_VERSION_NO 201804091
+#define CATALOG_VERSION_NO 201804191
#endif