summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r--ext/pgsql/pgsql.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 3cdb59a970..e2000a617b 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -3269,7 +3269,12 @@ PHPAPI int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval
switch (Z_TYPE_PP(val)) {
case IS_STRING:
if (Z_STRLEN_PP(val) == 0) {
- ZVAL_STRING(new_val, empty_string, 1);
+ if (opt & PGSQL_CONV_FORCE_NULL) {
+ ZVAL_STRING(new_val, "NULL", 1);
+ }
+ else {
+ ZVAL_STRING(new_val, empty_string, 1);
+ }
}
else {
Z_TYPE_P(new_val) = IS_STRING;