Skip to content

Commit 7238e26

Browse files
committed
Implement query options for views
Change-Id: I5cddcd3e123b81f746ecf7f33d89d5e37af1a754 Reviewed-on: http://review.couchbase.org/109892 Tested-by: Build Bot <[email protected]> Reviewed-by: Sergey Avseyev <[email protected]>
1 parent 9c27488 commit 7238e26

File tree

3 files changed

+496
-8
lines changed

3 files changed

+496
-8
lines changed

couchbase.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ PHP_MINIT_FUNCTION(CollectionTouch);
251251
PHP_MINIT_FUNCTION(CollectionCounter);
252252
PHP_MINIT_FUNCTION(CollectionRemove);
253253
PHP_MINIT_FUNCTION(CollectionSubdoc);
254+
PHP_MINIT_FUNCTION(CollectionView);
254255

255256

256257
PHP_MINIT_FUNCTION(couchbase)
@@ -330,6 +331,7 @@ PHP_MINIT_FUNCTION(couchbase)
330331
PHP_MINIT(CollectionCounter)(INIT_FUNC_ARGS_PASSTHRU);
331332
PHP_MINIT(CollectionRemove)(INIT_FUNC_ARGS_PASSTHRU);
332333
PHP_MINIT(CollectionSubdoc)(INIT_FUNC_ARGS_PASSTHRU);
334+
PHP_MINIT(CollectionView)(INIT_FUNC_ARGS_PASSTHRU);
333335

334336
PCBC_REGISTER_CONST(PERSISTTO_MASTER);
335337
PCBC_REGISTER_CONST(PERSISTTO_ONE);

0 commit comments

Comments
 (0)