Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Jan 8, 2025
1 parent 2c0995e commit c83564d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions public/go.html
Original file line number Diff line number Diff line change
@@ -13443,7 +13443,11 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
// don't deal with "insert" rows here as the autogenerated IDs will not be copied over since AlaSQL and sqlite
// may handle them differently. Inserts are dealt with in a special debug trigger
//
// Also remember that often this code won't be called as the normal "sqlui( )" function also calls this, except
// it just has "dbgCode" set to "null" so that no logging occurs
//
if ((dbgCode != null) && (yz.uiDb.tablesCreated)) {
debugger
if (startOfSql.startsWith("insert") || startOfSql.startsWith("update") || startOfSql.startsWith("delete")) {
let sourceForCallerOfFunction = yz.uiDb.findSourceLineInCode(dbgCode)
let sourceFileName = null

0 comments on commit c83564d

Please sign in to comment.