1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-26 11:54:50 +01:00

bump cursor prophandler count

This commit is contained in:
Michael Wallner 2015-05-29 09:50:13 +02:00
parent 73cc53bc78
commit 0e9cb8f91c
2 changed files with 1 additions and 2 deletions

1
TODO
View File

@ -1,5 +1,4 @@
* COPY: getAsync & putAsync
* CURSOR: *Async()
* fetchInto/fetchCtor?
* binary protocol?
* parse explicit array dimension information in front of arrays

View File

@ -445,7 +445,7 @@ PHP_MINIT_FUNCTION(pqcur)
php_pqcur_object_handlers.get_properties = php_pq_object_properties;
php_pqcur_object_handlers.get_debug_info = php_pq_object_debug_info;
zend_hash_init(&php_pqcur_object_prophandlers, 2, NULL, NULL, 1);
zend_hash_init(&php_pqcur_object_prophandlers, 4, NULL, NULL, 1);
zend_declare_class_constant_long(php_pqcur_class_entry, ZEND_STRL("BINARY"), PHP_PQ_DECLARE_BINARY TSRMLS_CC);
zend_declare_class_constant_long(php_pqcur_class_entry, ZEND_STRL("INSENSITIVE"), PHP_PQ_DECLARE_INSENSITIVE TSRMLS_CC);