Skip to content

Commit be53902

Browse files
authored
ext/pgsql: globals data struct rework/size reduction (#18503)
1 parent 90da482 commit be53902

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/pgsql/php_pgsql.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,12 @@ static const php_stream_ops php_stream_pgsql_fd_ops = {
180180
ZEND_BEGIN_MODULE_GLOBALS(pgsql)
181181
zend_long num_links,num_persistent;
182182
zend_long max_links,max_persistent;
183-
bool allow_persistent;
184-
int ignore_notices;
185183
zend_long auto_reset_persistent;
186-
int log_notices;
187184
zend_object *default_link; /* default link when connection is omitted */
188185
zend_string *regexes[PGSQL_MAX_REGEXES];
186+
bool allow_persistent;
187+
bool ignore_notices;
188+
bool log_notices;
189189
HashTable field_oids;
190190
HashTable table_oids;
191191
HashTable connections;

0 commit comments

Comments
 (0)