• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/Heimdal-398.1.2/lib/sqlite/

Lines Matching defs:distinct

6517 ** distinct values of R when SQLite is compiled with the proprietary
9611 ** than being distinct from one another.
16300 u32 currentCount; /* Current number of distinct checkouts */
34848 ** a hash table that will hold up to BITVEC_MXHASH distinct values.
35665 ** Since there cannot be more than 2^31 distinct pages in a database,
35839 ** at PGroup.pBlockList. There is one entry for each distinct page-size
56604 pDestDb, SQLITE_ERROR, "source and destination must be distinct"
77822 ** Number of distinct entries in index considering the
77922 ** rows of the table the index will select. If D is the count of distinct
81885 ** considered distinct and both result in separate indices.
87243 ** if <table2> and <table1> are distinct tables but have identical
92823 ** form a distinct entry. iTab is a sorting index that holds previously
92828 ** stack if the top N elements are not distinct.
92833 int addrRepeat, /* Jump to here if not distinct */
92888 int distinct, /* If >=0, make sure results are distinct */
92904 hasDistinct = distinct>=0;
92944 codeDistinct(pParse, distinct, iContinue, nColumn, regResult);
95142 ** that make up the compound SELECT are allowed to be aggregate or distinct
95388 /* The flattened query is distinct if either the inner or the
95389 ** outer query is distinct.
96091 int distinct; /* Table to use for the distinct set */
96319 /* Open a virtual index to use for the distinct set.
96323 distinct = pParse->nTab++;
96325 addrDistinctIndex = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, distinct, 0, 0,
96329 distinct = addrDistinctIndex = -1;
96360 distinct = -1;
96395 selectInnerLoop(pParse, p, pEList, 0, 0, pOrderBy, distinct, pDest,
96660 distinct, pDest,
96801 if( distinct>=0 ){
101816 /* Loop through all the expressions in the distinct list. If any of them
101852 ** UNIQUE index that guarantees that the result of the query will be distinct
103352 int nInMul = 1; /* Number of distinct equalities to lookup */
106496 "distinct", "selcollist", "from", "where_opt",
106635 /* 118 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt",
106636 /* 119 */ "distinct ::= DISTINCT",
106637 /* 120 */ "distinct ::= ALL",
106638 /* 121 */ "distinct ::=",
106714 /* 197 */ "expr ::= ID LP distinct exprlist RP",
107682 case 120: /* distinct ::= ALL */ yytestcase(yyruleno==120);
107683 case 121: /* distinct ::= */ yytestcase(yyruleno==121);
107693 case 119: /* distinct ::= DISTINCT */ yytestcase(yyruleno==119);
107919 case 118: /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */
108203 case 197: /* expr ::= ID LP distinct exprlist RP */