diff options
author | drh <drh@noemail.net> | 2008-07-07 12:44:58 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-07-07 12:44:58 +0000 |
commit | 6aa1edce9baf531d9cbc3b14d38b51858c0e9a82 (patch) | |
tree | 941bc27aac27d4050312648a8b25f3d673329d63 /src | |
parent | 21b7ce615189d565a17607d34ac1d682ede19483 (diff) | |
download | sqlite-6aa1edce9baf531d9cbc3b14d38b51858c0e9a82.tar.gz sqlite-6aa1edce9baf531d9cbc3b14d38b51858c0e9a82.zip |
Fix a comment in alter.c. No changes to code. (CVS 5347)
FossilOrigin-Name: 3e558acd5eb8aa5ef4681e62284af5c017a24a65
Diffstat (limited to 'src')
-rw-r--r-- | src/alter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alter.c b/src/alter.c index 329a5a988..bf8d28662 100644 --- a/src/alter.c +++ b/src/alter.c @@ -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 { |