fix isolation level
authorMichael Wallner <mike@php.net>
Thu, 23 Oct 2014 10:49:34 +0000 (12:49 +0200)
committerMichael Wallner <mike@php.net>
Thu, 23 Oct 2014 10:49:34 +0000 (12:49 +0200)
src/php_pqconn.c
src/php_pqtxn.h

index dd08ced5170743dddc3d608dccf68f9f949887a6..4baa5ec0ecf923c5dcc70c8bc4b068b3b517383e 100644 (file)
@@ -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);
index 920e570f4239a267df9f96b4cd6d713a3c2870c3..0c8fd868deadb0013d8faf9257cf754b987615c2 100644 (file)
@@ -38,7 +38,7 @@ typedef struct php_pqtxn_object {
        php_pqtxn_t *intern;
 } php_pqtxn_object_t;
 
-extern const char *isolation_level(long *isolation);
+extern const char *php_pq_isolation_level(long *isolation);
 
 extern zend_class_entry *php_pqtxn_class_entry;
 extern zend_object_value php_pqtxn_create_object_ex(zend_class_entry *ce, php_pqtxn_t *intern, php_pqtxn_object_t **ptr TSRMLS_DC);