mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-29 22:49:41 +03:00 
			
		
		
		
	Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
		
			
				
	
	
		
			111 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/perl
 | |
| # clean_pending.pl
 | |
| # This perl script removes entries from the pending,pendingKeys,
 | |
| # pendingDeleteData tables that have already been mirrored to all hosts.
 | |
| #
 | |
| #
 | |
| #
 | |
| #    Written by Steven Singer (ssinger@navtechinc.com)
 | |
| #    (c) 2001-2002 Navtech Systems Support Inc.
 | |
| #    Released under the GNU Public License version 2. See COPYING.
 | |
| #
 | |
| #
 | |
| #    This program is distributed in the hope that it will be useful,
 | |
| #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| #    GNU General Public License for more details.
 | |
| #
 | |
| ##############################################################################
 | |
| # $Id: clean_pending.pl,v 1.2 2002/10/18 18:41:19 momjian Exp $
 | |
| ##############################################################################
 | |
| 
 | |
| 
 | |
| 
 | |
| =head1 NAME
 | |
| 
 | |
| clean_pending.pl - A Perl script to remove old entries from the 
 | |
| pending, pendingKeys, and pendingDeleteData tables.
 | |
| 
 | |
| 
 | |
| =head1 SYNPOSIS
 | |
| 
 | |
| 
 | |
| clean_pending.pl databasename
 | |
| 
 | |
| 
 | |
| =head1 DESCRIPTION
 | |
| 
 | |
| 
 | |
| This Perl script connects to the database specified as a command line argument
 | |
| on the local system.  It uses a hard-coded username and password.
 | |
| It then removes any entries from the pending, pendingDeleteData, and 
 | |
| pendingKeys tables that have already been sent to all hosts in mirrorHosts.
 | |
| 
 | |
| 
 | |
| =cut
 | |
| 
 | |
| BEGIN {
 | |
|     # add in a global path to files
 | |
|     #Ensure that Pg is in the path.
 | |
| }
 | |
| 
 | |
| 
 | |
| use strict;
 | |
| use Pg;
 | |
| if ($#ARGV != 0) {
 | |
|    die "usage: clean_pending.pl configFile\n";
 | |
| }
 | |
| 
 | |
| if( ! defined do $ARGV[0]) {
 | |
|     die("Invalid Configuration file $ARGV[0]");
 | |
| }
 | |
| 
 | |
| #connect to the database.
 | |
| 
 | |
| my $connectString = "host=$::masterHost dbname=$::masterDb user=$::masterUser password=$::masterPassword";
 | |
| 
 | |
| my $dbConn = Pg::connectdb($connectString);
 | |
| unless($dbConn->status == PGRES_CONNECTION_OK) {
 | |
|     printf("Can't connect to database\n");
 | |
|     die;
 | |
| }
 | |
| my $setresult = $dbConn->exec("SET autocommit TO 'on'");
 | |
| unless($setresult->resultStatus == PGRES_COMMAND_OK) {
 | |
|    die $dbConn->errorMessage;
 | |
| }
 | |
| my $result = $dbConn->exec("BEGIN");
 | |
| unless($result->resultStatus == PGRES_COMMAND_OK) {
 | |
|    die $dbConn->errorMessage;
 | |
| }
 | |
| 
 | |
| 
 | |
| #delete all transactions that have been sent to all mirrorhosts
 | |
| #or delete everything if no mirror hosts are defined.
 | |
| # Postgres takes the "SELECT COUNT(*) FROM "MirrorHost"  and makes it into
 | |
| # an InitPlan.  EXPLAIN show's this.  
 | |
| my $deletePendingQuery = 'DELETE FROM "Pending" WHERE (SELECT ';
 | |
| $deletePendingQuery .= ' COUNT(*) FROM "MirroredTransaction" WHERE ';
 | |
| $deletePendingQuery .= ' "XID"="Pending"."XID") = (SELECT COUNT(*) FROM ';
 | |
| $deletePendingQuery .= ' "MirrorHost") OR (SELECT COUNT(*) FROM ';
 | |
| $deletePendingQuery .= ' "MirrorHost") = 0';
 | |
| 
 | |
| my $result = $dbConn->exec($deletePendingQuery);
 | |
| unless ($result->resultStatus == PGRES_COMMAND_OK ) {
 | |
|     printf($dbConn->errorMessage);
 | |
|     die;
 | |
| }
 | |
| $dbConn->exec("COMMIT");
 | |
| $result = $dbConn->exec('VACUUM "Pending"');
 | |
| unless ($result->resultStatus == PGRES_COMMAND_OK) {
 | |
|    printf($dbConn->errorMessage);
 | |
| }
 | |
| $result = $dbConn->exec('VACUUM "PendingData"');
 | |
| unless($result->resultStatus == PGRES_COMMAND_OK) {
 | |
|    printf($dbConn->errorMessage);
 | |
| }
 | |
| $result = $dbConn->exec('VACUUM "MirroredTransaction"');
 | |
| unless($result->resultStatus == PGRES_COMMAND_OK) {
 | |
|   printf($dbConn->errorMessage);
 | |
| }
 | |
| 
 |