mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
Refactor field names in the Column object, zCnName and zCnColl, to make them
unique and thus easier to find amid all the other code. FossilOrigin-Name: 8b781dcaf68e0cf12a844708c82eee00193e340195cbca915d077e4846983bf3
This commit is contained in:
@@ -2030,8 +2030,8 @@ struct Module {
|
||||
** columns to the left.
|
||||
*/
|
||||
struct Column {
|
||||
char *zName; /* Name of this column, \000, then the type */
|
||||
char *zColl; /* Collating sequence. If NULL, use the default */
|
||||
char *zCnName; /* Name of this column */
|
||||
char *zCnColl; /* Collating sequence. If NULL, use the default */
|
||||
u8 notNull : 4; /* An OE_ code for handling a NOT NULL constraint */
|
||||
u8 eType : 4; /* One of the standard types */
|
||||
char affinity; /* One of the SQLITE_AFF_... values */
|
||||
|
||||
Reference in New Issue
Block a user