Home
last modified time | relevance | path

Searched refs:create_collation (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/sqlite3/test/
Dhooks.py33 con.create_collation(None, lambda x, y: (x > y) - (x < y))
38 con.create_collation("X", 42)
44 con.create_collation("collä", lambda x, y: (x > y) - (x < y))
52 con.create_collation(BadUpperStr("mycoll"), mycoll)
69 con.create_collation("mycoll", mycoll)
83 con.create_collation("mycoll", None)
93 con.create_collation("mycoll", mycoll)
113 con.create_collation("mycoll", lambda x, y: (x > y) - (x < y))
114 con.create_collation("mycoll", lambda x, y: -((x > y) - (x < y)))
127 con.create_collation("mycoll", lambda x, y: (x > y) - (x < y))
[all …]
Dregression.py281 self.assertRaises(sqlite.ProgrammingError, self.con.create_collation,
/third_party/python/Doc/includes/sqlite3/
Dcollation_reverse.py12 con.create_collation("reverse", collate_reverse)
/third_party/sqlite/include/
Dsqlite3ext.h78 int (*create_collation)(sqlite3*,const char*,int,void*, member
437 #define sqlite3_create_collation sqlite3_api->create_collation
/third_party/python/Misc/NEWS.d/
D3.6.0b2.rst412 Fixed possible crash in sqlite3.Connection.create_collation() if pass
D3.5.3rc1.rst774 Fixed possible crash in sqlite3.Connection.create_collation() if pass
D3.7.0a1.rst4405 Fixed possible crash in sqlite3.Connection.create_collation() if pass
/third_party/python/Doc/library/
Dsqlite3.rst426 .. method:: create_collation(name, callable)
441 To remove a collation, call ``create_collation`` with ``None`` as callable::
443 con.create_collation("reverse", None)
/third_party/sqlite/src/
Dsqlite3.c131792 int (*create_collation)(sqlite3*,const char*,int,void*,
132147 #define sqlite3_create_collation sqlite3_api->create_collation
/third_party/python/Misc/
DHISTORY13528 - Issue #8195: Fix a crash in sqlite Connection.create_collation() if the