diff options
author | drh <> | 2021-08-18 12:05:22 +0000 |
---|---|---|
committer | drh <> | 2021-08-18 12:05:22 +0000 |
commit | b70f2eabb49dc672bb0bdb75c1da155b5f769f78 (patch) | |
tree | abc9e8783ca7db598cea0ff0809d122e4f0f379f /src/sqliteInt.h | |
parent | d519bbdf5c724b079e5e9bbf36173ad8272c53c0 (diff) | |
download | sqlite-b70f2eabb49dc672bb0bdb75c1da155b5f769f78.tar.gz sqlite-b70f2eabb49dc672bb0bdb75c1da155b5f769f78.zip |
Rename the Column.eType field to Column.eCType - with an extra "C".
FossilOrigin-Name: b9b0dcd5af072c22f2ce71cf9584b5b572fbcfbce6410a7d703b586adb8938ba
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index e5dd35246..ade7399d8 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2039,7 +2039,7 @@ struct Module { struct Column { char *zCnName; /* Name of this column */ unsigned notNull :4; /* An OE_ code for handling a NOT NULL constraint */ - unsigned eType :4; /* One of the standard types */ + unsigned eCType :4; /* One of the standard types */ char affinity; /* One of the SQLITE_AFF_... values */ u8 szEst; /* Est size of value in this column. sizeof(INT)==1 */ u8 hName; /* Column name hash for faster lookup */ @@ -2047,7 +2047,7 @@ struct Column { u16 colFlags; /* Boolean properties. See COLFLAG_ defines below */ }; -/* Allowed values for Column.eType. +/* Allowed values for Column.eCType. ** ** Values must match entries in the global constant arrays ** sqlite3StdTypeLen[] and sqlite3StdType[]. Each value is one more |