diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-05-27 15:45:01 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-05-27 15:45:01 +0200 |
commit | c338dfcbf2cdd1dc0dce087270b0901cd099c954 (patch) | |
tree | 3fd361f5f9289632e60841ba14eac99a4b75c3e9 | |
parent | 00326517291fc093e87e9bbeeeb923ae0f373414 (diff) | |
download | forums-c338dfcbf2cdd1dc0dce087270b0901cd099c954.tar forums-c338dfcbf2cdd1dc0dce087270b0901cd099c954.tar.gz forums-c338dfcbf2cdd1dc0dce087270b0901cd099c954.tar.bz2 forums-c338dfcbf2cdd1dc0dce087270b0901cd099c954.tar.xz forums-c338dfcbf2cdd1dc0dce087270b0901cd099c954.zip |
[ticket/11573] Honor MySQL STRICT_TRANS_TABLES in test_style_select.
PHPBB3-11573
-rw-r--r-- | tests/functions/fixtures/style_select.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/functions/fixtures/style_select.xml b/tests/functions/fixtures/style_select.xml index 12d6392ab5..ca95f94461 100644 --- a/tests/functions/fixtures/style_select.xml +++ b/tests/functions/fixtures/style_select.xml @@ -4,20 +4,24 @@ <column>style_id</column> <column>style_name</column> <column>style_active</column> + <column>style_parent_tree</column> <row> <value>1</value> <value>prosilver</value> <value>1</value> + <value></value> </row> <row> <value>2</value> <value>subsilver2</value> <value>1</value> + <value></value> </row> <row> <value>3</value> <value>zoo</value> <value>0</value> + <value></value> </row> </table> </dataset> |