Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b268758 commit addf9d5Copy full SHA for addf9d5
migration/6.2_to_6.2.1
@@ -4,3 +4,11 @@ but is required from any release prior to v6.2.
4
In upgrading from v6.2, if you choose to dump/reload you will find that
5
avg(money) is now calculated correctly. All other bug fixes take effect
6
upon updating the executables.
7
+
8
+Another way to avoid dump/reload is to use the following SQL command
9
+from psql to update the existing system table:
10
11
+ update pg_aggregate set aggfinalfn = 'cash_div_flt8'
12
+ where aggname = 'avg' and aggbasetype = 790;
13
14
+This will need to be done to every existing database, including template1.
0 commit comments