1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Remove the sqlite3_module.zName field which was used only for debugging. (CVS 3297)

FossilOrigin-Name: 74a3961f39b9a045518835b20940471ac97bca66
This commit is contained in:
drh
2006-06-26 19:10:32 +00:00
parent 344a627661
commit 1914619ae7
8 changed files with 25 additions and 29 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test_schema.c,v 1.7 2006/06/24 09:34:23 danielk1977 Exp $
** $Id: test_schema.c,v 1.8 2006/06/26 19:10:32 drh Exp $
*/
/* The code in this file defines a sqlite3 virtual-table module that
@@ -269,7 +269,6 @@ static int schemaBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
*/
static sqlite3_module schemaModule = {
0, /* iVersion */
"schema", /* zName */
schemaCreate,
schemaCreate,
schemaBestIndex,