Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dselect.c93 { "inner", 5, JT_INNER }, in sqliteJoinType()
94 { "cross", 5, JT_INNER }, in sqliteJoinType()
115 (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || in sqliteJoinType()
125 jointype = JT_INNER; in sqliteJoinType()
129 jointype = JT_INNER; in sqliteJoinType()
H A DsqliteInt.h787 #define JT_INNER 0x0001 /* Any kind of inner or cross join */ macro
H A Dparse.y413 joinop(X) ::= COMMA. { X = JT_INNER; }
414 joinop(X) ::= JOIN. { X = JT_INNER; }