diff options
author | Robin Appelman <robin@icewind.nl> | 2016-10-20 14:26:09 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-10-20 14:26:09 +0200 |
commit | 3a8e75a814a8c6b394d28570e15ccd85ad57dced (patch) | |
tree | c4ee4ab0a55998864bc345ed9a9ac0583c2f00e3 /lib/public/IDBConnection.php | |
parent | 19b69cbf1b617d6a0b66c2d2f24af4ef81376143 (diff) | |
download | nextcloud-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.php | 8 |
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(); } |