The branch, master has been updated via 22b46564e106dbc8aede393466b21eecc321883d (commit) from 416277f3980f1bb56a513a106d28dbf4c902dee6 (commit)
- Log ----------------------------------------------------------------- commit 22b46564e106dbc8aede393466b21eecc321883d Author: Michal Čihař mcihar@suse.cz Date: Thu Aug 4 17:21:51 2011 +0200
Add testcase for another way of escaping
-----------------------------------------------------------------------
Summary of changes: .../libraries/common/PMA_extractFieldSpec_test.php | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/test/libraries/common/PMA_extractFieldSpec_test.php b/test/libraries/common/PMA_extractFieldSpec_test.php index 9aa337d..ecb9bd0 100644 --- a/test/libraries/common/PMA_extractFieldSpec_test.php +++ b/test/libraries/common/PMA_extractFieldSpec_test.php @@ -62,6 +62,19 @@ class PMA_extractFieldSpec_test extends PHPUnit_Extensions_OutputTestCase ), ), array( + "SET('''a','b')", + array( + 'type' => 'set', + 'print_type' => "set('''a', 'b')", + 'binary' => false, + 'unsigned' => false, + 'zerofill' => false, + 'spec_in_brackets' => "'''a','b'", + 'enum_set_values' => array("'a", 'b'), + 'attribute' => ' ', + ), + ), + array( "INT UNSIGNED zerofill", array( 'type' => 'int unsigned zerofill',
hooks/post-receive