Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the built-in tclsqlite3.c file to version 3.26.0 final. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d7e3ba32d05faa29f9d2a0ec794c1d56 |
User & Date: | drh 2018-12-01 13:24:44.833 |
Context
2019-02-05
| ||
23:32 | Update the built-in tclsqlite3.c to the latest 3.27.0 beta. (check-in: 52cd62c2ac user: drh tags: trunk) | |
2018-12-01
| ||
13:24 | Update the built-in tclsqlite3.c file to version 3.26.0 final. (check-in: d7e3ba32d0 user: drh tags: trunk) | |
2018-11-27
| ||
17:27 | Update the built-in SQLite to the lastest 3.26.0 beta for testing. (check-in: 6a4d54bab7 user: drh tags: trunk) | |
Changes
Changes to tclsqlite3.c.
︙ | ︙ | |||
1161 1162 1163 1164 1165 1166 1167 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.26.0" #define SQLITE_VERSION_NUMBER 3026000 | | | 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.26.0" #define SQLITE_VERSION_NUMBER 3026000 #define SQLITE_SOURCE_ID "2018-12-01 12:34:55 bf8c1b2b7a5960c282e543b9c293686dccff272512d08865f4600fb58238b4f9" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros |
︙ | ︙ | |||
4669 4670 4671 4672 4673 4674 4675 | ** deplete the limited store of lookaside memory. Future versions of ** SQLite may act on this hint differently. ** ** [[SQLITE_PREPARE_NORMALIZE]] ^(<dt>SQLITE_PREPARE_NORMALIZE</dt> ** <dd>The SQLITE_PREPARE_NORMALIZE flag indicates that a normalized ** representation of the SQL statement should be calculated and then ** associated with the prepared statement, which can be obtained via | | | 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 | ** deplete the limited store of lookaside memory. Future versions of ** SQLite may act on this hint differently. ** ** [[SQLITE_PREPARE_NORMALIZE]] ^(<dt>SQLITE_PREPARE_NORMALIZE</dt> ** <dd>The SQLITE_PREPARE_NORMALIZE flag indicates that a normalized ** representation of the SQL statement should be calculated and then ** associated with the prepared statement, which can be obtained via ** the [sqlite3_normalized_sql()] interface.)^ The semantics used to ** normalize a SQL statement are unspecified and subject to change. ** At a minimum, literal values will be replaced with suitable ** placeholders. ** </dl> */ #define SQLITE_PREPARE_PERSISTENT 0x01 #define SQLITE_PREPARE_NORMALIZE 0x02 |
︙ | ︙ | |||
10461 10462 10463 10464 10465 10466 10467 | unsigned int *anQueue; /* Number of pending entries in the queue */ int nCoord; /* Number of coordinates */ int iLevel; /* Level of current node or entry */ int mxLevel; /* The largest iLevel value in the tree */ sqlite3_int64 iRowid; /* Rowid for current entry */ sqlite3_rtree_dbl rParentScore; /* Score of parent node */ int eParentWithin; /* Visibility of parent node */ | | | 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 | unsigned int *anQueue; /* Number of pending entries in the queue */ int nCoord; /* Number of coordinates */ int iLevel; /* Level of current node or entry */ int mxLevel; /* The largest iLevel value in the tree */ sqlite3_int64 iRowid; /* Rowid for current entry */ sqlite3_rtree_dbl rParentScore; /* Score of parent node */ int eParentWithin; /* Visibility of parent node */ int eWithin; /* OUT: Visibility */ sqlite3_rtree_dbl rScore; /* OUT: Write the score here */ /* The following fields are only available in 3.8.11 and later */ sqlite3_value **apSqlParam; /* Original SQL values of parameters */ }; /* ** Allowed values for sqlite3_rtree_query.eWithin and .eParentWithin. |
︙ | ︙ | |||
48534 48535 48536 48537 48538 48539 48540 | PgHdr1 *pNext; /* Next in hash table chain */ PCache1 *pCache; /* Cache that currently owns this page */ PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */ PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */ }; /* | | > | 48534 48535 48536 48537 48538 48539 48540 48541 48542 48543 48544 48545 48546 48547 48548 48549 | PgHdr1 *pNext; /* Next in hash table chain */ PCache1 *pCache; /* Cache that currently owns this page */ PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */ PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */ }; /* ** A page is pinned if it is not on the LRU list. To be "pinned" means ** that the page is in active use and must not be deallocated. */ #define PAGE_IS_PINNED(p) ((p)->pLruNext==0) #define PAGE_IS_UNPINNED(p) ((p)->pLruNext!=0) /* Each page cache (or PCache) belongs to a PGroup. A PGroup is a set ** of one or more PCaches that are able to recycle each other's unpinned ** pages when they are under memory pressure. A PGroup is an instance of |
︙ | ︙ | |||
57381 57382 57383 57384 57385 57386 57387 | SQLITE_PRIVATE void sqlite3PagerSetCodec( Pager *pPager, void *(*xCodec)(void*,void*,Pgno,int), void (*xCodecSizeChng)(void*,int,int), void (*xCodecFree)(void*), void *pCodec ){ | > > > | < > | 57382 57383 57384 57385 57386 57387 57388 57389 57390 57391 57392 57393 57394 57395 57396 57397 57398 57399 57400 | SQLITE_PRIVATE void sqlite3PagerSetCodec( Pager *pPager, void *(*xCodec)(void*,void*,Pgno,int), void (*xCodecSizeChng)(void*,int,int), void (*xCodecFree)(void*), void *pCodec ){ if( pPager->xCodecFree ){ pPager->xCodecFree(pPager->pCodec); }else{ pager_reset(pPager); } pPager->xCodec = pPager->memDb ? 0 : xCodec; pPager->xCodecSizeChng = xCodecSizeChng; pPager->xCodecFree = xCodecFree; pPager->pCodec = pCodec; setGetterMethod(pPager); pagerReportSize(pPager); } |
︙ | ︙ | |||
106460 106461 106462 106463 106464 106465 106466 | /* ** Erase all schema information from all attached databases (including ** "main" and "temp") for a single database connection. */ SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3 *db){ int i; sqlite3BtreeEnterAll(db); | < > | > > > > | > | 106464 106465 106466 106467 106468 106469 106470 106471 106472 106473 106474 106475 106476 106477 106478 106479 106480 106481 106482 106483 106484 106485 106486 106487 106488 106489 106490 106491 106492 106493 | /* ** Erase all schema information from all attached databases (including ** "main" and "temp") for a single database connection. */ SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3 *db){ int i; sqlite3BtreeEnterAll(db); for(i=0; i<db->nDb; i++){ Db *pDb = &db->aDb[i]; if( pDb->pSchema ){ if( db->nSchemaLock==0 ){ sqlite3SchemaClear(pDb->pSchema); }else{ DbSetProperty(db, i, DB_ResetWanted); } } } db->mDbFlags &= ~(DBFLAG_SchemaChange|DBFLAG_SchemaKnownOk); sqlite3VtabUnlockList(db); sqlite3BtreeLeaveAll(db); if( db->nSchemaLock==0 ){ sqlite3CollapseDatabaseArray(db); } } /* ** This routine is called when a commit occurs. */ SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3 *db){ db->mDbFlags &= ~DBFLAG_SchemaChange; |
︙ | ︙ | |||
107810 107811 107812 107813 107814 107815 107816 107817 107818 107819 107820 107821 107822 107823 | assert( pTab->nCol==j ); }else{ pPk->nColumn = pTab->nCol; } recomputeColumnsNotIndexed(pPk); } /* ** Return true if zName is a shadow table name in the current database ** connection. ** ** zName is temporarily modified while this routine is running, but is ** restored to its original value prior to this routine returning. */ | > | 107819 107820 107821 107822 107823 107824 107825 107826 107827 107828 107829 107830 107831 107832 107833 | assert( pTab->nCol==j ); }else{ pPk->nColumn = pTab->nCol; } recomputeColumnsNotIndexed(pPk); } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Return true if zName is a shadow table name in the current database ** connection. ** ** zName is temporarily modified while this routine is running, but is ** restored to its original value prior to this routine returning. */ |
︙ | ︙ | |||
107835 107836 107837 107838 107839 107840 107841 107842 107843 107844 107845 107846 107847 107848 | if( !IsVirtual(pTab) ) return 0; pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->azModuleArg[0]); if( pMod==0 ) return 0; if( pMod->pModule->iVersion<3 ) return 0; if( pMod->pModule->xShadowName==0 ) return 0; return pMod->pModule->xShadowName(zTail+1); } /* ** This routine is called to report the final ")" that terminates ** a CREATE TABLE statement. ** ** The table structure that other action routines have been building ** is added to the internal hash tables, assuming no errors have | > > > | 107845 107846 107847 107848 107849 107850 107851 107852 107853 107854 107855 107856 107857 107858 107859 107860 107861 | if( !IsVirtual(pTab) ) return 0; pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->azModuleArg[0]); if( pMod==0 ) return 0; if( pMod->pModule->iVersion<3 ) return 0; if( pMod->pModule->xShadowName==0 ) return 0; return pMod->pModule->xShadowName(zTail+1); } #else # define isShadowTableName(x,y) 0 #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ /* ** This routine is called to report the final ")" that terminates ** a CREATE TABLE statement. ** ** The table structure that other action routines have been building ** is added to the internal hash tables, assuming no errors have |
︙ | ︙ | |||
111122 111123 111124 111125 111126 111127 111128 | } if( (pTab->tabFlags & (TF_Readonly|TF_Shadow))==0 ) return 0; db = pParse->db; if( (pTab->tabFlags & TF_Readonly)!=0 ){ return sqlite3WritableSchema(db)==0 && pParse->nested==0; } assert( pTab->tabFlags & TF_Shadow ); | | | | > > | 111135 111136 111137 111138 111139 111140 111141 111142 111143 111144 111145 111146 111147 111148 111149 111150 111151 111152 111153 | } if( (pTab->tabFlags & (TF_Readonly|TF_Shadow))==0 ) return 0; db = pParse->db; if( (pTab->tabFlags & TF_Readonly)!=0 ){ return sqlite3WritableSchema(db)==0 && pParse->nested==0; } assert( pTab->tabFlags & TF_Shadow ); return (db->flags & SQLITE_Defensive)!=0 #ifndef SQLITE_OMIT_VIRTUALTABLE && db->pVtabCtx==0 #endif && db->nVdbeExec==0; } /* ** Check to make sure the given table is writable. If it is not ** writable, generate an error message and return 1. If it is ** writable return 0; */ |
︙ | ︙ | |||
118755 118756 118757 118758 118759 118760 118761 118762 118763 118764 118765 118766 118767 118768 | #ifdef SQLITE_OMIT_VIRTUALTABLE # define sqlite3_create_module 0 # define sqlite3_create_module_v2 0 # define sqlite3_declare_vtab 0 # define sqlite3_vtab_config 0 # define sqlite3_vtab_on_conflict 0 #endif #ifdef SQLITE_OMIT_SHARED_CACHE # define sqlite3_enable_shared_cache 0 #endif #if defined(SQLITE_OMIT_TRACE) || defined(SQLITE_OMIT_DEPRECATED) | > | 118770 118771 118772 118773 118774 118775 118776 118777 118778 118779 118780 118781 118782 118783 118784 | #ifdef SQLITE_OMIT_VIRTUALTABLE # define sqlite3_create_module 0 # define sqlite3_create_module_v2 0 # define sqlite3_declare_vtab 0 # define sqlite3_vtab_config 0 # define sqlite3_vtab_on_conflict 0 # define sqlite3_vtab_collation 0 #endif #ifdef SQLITE_OMIT_SHARED_CACHE # define sqlite3_enable_shared_cache 0 #endif #if defined(SQLITE_OMIT_TRACE) || defined(SQLITE_OMIT_DEPRECATED) |
︙ | ︙ | |||
147066 147067 147068 147069 147070 147071 147072 | #define sqlite3ParserARG_STORE #define sqlite3ParserCTX_SDECL Parse *pParse; #define sqlite3ParserCTX_PDECL ,Parse *pParse #define sqlite3ParserCTX_PARAM ,pParse #define sqlite3ParserCTX_FETCH Parse *pParse=yypParser->pParse; #define sqlite3ParserCTX_STORE yypParser->pParse=pParse; #define YYFALLBACK 1 | | | | | | | | | | | 147082 147083 147084 147085 147086 147087 147088 147089 147090 147091 147092 147093 147094 147095 147096 147097 147098 147099 147100 147101 147102 147103 147104 147105 147106 | #define sqlite3ParserARG_STORE #define sqlite3ParserCTX_SDECL Parse *pParse; #define sqlite3ParserCTX_PDECL ,Parse *pParse #define sqlite3ParserCTX_PARAM ,pParse #define sqlite3ParserCTX_FETCH Parse *pParse=yypParser->pParse; #define sqlite3ParserCTX_STORE yypParser->pParse=pParse; #define YYFALLBACK 1 #define YYNSTATE 521 #define YYNRULE 367 #define YYNTOKEN 155 #define YY_MAX_SHIFT 520 #define YY_MIN_SHIFTREDUCE 756 #define YY_MAX_SHIFTREDUCE 1122 #define YY_ERROR_ACTION 1123 #define YY_ACCEPT_ACTION 1124 #define YY_NO_ACTION 1125 #define YY_MIN_REDUCE 1126 #define YY_MAX_REDUCE 1492 /************* End control #defines *******************************************/ #define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0]))) /* Define the yytestcase() macro to be a no-op if is not already defined ** otherwise. ** ** Applications can choose to define yytestcase() in the %include section |
︙ | ︙ | |||
147145 147146 147147 147148 147149 147150 147151 | ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. ** *********** Begin parsing tables **********************************************/ #define YY_ACTTAB_COUNT (2009) static const YYACTIONTYPE yy_action[] = { | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 147161 147162 147163 147164 147165 147166 147167 147168 147169 147170 147171 147172 147173 147174 147175 147176 147177 147178 147179 147180 147181 147182 147183 147184 147185 147186 147187 147188 147189 147190 147191 147192 147193 147194 147195 147196 147197 147198 147199 147200 147201 147202 147203 147204 147205 147206 147207 147208 147209 147210 147211 147212 147213 147214 147215 147216 147217 147218 147219 147220 147221 147222 147223 147224 147225 147226 147227 147228 147229 147230 147231 147232 147233 147234 147235 147236 147237 147238 147239 147240 147241 147242 147243 147244 147245 147246 147247 147248 147249 147250 147251 147252 147253 147254 147255 147256 147257 147258 147259 147260 147261 147262 147263 147264 147265 147266 147267 147268 147269 147270 147271 147272 147273 147274 147275 147276 147277 147278 147279 147280 147281 147282 147283 147284 147285 147286 147287 147288 147289 147290 147291 147292 147293 147294 147295 147296 147297 147298 147299 147300 147301 147302 147303 147304 147305 147306 147307 147308 147309 147310 147311 147312 147313 147314 147315 147316 147317 147318 147319 147320 147321 147322 147323 147324 147325 147326 147327 147328 147329 147330 147331 147332 147333 147334 147335 147336 147337 147338 147339 147340 147341 147342 147343 147344 147345 147346 147347 147348 147349 147350 147351 147352 147353 147354 147355 147356 147357 147358 147359 147360 147361 147362 147363 147364 147365 147366 147367 147368 147369 147370 147371 147372 147373 147374 147375 | ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. ** *********** Begin parsing tables **********************************************/ #define YY_ACTTAB_COUNT (2009) static const YYACTIONTYPE yy_action[] = { /* 0 */ 368, 105, 102, 197, 105, 102, 197, 515, 1124, 1, /* 10 */ 1, 520, 2, 1128, 515, 1192, 1171, 1456, 275, 370, /* 20 */ 127, 1389, 1197, 1197, 1192, 1166, 178, 1205, 64, 64, /* 30 */ 477, 887, 322, 428, 348, 37, 37, 808, 362, 888, /* 40 */ 509, 509, 509, 112, 113, 103, 1100, 1100, 953, 956, /* 50 */ 946, 946, 110, 110, 111, 111, 111, 111, 365, 252, /* 60 */ 252, 515, 252, 252, 497, 515, 309, 515, 459, 515, /* 70 */ 1079, 491, 512, 478, 6, 512, 809, 134, 498, 228, /* 80 */ 194, 428, 37, 37, 515, 208, 64, 64, 64, 64, /* 90 */ 13, 13, 109, 109, 109, 109, 108, 108, 107, 107, /* 100 */ 107, 106, 401, 258, 381, 13, 13, 398, 397, 428, /* 110 */ 252, 252, 370, 476, 405, 1104, 1079, 1080, 1081, 386, /* 120 */ 1106, 390, 497, 512, 497, 1423, 1419, 304, 1105, 307, /* 130 */ 1256, 496, 370, 499, 16, 16, 112, 113, 103, 1100, /* 140 */ 1100, 953, 956, 946, 946, 110, 110, 111, 111, 111, /* 150 */ 111, 262, 1107, 495, 1107, 401, 112, 113, 103, 1100, /* 160 */ 1100, 953, 956, 946, 946, 110, 110, 111, 111, 111, /* 170 */ 111, 129, 1425, 343, 1420, 339, 1059, 492, 1057, 263, /* 180 */ 73, 105, 102, 197, 994, 109, 109, 109, 109, 108, /* 190 */ 108, 107, 107, 107, 106, 401, 370, 111, 111, 111, /* 200 */ 111, 104, 492, 89, 1432, 109, 109, 109, 109, 108, /* 210 */ 108, 107, 107, 107, 106, 401, 111, 111, 111, 111, /* 220 */ 112, 113, 103, 1100, 1100, 953, 956, 946, 946, 110, /* 230 */ 110, 111, 111, 111, 111, 109, 109, 109, 109, 108, /* 240 */ 108, 107, 107, 107, 106, 401, 114, 108, 108, 107, /* 250 */ 107, 107, 106, 401, 109, 109, 109, 109, 108, 108, /* 260 */ 107, 107, 107, 106, 401, 152, 399, 399, 399, 109, /* 270 */ 109, 109, 109, 108, 108, 107, 107, 107, 106, 401, /* 280 */ 178, 493, 1412, 434, 1037, 1486, 1079, 515, 1486, 370, /* 290 */ 421, 297, 357, 412, 74, 1079, 109, 109, 109, 109, /* 300 */ 108, 108, 107, 107, 107, 106, 401, 1413, 37, 37, /* 310 */ 1431, 274, 506, 112, 113, 103, 1100, 1100, 953, 956, /* 320 */ 946, 946, 110, 110, 111, 111, 111, 111, 1436, 520, /* 330 */ 2, 1128, 1079, 1080, 1081, 430, 275, 1079, 127, 366, /* 340 */ 933, 1079, 1080, 1081, 220, 1205, 913, 458, 455, 454, /* 350 */ 392, 167, 515, 1035, 152, 445, 924, 453, 152, 874, /* 360 */ 923, 289, 109, 109, 109, 109, 108, 108, 107, 107, /* 370 */ 107, 106, 401, 13, 13, 261, 853, 252, 252, 227, /* 380 */ 106, 401, 370, 1079, 1080, 1081, 311, 388, 1079, 296, /* 390 */ 512, 923, 923, 925, 231, 323, 1255, 1388, 1423, 490, /* 400 */ 274, 506, 12, 208, 274, 506, 112, 113, 103, 1100, /* 410 */ 1100, 953, 956, 946, 946, 110, 110, 111, 111, 111, /* 420 */ 111, 1440, 286, 1128, 288, 1079, 1097, 247, 275, 1098, /* 430 */ 127, 387, 405, 389, 1079, 1080, 1081, 1205, 159, 238, /* 440 */ 255, 321, 461, 316, 460, 225, 790, 105, 102, 197, /* 450 */ 513, 314, 842, 842, 445, 109, 109, 109, 109, 108, /* 460 */ 108, 107, 107, 107, 106, 401, 515, 514, 515, 252, /* 470 */ 252, 1079, 1080, 1081, 435, 370, 1098, 933, 1460, 794, /* 480 */ 274, 506, 512, 105, 102, 197, 336, 63, 63, 64, /* 490 */ 64, 27, 790, 924, 287, 208, 1354, 923, 515, 112, /* 500 */ 113, 103, 1100, 1100, 953, 956, 946, 946, 110, 110, /* 510 */ 111, 111, 111, 111, 107, 107, 107, 106, 401, 49, /* 520 */ 49, 515, 28, 1079, 405, 497, 421, 297, 923, 923, /* 530 */ 925, 186, 468, 1079, 467, 999, 999, 442, 515, 1079, /* 540 */ 334, 515, 45, 45, 1083, 342, 173, 168, 109, 109, /* 550 */ 109, 109, 108, 108, 107, 107, 107, 106, 401, 13, /* 560 */ 13, 205, 13, 13, 252, 252, 1195, 1195, 370, 1079, /* 570 */ 1080, 1081, 787, 265, 5, 359, 494, 512, 469, 1079, /* 580 */ 1080, 1081, 398, 397, 1079, 1079, 1080, 1081, 3, 282, /* 590 */ 1079, 1083, 112, 113, 103, 1100, 1100, 953, 956, 946, /* 600 */ 946, 110, 110, 111, 111, 111, 111, 252, 252, 1015, /* 610 */ 220, 1079, 873, 458, 455, 454, 943, 943, 954, 957, /* 620 */ 512, 252, 252, 453, 1016, 1079, 445, 1107, 1209, 1107, /* 630 */ 1079, 1080, 1081, 515, 512, 426, 1079, 1080, 1081, 1017, /* 640 */ 512, 109, 109, 109, 109, 108, 108, 107, 107, 107, /* 650 */ 106, 401, 1052, 515, 50, 50, 515, 1079, 1080, 1081, /* 660 */ 828, 370, 1051, 379, 411, 1064, 1358, 207, 408, 773, /* 670 */ 829, 1079, 1080, 1081, 64, 64, 322, 64, 64, 1302, /* 680 */ 947, 411, 410, 1358, 1360, 112, 113, 103, 1100, 1100, /* 690 */ 953, 956, 946, 946, 110, 110, 111, 111, 111, 111, /* 700 */ 294, 482, 515, 1037, 1487, 515, 434, 1487, 354, 1120, /* 710 */ 483, 996, 913, 485, 466, 996, 132, 178, 33, 450, /* 720 */ 1203, 136, 406, 64, 64, 479, 64, 64, 419, 369, /* 730 */ 283, 1146, 252, 252, 109, 109, 109, 109, 108, 108, /* 740 */ 107, 107, 107, 106, 401, 512, 224, 440, 411, 266, /* 750 */ 1358, 266, 252, 252, 370, 296, 416, 284, 934, 396, /* 760 */ 976, 470, 400, 252, 252, 512, 9, 473, 231, 500, /* 770 */ 354, 1036, 1035, 1488, 355, 374, 512, 1121, 112, 113, /* 780 */ 103, 1100, 1100, 953, 956, 946, 946, 110, 110, 111, /* 790 */ 111, 111, 111, 252, 252, 1015, 515, 1347, 295, 252, /* 800 */ 252, 252, 252, 1098, 375, 249, 512, 445, 872, 322, /* 810 */ 1016, 480, 512, 195, 512, 434, 273, 15, 15, 515, /* 820 */ 314, 515, 95, 515, 93, 1017, 367, 109, 109, 109, /* 830 */ 109, 108, 108, 107, 107, 107, 106, 401, 515, 1121, /* 840 */ 39, 39, 51, 51, 52, 52, 503, 370, 515, 1204, /* 850 */ 1098, 918, 439, 341, 133, 436, 223, 222, 221, 53, /* 860 */ 53, 322, 1400, 761, 762, 763, 515, 370, 88, 54, /* 870 */ 54, 112, 113, 103, 1100, 1100, 953, 956, 946, 946, /* 880 */ 110, 110, 111, 111, 111, 111, 407, 55, 55, 196, /* 890 */ 515, 112, 113, 103, 1100, 1100, 953, 956, 946, 946, /* 900 */ 110, 110, 111, 111, 111, 111, 135, 264, 1149, 376, /* 910 */ 515, 40, 40, 515, 872, 515, 993, 515, 993, 116, /* 920 */ 109, 109, 109, 109, 108, 108, 107, 107, 107, 106, /* 930 */ 401, 41, 41, 515, 43, 43, 44, 44, 56, 56, /* 940 */ 109, 109, 109, 109, 108, 108, 107, 107, 107, 106, /* 950 */ 401, 515, 379, 515, 57, 57, 515, 799, 515, 379, /* 960 */ 515, 445, 200, 515, 323, 515, 1397, 515, 1459, 515, /* 970 */ 1287, 817, 58, 58, 14, 14, 515, 59, 59, 118, /* 980 */ 118, 60, 60, 515, 46, 46, 61, 61, 62, 62, /* 990 */ 47, 47, 515, 190, 189, 91, 515, 140, 140, 515, /* 1000 */ 394, 515, 277, 1200, 141, 141, 515, 1115, 515, 992, /* 1010 */ 515, 992, 515, 69, 69, 370, 278, 48, 48, 259, /* 1020 */ 65, 65, 119, 119, 246, 246, 260, 66, 66, 120, /* 1030 */ 120, 121, 121, 117, 117, 370, 515, 512, 383, 112, /* 1040 */ 113, 103, 1100, 1100, 953, 956, 946, 946, 110, 110, /* 1050 */ 111, 111, 111, 111, 515, 872, 515, 139, 139, 112, /* 1060 */ 113, 103, 1100, 1100, 953, 956, 946, 946, 110, 110, /* 1070 */ 111, 111, 111, 111, 1287, 138, 138, 125, 125, 515, /* 1080 */ 12, 515, 281, 1287, 515, 445, 131, 1287, 109, 109, /* 1090 */ 109, 109, 108, 108, 107, 107, 107, 106, 401, 515, /* 1100 */ 124, 124, 122, 122, 515, 123, 123, 515, 109, 109, /* 1110 */ 109, 109, 108, 108, 107, 107, 107, 106, 401, 515, /* 1120 */ 68, 68, 463, 783, 515, 70, 70, 302, 67, 67, /* 1130 */ 1032, 253, 253, 356, 1287, 191, 196, 1433, 465, 1301, /* 1140 */ 38, 38, 384, 94, 512, 42, 42, 177, 848, 274, /* 1150 */ 506, 385, 420, 847, 1356, 441, 508, 376, 377, 153, /* 1160 */ 423, 872, 432, 370, 224, 251, 194, 887, 182, 293, /* 1170 */ 783, 848, 88, 254, 466, 888, 847, 915, 807, 806, /* 1180 */ 230, 1241, 910, 370, 17, 413, 797, 112, 113, 103, /* 1190 */ 1100, 1100, 953, 956, 946, 946, 110, 110, 111, 111, /* 1200 */ 111, 111, 395, 814, 815, 1175, 983, 112, 101, 103, /* 1210 */ 1100, 1100, 953, 956, 946, 946, 110, 110, 111, 111, /* 1220 */ 111, 111, 375, 422, 427, 429, 298, 230, 230, 88, /* 1230 */ 1240, 451, 312, 797, 226, 88, 109, 109, 109, 109, /* 1240 */ 108, 108, 107, 107, 107, 106, 401, 86, 433, 979, /* 1250 */ 927, 881, 226, 983, 230, 415, 109, 109, 109, 109, /* 1260 */ 108, 108, 107, 107, 107, 106, 401, 320, 845, 781, /* 1270 */ 846, 100, 130, 100, 1403, 290, 370, 319, 1377, 1376, /* 1280 */ 437, 1449, 299, 1237, 303, 306, 308, 310, 1188, 1174, /* 1290 */ 1173, 1172, 315, 324, 325, 1228, 370, 927, 1249, 271, /* 1300 */ 1286, 113, 103, 1100, 1100, 953, 956, 946, 946, 110, /* 1310 */ 110, 111, 111, 111, 111, 1224, 1235, 502, 501, 1292, /* 1320 */ 1221, 1155, 103, 1100, 1100, 953, 956, 946, 946, 110, /* 1330 */ 110, 111, 111, 111, 111, 1148, 1137, 1136, 1138, 1443, /* 1340 */ 446, 244, 184, 98, 507, 188, 4, 353, 327, 109, /* 1350 */ 109, 109, 109, 108, 108, 107, 107, 107, 106, 401, /* 1360 */ 510, 329, 331, 199, 414, 456, 292, 285, 318, 109, /* 1370 */ 109, 109, 109, 108, 108, 107, 107, 107, 106, 401, /* 1380 */ 11, 1271, 1279, 402, 361, 192, 1171, 1351, 431, 505, /* 1390 */ 346, 1350, 333, 98, 507, 504, 4, 187, 1446, 1115, /* 1400 */ 233, 1396, 155, 1394, 1112, 152, 72, 75, 378, 425, /* 1410 */ 510, 165, 149, 157, 933, 1276, 86, 30, 1268, 417, /* 1420 */ 96, 96, 8, 160, 161, 162, 163, 97, 418, 402, /* 1430 */ 517, 516, 449, 402, 923, 210, 358, 424, 1282, 438, /* 1440 */ 169, 214, 360, 1345, 80, 504, 31, 444, 1365, 301, /* 1450 */ 245, 274, 506, 216, 174, 305, 488, 447, 217, 462, /* 1460 */ 1139, 487, 218, 363, 933, 923, 923, 925, 926, 24, /* 1470 */ 96, 96, 1191, 1190, 1189, 391, 1182, 97, 1163, 402, /* 1480 */ 517, 516, 799, 364, 923, 1162, 317, 1161, 98, 507, /* 1490 */ 1181, 4, 1458, 472, 393, 269, 270, 475, 481, 1232, /* 1500 */ 85, 1233, 326, 328, 232, 510, 495, 1231, 330, 98, /* 1510 */ 507, 1230, 4, 486, 335, 923, 923, 925, 926, 24, /* 1520 */ 1435, 1068, 404, 181, 336, 256, 510, 115, 402, 332, /* 1530 */ 352, 352, 351, 241, 349, 1214, 1414, 770, 338, 10, /* 1540 */ 504, 340, 272, 92, 1331, 1213, 87, 183, 484, 402, /* 1550 */ 201, 488, 280, 239, 344, 345, 489, 1145, 29, 933, /* 1560 */ 279, 504, 1074, 518, 240, 96, 96, 242, 243, 519, /* 1570 */ 1134, 1129, 97, 154, 402, 517, 516, 372, 373, 923, /* 1580 */ 933, 142, 143, 128, 1381, 267, 96, 96, 852, 757, /* 1590 */ 203, 144, 403, 97, 1382, 402, 517, 516, 204, 1380, /* 1600 */ 923, 146, 1379, 1159, 1158, 71, 1156, 276, 202, 185, /* 1610 */ 923, 923, 925, 926, 24, 198, 257, 126, 991, 989, /* 1620 */ 907, 98, 507, 156, 4, 145, 158, 206, 831, 209, /* 1630 */ 291, 923, 923, 925, 926, 24, 1005, 911, 510, 164, /* 1640 */ 147, 380, 371, 382, 166, 76, 77, 274, 506, 148, /* 1650 */ 78, 79, 1008, 211, 212, 1004, 137, 213, 18, 300, /* 1660 */ 230, 402, 997, 1109, 443, 215, 32, 170, 171, 772, /* 1670 */ 409, 448, 319, 504, 219, 172, 452, 81, 19, 457, /* 1680 */ 313, 20, 82, 268, 488, 150, 810, 179, 83, 487, /* 1690 */ 464, 151, 933, 180, 959, 84, 1040, 34, 96, 96, /* 1700 */ 471, 1041, 35, 474, 193, 97, 248, 402, 517, 516, /* 1710 */ 1068, 404, 923, 250, 256, 880, 229, 175, 875, 352, /* 1720 */ 352, 351, 241, 349, 100, 21, 770, 22, 1054, 1056, /* 1730 */ 7, 98, 507, 1045, 4, 337, 1058, 23, 974, 201, /* 1740 */ 176, 280, 88, 923, 923, 925, 926, 24, 510, 279, /* 1750 */ 960, 958, 962, 1014, 963, 1013, 235, 234, 25, 36, /* 1760 */ 99, 90, 507, 928, 4, 511, 350, 782, 26, 841, /* 1770 */ 236, 402, 347, 1069, 237, 1125, 1125, 1451, 510, 203, /* 1780 */ 1450, 1125, 1125, 504, 1125, 1125, 1125, 204, 1125, 1125, /* 1790 */ 146, 1125, 1125, 1125, 1125, 1125, 1125, 202, 1125, 1125, /* 1800 */ 1125, 402, 933, 1125, 1125, 1125, 1125, 1125, 96, 96, /* 1810 */ 1125, 1125, 1125, 504, 1125, 97, 1125, 402, 517, 516, /* 1820 */ 1125, 1125, 923, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 1830 */ 1125, 371, 933, 1125, 1125, 1125, 274, 506, 96, 96, /* 1840 */ 1125, 1125, 1125, 1125, 1125, 97, 1125, 402, 517, 516, /* 1850 */ 1125, 1125, 923, 923, 923, 925, 926, 24, 1125, 409, /* 1860 */ 1125, 1125, 1125, 256, 1125, 1125, 1125, 1125, 352, 352, /* 1870 */ 351, 241, 349, 1125, 1125, 770, 1125, 1125, 1125, 1125, /* 1880 */ 1125, 1125, 1125, 923, 923, 925, 926, 24, 201, 1125, /* 1890 */ 280, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 279, 1125, /* 1900 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 1910 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 1920 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 203, 1125, /* 1930 */ 1125, 1125, 1125, 1125, 1125, 1125, 204, 1125, 1125, 146, /* 1940 */ 1125, 1125, 1125, 1125, 1125, 1125, 202, 1125, 1125, 1125, /* 1950 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 1960 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 1970 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 1980 */ 371, 1125, 1125, 1125, 1125, 274, 506, 1125, 1125, 1125, /* 1990 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, /* 2000 */ 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 409, }; static const YYCODETYPE yy_lookahead[] = { /* 0 */ 184, 238, 239, 240, 238, 239, 240, 163, 155, 156, /* 10 */ 157, 158, 159, 160, 163, 191, 192, 183, 165, 19, /* 20 */ 167, 258, 202, 203, 200, 191, 163, 174, 184, 185, /* 30 */ 174, 31, 163, 163, 171, 184, 185, 35, 175, 39, /* 40 */ 179, 180, 181, 43, 44, 45, 46, 47, 48, 49, |
︙ | ︙ | |||
147489 147490 147491 147492 147493 147494 147495 | /* 1340 */ 251, 250, 209, 19, 20, 182, 22, 161, 222, 92, /* 1350 */ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, /* 1360 */ 36, 222, 222, 260, 226, 188, 256, 226, 187, 92, /* 1370 */ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, /* 1380 */ 210, 213, 213, 59, 213, 196, 192, 187, 256, 244, /* 1390 */ 212, 187, 226, 19, 20, 71, 22, 210, 166, 60, /* 1400 */ 130, 170, 260, 170, 38, 81, 257, 257, 170, 104, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 147505 147506 147507 147508 147509 147510 147511 147512 147513 147514 147515 147516 147517 147518 147519 147520 147521 147522 147523 147524 147525 147526 147527 147528 147529 147530 147531 147532 147533 147534 147535 147536 147537 147538 147539 147540 147541 147542 147543 147544 147545 147546 147547 147548 147549 147550 147551 147552 147553 147554 147555 147556 | /* 1340 */ 251, 250, 209, 19, 20, 182, 22, 161, 222, 92, /* 1350 */ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, /* 1360 */ 36, 222, 222, 260, 226, 188, 256, 226, 187, 92, /* 1370 */ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, /* 1380 */ 210, 213, 213, 59, 213, 196, 192, 187, 256, 244, /* 1390 */ 212, 187, 226, 19, 20, 71, 22, 210, 166, 60, /* 1400 */ 130, 170, 260, 170, 38, 81, 257, 257, 170, 104, /* 1410 */ 36, 22, 43, 201, 90, 236, 138, 235, 213, 18, /* 1420 */ 96, 97, 48, 204, 204, 204, 204, 103, 170, 105, /* 1430 */ 106, 107, 18, 59, 110, 169, 213, 213, 201, 170, /* 1440 */ 201, 169, 236, 213, 146, 71, 235, 62, 253, 252, /* 1450 */ 170, 127, 128, 169, 22, 170, 82, 189, 169, 104, /* 1460 */ 170, 87, 169, 189, 90, 141, 142, 143, 144, 145, /* 1470 */ 96, 97, 186, 186, 186, 64, 194, 103, 186, 105, /* 1480 */ 106, 107, 115, 189, 110, 188, 186, 186, 19, 20, /* 1490 */ 194, 22, 186, 189, 102, 246, 246, 189, 133, 228, /* 1500 */ 104, 228, 227, 227, 170, 36, 134, 228, 227, 19, /* 1510 */ 20, 228, 22, 84, 271, 141, 142, 143, 144, 145, /* 1520 */ 0, 1, 2, 216, 22, 5, 36, 137, 59, 227, /* 1530 */ 10, 11, 12, 13, 14, 217, 269, 17, 216, 22, /* 1540 */ 71, 170, 243, 146, 241, 217, 136, 215, 135, 59, /* 1550 */ 30, 82, 32, 25, 214, 213, 87, 173, 26, 90, /* 1560 */ 40, 71, 13, 172, 164, 96, 97, 164, 6, 162, /* 1570 */ 162, 162, 103, 263, 105, 106, 107, 266, 266, 110, /* 1580 */ 90, 176, 176, 190, 182, 190, 96, 97, 98, 4, /* 1590 */ 70, 176, 3, 103, 182, 105, 106, 107, 78, 182, /* 1600 */ 110, 81, 182, 182, 182, 182, 182, 151, 88, 22, /* 1610 */ 141, 142, 143, 144, 145, 15, 89, 16, 23, 23, /* 1620 */ 128, 19, 20, 139, 22, 119, 131, 24, 20, 133, /* 1630 */ 16, 141, 142, 143, 144, 145, 1, 140, 36, 131, /* 1640 */ 119, 61, 122, 37, 139, 53, 53, 127, 128, 119, /* 1650 */ 53, 53, 105, 34, 130, 1, 5, 104, 22, 149, /* 1660 */ 26, 59, 68, 75, 41, 130, 24, 68, 104, 20, /* 1670 */ 150, 19, 120, 71, 114, 22, 67, 22, 22, 67, /* 1680 */ 23, 22, 22, 67, 82, 37, 28, 23, 138, 87, /* 1690 */ 22, 153, 90, 23, 23, 26, 23, 22, 96, 97, /* 1700 */ 24, 23, 22, 24, 130, 103, 23, 105, 106, 107, /* 1710 */ 1, 2, 110, 23, 5, 105, 34, 22, 132, 10, /* 1720 */ 11, 12, 13, 14, 26, 34, 17, 34, 85, 83, /* 1730 */ 44, 19, 20, 23, 22, 24, 75, 34, 23, 30, /* 1740 */ 26, 32, 26, 141, 142, 143, 144, 145, 36, 40, /* 1750 */ 23, 23, 23, 23, 11, 23, 22, 26, 22, 22, /* 1760 */ 22, 19, 20, 23, 22, 26, 15, 23, 22, 124, /* 1770 */ 130, 59, 23, 1, 130, 277, 277, 130, 36, 70, /* 1780 */ 130, 277, 277, 71, 277, 277, 277, 78, 277, 277, /* 1790 */ 81, 277, 277, 277, 277, 277, 277, 88, 277, 277, /* 1800 */ 277, 59, 90, 277, 277, 277, 277, 277, 96, 97, /* 1810 */ 277, 277, 277, 71, 277, 103, 277, 105, 106, 107, /* 1820 */ 277, 277, 110, 277, 277, 277, 277, 277, 277, 277, /* 1830 */ 277, 122, 90, 277, 277, 277, 127, 128, 96, 97, /* 1840 */ 277, 277, 277, 277, 277, 103, 277, 105, 106, 107, /* 1850 */ 277, 277, 110, 141, 142, 143, 144, 145, 277, 150, |
︙ | ︙ | |||
147551 147552 147553 147554 147555 147556 147557 | /* 1960 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, /* 1970 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, /* 1980 */ 122, 277, 277, 277, 277, 127, 128, 277, 277, 277, /* 1990 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, /* 2000 */ 277, 277, 277, 277, 277, 277, 277, 277, 150, 277, /* 2010 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, }; | | | 147567 147568 147569 147570 147571 147572 147573 147574 147575 147576 147577 147578 147579 147580 147581 | /* 1960 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, /* 1970 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, /* 1980 */ 122, 277, 277, 277, 277, 127, 128, 277, 277, 277, /* 1990 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, /* 2000 */ 277, 277, 277, 277, 277, 277, 277, 277, 150, 277, /* 2010 */ 277, 277, 277, 277, 277, 277, 277, 277, 277, }; #define YY_SHIFT_COUNT (520) #define YY_SHIFT_MIN (0) #define YY_SHIFT_MAX (1858) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 1709, 1520, 1858, 1324, 1324, 277, 1374, 1469, 1602, 1712, /* 10 */ 1712, 1712, 273, 0, 0, 113, 1016, 1712, 1712, 1712, /* 20 */ 1712, 1712, 1712, 1712, 1712, 1712, 1712, 11, 11, 236, /* 30 */ 184, 277, 277, 277, 277, 277, 277, 93, 177, 270, |
︙ | ︙ | |||
147583 147584 147585 147586 147587 147588 147589 | /* 210 */ 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, /* 220 */ 531, 2, 2, 2, 531, 531, 531, 531, 782, 531, /* 230 */ 531, 531, 744, 531, 531, 783, 531, 531, 531, 531, /* 240 */ 531, 531, 531, 531, 419, 682, 327, 370, 370, 370, /* 250 */ 370, 1029, 327, 327, 1024, 897, 856, 947, 1109, 706, /* 260 */ 706, 1143, 1109, 1109, 1143, 842, 945, 1118, 1136, 1136, /* 270 */ 1136, 706, 676, 400, 1047, 694, 1339, 1270, 1270, 1366, | | | | | | | | | | | | | | | | | | | | | | | | | | | | 147599 147600 147601 147602 147603 147604 147605 147606 147607 147608 147609 147610 147611 147612 147613 147614 147615 147616 147617 147618 147619 147620 147621 147622 147623 147624 147625 147626 147627 147628 147629 147630 147631 147632 147633 147634 147635 147636 147637 147638 147639 147640 147641 | /* 210 */ 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, /* 220 */ 531, 2, 2, 2, 531, 531, 531, 531, 782, 531, /* 230 */ 531, 531, 744, 531, 531, 783, 531, 531, 531, 531, /* 240 */ 531, 531, 531, 531, 419, 682, 327, 370, 370, 370, /* 250 */ 370, 1029, 327, 327, 1024, 897, 856, 947, 1109, 706, /* 260 */ 706, 1143, 1109, 1109, 1143, 842, 945, 1118, 1136, 1136, /* 270 */ 1136, 706, 676, 400, 1047, 694, 1339, 1270, 1270, 1366, /* 280 */ 1366, 1270, 1305, 1389, 1369, 1278, 1401, 1401, 1401, 1401, /* 290 */ 1270, 1414, 1278, 1278, 1305, 1389, 1369, 1369, 1278, 1270, /* 300 */ 1414, 1298, 1385, 1270, 1414, 1432, 1270, 1414, 1270, 1414, /* 310 */ 1432, 1355, 1355, 1355, 1411, 1432, 1355, 1367, 1355, 1411, /* 320 */ 1355, 1355, 1432, 1392, 1392, 1432, 1365, 1396, 1365, 1396, /* 330 */ 1365, 1396, 1365, 1396, 1270, 1372, 1429, 1502, 1390, 1372, /* 340 */ 1517, 1270, 1397, 1390, 1410, 1413, 1278, 1528, 1532, 1549, /* 350 */ 1549, 1562, 1562, 1562, 2009, 2009, 2009, 2009, 2009, 2009, /* 360 */ 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, /* 370 */ 570, 345, 686, 748, 50, 740, 1064, 1107, 469, 537, /* 380 */ 1042, 1146, 1162, 1154, 1201, 1202, 1203, 1208, 1209, 1127, /* 390 */ 1069, 1196, 1157, 1147, 1226, 1228, 1245, 775, 868, 1246, /* 400 */ 1247, 1191, 1151, 1585, 1589, 1587, 1456, 1600, 1527, 1601, /* 410 */ 1595, 1596, 1492, 1484, 1506, 1603, 1495, 1608, 1496, 1614, /* 420 */ 1635, 1508, 1497, 1521, 1580, 1606, 1505, 1592, 1593, 1597, /* 430 */ 1598, 1530, 1547, 1619, 1524, 1654, 1651, 1636, 1553, 1510, /* 440 */ 1594, 1634, 1599, 1588, 1623, 1535, 1564, 1642, 1649, 1652, /* 450 */ 1552, 1560, 1653, 1609, 1655, 1656, 1657, 1659, 1612, 1658, /* 460 */ 1660, 1616, 1648, 1664, 1550, 1668, 1538, 1670, 1671, 1669, /* 470 */ 1673, 1675, 1676, 1678, 1680, 1679, 1574, 1683, 1690, 1610, /* 480 */ 1682, 1695, 1586, 1698, 1691, 1698, 1693, 1643, 1661, 1646, /* 490 */ 1686, 1710, 1711, 1714, 1716, 1703, 1715, 1698, 1727, 1728, /* 500 */ 1729, 1730, 1731, 1732, 1734, 1743, 1736, 1737, 1740, 1744, /* 510 */ 1738, 1746, 1739, 1645, 1640, 1644, 1647, 1650, 1749, 1751, /* 520 */ 1772, }; #define YY_REDUCE_COUNT (369) #define YY_REDUCE_MIN (-237) #define YY_REDUCE_MAX (1424) static const short yy_reduce_ofst[] = { /* 0 */ -147, 171, 263, -96, 358, -144, -149, -102, 124, -156, /* 10 */ -98, 305, 401, -57, 209, -237, 245, -94, -79, 189, /* 20 */ 375, 490, 493, 378, 303, 539, 542, 501, 503, 554, /* 30 */ 415, 526, 546, 557, 587, 593, 595, -234, -234, -234, /* 40 */ -234, -234, -234, -234, -234, -234, -234, -234, -234, -234, /* 50 */ -234, -234, -234, -234, -234, -234, -234, -234, -234, -234, |
︙ | ︙ | |||
147641 147642 147643 147644 147645 147646 147647 | /* 210 */ 1112, 1115, 1116, 1117, 1119, 1120, 1121, 1122, 1123, 1124, /* 220 */ 1125, 1012, 1096, 1097, 1128, 1129, 1130, 1131, 1070, 1135, /* 230 */ 1137, 1152, 1077, 1153, 1155, 1114, 1156, 304, 1158, 1172, /* 240 */ 1173, 1174, 1175, 1176, 1089, 1091, 1133, 1098, 1126, 1139, /* 250 */ 1140, 1070, 1133, 1133, 1170, 1163, 1186, 1103, 1168, 1138, /* 260 */ 1141, 1110, 1169, 1171, 1132, 1177, 1189, 1194, 1181, 1200, /* 270 */ 1204, 1166, 1145, 1178, 1187, 1232, 1142, 1231, 1233, 1149, | | | | | | | | | | < | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 147657 147658 147659 147660 147661 147662 147663 147664 147665 147666 147667 147668 147669 147670 147671 147672 147673 147674 147675 147676 147677 147678 147679 147680 147681 147682 147683 147684 147685 147686 147687 147688 147689 147690 147691 147692 147693 147694 147695 147696 147697 147698 147699 147700 147701 147702 147703 147704 147705 147706 147707 147708 147709 147710 147711 147712 147713 147714 147715 147716 147717 147718 147719 147720 147721 147722 147723 147724 147725 147726 147727 147728 147729 147730 147731 147732 147733 147734 | /* 210 */ 1112, 1115, 1116, 1117, 1119, 1120, 1121, 1122, 1123, 1124, /* 220 */ 1125, 1012, 1096, 1097, 1128, 1129, 1130, 1131, 1070, 1135, /* 230 */ 1137, 1152, 1077, 1153, 1155, 1114, 1156, 304, 1158, 1172, /* 240 */ 1173, 1174, 1175, 1176, 1089, 1091, 1133, 1098, 1126, 1139, /* 250 */ 1140, 1070, 1133, 1133, 1170, 1163, 1186, 1103, 1168, 1138, /* 260 */ 1141, 1110, 1169, 1171, 1132, 1177, 1189, 1194, 1181, 1200, /* 270 */ 1204, 1166, 1145, 1178, 1187, 1232, 1142, 1231, 1233, 1149, /* 280 */ 1150, 1238, 1179, 1182, 1212, 1205, 1219, 1220, 1221, 1222, /* 290 */ 1258, 1266, 1223, 1224, 1206, 1211, 1237, 1239, 1230, 1269, /* 300 */ 1272, 1195, 1197, 1280, 1284, 1268, 1285, 1289, 1290, 1293, /* 310 */ 1274, 1286, 1287, 1288, 1282, 1294, 1292, 1297, 1300, 1296, /* 320 */ 1301, 1306, 1304, 1249, 1250, 1308, 1271, 1275, 1273, 1276, /* 330 */ 1279, 1281, 1283, 1302, 1334, 1307, 1243, 1267, 1318, 1322, /* 340 */ 1303, 1371, 1299, 1328, 1332, 1340, 1342, 1384, 1391, 1400, /* 350 */ 1403, 1407, 1408, 1409, 1311, 1312, 1310, 1405, 1402, 1412, /* 360 */ 1417, 1420, 1406, 1393, 1395, 1421, 1422, 1423, 1424, 1415, }; static const YYACTIONTYPE yy_default[] = { /* 0 */ 1492, 1492, 1492, 1340, 1123, 1229, 1123, 1123, 1123, 1340, /* 10 */ 1340, 1340, 1123, 1259, 1259, 1391, 1154, 1123, 1123, 1123, /* 20 */ 1123, 1123, 1123, 1123, 1339, 1123, 1123, 1123, 1123, 1123, /* 30 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1265, 1123, /* 40 */ 1123, 1123, 1123, 1123, 1341, 1342, 1123, 1123, 1123, 1390, /* 50 */ 1392, 1275, 1274, 1273, 1272, 1373, 1246, 1270, 1263, 1267, /* 60 */ 1335, 1336, 1334, 1338, 1342, 1341, 1123, 1266, 1306, 1320, /* 70 */ 1305, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 80 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 90 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 100 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 110 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1314, 1319, 1325, /* 120 */ 1318, 1315, 1308, 1307, 1309, 1310, 1123, 1144, 1193, 1123, /* 130 */ 1123, 1123, 1123, 1409, 1408, 1123, 1123, 1154, 1311, 1312, /* 140 */ 1322, 1321, 1398, 1448, 1447, 1123, 1123, 1123, 1123, 1123, /* 150 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 160 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 170 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1154, 1150, 1300, /* 180 */ 1299, 1418, 1150, 1253, 1123, 1404, 1229, 1220, 1123, 1123, /* 190 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 200 */ 1123, 1395, 1393, 1123, 1355, 1123, 1123, 1123, 1123, 1123, /* 210 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 220 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 230 */ 1123, 1123, 1225, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 240 */ 1123, 1123, 1123, 1442, 1123, 1368, 1207, 1225, 1225, 1225, /* 250 */ 1225, 1227, 1208, 1206, 1219, 1154, 1130, 1484, 1269, 1248, /* 260 */ 1248, 1481, 1269, 1269, 1481, 1168, 1462, 1165, 1259, 1259, /* 270 */ 1259, 1248, 1337, 1226, 1219, 1123, 1484, 1234, 1234, 1483, /* 280 */ 1483, 1234, 1278, 1284, 1196, 1269, 1202, 1202, 1202, 1202, /* 290 */ 1234, 1141, 1269, 1269, 1278, 1284, 1196, 1196, 1269, 1234, /* 300 */ 1141, 1372, 1478, 1234, 1141, 1348, 1234, 1141, 1234, 1141, /* 310 */ 1348, 1194, 1194, 1194, 1183, 1348, 1194, 1168, 1194, 1183, /* 320 */ 1194, 1194, 1348, 1352, 1352, 1348, 1252, 1247, 1252, 1247, /* 330 */ 1252, 1247, 1252, 1247, 1234, 1253, 1417, 1123, 1264, 1253, /* 340 */ 1343, 1234, 1123, 1264, 1262, 1260, 1269, 1147, 1186, 1445, /* 350 */ 1445, 1441, 1441, 1441, 1489, 1489, 1404, 1457, 1154, 1154, /* 360 */ 1154, 1154, 1457, 1170, 1170, 1154, 1154, 1154, 1154, 1457, /* 370 */ 1123, 1123, 1123, 1123, 1123, 1123, 1452, 1123, 1357, 1238, /* 380 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 390 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 400 */ 1123, 1123, 1289, 1123, 1126, 1401, 1123, 1123, 1399, 1123, /* 410 */ 1123, 1123, 1123, 1123, 1123, 1239, 1123, 1123, 1123, 1123, /* 420 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 430 */ 1123, 1123, 1123, 1123, 1480, 1123, 1123, 1123, 1123, 1123, /* 440 */ 1123, 1371, 1370, 1123, 1123, 1236, 1123, 1123, 1123, 1123, /* 450 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 460 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 470 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 480 */ 1123, 1123, 1123, 1261, 1123, 1416, 1123, 1123, 1123, 1123, /* 490 */ 1123, 1123, 1123, 1430, 1254, 1123, 1123, 1471, 1123, 1123, /* 500 */ 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, /* 510 */ 1123, 1123, 1466, 1210, 1291, 1123, 1290, 1294, 1123, 1135, /* 520 */ 1123, }; /********** End of lemon-generated parsing tables *****************************/ /* The next table maps tokens (terminal symbols) into fallback tokens. ** If a construct like the following: ** ** %fallback ID X Y Z. |
︙ | ︙ | |||
148329 148330 148331 148332 148333 148334 148335 | /* 135 */ "groupby_opt ::= GROUP BY nexprlist", /* 136 */ "having_opt ::=", /* 137 */ "having_opt ::= HAVING expr", /* 138 */ "limit_opt ::=", /* 139 */ "limit_opt ::= LIMIT expr", /* 140 */ "limit_opt ::= LIMIT expr OFFSET expr", /* 141 */ "limit_opt ::= LIMIT expr COMMA expr", | | | | 148344 148345 148346 148347 148348 148349 148350 148351 148352 148353 148354 148355 148356 148357 148358 148359 148360 148361 | /* 135 */ "groupby_opt ::= GROUP BY nexprlist", /* 136 */ "having_opt ::=", /* 137 */ "having_opt ::= HAVING expr", /* 138 */ "limit_opt ::=", /* 139 */ "limit_opt ::= LIMIT expr", /* 140 */ "limit_opt ::= LIMIT expr OFFSET expr", /* 141 */ "limit_opt ::= LIMIT expr COMMA expr", /* 142 */ "cmd ::= with DELETE FROM xfullname indexed_opt where_opt", /* 143 */ "where_opt ::=", /* 144 */ "where_opt ::= WHERE expr", /* 145 */ "cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist where_opt", /* 146 */ "setlist ::= setlist COMMA nm EQ expr", /* 147 */ "setlist ::= setlist COMMA LP idlist RP EQ expr", /* 148 */ "setlist ::= nm EQ expr", /* 149 */ "setlist ::= LP idlist RP EQ expr", /* 150 */ "cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert", /* 151 */ "cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES", /* 152 */ "upsert ::=", |
︙ | ︙ | |||
149209 149210 149211 149212 149213 149214 149215 | { 214, -3 }, /* (135) groupby_opt ::= GROUP BY nexprlist */ { 215, 0 }, /* (136) having_opt ::= */ { 215, -2 }, /* (137) having_opt ::= HAVING expr */ { 217, 0 }, /* (138) limit_opt ::= */ { 217, -2 }, /* (139) limit_opt ::= LIMIT expr */ { 217, -4 }, /* (140) limit_opt ::= LIMIT expr OFFSET expr */ { 217, -4 }, /* (141) limit_opt ::= LIMIT expr COMMA expr */ | | | | 149224 149225 149226 149227 149228 149229 149230 149231 149232 149233 149234 149235 149236 149237 149238 149239 149240 149241 | { 214, -3 }, /* (135) groupby_opt ::= GROUP BY nexprlist */ { 215, 0 }, /* (136) having_opt ::= */ { 215, -2 }, /* (137) having_opt ::= HAVING expr */ { 217, 0 }, /* (138) limit_opt ::= */ { 217, -2 }, /* (139) limit_opt ::= LIMIT expr */ { 217, -4 }, /* (140) limit_opt ::= LIMIT expr OFFSET expr */ { 217, -4 }, /* (141) limit_opt ::= LIMIT expr COMMA expr */ { 160, -6 }, /* (142) cmd ::= with DELETE FROM xfullname indexed_opt where_opt */ { 213, 0 }, /* (143) where_opt ::= */ { 213, -2 }, /* (144) where_opt ::= WHERE expr */ { 160, -8 }, /* (145) cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist where_opt */ { 233, -5 }, /* (146) setlist ::= setlist COMMA nm EQ expr */ { 233, -7 }, /* (147) setlist ::= setlist COMMA LP idlist RP EQ expr */ { 233, -3 }, /* (148) setlist ::= nm EQ expr */ { 233, -5 }, /* (149) setlist ::= LP idlist RP EQ expr */ { 160, -7 }, /* (150) cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ { 160, -7 }, /* (151) cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES */ { 236, 0 }, /* (152) upsert ::= */ |
︙ | ︙ | |||
150096 150097 150098 150099 150100 150101 150102 | break; case 140: /* limit_opt ::= LIMIT expr OFFSET expr */ {yymsp[-3].minor.yy18 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[-2].minor.yy18,yymsp[0].minor.yy18);} break; case 141: /* limit_opt ::= LIMIT expr COMMA expr */ {yymsp[-3].minor.yy18 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[0].minor.yy18,yymsp[-2].minor.yy18);} break; | | | | | | | | | 150111 150112 150113 150114 150115 150116 150117 150118 150119 150120 150121 150122 150123 150124 150125 150126 150127 150128 150129 150130 150131 150132 150133 150134 150135 | break; case 140: /* limit_opt ::= LIMIT expr OFFSET expr */ {yymsp[-3].minor.yy18 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[-2].minor.yy18,yymsp[0].minor.yy18);} break; case 141: /* limit_opt ::= LIMIT expr COMMA expr */ {yymsp[-3].minor.yy18 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[0].minor.yy18,yymsp[-2].minor.yy18);} break; case 142: /* cmd ::= with DELETE FROM xfullname indexed_opt where_opt */ { sqlite3SrcListIndexedBy(pParse, yymsp[-2].minor.yy135, &yymsp[-1].minor.yy0); sqlite3DeleteFrom(pParse,yymsp[-2].minor.yy135,yymsp[0].minor.yy18,0,0); } break; case 145: /* cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist where_opt */ { sqlite3SrcListIndexedBy(pParse, yymsp[-4].minor.yy135, &yymsp[-3].minor.yy0); sqlite3ExprListCheckLength(pParse,yymsp[-1].minor.yy420,"set list"); sqlite3Update(pParse,yymsp[-4].minor.yy135,yymsp[-1].minor.yy420,yymsp[0].minor.yy18,yymsp[-5].minor.yy70,0,0,0); } break; case 146: /* setlist ::= setlist COMMA nm EQ expr */ { yymsp[-4].minor.yy420 = sqlite3ExprListAppend(pParse, yymsp[-4].minor.yy420, yymsp[0].minor.yy18); sqlite3ExprListSetName(pParse, yymsp[-4].minor.yy420, &yymsp[-2].minor.yy0, 1); } |
︙ | ︙ | |||
183901 183902 183903 183904 183905 183906 183907 | 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } #define GEOPOLY_PI 3.1415926535897932385 | | | | | 183916 183917 183918 183919 183920 183921 183922 183923 183924 183925 183926 183927 183928 183929 183930 183931 183932 183933 183934 183935 183936 183937 183938 | 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } #define GEOPOLY_PI 3.1415926535897932385 /* Fast approximation for sine(X) for X between -0.5*pi and 2*pi */ static double geopolySine(double r){ assert( r>=-0.5*GEOPOLY_PI && r<=2.0*GEOPOLY_PI ); if( r>=1.5*GEOPOLY_PI ){ r -= 2.0*GEOPOLY_PI; } if( r>=0.5*GEOPOLY_PI ){ return -geopolySine(r-GEOPOLY_PI); }else{ double r2 = r*r; double r3 = r2*r; double r5 = r3*r2; return 0.9996949*r - 0.1656700*r3 + 0.0075134*r5; } } |
︙ | ︙ | |||
183950 183951 183952 183953 183954 183955 183956 | i = 1; p->hdr[0] = *(unsigned char*)&i; p->hdr[1] = 0; p->hdr[2] = (n>>8)&0xff; p->hdr[3] = n&0xff; for(i=0; i<n; i++){ double rAngle = 2.0*GEOPOLY_PI*i/n; | | | | 183965 183966 183967 183968 183969 183970 183971 183972 183973 183974 183975 183976 183977 183978 183979 183980 | i = 1; p->hdr[0] = *(unsigned char*)&i; p->hdr[1] = 0; p->hdr[2] = (n>>8)&0xff; p->hdr[3] = n&0xff; for(i=0; i<n; i++){ double rAngle = 2.0*GEOPOLY_PI*i/n; p->a[i*2] = x - r*geopolySine(rAngle-0.5*GEOPOLY_PI); p->a[i*2+1] = y + r*geopolySine(rAngle); } sqlite3_result_blob(context, p->hdr, 4+8*n, SQLITE_TRANSIENT); sqlite3_free(p); } /* ** If pPoly is a polygon, compute its bounding box. Then: |
︙ | ︙ | |||
215778 215779 215780 215781 215782 215783 215784 | static void fts5SourceIdFunc( sqlite3_context *pCtx, /* Function call context */ int nArg, /* Number of args */ sqlite3_value **apUnused /* Function arguments */ ){ assert( nArg==0 ); UNUSED_PARAM2(nArg, apUnused); | | | 215793 215794 215795 215796 215797 215798 215799 215800 215801 215802 215803 215804 215805 215806 215807 | static void fts5SourceIdFunc( sqlite3_context *pCtx, /* Function call context */ int nArg, /* Number of args */ sqlite3_value **apUnused /* Function arguments */ ){ assert( nArg==0 ); UNUSED_PARAM2(nArg, apUnused); sqlite3_result_text(pCtx, "fts5: 2018-12-01 12:34:55 bf8c1b2b7a5960c282e543b9c293686dccff272512d08865f4600fb58238b4f9", -1, SQLITE_TRANSIENT); } /* ** Return true if zName is the extension on one of the shadow tables used ** by this module. */ static int fts5ShadowName(const char *zName){ |
︙ | ︙ | |||
220506 220507 220508 220509 220510 220511 220512 | #endif return rc; } #endif /* SQLITE_CORE */ #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_STMTVTAB) */ /************** End of stmt.c ************************************************/ | | | | 220521 220522 220523 220524 220525 220526 220527 220528 220529 220530 220531 220532 220533 220534 220535 220536 220537 | #endif return rc; } #endif /* SQLITE_CORE */ #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_STMTVTAB) */ /************** End of stmt.c ************************************************/ #if __LINE__!=220527 #undef SQLITE_SOURCE_ID #define SQLITE_SOURCE_ID "2018-12-01 12:34:55 bf8c1b2b7a5960c282e543b9c293686dccff272512d08865f4600fb58238alt2" #endif /* Return the source-id for this library */ SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; } /************************** End of sqlite3.c ******************************/ #endif /* USE_SYSTEM_SQLITE */ /* ** 2001 September 15 |
︙ | ︙ |