Home | History | Annotate | Download | only in orig

Lines Matching defs:BTREE_BLOBKEY

8937 ** Every SQLite table must have either BTREE_INTKEY or BTREE_BLOBKEY set.
8940 ** BTREE_BLOBKEY, the key is an arbitrary BLOB and no content is stored
8941 ** anywhere - the key is the content. (BTREE_BLOBKEY is used for SQL
8945 #define BTREE_BLOBKEY 2 /* Table has keys only - no data */
71407 ** sqlite3BtreeCreateTable() with the BTREE_BLOBKEY flag before
71414 rc = sqlite3BtreeCreateTable(pCx->pBt, &pgno, BTREE_BLOBKEY | pOp->p5);
73078 flags = BTREE_BLOBKEY;