1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +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: test8.c,v 1.37 2006/06/24 11:51:34 danielk1977 Exp $
** $Id: test8.c,v 1.38 2006/06/26 19:10:32 drh Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
@@ -902,7 +902,6 @@ static int echoRollback(sqlite3_vtab *tab){
*/
static sqlite3_module echoModule = {
0, /* iVersion */
"echo", /* zName */
echoCreate,
echoConnect,
echoBestIndex,