From 8e30a80733b79513e7897bcacc40ce53871500e4 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 8 Jul 2005 15:20:18 +0000 Subject: [PATCH] we declare the column as NOT NULL, so inserting NULL is not a good idea. --- ext/pdo/tests/pdo_018.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo/tests/pdo_018.phpt b/ext/pdo/tests/pdo_018.phpt index 1e2290c400f..52338a4d834 100644 --- a/ext/pdo/tests/pdo_018.phpt +++ b/ext/pdo/tests/pdo_018.phpt @@ -122,7 +122,7 @@ foreach($objs as $idx => $obj) } else { - $val = NULL; + $val = ''; } $stmt->execute(); }