]> granicus.if.org Git - postgresql/commitdiff
Include explicit SQL update instructions.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 25 Oct 1997 05:05:06 +0000 (05:05 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 25 Oct 1997 05:05:06 +0000 (05:05 +0000)
Should have been here in time for 6.2.1 release...

migration/6.2_to_6.2.1

index 294f5f0158e504e5c7855c4703c1ff40de95b0d7..09a4118d32bdefb8ef165c35447ed660d4912156 100644 (file)
@@ -12,3 +12,11 @@ from psql to update the existing system table:
    where aggname = 'avg' and aggbasetype = 790;
 
 This will need to be done to every existing database, including template1.
+
+Another way to avoid dump/reload is to use the following SQL command
+from psql to update the existing system table:
+
+  update pg_aggregate set aggfinalfn = 'cash_div_flt8'
+   where aggname = 'avg' and aggbasetype = 790;
+
+This will need to be done to every existing database, including template1.