summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMichaIng <micha@dietpi.com>2021-12-31 17:48:10 +0100
committerGitHub <noreply@github.com>2021-12-31 17:48:10 +0100
commit1fcfda26219e8539c9e338792a48f4b5fdb2dca4 (patch)
tree33e6469fc6e531fe1ae21136b6c02d989a497bf7 /core
parent072ba3b8635a8a1b2c17006708bcb3367de8e1a8 (diff)
parent30eb30232fc8fac1ecffc9c4f14305671ff9a093 (diff)
downloadnextcloud-server-1fcfda26219e8539c9e338792a48f4b5fdb2dca4.tar.gz
nextcloud-server-1fcfda26219e8539c9e338792a48f4b5fdb2dca4.zip
Merge pull request #30435 from nextcloud/backport/30392/stable21
[stable21] Add missing index for propertypath only queries of DAV properties
Diffstat (limited to 'core')
-rw-r--r--core/Application.php3
-rw-r--r--core/Command/Db/AddMissingIndices.php13
-rw-r--r--core/Migrations/Version13000Date20170718121200.php1
3 files changed, 17 insertions, 0 deletions
diff --git a/core/Application.php b/core/Application.php
index a6c64e81b84..77cd221bb83 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -187,6 +187,9 @@ class Application extends App {
if (!$table->hasIndex('properties_path_index')) {
$subject->addHintForMissingSubject($table->getName(), 'properties_path_index');
}
+ if (!$table->hasIndex('properties_pathonly_index')) {
+ $subject->addHintForMissingSubject($table->getName(), 'properties_pathonly_index');
+ }
}
}
);
diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php
index 1acff55fa40..824c7073bd3 100644
--- a/core/Command/Db/AddMissingIndices.php
+++ b/core/Command/Db/AddMissingIndices.php
@@ -301,11 +301,24 @@ class AddMissingIndices extends Command {
$output->writeln('<info>Check indices of the oc_properties table.</info>');
if ($schema->hasTable('properties')) {
$table = $schema->getTable('properties');
+ $propertiesUpdated = false;
+
if (!$table->hasIndex('properties_path_index')) {
$output->writeln('<info>Adding properties_path_index index to the oc_properties table, this can take some time...</info>');
$table->addIndex(['userid', 'propertypath'], 'properties_path_index');
$this->connection->migrateToSchema($schema->getWrappedSchema());
+ $propertiesUpdated = true;
+ }
+ if (!$table->hasIndex('properties_pathonly_index')) {
+ $output->writeln('<info>Adding properties_pathonly_index index to the oc_properties table, this can take some time...</info>');
+
+ $table->addIndex(['propertypath'], 'properties_pathonly_index');
+ $this->connection->migrateToSchema($schema->getWrappedSchema());
+ $propertiesUpdated = true;
+ }
+
+ if ($propertiesUpdated) {
$updated = true;
$output->writeln('<info>oc_properties table updated successfully.</info>');
}
diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php
index 4912bef8857..b020effe5aa 100644
--- a/core/Migrations/Version13000Date20170718121200.php
+++ b/core/Migrations/Version13000Date20170718121200.php
@@ -357,6 +357,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
$table->setPrimaryKey(['id']);
$table->addIndex(['userid'], 'property_index');
$table->addIndex(['userid', 'propertypath'], 'properties_path_index');
+ $table->addIndex(['propertypath'], 'properties_pathonly_index');
} else {
$table = $schema->getTable('properties');
if ($table->hasColumn('propertytype')) {