From 7416f57a9caa9b603aa8f95ccd6d06ac365bb4d5 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Wed, 28 Feb 2007 23:44:02 +0000 Subject: [PATCH] Bump default version, put in check for 1.8 schema. --- maintenance/postgres/wp_mysql2postgres.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/maintenance/postgres/wp_mysql2postgres.pl b/maintenance/postgres/wp_mysql2postgres.pl index 57e32e960a..0cb5f3246b 100644 --- a/maintenance/postgres/wp_mysql2postgres.pl +++ b/maintenance/postgres/wp_mysql2postgres.pl @@ -53,7 +53,7 @@ GetOptions my $PG_SCHEMA = "tables.sql"; ## What version we default to when we can't parse the old schema -my $MW_DEFAULT_VERSION = '1.8'; +my $MW_DEFAULT_VERSION = '1.9'; ## Try and find a working version of mysqldump $verbose and warn "Locating the mysqldump executable\n"; @@ -133,9 +133,12 @@ elsif ($current_schema !~ /CREATE TABLE \S+validate /) { elsif ($current_schema !~ /ipb_auto tinyint/) { $current_version = '1.7'; } -else { +elsif ($current_schema !~ /CREATE TABLE \S+profiling /) { $current_version = '1.8'; } +else { + $current_version = '1.9'; +} if (!$current_version) { warn qq{WARNING! Could not figure out the old version, assuming MediaWiki $MW_DEFAULT_VERSION\n}; -- 2.20.1