aboutsummaryrefslogtreecommitdiffstats
path: root/core/command
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2014-04-14 18:33:21 +0200
committerAndreas Fischer <bantu@owncloud.com>2014-04-14 18:37:47 +0200
commit9cc41a24603b250b9c657edfc7007bf10e795899 (patch)
treebe38b36dc79d18d52d3d0137a10120043c370921 /core/command
parentb0e6542dc2a72289a396d2e29604e4e83a6136a2 (diff)
downloadnextcloud-server-9cc41a24603b250b9c657edfc7007bf10e795899.tar.gz
nextcloud-server-9cc41a24603b250b9c657edfc7007bf10e795899.zip
Move PostgreSQL sequence resynchronisation out into PgSqlTools class.
Diffstat (limited to 'core/command')
-rw-r--r--core/command/db/converttype.php17
1 files changed, 4 insertions, 13 deletions
diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php
index 64178d1ef7f..3b405764e7f 100644
--- a/core/command/db/converttype.php
+++ b/core/command/db/converttype.php
@@ -1,6 +1,7 @@
<?php
/**
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
+ * Copyright (c) 2014 Andreas Fischer <bantu@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
@@ -230,25 +231,15 @@ class ConvertType extends Command {
protected function convertDB(Connection $fromDB, Connection $toDB, array $tables, InputInterface $input, OutputInterface $output) {
$this->config->setValue('maintenance', true);
- $type = $input->getArgument('type');
try {
// copy table rows
foreach($tables as $table) {
$output->writeln($table);
$this->copyTable($fromDB, $toDB, $table, $input, $output);
}
- if ($type == 'pgsql') {
- $sequences = $toDB->getSchemaManager()->listSequences();
- $dbname = $input->getArgument('database');
- foreach($sequences as $sequence) {
- $info = $toDB->fetchAssoc('SELECT table_schema, table_name, column_name '
- .'FROM information_schema.columns '
- .'WHERE column_default = ? AND table_catalog = ?',
- array("nextval('".$sequence->getName()."'::regclass)", $dbname));
- $table_name = $info['table_name'];
- $column_name = $info['column_name'];
- $toDB->executeQuery("SELECT setval('" . $sequence->getName() . "', (SELECT MAX(" . $column_name . ") FROM " . $table_name . "))");
- }
+ if ($input->getArgument('type') === 'pgsql') {
+ $tools = new \OC\DB\PgSqlTools;
+ $tools->resynchronizeDatabaseSequences($toDB);
}
// save new database config
$this->saveDBInfo($input);