diff options
author | mkanat%kerio.com <> | 2005-03-03 16:15:01 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-03-03 16:15:01 +0100 |
commit | 0e8f16e1c64b07cf6d90264f8f754307d340b30e (patch) | |
tree | 152e914a81eab2318a92d22e7c7033feec662ccc | |
parent | d0d2e9fddc55b47bc9df5f5d60acac9f86d13183 (diff) | |
download | bugzilla-0e8f16e1c64b07cf6d90264f8f754307d340b30e.tar.gz bugzilla-0e8f16e1c64b07cf6d90264f8f754307d340b30e.tar.xz |
Bug 284172: checksetup cannot run CREATE DATABASE on PostgreSQL
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=glob, a=justdave
-rw-r--r-- | Bugzilla/DB.pm | 38 | ||||
-rw-r--r-- | Bugzilla/DB/Mysql.pm | 6 | ||||
-rw-r--r-- | Bugzilla/DB/Pg.pm | 13 | ||||
-rw-r--r-- | Bugzilla/Search.pm | 4 | ||||
-rwxr-xr-x | checksetup.pl | 69 |
5 files changed, 85 insertions, 45 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 073e929eb..db6c0b405 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -173,7 +173,8 @@ sub _handle_error { # List of abstract methods we are checking the derived class implements our @_abstract_methods = qw(new sql_regexp sql_not_regexp sql_limit sql_to_days sql_date_format sql_interval - bz_lock_tables bz_unlock_tables); + bz_lock_tables bz_unlock_tables + REQUIRED_VERSION PROGRAM_NAME); # This overriden import method will check implementation of inherited classes # for missing implementation of abstract methods @@ -200,17 +201,10 @@ sub import { $Exporter::ExportLevel-- if $is_exporter; } -# note that when multiple databases are supported, version number does not -# make sense anymore (as it is DB-dependent). This needs to be removed in -# the future and places where it's used fixed. -my $cached_server_version; -sub server_version { - return $cached_server_version if defined($cached_server_version); - my $dbh = Bugzilla->dbh; - my $sth = $dbh->prepare('SELECT VERSION()'); - $sth->execute(); - ($cached_server_version) = $sth->fetchrow_array(); - return $cached_server_version; +# XXX - Needs to be documented. +sub bz_server_version { + my ($self) = @_; + return $self->get_info(18); # SQL_DBMS_VER } sub bz_get_field_defs { @@ -522,6 +516,26 @@ Access to the old SendSQL-based database routines are also provided by importing the C<:deprecated> tag. These routines should not be used in new code. +=head1 CONSTANTS + +Subclasses of Bugzilla::DB are required to define certain constants. These +constants are required to be subroutines or "use constant" variables. + +=over 4 + +=item C<REQUIRED_VERSION> + +This is the minimum required version of the database server that the +Bugzilla::DB subclass requires. It should be in a format suitable for +passing to vers_cmp during installation. + +=item C<PROGRAM_NAME> + +The human-readable name of this database. For example, for MySQL, this +would be 'MySQL.' You should not depend on this variable to know what +type of database you are running on; this is intended merely for displaying +to the admin to let them know what DB they're running. + =head1 CONNECTION A new database handle to the required database can be created using this diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index d2204433b..4e0a3e5b2 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -47,11 +47,15 @@ use Carp; # This module extends the DB interface via inheritance use base qw(Bugzilla::DB); +use constant REQUIRED_VERSION => '3.23.41'; +use constant PROGRAM_NAME => 'MySQL'; + sub new { my ($class, $user, $pass, $host, $dbname, $port, $sock) = @_; # construct the DSN from the parameters we got - my $dsn = "DBI:mysql:host=$host;database=$dbname;port=$port"; + my $dsn = "DBI:mysql:host=$host;database=$dbname"; + $dsn .= ";port=$port" if $port; $dsn .= ";mysql_socket=$sock" if $sock; my $self = $class->db_new($dsn, $user, $pass); diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm index a23c38666..9766da383 100644 --- a/Bugzilla/DB/Pg.pm +++ b/Bugzilla/DB/Pg.pm @@ -47,12 +47,21 @@ use Carp; # This module extends the DB interface via inheritance use base qw(Bugzilla::DB); +use constant REQUIRED_VERSION => '7.02.0000'; +use constant PROGRAM_NAME => 'PostgreSQL'; + sub new { my ($class, $user, $pass, $host, $dbname, $port) = @_; + # The default database name for PostgreSQL. We have + # to connect to SOME database, even if we have + # no $dbname parameter. + $dbname ||= 'template1'; + # construct the DSN from the parameters we got - my $dsn = "DBI:Pg:host=$host;dbname=$dbname;port=$port"; - + my $dsn = "DBI:Pg:host=$host;dbname=$dbname"; + $dsn .= ";port=$port" if $port; + my $self = $class->db_new($dsn, $user, $pass); # all class local variables stored in DBI derived class needs to have diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index ff9befa28..f2e630784 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -954,8 +954,8 @@ sub init { # mysql 4.0.1 and lower do not support CAST # mysql 3.*.* had a case-sensitive INSTR # (checksetup has a check for unsupported versions) - my $server_version = Bugzilla::DB->server_version; - if ($server_version =~ /^3\./) { + my $server_version = $dbh->bz_server_version; + if ($dbh->isa('Bugzilla::DB::Mysql') && $server_version =~ /^3\./) { $term = "INSTR($ff ,$q)"; } else { $term = "INSTR(CAST($ff AS BINARY), CAST($q AS BINARY))"; diff --git a/checksetup.pl b/checksetup.pl index 934229965..8993cb5d2 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -81,7 +81,7 @@ # check for more required modules --MODULES-- # change the defaults for local configuration vars --LOCAL-- # update the assigned file permissions --CHMOD-- -# add more MySQL-related checks --MYSQL-- +# add more database-related checks --DATABASE-- # change table definitions --TABLE-- # add more groups --GROUPS-- # create initial administrator account --ADMIN-- @@ -294,7 +294,7 @@ my $modules = [ }, { name => 'DBI', - version => '1.36' + version => '1.38' }, { name => 'DBD::mysql', @@ -672,9 +672,15 @@ LocalVar('db_host', q[ # How to access the SQL database: # $db_host = 'localhost'; # where is the database? -$db_port = 3306; # which port to use $db_name = 'bugs'; # name of the MySQL database $db_user = 'bugs'; # user to attach to the MySQL database + +# Sometimes the database server is running on a non-standard +# port. If that's the case for your database server, set this +# to the port number that your database server is running on. +# Setting this to 0 means "use the default port for my database +# server." +$db_port = 0; ]); LocalVar('db_pass', q[ # @@ -688,15 +694,17 @@ $db_pass = ''; ]); LocalVar('db_sock', q[ -# Enter a path to the unix socket for mysql. If this is blank, then mysql\'s -# compiled-in default will be used. You probably want that. +# MySQL Only: Enter a path to the unix socket for mysql. If this is +# blank, then mysql\'s compiled-in default will be used. You probably +# want that. $db_sock = ''; ]); LocalVar('db_check', q[ # -# Should checksetup.pl try to verify that your MySQL setup is correct? -# (with some combinations of MySQL/Msql-mysql/Perl/moonphase this doesn't work) +# Should checksetup.pl try to verify that your database setup is correct? +# (with some combinations of database servers/Perl modules/moonphase this +# doesn't work) # $db_check = 1; ]); @@ -1470,11 +1478,11 @@ require "globals.pl"; $::ENV{'PATH'} = $origPath; ########################################################################### -# Check MySQL setup +# Check Database setup ########################################################################### # -# Check if we have access to --MYSQL-- +# Check if we have access to the --DATABASE-- # # No need to "use" this here. It should already be loaded from the @@ -1486,34 +1494,38 @@ $::ENV{'PATH'} = $origPath; if ($my_db_check) { # Do we have the database itself? - my $sql_want = "3.23.41"; # minimum version of MySQL - my $dbh = Bugzilla::DB::connect_main("no database connection"); - printf("Checking for %15s %-9s ", "MySQL Server", "(v$sql_want)") unless $silent; - my $qh = $dbh->prepare("SELECT VERSION()"); - $qh->execute; - my ($sql_vers) = $qh->fetchrow_array; - $qh->finish; + my $sql_want = $dbh->REQUIRED_VERSION; + my $sql_server = $dbh->PROGRAM_NAME; + + printf("Checking for %15s %-9s ", $sql_server, "(v$sql_want)") unless $silent; + my $sql_vers = $dbh->bz_server_version; # Check what version of MySQL is installed and let the user know # if the version is too old to be used with Bugzilla. if ( vers_cmp($sql_vers,$sql_want) > -1 ) { print "ok: found v$sql_vers\n" unless $silent; } else { - die "\nYour MySQL server v$sql_vers is too old.\n" . - " Bugzilla requires version $sql_want or later of MySQL.\n" . - " Please visit http://www.mysql.com/ and download a newer version.\n"; + die "\nYour $sql_server v$sql_vers is too old.\n" . + " Bugzilla requires version $sql_want or later of $sql_server.\n" . + " Please download and install a newer version.\n"; } - if (( $sql_vers =~ /^4\.0\.(\d+)/ ) && ($1 < 2)) { + # This message is specific to MySQL. + if ($dbh->isa('Bugzilla::DB::Mysql') && ($sql_vers =~ /^4\.0\.(\d+)/) && ($1 < 2)) { die "\nYour MySQL server is incompatible with Bugzilla.\n" . " Bugzilla does not support versions 4.x.x below 4.0.2.\n" . " Please visit http://www.mysql.com/ and download a newer version.\n"; } - my @databases = $dbh->func('_ListDBs'); - unless (grep /^$my_db_name$/, @databases) { + # See if we can connect to the database. + my $conn_success = eval { + my $check_dbh = Bugzilla::DB::connect_main(); + $check_dbh->disconnect; + }; + if (!$conn_success) { print "Creating database $my_db_name ...\n"; - if (!$dbh->func('createdb', $my_db_name, 'admin')) { + # Try to create the DB, and if we fail print an error. + if (!eval { $dbh->do("CREATE DATABASE $my_db_name") }) { my $error = $dbh->errstr; die <<"EOF" @@ -1523,11 +1535,12 @@ $error This might have several reasons: -* MySQL is not running. -* MySQL is running, but the rights are not set correct. Go and read the - Bugzilla Guide in the doc directory and all parts of the MySQL - documentation. -* There is a subtle problem with Perl, DBI, DBD::mysql and MySQL. Make +* $sql_server is not running. +* $sql_server is running, but there is a problem either in the + server configuration or the database access rights. Read the Bugzilla + Guide in the doc directory. The section about database configuration + should help. +* There is a subtle problem with Perl, DBI, or $sql_server. Make sure all settings in '$localconfig' are correct. If all else fails, set '\$db_check' to zero.\n EOF |