summaryrefslogtreecommitdiffstats
path: root/tests/data
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-07-30 10:57:16 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-10-19 00:15:01 +0200
commit972e560e7274cf25021b1a5095206640b063789a (patch)
treedfdce374cd21574529e6e5486d42356046897f56 /tests/data
parente115bf96e742909b78150d04305b67196b94115c (diff)
downloadnextcloud-server-972e560e7274cf25021b1a5095206640b063789a.tar.gz
nextcloud-server-972e560e7274cf25021b1a5095206640b063789a.zip
Adding tests for 4 byte unicode characters
* success on SQLite and Postgres * failure on MySQL due to the limited charset that only supports up to 3 bytes
Diffstat (limited to 'tests/data')
-rw-r--r--tests/data/db_structure.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/data/db_structure.xml b/tests/data/db_structure.xml
index 371da944832..b155114f2ed 100644
--- a/tests/data/db_structure.xml
+++ b/tests/data/db_structure.xml
@@ -293,4 +293,19 @@
</table>
+ <table>
+
+ <name>*dbprefix*text_table</name>
+ <declaration>
+
+ <field>
+ <name>textfield</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>255</length>
+ </field>
+
+ </declaration>
+ </table>
+
</database>