sqlite3_25_create_aggregate.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. SQLite3::createAggregate() test
  3. --SKIPIF--
  4. <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
  5. --FILE--
  6. <?php
  7. require_once(dirname(__FILE__) . '/new_db.inc');
  8. function sum_list_step($context, $rows, $string) {
  9. if (empty($context))
  10. {
  11. $context = array('total' => 0, 'values' => array());
  12. }
  13. $context['total'] += intval($string);
  14. $context['values'][] = $context['total'];
  15. return $context;
  16. }
  17. function sum_list_finalize($context) {
  18. return implode(',', $context['values']);
  19. }
  20. echo "Creating Table\n";
  21. var_dump($db->exec('CREATE TABLE test (a INTEGER, b INTEGER)'));
  22. echo "INSERT into table\n";
  23. var_dump($db->exec("INSERT INTO test (a, b) VALUES (1, -1)"));
  24. var_dump($db->exec("INSERT INTO test (a, b) VALUES (2, -2)"));
  25. var_dump($db->exec("INSERT INTO test (a, b) VALUES (3, -3)"));
  26. var_dump($db->exec("INSERT INTO test (a, b) VALUES (4, -4)"));
  27. var_dump($db->exec("INSERT INTO test (a, b) VALUES (4, -4)"));
  28. $db->createAggregate('S', 'sum_list_step', 'sum_list_finalize', 1);
  29. print_r($db->querySingle("SELECT S(a), S(b) FROM test", true));
  30. echo "Closing database\n";
  31. var_dump($db->close());
  32. echo "Done\n";
  33. ?>
  34. --EXPECTF--
  35. Creating Table
  36. bool(true)
  37. INSERT into table
  38. bool(true)
  39. bool(true)
  40. bool(true)
  41. bool(true)
  42. bool(true)
  43. Array
  44. (
  45. [S(a)] => 1,3,6,10,14
  46. [S(b)] => -1,-3,-6,-10,-14
  47. )
  48. Closing database
  49. bool(true)
  50. Done