Home | History | Annotate | Download | only in dist

Lines Matching refs:BTREE_INTKEY

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