1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a comment in alter.c. No changes to code. (CVS 5347)

FossilOrigin-Name: 3e558acd5eb8aa5ef4681e62284af5c017a24a65
This commit is contained in:
drh
2008-07-07 12:44:58 +00:00
parent 21b7ce6151
commit 6aa1edce9b
3 changed files with 10 additions and 10 deletions

View File

@@ -12,7 +12,7 @@
** This file contains C code routines that used to generate VDBE code
** that implements the ALTER TABLE command.
**
** $Id: alter.c,v 1.44 2008/05/09 14:17:52 drh Exp $
** $Id: alter.c,v 1.45 2008/07/07 12:44:58 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -55,7 +55,7 @@ static void renameTableFunc(
/* The principle used to locate the table name in the CREATE TABLE
** statement is that the table name is the first non-space token that
** is immediately followed by a left parenthesis - TK_LP - or "USING" TK_USING.
** is immediately followed by a TK_LP or TK_USING token.
*/
if( zSql ){
do {