1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix comment typos in the sqldiff.c utility program.

FossilOrigin-Name: 32ab2bb990746a84f5944e3cf428fb2dff3628da
This commit is contained in:
drh
2015-04-09 13:40:18 +00:00
parent d62c0f4c2d
commit 39b355c70f
3 changed files with 10 additions and 10 deletions

View File

@ -214,14 +214,14 @@ static void namelistFree(char **az){
/*
** Return a list of column names for the table zDb.zTab. Space to
** old the list is obtained from malloc() and should released by calling
** namelistFree() when no longer needed.
** hold the list is obtained from sqlite3_malloc() and should released
** using namelistFree() when no longer needed.
**
** Primary key columns are listed first, followed by data columns. The
** "primary key" in the previous sentence is the true primary key - the
** rowid or INTEGER PRIMARY KEY for ordinary tables or the declared
** PRIMARY KEY for WITHOUT ROWID tables. The number of columns in the
** primary key is returned in *pNPkey.
** primary key is returned in *pnPkey.
**
** If the table is a rowid table for which the rowid is inaccessible,
** then this routine returns a NULL pointer.