]> granicus.if.org Git - postgresql/commitdiff
Fix thinko in comment
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 26 Mar 2018 15:00:25 +0000 (12:00 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 26 Mar 2018 15:03:03 +0000 (12:03 -0300)
The listed numbers disagreed with the ones being used in the symbols;
but instead of just fixing the numbers in the comment, use the symbolic
name instead, which seems clearer.

This has been wrong all along, so apply back to 9.5 where BRIN was
introduced.

Reported-by: Tomas Vondra
Discussion: https://postgr.es/m/5ff514f2-8b1e-6366-b11c-8e2ed442562d@2ndquadrant.com

src/backend/access/brin/brin_inclusion.c

index 0ae7a72996db07f1aa3995b01c3a57e5c26a9c8e..258476387817d8f4aaafa63011fbd4bed024df53 100644 (file)
 /*-
  * The values stored in the bv_values arrays correspond to:
  *
- * 0 - the union of the values in the block range
- * 1 - whether an empty value is present in any tuple in the block range
- * 2 - whether the values in the block range cannot be merged (e.g. an IPv6
- *        address amidst IPv4 addresses).
+ * INCLUSION_UNION
+ *             the union of the values in the block range
+ * INCLUSION_UNMERGEABLE
+ *             whether the values in the block range cannot be merged
+ *             (e.g. an IPv6 address amidst IPv4 addresses)
+ * INCLUSION_CONTAINS_EMPTY
+ *             whether an empty value is present in any tuple
+ *             in the block range
  */
 #define INCLUSION_UNION                                0
 #define INCLUSION_UNMERGEABLE          1