Home
last modified time | relevance | path

Searched refs:create_aggregate (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/sqlite3/test/
Duserfunctions.py295 self.con.create_aggregate("nostep", 1, AggrNoStep)
296 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
297 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
298 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
299 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
300 self.con.create_aggregate("checkType", 2, AggrCheckType)
301 self.con.create_aggregate("checkTypes", -1, AggrCheckTypes)
302 self.con.create_aggregate("mysum", 1, AggrSum)
Dregression.py441 self.con.create_aggregate(aggr_name, 0, UnhashableType('Aggr', (), {}))
Ddbapi.py789 con.create_aggregate("foo", 1, Agg)
/external/python/cpython2/Lib/sqlite3/test/
Duserfunctions.py280 self.con.create_aggregate("nostep", 1, AggrNoStep)
281 self.con.create_aggregate("nofinalize", 1, AggrNoFinalize)
282 self.con.create_aggregate("excInit", 1, AggrExceptionInInit)
283 self.con.create_aggregate("excStep", 1, AggrExceptionInStep)
284 self.con.create_aggregate("excFinalize", 1, AggrExceptionInFinalize)
285 self.con.create_aggregate("checkType", 2, AggrCheckType)
286 self.con.create_aggregate("mysum", 1, AggrSum)
Dregression.py263 self.assertRaises(TypeError, self.con.create_aggregate, var)
Ddbapi.py802 con.create_aggregate("foo", 1, Agg)
/external/python/cpython3/Doc/includes/sqlite3/
Dmysumaggr.py14 con.create_aggregate("mysum", 1, MySum)
/external/python/cpython2/Doc/includes/sqlite3/
Dmysumaggr.py14 con.create_aggregate("mysum", 1, MySum)
/external/javasqlite/src/main/java/SQLite/
DDatabase.java482 public void create_aggregate(String name, int nargs, Function f) { in create_aggregate() method in Database
/external/python/cpython3/Misc/NEWS.d/
D3.7.2rc1.rst554 :meth:`sqlite3.Connection.create_aggregate`,
/external/python/cpython2/Doc/library/
Dsqlite3.rst318 .. method:: create_aggregate(name, num_params, aggregate_class)
/external/python/cpython3/Doc/library/
Dsqlite3.rst356 .. method:: create_aggregate(name, num_params, aggregate_class)