summaryrefslogtreecommitdiffstats
path: root/lib
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 /lib
parentb0e6542dc2a72289a396d2e29604e4e83a6136a2 (diff)
downloadnextcloud-server-9cc41a24603b250b9c657edfc7007bf10e795899.tar.gz
nextcloud-server-9cc41a24603b250b9c657edfc7007bf10e795899.zip
Move PostgreSQL sequence resynchronisation out into PgSqlTools class.
Diffstat (limited to 'lib')
-rw-r--r--lib/private/db/pgsqltools.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/private/db/pgsqltools.php b/lib/private/db/pgsqltools.php
new file mode 100644
index 00000000000..01e76148a2c
--- /dev/null
+++ b/lib/private/db/pgsqltools.php
@@ -0,0 +1,39 @@
+<?php
+/**
+ * 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.
+ */
+
+namespace OC\DB;
+
+/**
+* Various PostgreSQL specific helper functions.
+*/
+class PgSqlTools {
+ /**
+ * @brief Resynchronizes all sequences of a database after using INSERTs
+ * without leaving out the auto-incremented column.
+ * @param \OC\DB\Connection $conn
+ * @return null
+ */
+ public function resynchronizeDatabaseSequences(Connection $conn) {
+ $databaseName = $conn->getDatabase();
+ foreach ($conn->getSchemaManager()->listSequences() as $sequence) {
+ $sequenceName = $sequence->getName();
+ $sqlInfo = 'SELECT table_schema, table_name, column_name
+ FROM information_schema.columns
+ WHERE column_default = ? AND table_catalog = ?';
+ $sequenceInfo = $conn->fetchAssoc($sqlInfo, array(
+ "nextval('$sequenceName'::regclass)",
+ $databaseName
+ ));
+ $tableName = $sequenceInfo['table_name'];
+ $columnName = $sequenceInfo['column_name'];
+ $sqlMaxId = "SELECT MAX($columnName) FROM $tableName";
+ $sqlSetval = "SELECT setval('$sequenceName', ($sqlMaxId))";
+ $conn->executeQuery($sqlSetval);
+ }
+ }
+}