Home | History | Annotate | Download | only in orig

Lines Matching defs:c1

4363 ** CREATE TABLE t1(c1 VARIANT);
4367 ** SELECT c1 + 1, c1 FROM t1;
14923 ** CREATE TABLE Ex1(c1 int, c2 int, c3 text);
14924 ** CREATE INDEX Ex2 ON Ex1(c3,c1);
14931 ** The second column to be indexed (c1) has an index of 0 in
19586 sqlite3_int64 c1;
19588 c1 = localtimeOffset(p, pCtx, &rc);
19590 p->iJD -= c1;
19592 p->iJD += c1 - localtimeOffset(p, pCtx, &rc);
75325 Mem c1;
75327 sqlite3VdbeMemInit(&c1, pMem1->db, MEM_Null);
75329 sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem);
75331 v1 = sqlite3ValueText((sqlite3_value*)&c1, pColl->enc);
75332 n1 = v1==0 ? 0 : c1.n;
75337 sqlite3VdbeMemRelease(&c1);
167189 ** (c1<=c2) constraint on columns iCol and iCol+1 that has failed.
171140 ** CREATE TABLE rbu_imposter2(c1 TEXT, c2 REAL, id INTEGER) WITHOUT ROWID;