Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2021-08-31 22:01:27 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2021-09-01 12:57:47 +0300
commitce283c12b6ba8d27dc0d2934ffe7d6f7b6743a02 (patch)
tree04a680d4bf2d42241dc5a039c7ec1c17875e6b19 /config
parent734a750074c08051f3e24b7454f00018da868898 (diff)
make it possible to override the default collation
- allows admins to configure it for edge cases like accent sensitivity Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 5f3f33dfa41..bcb8dfd0aa9 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1554,6 +1554,24 @@ $CONFIG = [
'mysql.utf8mb4' => false,
/**
+ * For search queries in the database, a default collation – depending on the
+ * character set – is chosen. In some cases a different behaviour is desired,
+ * for instances when a accent sensitive search is desired.
+ *
+ * MariaDB and MySQL have an overlap in available collations, but also
+ * incompatible ones, also depending on the version of the database server.
+ *
+ * This option allows to override the automatic choice. Example:
+ *
+ * 'mysql.collation' => 'utf8mb4_0900_as_ci',
+ *
+ * This setting has no effect on setup or creating tables. In those cases
+ * always utf8[mb4]_bin is being used. This setting is only taken into
+ * consideration in SQL queries that utilize LIKE comparison operators.
+ */
+'mysql.collation' => null,
+
+/**
* Database types that are supported for installation.
*
* Available: