X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pqconn.c;h=4baa5ec0ecf923c5dcc70c8bc4b068b3b517383e;hp=dd08ced5170743dddc3d608dccf68f9f949887a6;hb=967ea1785859c49a27c51c110839ea3296a020f4;hpb=4e530d65c987bc87620cb5e70fdcad1336f91004 diff --git a/src/php_pqconn.c b/src/php_pqconn.c index dd08ced..4baa5ec 100644 --- a/src/php_pqconn.c +++ b/src/php_pqconn.c @@ -1621,7 +1621,7 @@ STATUS php_pqconn_start_transaction(zval *zconn, php_pqconn_object_t *conn_obj, } else { PGresult *res; smart_str cmd = {0}; - const char *il = isolation_level(&isolation); + const char *il = php_pq_isolation_level(&isolation); smart_str_appends(&cmd, "START TRANSACTION ISOLATION LEVEL "); smart_str_appends(&cmd, il); @@ -1660,7 +1660,7 @@ STATUS php_pqconn_start_transaction_async(zval *zconn, php_pqconn_object_t *conn throw_exce(EX_UNINITIALIZED TSRMLS_CC, "pq\\Connection not initialized"); } else { smart_str cmd = {0}; - const char *il = isolation_level(&isolation); + const char *il = php_pq_isolation_level(&isolation); smart_str_appends(&cmd, "START TRANSACTION ISOLATION LEVEL "); smart_str_appends(&cmd, il);