summaryrefslogtreecommitdiffstats
path: root/lib/public/IDBConnection.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2016-10-20 14:26:09 +0200
committerRobin Appelman <robin@icewind.nl>2016-10-20 14:26:09 +0200
commit3a8e75a814a8c6b394d28570e15ccd85ad57dced (patch)
treec4ee4ab0a55998864bc345ed9a9ac0583c2f00e3 /lib/public/IDBConnection.php
parent19b69cbf1b617d6a0b66c2d2f24af4ef81376143 (diff)
downloadnextcloud-server-3a8e75a814a8c6b394d28570e15ccd85ad57dced.tar.gz
nextcloud-server-3a8e75a814a8c6b394d28570e15ccd85ad57dced.zip
Allow 4byte unicode filenames on supported platforms
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/IDBConnection.php')
-rw-r--r--lib/public/IDBConnection.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/IDBConnection.php b/lib/public/IDBConnection.php
index 188e715aba0..31706342228 100644
--- a/lib/public/IDBConnection.php
+++ b/lib/public/IDBConnection.php
@@ -251,4 +251,12 @@ interface IDBConnection {
* @since 9.0.0
*/
public function escapeLikeParameter($param);
+
+ /**
+ * Check whether or not the current database support 4byte wide unicode
+ *
+ * @return bool
+ * @since 9.2.0
+ */
+ public function supports4ByteText();
}