1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-16 23:02:26 +03:00

Respect default collation sequences assigned to virtual table columns. (CVS 3272)

FossilOrigin-Name: d9b205acac34ba9703bc35dfb101aedd95cb5a16
This commit is contained in:
danielk1977
2006-06-19 05:33:45 +00:00
parent 70b6d57373
commit b8cbb872cf
4 changed files with 44 additions and 12 deletions

View File

@@ -22,7 +22,7 @@
** COMMIT
** ROLLBACK
**
** $Id: build.c,v 1.403 2006/06/16 16:08:54 danielk1977 Exp $
** $Id: build.c,v 1.404 2006/06/19 05:33:45 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1179,7 +1179,7 @@ void sqlite3AddCollateType(Parse *pParse, const char *zType, int nType){
Table *p;
int i;
if( (p = pParse->pNewTable)==0 || IN_DECLARE_VTAB ) return;
if( (p = pParse->pNewTable)==0 ) return;
i = p->nCol-1;
if( sqlite3LocateCollSeq(pParse, zType, nType) ){