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:
@ -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.
|
||||
|
Reference in New Issue
Block a user