Lines Matching defs:hidden
10825 unsigned char hidden[48];
18247 #define COLFLAG_HIDDEN 0x0002 /* A hidden column in a virtual table */
18434 ** TF_OOOHidden applies to tables or view that have hidden columns that are
18435 ** followed by non-hidden columns. Example: "CREATE VIRTUAL TABLE x USING
18436 ** vtab1(a HIDDEN, b);". Since "b" is a non-hidden column but "a" is hidden,
18447 #define TF_HasHidden 0x00000002 /* Has one or more hidden columns */
18457 #define TF_OOOHidden 0x00000400 /* Out-of-Order hidden columns */
18490 ** Macros to determine if a column is hidden. IsOrdinaryHiddenColumn()
19550 #define SF_IncludeHidden 0x0020000 /* Include hidden columns in output */
133681 ** then a list of all (non-hidden) columns for the table is substituted.
133784 int nHidden = 0; /* Number of hidden columns if TABLE is virtual */
138176 /* 14 */ "hidden",
141497 u8 nHidden; /* Number of hidden columns */
141498 u8 iHidden; /* Index of the first hidden column */
141581 ** query planner to give == constraints on as many hidden parameters as
141582 ** possible, and especially on the first hidden parameter. So return a
141583 ** high cost if hidden parameters are unconstrained.
143254 int bIgnoreHidden /* Ignore hidden columns */
149129 /* If a column is marked as 'hidden', omit it from the expanded
156038 ** columns of the table to see if any of them contain the token "hidden".
156050 if( 0==sqlite3StrNICmp("hidden", &zType[i], 6)
192513 ** And equality constraints on the hidden "languageid" column. */
217698 ** All non-hidden columns (i.e. all columns matched by "SELECT *") of the
217700 ** hidden columns are optional - they are updated by RBU if present in
217702 ** table with a hidden languageid column such as:
251248 ** 4. Values for the two hidden columns (<tablename> and "rank").