Add testcase for another way of escaping

This commit is contained in:
Michal Čihař 2011-08-04 17:21:51 +02:00
parent 416277f398
commit 22b46564e1

View File

@ -61,6 +61,19 @@ class PMA_extractFieldSpec_test extends PHPUnit_Extensions_OutputTestCase
'attribute' => ' ',
),
),
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(