diff options
Diffstat (limited to 'src/insert.c')
-rw-r--r-- | src/insert.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/insert.c b/src/insert.c index e94af0985..c6a0ad705 100644 --- a/src/insert.c +++ b/src/insert.c @@ -97,16 +97,6 @@ const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){ } /* -** Return the affinity for a single column of an index. -*/ -char sqlite3IndexColumnAffinity(sqlite3 *db, Index *pIdx, int iCol){ - if( !pIdx->zColAff ){ - if( sqlite3IndexAffinityStr(db, pIdx)==0 ) return SQLITE_AFF_BLOB; - } - return pIdx->zColAff[iCol]; -} - -/* ** Compute the affinity string for table pTab, if it has not already been ** computed. As an optimization, omit trailing SQLITE_AFF_BLOB affinities. ** |