Home
last modified time | relevance | path

Searched refs:nSep (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dfunc.c1780 int nVal, nSep; in groupConcatStep() local
1799 nSep = sqlite3_value_bytes(argv[1]); in groupConcatStep()
1801 sqlite3_str_append(&pGCC->str, zSep, nSep); in groupConcatStep()
1805 nSep = 0; in groupConcatStep()
1807 if( nSep != pGCC->nFirstSepLength || pGCC->pnSepLengths != 0 ){ in groupConcatStep()
1821 pnsl[pGCC->nAccum-1] = nSep; in groupConcatStep()
H A Dtclsqlite.c2454 int nSep; /* Number of bytes in zSep[] */ in DbObjCmd() local
2485 nSep = strlen30(zSep); in DbObjCmd()
2487 if( nSep==0 ){ in DbObjCmd()
2560 if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){ in DbObjCmd()
2564 azCol[i] = &z[nSep]; in DbObjCmd()
2565 z += nSep-1; in DbObjCmd()
H A Dshell.c.in8389 int nSep; /* Number of bytes in p->colSeparator[] */ local
8453 nSep = strlen30(p->colSeparator);
8454 if( nSep==0 ){
8459 if( nSep>1 ){
8465 nSep = strlen30(p->rowSeparator);
8466 if( nSep==0 ){
8471 if( nSep==2 && p->mode==MODE_Csv
8479 nSep = strlen30(p->rowSeparator);
8481 if( nSep>1 ){
/sqlite-3.40.0/test/
H A Dspeedtest1.c694 int nVal, nSep; in groupStep() local
704 nSep = sqlite3_value_bytes(argv[1]); in groupStep()
707 nSep = 1; in groupStep()
709 if( nSep ) groupAppend(p, zSep, nSep); in groupStep()