Home
last modified time | relevance | path

Searched refs:createAggregate (Results 1 – 7 of 7) sorted by relevance

/PHP-8.3/ext/sqlite3/tests/
H A Dsqlite3_33_createAggregate_notcallable.phpt2 SQLite3::createAggregate() Test whether a supplied PHP function is valid when using in an aggregate…
17 $db->createAggregate('TESTAGGREGATE', 'aggregate_test_step', 'aggregate_final');
23 $db->createAggregate('TESTAGGREGATE2', 'aggregate_step', 'aggregate_test_final');
28 var_dump($db->createAggregate ('TESTAGGREGATE3', 'aggregate_step', 'aggregate_final'));
35 SQLite3::createAggregate(): Argument #2 ($stepCallback) must be a valid callback, function "aggrega…
36 SQLite3::createAggregate(): Argument #3 ($finalCallback) must be a valid callback, function "aggreg…
H A Dgh11878.phpt12 …$this->sqlite->createAggregate("indexes", array($this, "SQLiteIndex"), array($this, "SQLiteFinal")…
13 $this->sqlite->createAggregate("indexes_closure", fn () => 0, fn () => 0, 0);
H A Dsqlite3_25_create_aggregate.phpt2 SQLite3::createAggregate() test
34 $db->createAggregate('S', 'sum_list_step', 'sum_list_finalize', 1);
H A Dsqlite3_trampoline_create_aggregate.phpt2 SQLite3::createAggregate() trampoline callback
39 $db->createAggregate('S', $step, $finalize, 1);
/PHP-8.3/ext/sqlite3/
H A Dsqlite3.stub.php374 …public function createAggregate(string $name, callable $stepCallback, callable $finalCallback, int… function in SQLite3
H A Dsqlite3_arginfo.h189 ZEND_METHOD(SQLite3, createAggregate);
242 ZEND_ME(SQLite3, createAggregate, arginfo_class_SQLite3_createAggregate, ZEND_ACC_PUBLIC)
H A Dsqlite3.c981 PHP_METHOD(SQLite3, createAggregate) in PHP_METHOD() argument

Completed in 31 milliseconds