mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-05 04:30:38 +03:00
FossilOrigin-Name: 4ae1a9fc2c484e59ef1e58972aa25772cede1187
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
** This file contains code to implement the "sqlite" command line
|
||||
** utility for accessing SQLite databases.
|
||||
**
|
||||
** $Id: shell.c,v 1.121 2005/02/03 00:42:35 drh Exp $
|
||||
** $Id: shell.c,v 1.122 2005/02/23 12:35:41 drh Exp $
|
||||
*/
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
@@ -656,7 +656,7 @@ static int dump_callback(void *pArg, int nArg, char **azArg, char **azCol){
|
||||
zType = azArg[1];
|
||||
zSql = azArg[2];
|
||||
|
||||
if( strcasecmp(zTable,"sqlite_sequence")!=0 ){
|
||||
if( strcmp(zTable,"sqlite_sequence")!=0 ){
|
||||
fprintf(p->out, "%s;\n", zSql);
|
||||
}else{
|
||||
fprintf(p->out, "DELETE FROM sqlite_sequence;\n");
|
||||
|
||||
Reference in New Issue
Block a user