Lines Matching refs:CROSS
591 ** Because there is no cross-platform way to specify 64-bit integer types
19266 #define JT_INNER 0x01 /* Any kind of inner or cross join */
19267 #define JT_CROSS 0x02 /* Explicit use of the CROSS keyword */
32486 sqlite3_str_appendf(&x, " CROSS-JOIN");
33767 ** This file presents a simple cross-platform threading interface for
64695 ** use an architecture-specific format; it does not have to be cross-platform.
66206 ** This table also serves as a helpful cross-reference when trying to
113363 ** Clear subtypes as subtypes may not cross a subquery boundary.
125709 ** A natural cross join B
125711 ** The operator is "natural cross join". The A and B operands are stored
139401 ** without the overhead of cross-checking indexes. Quick_check
142005 ** CROSS - - JT_CROSS
142027 ** INNER CROSS JOIN -> same as JOIN
142028 ** NATURAL CROSS JOIN -> same as NATURAL JOIN
142033 ** CROSS CROSS CROSS JOIN -> same as JOIN
142040 ** * "CROSS" cannot appear together with "OUTER", "LEFT", "RIGHT,
142063 /* (6) cross */ { 28, 5, JT_INNER|JT_CROSS },
148981 ** (b) The subquery is the left-most term and a CROSS JOIN or similar
165131 ** If there are no LEFT or CROSS JOIN joins in the query, both mPrereq and
165134 ** separated from it by at least one LEFT or CROSS JOIN. Similarly, the
165137 ** CROSS JOIN.
165141 ** ... FROM t1, t2 LEFT JOIN t3, t4, vt CROSS JOIN t5, t6;
165444 ** across CROSS joins and outer joins. The bFirstPastRJ boolean
176813 ** 81: CROSS
176996 testcase( i==113 ); /* CROSS */