Home
last modified time | relevance | path

Searched refs:JT_INNER (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dselect.c271 /* (5) inner */ { 23, 5, JT_INNER }, in sqlite3JoinType()
272 /* (6) cross */ { 28, 5, JT_INNER|JT_CROSS }, in sqlite3JoinType()
294 (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || in sqlite3JoinType()
304 jointype = JT_INNER; in sqlite3JoinType()
H A DsqliteInt.h3180 #define JT_INNER 0x01 /* Any kind of inner or cross join */ macro
H A Dparse.y777 joinop(X) ::= COMMA|JOIN. { X = JT_INNER; }