Preparing report...

Report for github.com/cznic/sqlite

A    Great!    Found 4 issues across 12 files

Tweet

gofmt83%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


golint100%

Golint is a linter for Go source code.

No problems detected. Good job!


gocyclo66%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

    • sqlite/sqlite.go
    • Line 604: warning: cyclomatic complexity 23 of function (*stmt).bind() is high (> 15) (gocyclo)
    • Line 183: warning: cyclomatic complexity 20 of function (*rows).Next() is high (> 15) (gocyclo)
    • Line 472: warning: cyclomatic complexity 18 of function (*stmt).query() is high (> 15) (gocyclo)
    • sqlite/internal/bin/bin_windows_amd64.go
    • Line 60921: warning: cyclomatic complexity 1448 of function _sqlite3VdbeExec() is high (> 15) (gocyclo)
    • Line 32000: warning: cyclomatic complexity 353 of function _yy_reduce() is high (> 15) (gocyclo)
    • Line 143176: warning: cyclomatic complexity 305 of function _sqlite3Pragma() is high (> 15) (gocyclo)
    • Line 122177: warning: cyclomatic complexity 203 of function _sqlite3WhereCodeOneLoopStart() is high (> 15) (gocyclo)
    • Line 915: warning: cyclomatic complexity 171 of function _sqlite3VXPrintf() is high (> 15) (gocyclo)
    • Line 37166: warning: cyclomatic complexity 156 of function _sqlite3ExprCodeTarget() is high (> 15) (gocyclo)
    • Line 84098: warning: cyclomatic complexity 156 of function _balance_nonroot() is high (> 15) (gocyclo)
    • Line 134957: warning: cyclomatic complexity 148 of function _sqlite3Update() is high (> 15) (gocyclo)
    • Line 41248: warning: cyclomatic complexity 143 of function _sqlite3Select() is high (> 15) (gocyclo)
    • Line 128946: warning: cyclomatic complexity 132 of function _sqlite3CreateIndex() is high (> 15) (gocyclo)
    • Line 139279: warning: cyclomatic complexity 126 of function _sqlite3Insert() is high (> 15) (gocyclo)
    • Line 136734: warning: cyclomatic complexity 107 of function _sqlite3GenerateConstraintChecks() is high (> 15) (gocyclo)
    • Line 109275: warning: cyclomatic complexity 102 of function _sqlite3WhereBegin() is high (> 15) (gocyclo)
    • Line 101043: warning: cyclomatic complexity 101 of function _lookupName() is high (> 15) (gocyclo)
    • Line 6718: warning: cyclomatic complexity 93 of function _sqlite3GetToken() is high (> 15) (gocyclo)
    • Line 104056: warning: cyclomatic complexity 88 of function _flattenSubquery() is high (> 15) (gocyclo)
    • Line 120229: warning: cyclomatic complexity 87 of function _wherePathSatisfiesOrderBy() is high (> 15) (gocyclo)
    • Line 132743: warning: cyclomatic complexity 84 of function _sqlite3DeleteFrom() is high (> 15) (gocyclo)
    • Line 44994: warning: cyclomatic complexity 84 of function _selectExpander() is high (> 15) (gocyclo)
    • Line 140263: warning: cyclomatic complexity 79 of function _xferOptimization() is high (> 15) (gocyclo)
    • Line 15012: warning: cyclomatic complexity 76 of function _assert_pager_state() is high (> 15) (gocyclo)
    • Line 73640: warning: cyclomatic complexity 75 of function _sqlite3BtreeMovetoUnpacked() is high (> 15) (gocyclo)
    • Line 53015: warning: cyclomatic complexity 75 of function _allocateBtreePage() is high (> 15) (gocyclo)
    • Line 118584: warning: cyclomatic complexity 72 of function _whereLoopAddBtreeIndex() is high (> 15) (gocyclo)
    • Line 106552: warning: cyclomatic complexity 72 of function _selectInnerLoop() is high (> 15) (gocyclo)
    • Line 43175: warning: cyclomatic complexity 70 of function _sqlite3TreeViewExpr() is high (> 15) (gocyclo)
    • Line 119659: warning: cyclomatic complexity 70 of function _wherePathSolver() is high (> 15) (gocyclo)
    • Line 78295: warning: cyclomatic complexity 70 of function _sqlite3BtreeOpen() is high (> 15) (gocyclo)
    • Line 80728: warning: cyclomatic complexity 66 of function _sqlite3BtreeInsert() is high (> 15) (gocyclo)
    • Line 105172: warning: cyclomatic complexity 66 of function _multiSelect() is high (> 15) (gocyclo)
    • Line 95231: warning: cyclomatic complexity 64 of function Xsqlite3_backup_step() is high (> 15) (gocyclo)
    • Line 100437: warning: cyclomatic complexity 63 of function _resolveExprStep() is high (> 15) (gocyclo)
    • Line 148722: warning: cyclomatic complexity 62 of function _sqlite3ParseUri() is high (> 15) (gocyclo)
    • Line 163886: warning: cyclomatic complexity 62 of function _winOpen() is high (> 15) (gocyclo)
    • Line 111544: warning: cyclomatic complexity 61 of function _sqlite3FindInIndex() is high (> 15) (gocyclo)
    • Line 9584: warning: cyclomatic complexity 61 of function _parseModifier() is high (> 15) (gocyclo)
    • Line 112729: warning: cyclomatic complexity 60 of function _exprAnalyze() is high (> 15) (gocyclo)
    • Line 91279: warning: cyclomatic complexity 56 of function _patternCompare() is high (> 15) (gocyclo)
    • Line 20009: warning: cyclomatic complexity 56 of function _pager_playback_one_page() is high (> 15) (gocyclo)
    • Line 49438: warning: cyclomatic complexity 54 of function _sqlite3PagerSharedLock() is high (> 15) (gocyclo)
    • Line 8519: warning: cyclomatic complexity 54 of function _sqlite3AtoF() is high (> 15) (gocyclo)
    • Line 75726: warning: cyclomatic complexity 53 of function _sqlite3VdbeRecordCompareWithSkip() is high (> 15) (gocyclo)
    • Line 114088: warning: cyclomatic complexity 53 of function _exprAnalyzeOrTerm() is high (> 15) (gocyclo)
    • Line 29654: warning: cyclomatic complexity 52 of function Xsqlite3_complete() is high (> 15) (gocyclo)
    • Line 5860: warning: cyclomatic complexity 51 of function _sqlite3VdbeMemTranslate() is high (> 15) (gocyclo)
    • Line 57062: warning: cyclomatic complexity 50 of function _sqlite3VdbeHalt() is high (> 15) (gocyclo)
    • Line 137632: warning: cyclomatic complexity 50 of function _sqlite3FkCheck() is high (> 15) (gocyclo)
    • Line 147585: warning: cyclomatic complexity 50 of function _sqlite3BeginTrigger() is high (> 15) (gocyclo)
    • Line 117764: warning: cyclomatic complexity 50 of function _whereLoopAddBtree() is high (> 15) (gocyclo)
    • Line 102457: warning: cyclomatic complexity 49 of function _resolveSelectStep() is high (> 15) (gocyclo)
    • Line 78811: warning: cyclomatic complexity 49 of function _sqlite3PagerOpen() is high (> 15) (gocyclo)
    • Line 55227: warning: cyclomatic complexity 49 of function _sqlite3WalFrames() is high (> 15) (gocyclo)
    • Line 48916: warning: cyclomatic complexity 47 of function _sqlite3BtreeBeginTrans() is high (> 15) (gocyclo)
    • Line 40427: warning: cyclomatic complexity 46 of function _sqlite3CodeSubselect() is high (> 15) (gocyclo)
    • Line 127796: warning: cyclomatic complexity 44 of function _sqlite3StartTable() is high (> 15) (gocyclo)
    • Line 58334: warning: cyclomatic complexity 44 of function _vdbeCommit() is high (> 15) (gocyclo)
    • Line 110318: warning: cyclomatic complexity 43 of function _sqlite3ExprIfFalse() is high (> 15) (gocyclo)
    • Line 108048: warning: cyclomatic complexity 42 of function _multiSelectOrderBy() is high (> 15) (gocyclo)
    • Line 86219: warning: cyclomatic complexity 42 of function _sqlite3BtreeDelete() is high (> 15) (gocyclo)
    • Line 27724: warning: cyclomatic complexity 42 of function _walCheckpoint() is high (> 15) (gocyclo)
    • Line 81265: warning: cyclomatic complexity 42 of function _fillInCell() is high (> 15) (gocyclo)
    • Line 154224: warning: cyclomatic complexity 42 of function Xsqlite3_blob_open() is high (> 15) (gocyclo)
    • Line 10451: warning: cyclomatic complexity 41 of function _strftimeFunc() is high (> 15) (gocyclo)
    • Line 92473: warning: cyclomatic complexity 41 of function _checkTreePage() is high (> 15) (gocyclo)
    • Line 111130: warning: cyclomatic complexity 41 of function _sqlite3ExprCodeIN() is high (> 15) (gocyclo)
    • Line 22140: warning: cyclomatic complexity 40 of function _pager_end_transaction() is high (> 15) (gocyclo)
    • Line 38592: warning: cyclomatic complexity 39 of function _valueFromExpr() is high (> 15) (gocyclo)
    • Line 31825: warning: cyclomatic complexity 39 of function _yy_destructor() is high (> 15) (gocyclo)
    • Line 128247: warning: cyclomatic complexity 38 of function _sqlite3EndTable() is high (> 15) (gocyclo)
    • Line 83093: warning: cyclomatic complexity 38 of function _defragmentPage() is high (> 15) (gocyclo)
    • Line 125066: warning: cyclomatic complexity 38 of function _sqlite3WhereEnd() is high (> 15) (gocyclo)
    • Line 60269: warning: cyclomatic complexity 37 of function _sqlite3Step() is high (> 15) (gocyclo)
    • Line 120966: warning: cyclomatic complexity 37 of function _constructAutomaticIndex() is high (> 15) (gocyclo)
    • Line 42599: warning: cyclomatic complexity 37 of function _sqlite3TreeViewSelect() is high (> 15) (gocyclo)
    • Line 159405: warning: cyclomatic complexity 36 of function _substrFunc() is high (> 15) (gocyclo)
    • Line 31126: warning: cyclomatic complexity 36 of function _sqlite3RunParser() is high (> 15) (gocyclo)
    • Line 123998: warning: cyclomatic complexity 36 of function _codeEqualityTerm() is high (> 15) (gocyclo)
    • Line 47713: warning: cyclomatic complexity 36 of function _sqlite3InitOne() is high (> 15) (gocyclo)
    • Line 138744: warning: cyclomatic complexity 35 of function _fkActionTrigger() is high (> 15) (gocyclo)
    • Line 50614: warning: cyclomatic complexity 35 of function _walTryBeginRead() is high (> 15) (gocyclo)
    • Line 14565: warning: cyclomatic complexity 35 of function _accessPayload() is high (> 15) (gocyclo)
    • Line 162518: warning: cyclomatic complexity 35 of function _winLock() is high (> 15) (gocyclo)
    • Line 103216: warning: cyclomatic complexity 34 of function _sqlite3ExprCompare() is high (> 15) (gocyclo)
    • Line 60576: warning: cyclomatic complexity 34 of function _sqlite3VdbeList() is high (> 15) (gocyclo)
    • Line 18549: warning: cyclomatic complexity 34 of function _pagerPlaybackSavepoint() is high (> 15) (gocyclo)
    • Line 128623: warning: cyclomatic complexity 34 of function _convertToWithoutRowidTable() is high (> 15) (gocyclo)
    • Line 93923: warning: cyclomatic complexity 33 of function _sqlite3PagerSetJournalMode() is high (> 15) (gocyclo)
    • Line 156122: warning: cyclomatic complexity 33 of function Xsqlite3_db_status() is high (> 15) (gocyclo)
    • Line 149872: warning: cyclomatic complexity 33 of function _analyzeOneTable() is high (> 15) (gocyclo)
    • Line 132322: warning: cyclomatic complexity 33 of function _sqlite3DropTable() is high (> 15) (gocyclo)
    • Line 82494: warning: cyclomatic complexity 33 of function _insertCell() is high (> 15) (gocyclo)
    • Line 40168: warning: cyclomatic complexity 33 of function _codeVectorCompare() is high (> 15) (gocyclo)
    • Line 96773: warning: cyclomatic complexity 33 of function _sqlite3VdbeExpandSql() is high (> 15) (gocyclo)
    • Line 21725: warning: cyclomatic complexity 33 of function _getPageNormal() is high (> 15) (gocyclo)
    • Line 22947: warning: cyclomatic complexity 32 of function _pager_playback() is high (> 15) (gocyclo)
    • Line 152553: warning: cyclomatic complexity 32 of function _openDatabase() is high (> 15) (gocyclo)
    • Line 136332: warning: cyclomatic complexity 32 of function _sqlite3FkLocateIndex() is high (> 15) (gocyclo)
    • Line 29280: warning: cyclomatic complexity 32 of function _sqlite3Atoi64() is high (> 15) (gocyclo)
    • Line 125662: warning: cyclomatic complexity 32 of function _analyzeAggregate() is high (> 15) (gocyclo)
    • Line 54827: warning: cyclomatic complexity 32 of function _sqlite3PagerCommitPhaseOne() is high (> 15) (gocyclo)
    • Line 59917: warning: cyclomatic complexity 31 of function Xsqlite3_exec() is high (> 15) (gocyclo)
    • Line 148439: warning: cyclomatic complexity 31 of function _attachFunc() is high (> 15) (gocyclo)
    • Line 641: warning: cyclomatic complexity 31 of function Xsqlite3_config() is high (> 15) (gocyclo)
    • Line 48330: warning: cyclomatic complexity 31 of function _sqlite3Prepare() is high (> 15) (gocyclo)
    • Line 155271: warning: cyclomatic complexity 31 of function Xsqlite3_test_control() is high (> 15) (gocyclo)
    • Line 164714: warning: cyclomatic complexity 30 of function _winShmLock() is high (> 15) (gocyclo)
    • Line 116586: warning: cyclomatic complexity 30 of function _allocateIndexInfo() is high (> 15) (gocyclo)
    • Line 79769: warning: cyclomatic complexity 30 of function _btreeCreateTable() is high (> 15) (gocyclo)
    • Line 115554: warning: cyclomatic complexity 30 of function _whereScanNext() is high (> 15) (gocyclo)
    • Line 94326: warning: cyclomatic complexity 29 of function _sqlite3RunVacuum() is high (> 15) (gocyclo)
    • Line 30459: warning: cyclomatic complexity 29 of function _sqlite3CreateFunc() is high (> 15) (gocyclo)
    • Line 82225: warning: cyclomatic complexity 29 of function _freeSpace() is high (> 15) (gocyclo)
    • Line 151100: warning: cyclomatic complexity 29 of function _sqlite3AlterFinishAddColumn() is high (> 15) (gocyclo)
    • Line 54242: warning: cyclomatic complexity 29 of function _btreeInitPage() is high (> 15) (gocyclo)
    • Line 34948: warning: cyclomatic complexity 29 of function _displayP4() is high (> 15) (gocyclo)
    • Line 82753: warning: cyclomatic complexity 28 of function _allocateSpace() is high (> 15) (gocyclo)
    • Line 45808: warning: cyclomatic complexity 28 of function _withExpand() is high (> 15) (gocyclo)
    • Line 110661: warning: cyclomatic complexity 28 of function _sqlite3ExprIfTrue() is high (> 15) (gocyclo)
    • Line 49203: warning: cyclomatic complexity 28 of function _lockBtree() is high (> 15) (gocyclo)
    • Line 46530: warning: cyclomatic complexity 28 of function _exprDup() is high (> 15) (gocyclo)
    • Line 157620: warning: cyclomatic complexity 28 of function _trimFunc() is high (> 15) (gocyclo)
    • Line 11040: warning: cyclomatic complexity 28 of function _sqlite3LoadExtension() is high (> 15) (gocyclo)
    • Line 98655: warning: cyclomatic complexity 28 of function _columnTypeImpl() is high (> 15) (gocyclo)
    • Line 121759: warning: cyclomatic complexity 27 of function _sqlite3WhereExplainOneScan() is high (> 15) (gocyclo)
    • Line 127365: warning: cyclomatic complexity 27 of function _resolveP2Values() is high (> 15) (gocyclo)
    • Line 56124: warning: cyclomatic complexity 27 of function _syncJournal() is high (> 15) (gocyclo)
    • Line 53813: warning: cyclomatic complexity 27 of function _sqlite3PagerMovepage() is high (> 15) (gocyclo)
    • Line 48625: warning: cyclomatic complexity 27 of function _querySharedCacheTableLock() is high (> 15) (gocyclo)
    • Line 96334: warning: cyclomatic complexity 27 of function _vtabCallConstructor() is high (> 15) (gocyclo)
    • Line 76291: warning: cyclomatic complexity 27 of function _vdbeRecordCompareDebug() is high (> 15) (gocyclo)
    • Line 81801: warning: cyclomatic complexity 27 of function _freePage2() is high (> 15) (gocyclo)
    • Line 72319: warning: cyclomatic complexity 26 of function _sqlite3VdbeMemPrettyPrint() is high (> 15) (gocyclo)
    • Line 116339: warning: cyclomatic complexity 26 of function _whereLoopAddVirtual() is high (> 15) (gocyclo)
    • Line 116904: warning: cyclomatic complexity 26 of function _whereLoopAddVirtualOne() is high (> 15) (gocyclo)
    • Line 47233: warning: cyclomatic complexity 26 of function _sqlite3ColumnsFromExprList() is high (> 15) (gocyclo)
    • Line 17803: warning: cyclomatic complexity 26 of function _pcacheManageDirtyList() is high (> 15) (gocyclo)
    • Line 34423: warning: cyclomatic complexity 26 of function _sqlite3FinishCoding() is high (> 15) (gocyclo)
    • Line 98957: warning: cyclomatic complexity 26 of function _sqlite3ExprCollSeq() is high (> 15) (gocyclo)
    • Line 89986: warning: cyclomatic complexity 26 of function _sqlite3VdbeSorterWrite() is high (> 15) (gocyclo)
    • Line 77962: warning: cyclomatic complexity 25 of function _btreeCursor() is high (> 15) (gocyclo)
    • Line 87196: warning: cyclomatic complexity 25 of function _vdbeSorterCompareInt() is high (> 15) (gocyclo)
    • Line 131947: warning: cyclomatic complexity 25 of function _sqlite3CreateForeignKey() is high (> 15) (gocyclo)
    • Line 126668: warning: cyclomatic complexity 25 of function _generateSortTail() is high (> 15) (gocyclo)
    • Line 114822: warning: cyclomatic complexity 25 of function _isLikeOrGlob() is high (> 15) (gocyclo)
    • Line 27284: warning: cyclomatic complexity 25 of function _walIndexRecover() is high (> 15) (gocyclo)
    • Line 73063: warning: cyclomatic complexity 25 of function _sqlite3MemCompare() is high (> 15) (gocyclo)
    • Line 7586: warning: cyclomatic complexity 25 of function _sqlite3VdbeMemSetStr() is high (> 15) (gocyclo)
    • Line 150627: warning: cyclomatic complexity 25 of function _sqlite3AlterRenameTable() is high (> 15) (gocyclo)
    • Line 108801: warning: cyclomatic complexity 25 of function _generateColumnNames() is high (> 15) (gocyclo)
    • Line 80290: warning: cyclomatic complexity 25 of function _btreePrevious() is high (> 15) (gocyclo)
    • Line 162959: warning: cyclomatic complexity 24 of function _winFileControl() is high (> 15) (gocyclo)
    • Line 124511: warning: cyclomatic complexity 24 of function _codeAllEqualityTerms() is high (> 15) (gocyclo)
    • Line 153749: warning: cyclomatic complexity 24 of function Xsqlite3_table_column_metadata() is high (> 15) (gocyclo)
    • Line 103609: warning: cyclomatic complexity 24 of function _resolveCompoundOrderBy() is high (> 15) (gocyclo)
    • Line 56394: warning: cyclomatic complexity 24 of function _pager_write_pagelist() is high (> 15) (gocyclo)
    • Line 92028: warning: cyclomatic complexity 24 of function _sqlite3BtreeIntegrityCheck() is high (> 15) (gocyclo)
    • Line 48011: warning: cyclomatic complexity 24 of function _sqlite3InitCallback() is high (> 15) (gocyclo)
    • Line 21459: warning: cyclomatic complexity 23 of function _getPageMMap() is high (> 15) (gocyclo)
    • Line 16617: warning: cyclomatic complexity 23 of function _pagerWriteLargeSector() is high (> 15) (gocyclo)
    • Line 38888: warning: cyclomatic complexity 23 of function _sqlite3AffinityType() is high (> 15) (gocyclo)
    • Line 107668: warning: cyclomatic complexity 23 of function _pushOntoSorter() is high (> 15) (gocyclo)
    • Line 26803: warning: cyclomatic complexity 23 of function _sqlite3WalCheckpoint() is high (> 15) (gocyclo)
    • Line 134587: warning: cyclomatic complexity 22 of function _codeRowTrigger() is high (> 15) (gocyclo)
    • Line 52830: warning: cyclomatic complexity 22 of function _incrVacuumStep() is high (> 15) (gocyclo)
    • Line 138197: warning: cyclomatic complexity 22 of function _fkScanChildren() is high (> 15) (gocyclo)
    • Line 12742: warning: cyclomatic complexity 22 of function _sqlite3BtreeEnter() is high (> 15) (gocyclo)
    • Line 113763: warning: cyclomatic complexity 22 of function _operatorMask() is high (> 15) (gocyclo)
    • Line 74348: warning: cyclomatic complexity 22 of function _btreeNext() is high (> 15) (gocyclo)
    • Line 49867: warning: cyclomatic complexity 22 of function _hasHotJournal() is high (> 15) (gocyclo)
    • Line 88178: warning: cyclomatic complexity 21 of function _vdbeSorterSetupMerge() is high (> 15) (gocyclo)
    • Line 134129: warning: cyclomatic complexity 21 of function _sqlite3OpenTableAndIndices() is high (> 15) (gocyclo)
    • Line 117595: warning: cyclomatic complexity 21 of function _whereLoopFindLesser() is high (> 15) (gocyclo)
    • Line 88337: warning: cyclomatic complexity 21 of function _vdbeSorterMergeTreeBuild() is high (> 15) (gocyclo)
    • Line 13957: warning: cyclomatic complexity 21 of function _sqlite3BtreeRollback() is high (> 15) (gocyclo)
    • Line 160946: warning: cyclomatic complexity 21 of function _pcache1FetchStage2() is high (> 15) (gocyclo)
    • Line 159128: warning: cyclomatic complexity 21 of function _replaceFunc() is high (> 15) (gocyclo)
    • Line 137985: warning: cyclomatic complexity 21 of function _fkLookupParent() is high (> 15) (gocyclo)
    • Line 30959: warning: cyclomatic complexity 21 of function Xsqlite3_declare_vtab() is high (> 15) (gocyclo)
    • Line 138523: warning: cyclomatic complexity 21 of function _sqlite3CompleteInsertion() is high (> 15) (gocyclo)
    • Line 85674: warning: cyclomatic complexity 20 of function _editPage() is high (> 15) (gocyclo)
    • Line 75120: warning: cyclomatic complexity 20 of function _getAndInitPage() is high (> 15) (gocyclo)
    • Line 76678: warning: cyclomatic complexity 20 of function _moveToRoot() is high (> 15) (gocyclo)
    • Line 16848: warning: cyclomatic complexity 20 of function _pager_write() is high (> 15) (gocyclo)
    • Line 23538: warning: cyclomatic complexity 20 of function _pager_unlock() is high (> 15) (gocyclo)
    • Line 5290: warning: cyclomatic complexity 20 of function _sqlite3VdbeMemGrow() is high (> 15) (gocyclo)
    • Line 20802: warning: cyclomatic complexity 20 of function _readJournalHdr() is high (> 15) (gocyclo)
    • Line 94099: warning: cyclomatic complexity 20 of function _print_pager_state() is high (> 15) (gocyclo)
    • Line 80048: warning: cyclomatic complexity 20 of function _sqlite3VdbeSorterInit() is high (> 15) (gocyclo)
    • Line 5063: warning: cyclomatic complexity 20 of function _valueToText() is high (> 15) (gocyclo)
    • Line 115917: warning: cyclomatic complexity 20 of function _whereShortCut() is high (> 15) (gocyclo)
    • Line 50883: warning: cyclomatic complexity 19 of function _sqlite3PagerBegin() is high (> 15) (gocyclo)
    • Line 3567: warning: cyclomatic complexity 19 of function Xsqlite3_initialize() is high (> 15) (gocyclo)
    • Line 151328: warning: cyclomatic complexity 19 of function _sqlite3AlterBeginAddColumn() is high (> 15) (gocyclo)
    • Line 39055: warning: cyclomatic complexity 19 of function _sqlite3GetInt32() is high (> 15) (gocyclo)
    • Line 46322: warning: cyclomatic complexity 19 of function _sqlite3ExprListDup() is high (> 15) (gocyclo)
    • Line 20908: warning: cyclomatic complexity 19 of function _sqlite3PagerSetPagesize() is high (> 15) (gocyclo)
    • Line 83470: warning: cyclomatic complexity 19 of function _balance() is high (> 15) (gocyclo)
    • Line 102003: warning: cyclomatic complexity 19 of function _sqlite3AuthRead() is high (> 15) (gocyclo)
    • Line 112084: warning: cyclomatic complexity 19 of function _isCandidateForInOpt() is high (> 15) (gocyclo)
    • Line 163172: warning: cyclomatic complexity 19 of function _winGetTempname() is high (> 15) (gocyclo)
    • Line 35220: warning: cyclomatic complexity 19 of function _displayComment() is high (> 15) (gocyclo)
    • Line 118402: warning: cyclomatic complexity 19 of function _whereLoopOutputAdjust() is high (> 15) (gocyclo)
    • Line 23786: warning: cyclomatic complexity 19 of function _getOverflowPage() is high (> 15) (gocyclo)
    • Line 18316: warning: cyclomatic complexity 18 of function _sqlite3PagerRollback() is high (> 15) (gocyclo)
    • Line 18419: warning: cyclomatic complexity 18 of function _sqlite3PagerSavepoint() is high (> 15) (gocyclo)
    • Line 164567: warning: cyclomatic complexity 18 of function _winDelete() is high (> 15) (gocyclo)
    • Line 99203: warning: cyclomatic complexity 18 of function _sqliteProcessJoin() is high (> 15) (gocyclo)
    • Line 127181: warning: cyclomatic complexity 18 of function _sqlite3VdbeMakeReady() is high (> 15) (gocyclo)
    • Line 75483: warning: cyclomatic complexity 18 of function _vdbeRecordCompareInt() is high (> 15) (gocyclo)
    • Line 35462: warning: cyclomatic complexity 18 of function _sqlite3VdbeAssertMayAbort() is high (> 15) (gocyclo)
    • Line 147182: warning: cyclomatic complexity 18 of function Xsqlite3_limit() is high (> 15) (gocyclo)
    • Line 30597: warning: cyclomatic complexity 18 of function _sqlite3FindFunction() is high (> 15) (gocyclo)
    • Line 17010: warning: cyclomatic complexity 18 of function _pager_open_journal() is high (> 15) (gocyclo)
    • Line 81632: warning: cyclomatic complexity 18 of function _clearCell() is high (> 15) (gocyclo)
    • Line 134335: warning: cyclomatic complexity 18 of function _sqlite3GenerateRowDelete() is high (> 15) (gocyclo)
    • Line 158913: warning: cyclomatic complexity 18 of function _quoteFunc() is high (> 15) (gocyclo)
    • Line 119422: warning: cyclomatic complexity 18 of function _whereLoopAddOr() is high (> 15) (gocyclo)
    • Line 16425: warning: cyclomatic complexity 18 of function _sqlite3BitvecSet() is high (> 15) (gocyclo)
    • Line 13667: warning: cyclomatic complexity 18 of function _sqlite3LeaveMutexAndCloseZombie() is high (> 15) (gocyclo)
    • Line 142524: warning: cyclomatic complexity 18 of function _sqlite3ExprAssignVarNumber() is high (> 15) (gocyclo)
    • Line 83820: warning: cyclomatic complexity 18 of function _balance_quick() is high (> 15) (gocyclo)
    • Line 91132: warning: cyclomatic complexity 17 of function _decodeIntArray() is high (> 15) (gocyclo)
    • Line 107128: warning: cyclomatic complexity 17 of function _sqlite3ExprCodeExprList() is high (> 15) (gocyclo)
    • Line 149547: warning: cyclomatic complexity 17 of function _sqlite3Analyze() is high (> 15) (gocyclo)
    • Line 24531: warning: cyclomatic complexity 17 of function _clearAllSharedCacheTableLocks() is high (> 15) (gocyclo)
    • Line 165134: warning: cyclomatic complexity 17 of function _winAccess() is high (> 15) (gocyclo)
    • Line 78139: warning: cyclomatic complexity 17 of function _hasSharedCacheTableLock() is high (> 15) (gocyclo)
    • Line 88877: warning: cyclomatic complexity 17 of function _vdbePmaReadBlob() is high (> 15) (gocyclo)
    • Line 53685: warning: cyclomatic complexity 17 of function _relocatePage() is high (> 15) (gocyclo)
    • Line 24948: warning: cyclomatic complexity 17 of function _sqlite3ExprDeleteNN() is high (> 15) (gocyclo)
    • Line 77237: warning: cyclomatic complexity 17 of function _sqlite3VdbeSerialType() is high (> 15) (gocyclo)
    • Line 28189: warning: cyclomatic complexity 17 of function _walMergesort() is high (> 15) (gocyclo)
    • Line 165247: warning: cyclomatic complexity 17 of function _winFullPathname() is high (> 15) (gocyclo)
    • Line 155538: warning: cyclomatic complexity 17 of function _sqlite3BitvecBuiltinTest() is high (> 15) (gocyclo)
    • Line 114688: warning: cyclomatic complexity 17 of function _whereCombineDisjuncts() is high (> 15) (gocyclo)
    • Line 131754: warning: cyclomatic complexity 17 of function _sqlite3AddPrimaryKey() is high (> 15) (gocyclo)
    • Line 19312: warning: cyclomatic complexity 16 of function _sqlite3PcacheFetch() is high (> 15) (gocyclo)
    • Line 44539: warning: cyclomatic complexity 16 of function _sqlite3ExprAlloc() is high (> 15) (gocyclo)
    • Line 56021: warning: cyclomatic complexity 16 of function _writeMasterJournal() is high (> 15) (gocyclo)
    • Line 5414: warning: cyclomatic complexity 16 of function _sqlite3VdbeCheckMemInvariants() is high (> 15) (gocyclo)
    • Line 126087: warning: cyclomatic complexity 16 of function _updateAccumulator() is high (> 15) (gocyclo)
    • Line 124722: warning: cyclomatic complexity 16 of function _sqlite3ExprNeedsNoAffinityChange() is high (> 15) (gocyclo)
    • Line 98205: warning: cyclomatic complexity 16 of function _sqlite3ViewGetColumnNames() is high (> 15) (gocyclo)
    • Line 163561: warning: cyclomatic complexity 16 of function _winShmMap() is high (> 15) (gocyclo)
    • Line 55080: warning: cyclomatic complexity 16 of function _pagerWalFrames() is high (> 15) (gocyclo)
    • Line 35896: warning: cyclomatic complexity 16 of function _sqlite3VdbeChangeP4() is high (> 15) (gocyclo)
    • Line 20486: warning: cyclomatic complexity 16 of function _backupOnePage() is high (> 15) (gocyclo)
    • Line 107281: warning: cyclomatic complexity 16 of function _exprNodeIsConstant() is high (> 15) (gocyclo)
    • Line 89867: warning: cyclomatic complexity 16 of function _sqlite3VdbeSorterNext() is high (> 15) (gocyclo)
    • Line 90576: warning: cyclomatic complexity 16 of function _clearDatabasePage() is high (> 15) (gocyclo)
    • Line 25254: warning: cyclomatic complexity 16 of function _deleteTable() is high (> 15) (gocyclo)
    • Line 26991: warning: cyclomatic complexity 16 of function _walIndexReadHdr() is high (> 15) (gocyclo)
    • Line 87683: warning: cyclomatic complexity 16 of function _vdbeSorterListToPMA() is high (> 15) (gocyclo)
    • Line 55902: warning: cyclomatic complexity 16 of function _pager_incr_changecounter() is high (> 15) (gocyclo)
    • sqlite/internal/bin/bin_windows_386.go
    • Line 60915: warning: cyclomatic complexity 1448 of function _sqlite3VdbeExec() is high (> 15) (gocyclo)
    • Line 31994: warning: cyclomatic complexity 353 of function _yy_reduce() is high (> 15) (gocyclo)
    • Line 143170: warning: cyclomatic complexity 305 of function _sqlite3Pragma() is high (> 15) (gocyclo)
    • Line 122171: warning: cyclomatic complexity 203 of function _sqlite3WhereCodeOneLoopStart() is high (> 15) (gocyclo)
    • Line 909: warning: cyclomatic complexity 171 of function _sqlite3VXPrintf() is high (> 15) (gocyclo)
    • Line 37160: warning: cyclomatic complexity 156 of function _sqlite3ExprCodeTarget() is high (> 15) (gocyclo)
    • Line 84092: warning: cyclomatic complexity 156 of function _balance_nonroot() is high (> 15) (gocyclo)
    • Line 134951: warning: cyclomatic complexity 148 of function _sqlite3Update() is high (> 15) (gocyclo)
    • Line 41242: warning: cyclomatic complexity 143 of function _sqlite3Select() is high (> 15) (gocyclo)
    • Line 128940: warning: cyclomatic complexity 132 of function _sqlite3CreateIndex() is high (> 15) (gocyclo)
    • Line 139273: warning: cyclomatic complexity 126 of function _sqlite3Insert() is high (> 15) (gocyclo)
    • Line 136728: warning: cyclomatic complexity 107 of function _sqlite3GenerateConstraintChecks() is high (> 15) (gocyclo)
    • Line 109269: warning: cyclomatic complexity 102 of function _sqlite3WhereBegin() is high (> 15) (gocyclo)
    • Line 101037: warning: cyclomatic complexity 101 of function _lookupName() is high (> 15) (gocyclo)
    • Line 6712: warning: cyclomatic complexity 93 of function _sqlite3GetToken() is high (> 15) (gocyclo)
    • Line 104050: warning: cyclomatic complexity 88 of function _flattenSubquery() is high (> 15) (gocyclo)
    • Line 120223: warning: cyclomatic complexity 87 of function _wherePathSatisfiesOrderBy() is high (> 15) (gocyclo)
    • Line 44988: warning: cyclomatic complexity 84 of function _selectExpander() is high (> 15) (gocyclo)
    • Line 132737: warning: cyclomatic complexity 84 of function _sqlite3DeleteFrom() is high (> 15) (gocyclo)
    • Line 140257: warning: cyclomatic complexity 79 of function _xferOptimization() is high (> 15) (gocyclo)
    • Line 15006: warning: cyclomatic complexity 76 of function _assert_pager_state() is high (> 15) (gocyclo)
    • Line 73634: warning: cyclomatic complexity 75 of function _sqlite3BtreeMovetoUnpacked() is high (> 15) (gocyclo)
    • Line 53009: warning: cyclomatic complexity 75 of function _allocateBtreePage() is high (> 15) (gocyclo)
    • Line 118578: warning: cyclomatic complexity 72 of function _whereLoopAddBtreeIndex() is high (> 15) (gocyclo)
    • Line 106546: warning: cyclomatic complexity 72 of function _selectInnerLoop() is high (> 15) (gocyclo)
    • Line 119653: warning: cyclomatic complexity 70 of function _wherePathSolver() is high (> 15) (gocyclo)
    • Line 78289: warning: cyclomatic complexity 70 of function _sqlite3BtreeOpen() is high (> 15) (gocyclo)
    • Line 43169: warning: cyclomatic complexity 70 of function _sqlite3TreeViewExpr() is high (> 15) (gocyclo)
    • Line 80722: warning: cyclomatic complexity 66 of function _sqlite3BtreeInsert() is high (> 15) (gocyclo)
    • Line 105166: warning: cyclomatic complexity 66 of function _multiSelect() is high (> 15) (gocyclo)
    • Line 95225: warning: cyclomatic complexity 64 of function Xsqlite3_backup_step() is high (> 15) (gocyclo)
    • Line 100431: warning: cyclomatic complexity 63 of function _resolveExprStep() is high (> 15) (gocyclo)
    • Line 163889: warning: cyclomatic complexity 62 of function _winOpen() is high (> 15) (gocyclo)
    • Line 148716: warning: cyclomatic complexity 62 of function _sqlite3ParseUri() is high (> 15) (gocyclo)
    • Line 111538: warning: cyclomatic complexity 61 of function _sqlite3FindInIndex() is high (> 15) (gocyclo)
    • Line 9578: warning: cyclomatic complexity 61 of function _parseModifier() is high (> 15) (gocyclo)
    • Line 112723: warning: cyclomatic complexity 60 of function _exprAnalyze() is high (> 15) (gocyclo)
    • Line 20003: warning: cyclomatic complexity 56 of function _pager_playback_one_page() is high (> 15) (gocyclo)
    • Line 91273: warning: cyclomatic complexity 56 of function _patternCompare() is high (> 15) (gocyclo)
    • Line 8513: warning: cyclomatic complexity 54 of function _sqlite3AtoF() is high (> 15) (gocyclo)
    • Line 49432: warning: cyclomatic complexity 54 of function _sqlite3PagerSharedLock() is high (> 15) (gocyclo)
    • Line 114082: warning: cyclomatic complexity 53 of function _exprAnalyzeOrTerm() is high (> 15) (gocyclo)
    • Line 75720: warning: cyclomatic complexity 53 of function _sqlite3VdbeRecordCompareWithSkip() is high (> 15) (gocyclo)
    • Line 29648: warning: cyclomatic complexity 52 of function Xsqlite3_complete() is high (> 15) (gocyclo)
    • Line 5854: warning: cyclomatic complexity 51 of function _sqlite3VdbeMemTranslate() is high (> 15) (gocyclo)
    • Line 137626: warning: cyclomatic complexity 50 of function _sqlite3FkCheck() is high (> 15) (gocyclo)
    • Line 57056: warning: cyclomatic complexity 50 of function _sqlite3VdbeHalt() is high (> 15) (gocyclo)
    • Line 117758: warning: cyclomatic complexity 50 of function _whereLoopAddBtree() is high (> 15) (gocyclo)
    • Line 147579: warning: cyclomatic complexity 50 of function _sqlite3BeginTrigger() is high (> 15) (gocyclo)
    • Line 55221: warning: cyclomatic complexity 49 of function _sqlite3WalFrames() is high (> 15) (gocyclo)
    • Line 102451: warning: cyclomatic complexity 49 of function _resolveSelectStep() is high (> 15) (gocyclo)
    • Line 78805: warning: cyclomatic complexity 49 of function _sqlite3PagerOpen() is high (> 15) (gocyclo)
    • Line 48910: warning: cyclomatic complexity 47 of function _sqlite3BtreeBeginTrans() is high (> 15) (gocyclo)
    • Line 40421: warning: cyclomatic complexity 46 of function _sqlite3CodeSubselect() is high (> 15) (gocyclo)
    • Line 58328: warning: cyclomatic complexity 44 of function _vdbeCommit() is high (> 15) (gocyclo)
    • Line 127790: warning: cyclomatic complexity 44 of function _sqlite3StartTable() is high (> 15) (gocyclo)
    • Line 110312: warning: cyclomatic complexity 43 of function _sqlite3ExprIfFalse() is high (> 15) (gocyclo)
    • Line 86213: warning: cyclomatic complexity 42 of function _sqlite3BtreeDelete() is high (> 15) (gocyclo)
    • Line 154218: warning: cyclomatic complexity 42 of function Xsqlite3_blob_open() is high (> 15) (gocyclo)
    • Line 27718: warning: cyclomatic complexity 42 of function _walCheckpoint() is high (> 15) (gocyclo)
    • Line 108042: warning: cyclomatic complexity 42 of function _multiSelectOrderBy() is high (> 15) (gocyclo)
    • Line 81259: warning: cyclomatic complexity 42 of function _fillInCell() is high (> 15) (gocyclo)
    • Line 92467: warning: cyclomatic complexity 41 of function _checkTreePage() is high (> 15) (gocyclo)
    • Line 111124: warning: cyclomatic complexity 41 of function _sqlite3ExprCodeIN() is high (> 15) (gocyclo)
    • Line 10445: warning: cyclomatic complexity 41 of function _strftimeFunc() is high (> 15) (gocyclo)
    • Line 22134: warning: cyclomatic complexity 40 of function _pager_end_transaction() is high (> 15) (gocyclo)
    • Line 31819: warning: cyclomatic complexity 39 of function _yy_destructor() is high (> 15) (gocyclo)
    • Line 38586: warning: cyclomatic complexity 39 of function _valueFromExpr() is high (> 15) (gocyclo)
    • Line 125060: warning: cyclomatic complexity 38 of function _sqlite3WhereEnd() is high (> 15) (gocyclo)
    • Line 83087: warning: cyclomatic complexity 38 of function _defragmentPage() is high (> 15) (gocyclo)
    • Line 128241: warning: cyclomatic complexity 38 of function _sqlite3EndTable() is high (> 15) (gocyclo)
    • Line 42593: warning: cyclomatic complexity 37 of function _sqlite3TreeViewSelect() is high (> 15) (gocyclo)
    • Line 60263: warning: cyclomatic complexity 37 of function _sqlite3Step() is high (> 15) (gocyclo)
    • Line 120960: warning: cyclomatic complexity 37 of function _constructAutomaticIndex() is high (> 15) (gocyclo)
    • Line 159399: warning: cyclomatic complexity 36 of function _substrFunc() is high (> 15) (gocyclo)
    • Line 31120: warning: cyclomatic complexity 36 of function _sqlite3RunParser() is high (> 15) (gocyclo)
    • Line 123992: warning: cyclomatic complexity 36 of function _codeEqualityTerm() is high (> 15) (gocyclo)
    • Line 47707: warning: cyclomatic complexity 36 of function _sqlite3InitOne() is high (> 15) (gocyclo)
    • Line 138738: warning: cyclomatic complexity 35 of function _fkActionTrigger() is high (> 15) (gocyclo)
    • Line 162512: warning: cyclomatic complexity 35 of function _winLock() is high (> 15) (gocyclo)
    • Line 14559: warning: cyclomatic complexity 35 of function _accessPayload() is high (> 15) (gocyclo)
    • Line 50608: warning: cyclomatic complexity 35 of function _walTryBeginRead() is high (> 15) (gocyclo)
    • Line 60570: warning: cyclomatic complexity 34 of function _sqlite3VdbeList() is high (> 15) (gocyclo)
    • Line 18543: warning: cyclomatic complexity 34 of function _pagerPlaybackSavepoint() is high (> 15) (gocyclo)
    • Line 103210: warning: cyclomatic complexity 34 of function _sqlite3ExprCompare() is high (> 15) (gocyclo)
    • Line 128617: warning: cyclomatic complexity 34 of function _convertToWithoutRowidTable() is high (> 15) (gocyclo)
    • Line 156116: warning: cyclomatic complexity 33 of function Xsqlite3_db_status() is high (> 15) (gocyclo)
    • Line 93917: warning: cyclomatic complexity 33 of function _sqlite3PagerSetJournalMode() is high (> 15) (gocyclo)
    • Line 132316: warning: cyclomatic complexity 33 of function _sqlite3DropTable() is high (> 15) (gocyclo)
    • Line 82488: warning: cyclomatic complexity 33 of function _insertCell() is high (> 15) (gocyclo)
    • Line 149866: warning: cyclomatic complexity 33 of function _analyzeOneTable() is high (> 15) (gocyclo)
    • Line 96767: warning: cyclomatic complexity 33 of function _sqlite3VdbeExpandSql() is high (> 15) (gocyclo)
    • Line 21719: warning: cyclomatic complexity 33 of function _getPageNormal() is high (> 15) (gocyclo)
    • Line 40162: warning: cyclomatic complexity 33 of function _codeVectorCompare() is high (> 15) (gocyclo)
    • Line 152547: warning: cyclomatic complexity 32 of function _openDatabase() is high (> 15) (gocyclo)
    • Line 29274: warning: cyclomatic complexity 32 of function _sqlite3Atoi64() is high (> 15) (gocyclo)
    • Line 125656: warning: cyclomatic complexity 32 of function _analyzeAggregate() is high (> 15) (gocyclo)
    • Line 22941: warning: cyclomatic complexity 32 of function _pager_playback() is high (> 15) (gocyclo)
    • Line 54821: warning: cyclomatic complexity 32 of function _sqlite3PagerCommitPhaseOne() is high (> 15) (gocyclo)
    • Line 136326: warning: cyclomatic complexity 32 of function _sqlite3FkLocateIndex() is high (> 15) (gocyclo)
    • Line 48324: warning: cyclomatic complexity 31 of function _sqlite3Prepare() is high (> 15) (gocyclo)
    • Line 635: warning: cyclomatic complexity 31 of function Xsqlite3_config() is high (> 15) (gocyclo)
    • Line 155265: warning: cyclomatic complexity 31 of function Xsqlite3_test_control() is high (> 15) (gocyclo)
    • Line 148433: warning: cyclomatic complexity 31 of function _attachFunc() is high (> 15) (gocyclo)
    • Line 59911: warning: cyclomatic complexity 31 of function Xsqlite3_exec() is high (> 15) (gocyclo)
    • Line 164717: warning: cyclomatic complexity 30 of function _winShmLock() is high (> 15) (gocyclo)
    • Line 116580: warning: cyclomatic complexity 30 of function _allocateIndexInfo() is high (> 15) (gocyclo)
    • Line 79763: warning: cyclomatic complexity 30 of function _btreeCreateTable() is high (> 15) (gocyclo)
    • Line 115548: warning: cyclomatic complexity 30 of function _whereScanNext() is high (> 15) (gocyclo)
    • Line 54236: warning: cyclomatic complexity 29 of function _btreeInitPage() is high (> 15) (gocyclo)
    • Line 30453: warning: cyclomatic complexity 29 of function _sqlite3CreateFunc() is high (> 15) (gocyclo)
    • Line 151094: warning: cyclomatic complexity 29 of function _sqlite3AlterFinishAddColumn() is high (> 15) (gocyclo)
    • Line 82219: warning: cyclomatic complexity 29 of function _freeSpace() is high (> 15) (gocyclo)
    • Line 34942: warning: cyclomatic complexity 29 of function _displayP4() is high (> 15) (gocyclo)
    • Line 94320: warning: cyclomatic complexity 29 of function _sqlite3RunVacuum() is high (> 15) (gocyclo)
    • Line 46524: warning: cyclomatic complexity 28 of function _exprDup() is high (> 15) (gocyclo)
    • Line 11034: warning: cyclomatic complexity 28 of function _sqlite3LoadExtension() is high (> 15) (gocyclo)
    • Line 110655: warning: cyclomatic complexity 28 of function _sqlite3ExprIfTrue() is high (> 15) (gocyclo)
    • Line 157614: warning: cyclomatic complexity 28 of function _trimFunc() is high (> 15) (gocyclo)
    • Line 98649: warning: cyclomatic complexity 28 of function _columnTypeImpl() is high (> 15) (gocyclo)
    • Line 49197: warning: cyclomatic complexity 28 of function _lockBtree() is high (> 15) (gocyclo)
    • Line 82747: warning: cyclomatic complexity 28 of function _allocateSpace() is high (> 15) (gocyclo)
    • Line 45802: warning: cyclomatic complexity 28 of function _withExpand() is high (> 15) (gocyclo)
    • Line 48619: warning: cyclomatic complexity 27 of function _querySharedCacheTableLock() is high (> 15) (gocyclo)
    • Line 96328: warning: cyclomatic complexity 27 of function _vtabCallConstructor() is high (> 15) (gocyclo)
    • Line 56118: warning: cyclomatic complexity 27 of function _syncJournal() is high (> 15) (gocyclo)
    • Line 121753: warning: cyclomatic complexity 27 of function _sqlite3WhereExplainOneScan() is high (> 15) (gocyclo)
    • Line 76285: warning: cyclomatic complexity 27 of function _vdbeRecordCompareDebug() is high (> 15) (gocyclo)
    • Line 127359: warning: cyclomatic complexity 27 of function _resolveP2Values() is high (> 15) (gocyclo)
    • Line 81795: warning: cyclomatic complexity 27 of function _freePage2() is high (> 15) (gocyclo)
    • Line 53807: warning: cyclomatic complexity 27 of function _sqlite3PagerMovepage() is high (> 15) (gocyclo)
    • Line 34417: warning: cyclomatic complexity 26 of function _sqlite3FinishCoding() is high (> 15) (gocyclo)
    • Line 47227: warning: cyclomatic complexity 26 of function _sqlite3ColumnsFromExprList() is high (> 15) (gocyclo)
    • Line 116898: warning: cyclomatic complexity 26 of function _whereLoopAddVirtualOne() is high (> 15) (gocyclo)
    • Line 98951: warning: cyclomatic complexity 26 of function _sqlite3ExprCollSeq() is high (> 15) (gocyclo)
    • Line 89980: warning: cyclomatic complexity 26 of function _sqlite3VdbeSorterWrite() is high (> 15) (gocyclo)
    • Line 72313: warning: cyclomatic complexity 26 of function _sqlite3VdbeMemPrettyPrint() is high (> 15) (gocyclo)
    • Line 116333: warning: cyclomatic complexity 26 of function _whereLoopAddVirtual() is high (> 15) (gocyclo)
    • Line 17797: warning: cyclomatic complexity 26 of function _pcacheManageDirtyList() is high (> 15) (gocyclo)
    • Line 27278: warning: cyclomatic complexity 25 of function _walIndexRecover() is high (> 15) (gocyclo)
    • Line 126662: warning: cyclomatic complexity 25 of function _generateSortTail() is high (> 15) (gocyclo)
    • Line 108795: warning: cyclomatic complexity 25 of function _generateColumnNames() is high (> 15) (gocyclo)
    • Line 77956: warning: cyclomatic complexity 25 of function _btreeCursor() is high (> 15) (gocyclo)
    • Line 131941: warning: cyclomatic complexity 25 of function _sqlite3CreateForeignKey() is high (> 15) (gocyclo)
    • Line 87190: warning: cyclomatic complexity 25 of function _vdbeSorterCompareInt() is high (> 15) (gocyclo)
    • Line 114816: warning: cyclomatic complexity 25 of function _isLikeOrGlob() is high (> 15) (gocyclo)
    • Line 150621: warning: cyclomatic complexity 25 of function _sqlite3AlterRenameTable() is high (> 15) (gocyclo)
    • Line 73057: warning: cyclomatic complexity 25 of function _sqlite3MemCompare() is high (> 15) (gocyclo)
    • Line 80284: warning: cyclomatic complexity 25 of function _btreePrevious() is high (> 15) (gocyclo)
    • Line 7580: warning: cyclomatic complexity 25 of function _sqlite3VdbeMemSetStr() is high (> 15) (gocyclo)
    • Line 153743: warning: cyclomatic complexity 24 of function Xsqlite3_table_column_metadata() is high (> 15) (gocyclo)
    • Line 103603: warning: cyclomatic complexity 24 of function _resolveCompoundOrderBy() is high (> 15) (gocyclo)
    • Line 48005: warning: cyclomatic complexity 24 of function _sqlite3InitCallback() is high (> 15) (gocyclo)
    • Line 56388: warning: cyclomatic complexity 24 of function _pager_write_pagelist() is high (> 15) (gocyclo)
    • Line 162953: warning: cyclomatic complexity 24 of function _winFileControl() is high (> 15) (gocyclo)
    • Line 92022: warning: cyclomatic complexity 24 of function _sqlite3BtreeIntegrityCheck() is high (> 15) (gocyclo)
    • Line 124505: warning: cyclomatic complexity 24 of function _codeAllEqualityTerms() is high (> 15) (gocyclo)
    • Line 26797: warning: cyclomatic complexity 23 of function _sqlite3WalCheckpoint() is high (> 15) (gocyclo)
    • Line 38882: warning: cyclomatic complexity 23 of function _sqlite3AffinityType() is high (> 15) (gocyclo)
    • Line 107662: warning: cyclomatic complexity 23 of function _pushOntoSorter() is high (> 15) (gocyclo)
    • Line 16611: warning: cyclomatic complexity 23 of function _pagerWriteLargeSector() is high (> 15) (gocyclo)
    • Line 21453: warning: cyclomatic complexity 23 of function _getPageMMap() is high (> 15) (gocyclo)
    • Line 49861: warning: cyclomatic complexity 22 of function _hasHotJournal() is high (> 15) (gocyclo)
    • Line 74342: warning: cyclomatic complexity 22 of function _btreeNext() is high (> 15) (gocyclo)
    • Line 12736: warning: cyclomatic complexity 22 of function _sqlite3BtreeEnter() is high (> 15) (gocyclo)
    • Line 138191: warning: cyclomatic complexity 22 of function _fkScanChildren() is high (> 15) (gocyclo)
    • Line 113757: warning: cyclomatic complexity 22 of function _operatorMask() is high (> 15) (gocyclo)
    • Line 52824: warning: cyclomatic complexity 22 of function _incrVacuumStep() is high (> 15) (gocyclo)
    • Line 134581: warning: cyclomatic complexity 22 of function _codeRowTrigger() is high (> 15) (gocyclo)
    • Line 88172: warning: cyclomatic complexity 21 of function _vdbeSorterSetupMerge() is high (> 15) (gocyclo)
    • Line 134123: warning: cyclomatic complexity 21 of function _sqlite3OpenTableAndIndices() is high (> 15) (gocyclo)
    • Line 138517: warning: cyclomatic complexity 21 of function _sqlite3CompleteInsertion() is high (> 15) (gocyclo)
    • Line 117589: warning: cyclomatic complexity 21 of function _whereLoopFindLesser() is high (> 15) (gocyclo)
    • Line 88331: warning: cyclomatic complexity 21 of function _vdbeSorterMergeTreeBuild() is high (> 15) (gocyclo)
    • Line 30953: warning: cyclomatic complexity 21 of function Xsqlite3_declare_vtab() is high (> 15) (gocyclo)
    • Line 13951: warning: cyclomatic complexity 21 of function _sqlite3BtreeRollback() is high (> 15) (gocyclo)
    • Line 160940: warning: cyclomatic complexity 21 of function _pcache1FetchStage2() is high (> 15) (gocyclo)
    • Line 137979: warning: cyclomatic complexity 21 of function _fkLookupParent() is high (> 15) (gocyclo)
    • Line 159122: warning: cyclomatic complexity 21 of function _replaceFunc() is high (> 15) (gocyclo)
    • Line 115911: warning: cyclomatic complexity 20 of function _whereShortCut() is high (> 15) (gocyclo)
    • Line 23532: warning: cyclomatic complexity 20 of function _pager_unlock() is high (> 15) (gocyclo)
    • Line 94093: warning: cyclomatic complexity 20 of function _print_pager_state() is high (> 15) (gocyclo)
    • Line 5057: warning: cyclomatic complexity 20 of function _valueToText() is high (> 15) (gocyclo)
    • Line 75114: warning: cyclomatic complexity 20 of function _getAndInitPage() is high (> 15) (gocyclo)
    • Line 76672: warning: cyclomatic complexity 20 of function _moveToRoot() is high (> 15) (gocyclo)
    • Line 16842: warning: cyclomatic complexity 20 of function _pager_write() is high (> 15) (gocyclo)
    • Line 5284: warning: cyclomatic complexity 20 of function _sqlite3VdbeMemGrow() is high (> 15) (gocyclo)
    • Line 80042: warning: cyclomatic complexity 20 of function _sqlite3VdbeSorterInit() is high (> 15) (gocyclo)
    • Line 20796: warning: cyclomatic complexity 20 of function _readJournalHdr() is high (> 15) (gocyclo)
    • Line 85668: warning: cyclomatic complexity 20 of function _editPage() is high (> 15) (gocyclo)
    • Line 23780: warning: cyclomatic complexity 19 of function _getOverflowPage() is high (> 15) (gocyclo)
    • Line 46316: warning: cyclomatic complexity 19 of function _sqlite3ExprListDup() is high (> 15) (gocyclo)
    • Line 35214: warning: cyclomatic complexity 19 of function _displayComment() is high (> 15) (gocyclo)
    • Line 163166: warning: cyclomatic complexity 19 of function _winGetTempname() is high (> 15) (gocyclo)
    • Line 151322: warning: cyclomatic complexity 19 of function _sqlite3AlterBeginAddColumn() is high (> 15) (gocyclo)
    • Line 118396: warning: cyclomatic complexity 19 of function _whereLoopOutputAdjust() is high (> 15) (gocyclo)
    • Line 112078: warning: cyclomatic complexity 19 of function _isCandidateForInOpt() is high (> 15) (gocyclo)
    • Line 101997: warning: cyclomatic complexity 19 of function _sqlite3AuthRead() is high (> 15) (gocyclo)
    • Line 39049: warning: cyclomatic complexity 19 of function _sqlite3GetInt32() is high (> 15) (gocyclo)
    • Line 83464: warning: cyclomatic complexity 19 of function _balance() is high (> 15) (gocyclo)
    • Line 50877: warning: cyclomatic complexity 19 of function _sqlite3PagerBegin() is high (> 15) (gocyclo)
    • Line 20902: warning: cyclomatic complexity 19 of function _sqlite3PagerSetPagesize() is high (> 15) (gocyclo)
    • Line 3561: warning: cyclomatic complexity 19 of function Xsqlite3_initialize() is high (> 15) (gocyclo)
    • Line 119416: warning: cyclomatic complexity 18 of function _whereLoopAddOr() is high (> 15) (gocyclo)
    • Line 35456: warning: cyclomatic complexity 18 of function _sqlite3VdbeAssertMayAbort() is high (> 15) (gocyclo)
    • Line 81626: warning: cyclomatic complexity 18 of function _clearCell() is high (> 15) (gocyclo)
    • Line 127175: warning: cyclomatic complexity 18 of function _sqlite3VdbeMakeReady() is high (> 15) (gocyclo)
    • Line 164570: warning: cyclomatic complexity 18 of function _winDelete() is high (> 15) (gocyclo)
    • Line 30591: warning: cyclomatic complexity 18 of function _sqlite3FindFunction() is high (> 15) (gocyclo)
    • Line 75477: warning: cyclomatic complexity 18 of function _vdbeRecordCompareInt() is high (> 15) (gocyclo)
    • Line 16419: warning: cyclomatic complexity 18 of function _sqlite3BitvecSet() is high (> 15) (gocyclo)
    • Line 13661: warning: cyclomatic complexity 18 of function _sqlite3LeaveMutexAndCloseZombie() is high (> 15) (gocyclo)
    • Line 134329: warning: cyclomatic complexity 18 of function _sqlite3GenerateRowDelete() is high (> 15) (gocyclo)
    • Line 17004: warning: cyclomatic complexity 18 of function _pager_open_journal() is high (> 15) (gocyclo)
    • Line 142518: warning: cyclomatic complexity 18 of function _sqlite3ExprAssignVarNumber() is high (> 15) (gocyclo)
    • Line 83814: warning: cyclomatic complexity 18 of function _balance_quick() is high (> 15) (gocyclo)
    • Line 147176: warning: cyclomatic complexity 18 of function Xsqlite3_limit() is high (> 15) (gocyclo)
    • Line 99197: warning: cyclomatic complexity 18 of function _sqliteProcessJoin() is high (> 15) (gocyclo)
    • Line 158907: warning: cyclomatic complexity 18 of function _quoteFunc() is high (> 15) (gocyclo)
    • Line 18413: warning: cyclomatic complexity 18 of function _sqlite3PagerSavepoint() is high (> 15) (gocyclo)
    • Line 18310: warning: cyclomatic complexity 18 of function _sqlite3PagerRollback() is high (> 15) (gocyclo)
    • Line 53679: warning: cyclomatic complexity 17 of function _relocatePage() is high (> 15) (gocyclo)
    • Line 155532: warning: cyclomatic complexity 17 of function _sqlite3BitvecBuiltinTest() is high (> 15) (gocyclo)
    • Line 91126: warning: cyclomatic complexity 17 of function _decodeIntArray() is high (> 15) (gocyclo)
    • Line 78133: warning: cyclomatic complexity 17 of function _hasSharedCacheTableLock() is high (> 15) (gocyclo)
    • Line 165137: warning: cyclomatic complexity 17 of function _winAccess() is high (> 15) (gocyclo)
    • Line 88871: warning: cyclomatic complexity 17 of function _vdbePmaReadBlob() is high (> 15) (gocyclo)
    • Line 165250: warning: cyclomatic complexity 17 of function _winFullPathname() is high (> 15) (gocyclo)
    • Line 149541: warning: cyclomatic complexity 17 of function _sqlite3Analyze() is high (> 15) (gocyclo)
    • Line 114682: warning: cyclomatic complexity 17 of function _whereCombineDisjuncts() is high (> 15) (gocyclo)
    • Line 24525: warning: cyclomatic complexity 17 of function _clearAllSharedCacheTableLocks() is high (> 15) (gocyclo)
    • Line 77231: warning: cyclomatic complexity 17 of function _sqlite3VdbeSerialType() is high (> 15) (gocyclo)
    • Line 131748: warning: cyclomatic complexity 17 of function _sqlite3AddPrimaryKey() is high (> 15) (gocyclo)
    • Line 24942: warning: cyclomatic complexity 17 of function _sqlite3ExprDeleteNN() is high (> 15) (gocyclo)
    • Line 28183: warning: cyclomatic complexity 17 of function _walMergesort() is high (> 15) (gocyclo)
    • Line 107122: warning: cyclomatic complexity 17 of function _sqlite3ExprCodeExprList() is high (> 15) (gocyclo)
    • Line 107275: warning: cyclomatic complexity 16 of function _exprNodeIsConstant() is high (> 15) (gocyclo)
    • Line 56015: warning: cyclomatic complexity 16 of function _writeMasterJournal() is high (> 15) (gocyclo)
    • Line 55896: warning: cyclomatic complexity 16 of function _pager_incr_changecounter() is high (> 15) (gocyclo)
    • Line 55074: warning: cyclomatic complexity 16 of function _pagerWalFrames() is high (> 15) (gocyclo)
    • Line 126081: warning: cyclomatic complexity 16 of function _updateAccumulator() is high (> 15) (gocyclo)
    • Line 90570: warning: cyclomatic complexity 16 of function _clearDatabasePage() is high (> 15) (gocyclo)
    • Line 26985: warning: cyclomatic complexity 16 of function _walIndexReadHdr() is high (> 15) (gocyclo)
    • Line 124716: warning: cyclomatic complexity 16 of function _sqlite3ExprNeedsNoAffinityChange() is high (> 15) (gocyclo)
    • Line 87677: warning: cyclomatic complexity 16 of function _vdbeSorterListToPMA() is high (> 15) (gocyclo)
    • Line 44533: warning: cyclomatic complexity 16 of function _sqlite3ExprAlloc() is high (> 15) (gocyclo)
    • Line 5408: warning: cyclomatic complexity 16 of function _sqlite3VdbeCheckMemInvariants() is high (> 15) (gocyclo)
    • Line 98199: warning: cyclomatic complexity 16 of function _sqlite3ViewGetColumnNames() is high (> 15) (gocyclo)
    • Line 25248: warning: cyclomatic complexity 16 of function _deleteTable() is high (> 15) (gocyclo)
    • Line 20480: warning: cyclomatic complexity 16 of function _backupOnePage() is high (> 15) (gocyclo)
    • Line 163564: warning: cyclomatic complexity 16 of function _winShmMap() is high (> 15) (gocyclo)
    • Line 35890: warning: cyclomatic complexity 16 of function _sqlite3VdbeChangeP4() is high (> 15) (gocyclo)
    • Line 89861: warning: cyclomatic complexity 16 of function _sqlite3VdbeSorterNext() is high (> 15) (gocyclo)
    • Line 19306: warning: cyclomatic complexity 16 of function _sqlite3PcacheFetch() is high (> 15) (gocyclo)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign83%

IneffAssign detects ineffectual assignments in Go code.

    • sqlite/internal/bin/bin_windows_386.go
    • Line 630: warning: ineffectual assignment to _f (ineffassign)
    • Line 879: warning: ineffectual assignment to _ap (ineffassign)
    • Line 3712: warning: ineffectual assignment to _rc (ineffassign)
    • Line 4346: warning: ineffectual assignment to _pNew (ineffassign)
    • Line 6650: warning: ineffectual assignment to _ap (ineffassign)
    • Line 7429: warning: ineffectual assignment to _ap (ineffassign)
    • Line 9159: warning: ineffectual assignment to _1_val (ineffassign)
    • Line 11296: warning: ineffectual assignment to _ap (ineffassign)
    • Line 13603: warning: ineffectual assignment to _2_ap (ineffassign)
    • Line 19692: warning: ineffectual assignment to _rc (ineffassign)
    • Line 21369: warning: ineffectual assignment to _3_nFreed (ineffassign)
    • Line 27364: warning: ineffectual assignment to _3_aFrame (ineffassign)
    • Line 31456: warning: ineffectual assignment to _ap (ineffassign)
    • Line 35209: warning: ineffectual assignment to _ap (ineffassign)
    • Line 35792: warning: ineffectual assignment to _ap (ineffassign)
    • Line 40197: warning: ineffectual assignment to _regLeft (ineffassign)
    • Line 40198: warning: ineffectual assignment to _regRight (ineffassign)
    • Line 42585: warning: ineffectual assignment to _ap (ineffassign)
    • Line 42918: warning: ineffectual assignment to _ap (ineffassign)
    • Line 55829: warning: ineffectual assignment to _rc (ineffassign)
    • Line 56655: warning: ineffectual assignment to _rc (ineffassign)
    • Line 58254: warning: ineffectual assignment to _ap (ineffassign)
    • Line 60601: warning: ineffectual assignment to _rc (ineffassign)
    • Line 71400: warning: ineffectual assignment to _518_pCur (ineffassign)
    • Line 71509: warning: ineffectual assignment to _522_res (ineffassign)
    • Line 71629: warning: ineffectual assignment to _528_res (ineffassign)
    • Line 76305: warning: ineffectual assignment to _rc (ineffassign)
    • Line 78844: warning: ineffectual assignment to _readOnly (ineffassign)
    • Line 80504: warning: ineffectual assignment to _rc (ineffassign)
    • Line 87756: warning: ineffectual assignment to _4_pNext (ineffassign)
    • Line 88714: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89129: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89414: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89606: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89696: warning: ineffectual assignment to _rc (ineffassign)
    • Line 90310: warning: ineffectual assignment to _nCellKey (ineffassign)
    • Line 90938: warning: ineffectual assignment to _p (ineffassign)
    • Line 92369: warning: ineffectual assignment to _ap (ineffassign)
    • Line 92537: warning: ineffectual assignment to _prev (ineffassign)
    • Line 94944: warning: ineffectual assignment to _rc (ineffassign)
    • Line 95106: warning: ineffectual assignment to _ap (ineffassign)
    • Line 96254: warning: ineffectual assignment to _rc (ineffassign)
    • Line 97622: warning: ineffectual assignment to _cSep (ineffassign)
    • Line 105435: warning: ineffectual assignment to _14_op (ineffassign)
    • Line 106028: warning: ineffectual assignment to _eDest (ineffassign)
    • Line 108556: warning: ineffectual assignment to _ap (ineffassign)
    • Line 109036: warning: ineffectual assignment to _9_zName (ineffassign)
    • Line 110164: warning: ineffectual assignment to _45_addrExplain (ineffassign)
    • Line 111184: warning: ineffectual assignment to _aiMap (ineffassign)
    • Line 111185: warning: ineffectual assignment to _zAff (ineffassign)
    • Line 116370: warning: ineffectual assignment to _rc (ineffassign)
    • Line 116929: warning: ineffectual assignment to _rc (ineffassign)
    • Line 119239: warning: ineffectual assignment to _1_idxaff (ineffassign)
    • Line 121782: warning: ineffectual assignment to _ret (ineffassign)
    • Line 122374: warning: ineffectual assignment to _iRowidReg (ineffassign)
    • Line 122375: warning: ineffectual assignment to _iReleaseReg (ineffassign)
    • Line 123587: warning: ineffectual assignment to _78_addrExplain (ineffassign)
    • Line 127817: warning: ineffectual assignment to _zName (ineffassign)
    • Line 130745: warning: ineffectual assignment to _ap (ineffassign)
    • Line 134607: warning: ineffectual assignment to _pWhen (ineffassign)
    • Line 135059: warning: ineffectual assignment to _aRegIdx (ineffassign)
    • Line 139383: warning: ineffectual assignment to _regAutoinc (ineffassign)
    • Line 143467: warning: ineffectual assignment to _zLeft (ineffassign)
    • Line 143468: warning: ineffectual assignment to _zRight (ineffassign)
    • Line 149918: warning: ineffectual assignment to _jZeroRows (ineffassign)
    • Line 155549: warning: ineffectual assignment to _pBitvec (ineffassign)
    • Line 155550: warning: ineffectual assignment to _pV (ineffassign)
    • Line 158144: warning: ineffectual assignment to _z (ineffassign)
    • Line 158974: warning: ineffectual assignment to _5_zText (ineffassign)
    • Line 161818: warning: ineffectual assignment to _dwLen (ineffassign)
    • Line 162527: warning: ineffectual assignment to _rc (ineffassign)
    • Line 163480: warning: ineffectual assignment to _5_pNew (ineffassign)
    • Line 163490: warning: ineffectual assignment to _rc (ineffassign)
    • Line 163523: warning: ineffectual assignment to _rc (ineffassign)
    • Line 163674: warning: ineffectual assignment to _7_hMap (ineffassign)
    • Line 163931: warning: ineffectual assignment to _dwFlagsAndAttributes (ineffassign)
    • Line 164253: warning: ineffectual assignment to _zConverted (ineffassign)
    • Line 164420: warning: ineffectual assignment to _rc (ineffassign)
    • Line 164521: warning: ineffectual assignment to _4_bRc (ineffassign)
    • Line 164523: warning: ineffectual assignment to _4_bRc (ineffassign)
    • sqlite/internal/bin/bin_windows_amd64.go
    • Line 636: warning: ineffectual assignment to _f (ineffassign)
    • Line 885: warning: ineffectual assignment to _ap (ineffassign)
    • Line 3718: warning: ineffectual assignment to _rc (ineffassign)
    • Line 4352: warning: ineffectual assignment to _pNew (ineffassign)
    • Line 6656: warning: ineffectual assignment to _ap (ineffassign)
    • Line 7435: warning: ineffectual assignment to _ap (ineffassign)
    • Line 9165: warning: ineffectual assignment to _1_val (ineffassign)
    • Line 11302: warning: ineffectual assignment to _ap (ineffassign)
    • Line 13609: warning: ineffectual assignment to _2_ap (ineffassign)
    • Line 19698: warning: ineffectual assignment to _rc (ineffassign)
    • Line 21375: warning: ineffectual assignment to _3_nFreed (ineffassign)
    • Line 27370: warning: ineffectual assignment to _3_aFrame (ineffassign)
    • Line 31462: warning: ineffectual assignment to _ap (ineffassign)
    • Line 35215: warning: ineffectual assignment to _ap (ineffassign)
    • Line 35798: warning: ineffectual assignment to _ap (ineffassign)
    • Line 40203: warning: ineffectual assignment to _regLeft (ineffassign)
    • Line 40204: warning: ineffectual assignment to _regRight (ineffassign)
    • Line 42591: warning: ineffectual assignment to _ap (ineffassign)
    • Line 42924: warning: ineffectual assignment to _ap (ineffassign)
    • Line 55835: warning: ineffectual assignment to _rc (ineffassign)
    • Line 56661: warning: ineffectual assignment to _rc (ineffassign)
    • Line 58260: warning: ineffectual assignment to _ap (ineffassign)
    • Line 60607: warning: ineffectual assignment to _rc (ineffassign)
    • Line 71406: warning: ineffectual assignment to _518_pCur (ineffassign)
    • Line 71515: warning: ineffectual assignment to _522_res (ineffassign)
    • Line 71635: warning: ineffectual assignment to _528_res (ineffassign)
    • Line 76311: warning: ineffectual assignment to _rc (ineffassign)
    • Line 78850: warning: ineffectual assignment to _readOnly (ineffassign)
    • Line 80510: warning: ineffectual assignment to _rc (ineffassign)
    • Line 87762: warning: ineffectual assignment to _4_pNext (ineffassign)
    • Line 88720: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89135: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89420: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89612: warning: ineffectual assignment to _rc (ineffassign)
    • Line 89702: warning: ineffectual assignment to _rc (ineffassign)
    • Line 90316: warning: ineffectual assignment to _nCellKey (ineffassign)
    • Line 90944: warning: ineffectual assignment to _p (ineffassign)
    • Line 92375: warning: ineffectual assignment to _ap (ineffassign)
    • Line 92543: warning: ineffectual assignment to _prev (ineffassign)
    • Line 94950: warning: ineffectual assignment to _rc (ineffassign)
    • Line 95112: warning: ineffectual assignment to _ap (ineffassign)
    • Line 96260: warning: ineffectual assignment to _rc (ineffassign)
    • Line 97628: warning: ineffectual assignment to _cSep (ineffassign)
    • Line 105441: warning: ineffectual assignment to _14_op (ineffassign)
    • Line 106034: warning: ineffectual assignment to _eDest (ineffassign)
    • Line 108562: warning: ineffectual assignment to _ap (ineffassign)
    • Line 109042: warning: ineffectual assignment to _9_zName (ineffassign)
    • Line 110170: warning: ineffectual assignment to _45_addrExplain (ineffassign)
    • Line 111190: warning: ineffectual assignment to _aiMap (ineffassign)
    • Line 111191: warning: ineffectual assignment to _zAff (ineffassign)
    • Line 116376: warning: ineffectual assignment to _rc (ineffassign)
    • Line 116935: warning: ineffectual assignment to _rc (ineffassign)
    • Line 119245: warning: ineffectual assignment to _1_idxaff (ineffassign)
    • Line 121788: warning: ineffectual assignment to _ret (ineffassign)
    • Line 122380: warning: ineffectual assignment to _iRowidReg (ineffassign)
    • Line 122381: warning: ineffectual assignment to _iReleaseReg (ineffassign)
    • Line 123593: warning: ineffectual assignment to _78_addrExplain (ineffassign)
    • Line 127823: warning: ineffectual assignment to _zName (ineffassign)
    • Line 130751: warning: ineffectual assignment to _ap (ineffassign)
    • Line 134613: warning: ineffectual assignment to _pWhen (ineffassign)
    • Line 135065: warning: ineffectual assignment to _aRegIdx (ineffassign)
    • Line 139389: warning: ineffectual assignment to _regAutoinc (ineffassign)
    • Line 143473: warning: ineffectual assignment to _zLeft (ineffassign)
    • Line 143474: warning: ineffectual assignment to _zRight (ineffassign)
    • Line 149924: warning: ineffectual assignment to _jZeroRows (ineffassign)
    • Line 155555: warning: ineffectual assignment to _pBitvec (ineffassign)
    • Line 155556: warning: ineffectual assignment to _pV (ineffassign)
    • Line 158150: warning: ineffectual assignment to _z (ineffassign)
    • Line 158980: warning: ineffectual assignment to _5_zText (ineffassign)
    • Line 161824: warning: ineffectual assignment to _dwLen (ineffassign)
    • Line 162533: warning: ineffectual assignment to _rc (ineffassign)
    • Line 163486: warning: ineffectual assignment to _5_pNew (ineffassign)
    • Line 163496: warning: ineffectual assignment to _rc (ineffassign)
    • Line 163520: warning: ineffectual assignment to _rc (ineffassign)
    • Line 163671: warning: ineffectual assignment to _7_hMap (ineffassign)
    • Line 163928: warning: ineffectual assignment to _dwFlagsAndAttributes (ineffassign)
    • Line 164250: warning: ineffectual assignment to _zConverted (ineffassign)
    • Line 164417: warning: ineffectual assignment to _rc (ineffassign)
    • Line 164518: warning: ineffectual assignment to _4_bRc (ineffassign)
    • Line 164520: warning: ineffectual assignment to _4_bRc (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!