Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | A minor code simplification, saved in a branch for future reference. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | minor-altertab-simplification |
Files: | files | file ages | folders |
SHA3-256: |
5e458f4a92743effb9a3d3249767424f |
User & Date: | drh 2018-09-19 18:17:46.824 |
Context
2018-09-20
| ||
20:43 | Minor code simplification. (check-in: 22ae8a52dd user: drh tags: trunk) | |
2018-09-19
| ||
18:17 | A minor code simplification, saved in a branch for future reference. (Leaf check-in: 5e458f4a92 user: drh tags: minor-altertab-simplification) | |
17:09 | Fix a compilation issue in the "userauth" extension. Also fix a few test script errors that occur with SQLITE_USER_AUTHENTICATION=1 builds. (check-in: 221f3f572e user: dan tags: trunk) | |
Changes
Changes to src/resolve.c.
︙ | ︙ | |||
686 687 688 689 690 691 692 | pLeft = pRight->pLeft; pRight = pRight->pRight; } zTable = pLeft->u.zToken; zColumn = pRight->u.zToken; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, (void*)pExpr, (void*)pRight); | < < | 686 687 688 689 690 691 692 693 694 695 696 697 698 699 | pLeft = pRight->pLeft; pRight = pRight->pRight; } zTable = pLeft->u.zToken; zColumn = pRight->u.zToken; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, (void*)pExpr, (void*)pRight); sqlite3RenameTokenRemap(pParse, (void*)&pExpr->pTab, (void*)pLeft); } } return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr); } /* Resolve function names |
︙ | ︙ |