Home | History | Annotate | Download | only in dist

Lines Matching refs:BTREE_INTKEY

7526 ** Every SQLite table must have either BTREE_INTKEY or BTREE_BLOBKEY set.
7527 ** With BTREE_INTKEY, the table key is a 64-bit integer and arbitrary data
7528 ** is stored in the leaves. (BTREE_INTKEY is used for SQL tables.) With
7533 #define BTREE_INTKEY 1 /* Table has only 64-bit signed integer keys */
52265 ** BTREE_INTKEY|BTREE_LEAFDATA Used for SQL tables with rowid keys
52392 if( createTabFlags & BTREE_INTKEY ){
65082 /* u.bt.flags = BTREE_INTKEY; */
65083 u.bt.flags = BTREE_INTKEY;