Lines Matching defs:hidden
10543 unsigned char hidden[48];
17609 #define COLFLAG_HIDDEN 0x0002 /* A hidden column in a virtual table */
17794 ** TF_OOOHidden applies to tables or view that have hidden columns that are
17795 ** followed by non-hidden columns. Example: "CREATE VIRTUAL TABLE x USING
17796 ** vtab1(a HIDDEN, b);". Since "b" is a non-hidden column but "a" is hidden,
17807 #define TF_HasHidden 0x00000002 /* Has one or more hidden columns */
17818 #define TF_OOOHidden 0x00000400 /* Out-of-Order hidden columns */
17851 ** Macros to determine if a column is hidden. IsOrdinaryHiddenColumn()
18873 #define SF_IncludeHidden 0x0020000 /* Include hidden columns in output */
129196 ** then a list of all (non-hidden) columns for the table is substituted.
129299 int nHidden = 0; /* Number of hidden columns if TABLE is virtual */
133650 /* 14 */ "hidden",
136840 u8 nHidden; /* Number of hidden columns */
136841 u8 iHidden; /* Index of the first hidden column */
136924 ** query planner to give == constraints on as many hidden parameters as
136925 ** possible, and especially on the first hidden parameter. So return a
136926 ** high cost if hidden parameters are unconstrained.
138566 int bIgnoreHidden /* Ignore hidden columns */
144219 /* If a column is marked as 'hidden', omit it from the expanded
150579 ** columns of the table to see if any of them contain the token "hidden".
150591 if( 0==sqlite3StrNICmp("hidden", &zType[i], 6)
185931 ** And equality constraints on the hidden "languageid" column. */
208389 ** All non-hidden columns (i.e. all columns matched by "SELECT *") of the
208391 ** hidden columns are optional - they are updated by RBU if present in
208393 ** table with a hidden languageid column such as:
238442 ** 4. Values for the two hidden columns (<tablename> and "rank").