icomefromthenet / Faker

A Database Testing Tool.
Apache License 2.0
7 stars 2 forks source link

Null types in the SQL formatter are not handled correctly #21

Closed icomefromthenet closed 11 years ago

icomefromthenet commented 11 years ago

Null values are left out of the sql formatter.

add this line to the sql formatter.


 if(is_null($value) === true) {
                $value = 'NULL';
            }