File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ 7.4: May 20, 2021 - World Metrology Day
2
+ ---------------------------------------
3
+ * Fix hash table creation on PostgreSQL 14.
4
+
5
+ 7.3: Oct 19, 2020
6
+ -----------------
7
+ * Packaging updates.
8
+
1
9
7.2: May 20, 2019 - World Metrology Day
2
10
---------------------------------------
3
11
* Rewire PostgreSQL 12's new extra_float_digits=1 default internally to 0 to
Original file line number Diff line number Diff line change
1
+ postgresql-unit (7.4-1) experimental; urgency=medium
2
+
3
+ * Fix hash table creation on PostgreSQL 14.
4
+
5
+ -- Christoph Berg <myon@debian.org> Thu, 20 May 2021 17:27:35 +0200
6
+
1
7
postgresql-unit (7.3-1) unstable; urgency=medium
2
8
3
9
* Upload for PostgreSQL 13.
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ unit_get_definitions(void)
62
62
tmp_unit_names = hash_create ("unit_names" ,
63
63
20 ,
64
64
& hinfo ,
65
+ #if PG_VERSION_NUM >= 140000
66
+ HASH_STRINGS |
67
+ #endif
65
68
HASH_ELEM ); /* Set keysize and entrysize */
66
69
67
70
PG_TRY ();
You can’t perform that action at this time.
0 commit comments