8000
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 789d075 commit 200bc52Copy full SHA for 200bc52
migration/6.2_to_6.2.1
@@ -12,3 +12,11 @@ from psql to update the existing system table:
12
where aggname = 'avg' and aggbasetype = 790;
13
14
This will need to be done to every existing database, including template1.
15
+
16
+Another way to avoid dump/reload is to use the following SQL command
17
+from psql to update the existing system table:
18
19
+ update pg_aggregate set aggfinalfn = 'cash_div_flt8'
20
+ where aggname = 'avg' and aggbasetype = 790;
21
22
+This will need to be done to every existing database, including template1.
0 commit comments