diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-10-24 10:38:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 10:38:25 +0200 |
commit | ab91fa2660f15102b29254bc1c236101c6dcc6a3 (patch) | |
tree | 248ee35f937ee97a8f5af72935810c4bded21567 /lib/public | |
parent | 598c145430d813c05b3a980345462c45f801d733 (diff) | |
parent | 7998689bc9eb075813f6ae3ab3025f3932591e95 (diff) | |
download | nextcloud-server-ab91fa2660f15102b29254bc1c236101c6dcc6a3.tar.gz nextcloud-server-ab91fa2660f15102b29254bc1c236101c6dcc6a3.zip |
Merge pull request #1820 from nextcloud/4byte-filenames
Allow 4byte unicode filenames on supported platforms
Diffstat (limited to 'lib/public')
-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(); } |