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:
@@ -90,7 +90,7 @@ int sqlite3Strlen30(const char *z){
|
||||
*/
|
||||
char *sqlite3ColumnType(Column *pCol, char *zDflt){
|
||||
if( pCol->colFlags & COLFLAG_HASTYPE ){
|
||||
return pCol->zName + strlen(pCol->zName) + 1;
|
||||
return pCol->zCnName + strlen(pCol->zCnName) + 1;
|
||||
}else if( pCol->eType ){
|
||||
assert( pCol->eType<=SQLITE_N_STDTYPE );
|
||||
return (char*)sqlite3StdType[pCol->eType-1];
|
||||
|
||||
Reference in New Issue
Block a user