Commit affbce3f authored by Tiago Brito's avatar Tiago Brito Committed by Steve Müller

add test to verify null cast in boolean type

parent 320d2c1f
......@@ -600,6 +600,8 @@ abstract class AbstractPostgreSqlPlatformTestCase extends AbstractPlatformTestCa
array('no', 'false', 0, false),
array('off', 'false', 0, false),
array('0', 'false', 0, false),
array(null, 'NULL', null, null)
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment