Searched refs:create_collation (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/sqlite3/test/ |
D | hooks.py | 33 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 …]
|
D | regression.py | 281 self.assertRaises(sqlite.ProgrammingError, self.con.create_collation,
|
/third_party/python/Doc/includes/sqlite3/ |
D | collation_reverse.py | 12 con.create_collation("reverse", collate_reverse)
|
/third_party/sqlite/include/ |
D | sqlite3ext.h | 78 int (*create_collation)(sqlite3*,const char*,int,void*, member 437 #define sqlite3_create_collation sqlite3_api->create_collation
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b2.rst | 412 Fixed possible crash in sqlite3.Connection.create_collation() if pass
|
D | 3.5.3rc1.rst | 774 Fixed possible crash in sqlite3.Connection.create_collation() if pass
|
D | 3.7.0a1.rst | 4405 Fixed possible crash in sqlite3.Connection.create_collation() if pass
|
/third_party/python/Doc/library/ |
D | sqlite3.rst | 426 .. 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/ |
D | sqlite3.c | 131792 int (*create_collation)(sqlite3*,const char*,int,void*, 132147 #define sqlite3_create_collation sqlite3_api->create_collation
|
/third_party/python/Misc/ |
D | HISTORY | 13528 - Issue #8195: Fix a crash in sqlite Connection.create_collation() if the
|