Commit f624876a authored by Tiago Brito's avatar Tiago Brito

add test to verify null cast in boolean type

parent 8cbfefe0
...@@ -613,6 +613,8 @@ abstract class AbstractPostgreSqlPlatformTestCase extends AbstractPlatformTestCa ...@@ -613,6 +613,8 @@ abstract class AbstractPostgreSqlPlatformTestCase extends AbstractPlatformTestCa
array('no', 'false', 0, false), array('no', 'false', 0, false),
array('off', 'false', 0, false), array('off', 'false', 0, false),
array('0', '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