/usr/bin/slonik_create_set is in slony1-2-bin 2.0.7-3build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | #!/usr/bin/perl
#
# Author: Christopher Browne
# Copyright 2004-2009 Afilias Canada
use Getopt::Long;
$CONFIG_FILE = '/etc/slony1/slon_tools.conf';
$SHOW_USAGE = 0;
# Read command-line options
GetOptions("config=s" => \$CONFIG_FILE,
"help" => \$SHOW_USAGE);
my $USAGE =
"Usage: create_set [--config file] set
set The name or ID of the set to be created
";
my $slonik = '';
if ($SHOW_USAGE) {
print $USAGE;
exit 0;
}
require '/usr/share/slony1/slon-tools.pm';
require $CONFIG_FILE;
my ($set) = @ARGV;
die $USAGE unless $set;
$SET_ID = get_set($set);
unless ($SET_ID) {
my $possible_sets = join "\n\t", keys %$SLONY_SETS;
print "No set was found with the name provided. Possible valid names include:\n\t"
. $possible_sets . "\n\n"
. "New sets may be defined in your slon_tools.conf file\n\n";
die $USAGE;
}
$slonik .= genheader();
# Tables without primary keys
$slonik .= "\n";
$slonik .= "# TABLE ADD KEY\n";
# CREATE SET
$slonik .= "\n";
$slonik .= "# CREATE SET\n";
$slonik .= " try {\n";
$slonik .= " create set (id = $SET_ID, origin = $SET_ORIGIN, comment = 'Set $SET_ID for $CLUSTER_NAME');\n";
$slonik .= " } on error {\n";
$slonik .= " echo 'Could not create subscription set $SET_ID for $CLUSTER_NAME!';\n";
$slonik .= " exit -1;\n";
$slonik .= " }\n";
# SET ADD TABLE
$slonik .= "\n";
$slonik .= "# SET ADD TABLE\n";
$slonik .= " echo 'Subscription set $SET_ID created';\n";
$slonik .= " echo 'Adding tables to the subscription set';\n";
$TABLE_ID = 1 if $TABLE_ID < 1;
foreach my $table (@PKEYEDTABLES) {
$table = ensure_namespace($table);
$table = lc($table) if $FOLD_CASE;
$slonik .= " set add table (set id = $SET_ID, origin = $SET_ORIGIN, id = $TABLE_ID,\n";
$slonik .= " full qualified name = '$table',\n";
$slonik .= " comment = 'Table $table with primary key');\n";
$slonik .= " echo 'Add primary keyed table $table';\n";
$TABLE_ID++;
}
foreach my $table (keys %KEYEDTABLES) {
my $key = $KEYEDTABLES{$table};
$table = ensure_namespace($table);
$table = lc($table) if $FOLD_CASE;
$slonik .= " set add table (set id = $SET_ID, origin = $SET_ORIGIN, id = $TABLE_ID,\n";
$slonik .= " full qualified name = '$table', key='$key',\n";
$slonik .= " comment = 'Table $table with candidate primary key $key');\n";
$slonik .= " echo 'Add candidate primary keyed table $table';\n";
$TABLE_ID++;
}
# SET ADD SEQUENCE
$slonik .= "\n";
$slonik .= "# SET ADD SEQUENCE\n";
$slonik .= " echo 'Adding sequences to the subscription set';\n";
$SEQUENCE_ID = 1 if $SEQUENCE_ID < 1;
foreach my $seq (@SEQUENCES) {
$seq = ensure_namespace($seq);
$seq = lc($seq) if $FOLD_CASE;
$slonik .= " set add sequence (set id = $SET_ID, origin = $SET_ORIGIN, id = $SEQUENCE_ID,\n";
$slonik .= " full qualified name = '$seq',\n";
$slonik .= " comment = 'Sequence $seq');\n";
$slonik .= " echo 'Add sequence $seq';\n";
$SEQUENCE_ID++;
}
$slonik .= " echo 'All tables added';\n";
run_slonik_script($slonik, 'CREATE SET');
### If object hasn't a namespace specified, assume it's in "public", and make it so...
sub ensure_namespace {
my ($object) = @_;
if ($object =~ /^(.*\..*)$/) {
# Table has a namespace specified
} else {
$object = "public.$object";
}
return $object;
}
|