6c92f85d10
Bring the Nexus/Praxis/Hexis integration in line with MAVEN_ECOSYSTEM_ARCHITECTURE.md: - Praxis over HTTP: drop the in-process praxis.db open (praxisstore/ praxistools) and call praxisd's /api/v1/tools/* API via a new praxisClient. Honors the "no component reads another's DB" invariant (AC#12). PraxisConfig.DBPath -> URL. - Hexis confirmation gate: mutating capabilities (ReadOnly=false) now park a bound pendingHexis confirmation and require a spoken "да" before executing; read-only run immediately (AC#7, no auto attention->action). - Capability safety: >1 verb match is ambiguous -> ask instead of firing the first; ambiguous Nexus resolution asks for clarification (AC#2). - Correlation IDs on Hexis execute, recorded in the cross-service trace. - Bug: importance arrives as JSON float64 over HTTP, not int. - Tests: confirm-gate, decline, read-only, and ambiguity paths. Build: vendor/ bakes in the hexis client (replace-directed at a sibling repo outside the Docker context); Dockerfile builds from vendor and no longer `go mod download`s the unreachable replace paths. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
30245 lines
1.2 MiB
Plaintext
30245 lines
1.2 MiB
Plaintext
// Code generated for linux/amd64 by 'generator -mlong-double-64 --package-name libsqlite3 --prefix-enumerator=_ --prefix-external=x_ --prefix-field=F --prefix-static-internal=_ --prefix-static-none=_ --prefix-tagged-enum=_ --prefix-tagged-struct=T --prefix-tagged-union=T --prefix-typename=T --prefix-undefined=_ -ignore-unsupported-alignment -ignore-link-errors -import=sync -DHAVE_USLEEP -DLONGDOUBLE_TYPE=double -DNDEBUG -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DISABLE_INTRINSIC -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_GEOPOLY -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_MATH_FUNCTIONS -DSQLITE_ENABLE_MEMORY_MANAGEMENT -DSQLITE_ENABLE_OFFSET_SQL_FUNC -DSQLITE_ENABLE_PREUPDATE_HOOK -DSQLITE_ENABLE_RBU -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_SNAPSHOT -DSQLITE_ENABLE_STAT4 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_HAVE_ZLIB=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_SOUNDEX -DSQLITE_THREADSAFE=1 -DSQLITE_WITHOUT_ZONEMALLOC -D_LARGEFILE64_SOURCE -I /home/jnml/src/modernc.org/builder/.exclude/modernc.org/libc/include/linux/amd64 -I /home/jnml/src/modernc.org/builder/.exclude/modernc.org/libz/include/linux/amd64 -I /home/jnml/src/modernc.org/builder/.exclude/modernc.org/libtcl8.6/include/linux/amd64 -extended-errors -o sqlite3.go sqlite3.c -DSQLITE_OS_UNIX=1 -eval-all-macros', DO NOT EDIT.
|
|
|
|
//go:build linux && amd64
|
|
|
|
package sqlite3
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"modernc.org/libc"
|
|
)
|
|
|
|
type Tstat = struct {
|
|
Fst_dev Tdev_t
|
|
Fst_ino Tino_t
|
|
Fst_nlink Tnlink_t
|
|
Fst_mode Tmode_t
|
|
Fst_uid Tuid_t
|
|
Fst_gid Tgid_t
|
|
F__pad0 uint32
|
|
Fst_rdev Tdev_t
|
|
Fst_size Toff_t
|
|
Fst_blksize Tblksize_t
|
|
Fst_blocks Tblkcnt_t
|
|
Fst_atim Ttimespec
|
|
Fst_mtim Ttimespec
|
|
Fst_ctim Ttimespec
|
|
F__unused [3]int64
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Given the name of a compile-time option, return true if that option
|
|
// ** was used and false if not.
|
|
// **
|
|
// ** The name can optionally begin with "SQLITE_" but the "SQLITE_" prefix
|
|
// ** is not required for a match.
|
|
// */
|
|
func Xsqlite3_compileoption_used(tls *libc.TLS, zOptName uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var azCompileOpt uintptr
|
|
var i, n int32
|
|
var _ /* nOpt at bp+0 */ int32
|
|
_, _, _ = azCompileOpt, i, n
|
|
azCompileOpt = _sqlite3CompileOptions(tls, bp)
|
|
if Xsqlite3_strnicmp(tls, zOptName, __ccgo_ts+26368, int32(7)) == 0 {
|
|
zOptName = zOptName + uintptr(7)
|
|
}
|
|
n = _sqlite3Strlen30(tls, zOptName)
|
|
/* Since nOpt is normally in single digits, a linear search is
|
|
** adequate. No need for a binary search. */
|
|
i = 0
|
|
for {
|
|
if !(i < **(**int32)(__ccgo_up(bp))) {
|
|
break
|
|
}
|
|
if Xsqlite3_strnicmp(tls, zOptName, **(**uintptr)(__ccgo_up(azCompileOpt + uintptr(i)*8)), n) == 0 && _sqlite3IsIdChar(tls, libc.Uint8FromInt8(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(azCompileOpt + uintptr(i)*8)) + uintptr(n))))) == 0 {
|
|
return int32(1)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Execute SQL code. Return one of the SQLITE_ success/failure
|
|
// ** codes. Also write an error message into memory obtained from
|
|
// ** malloc() and make *pzErrMsg point to that message.
|
|
// **
|
|
// ** If the SQL is a query, then for each row in the query result
|
|
// ** the xCallback() function is called. pArg becomes the first
|
|
// ** argument to xCallback(). If xCallback=NULL then no callback
|
|
// ** is invoked, even for queries.
|
|
// */
|
|
func Xsqlite3_exec(tls *libc.TLS, db uintptr, zSql uintptr, __ccgo_fp_xCallback Tsqlite3_callback, pArg uintptr, pzErrMsg uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var azCols, azVals uintptr
|
|
var callbackIsInit, i, nCol, rc int32
|
|
var _ /* pStmt at bp+8 */ uintptr
|
|
var _ /* zLeftover at bp+0 */ uintptr
|
|
_, _, _, _, _, _ = azCols, azVals, callbackIsInit, i, nCol, rc
|
|
rc = SQLITE_OK /* Tail of unprocessed SQL */
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0) /* The current SQL statement */
|
|
azCols = uintptr(0) /* True if callback data is initialized */
|
|
if !(_sqlite3SafetyCheckOk(tls, db) != 0) {
|
|
return _sqlite3MisuseError(tls, int32(142334))
|
|
}
|
|
if zSql == uintptr(0) {
|
|
zSql = __ccgo_ts + 1704
|
|
}
|
|
Xsqlite3_mutex_enter(tls, (*Tsqlite3)(unsafe.Pointer(db)).Fmutex)
|
|
_sqlite3Error(tls, db, SQLITE_OK)
|
|
for rc == SQLITE_OK && **(**int8)(__ccgo_up(zSql)) != 0 {
|
|
nCol = 0
|
|
azVals = uintptr(0)
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
rc = Xsqlite3_prepare_v2(tls, db, zSql, -int32(1), bp+8, bp)
|
|
if rc != SQLITE_OK {
|
|
continue
|
|
}
|
|
if !(**(**uintptr)(__ccgo_up(bp + 8)) != 0) {
|
|
/* this happens for a comment or white-space */
|
|
zSql = **(**uintptr)(__ccgo_up(bp))
|
|
continue
|
|
}
|
|
callbackIsInit = 0
|
|
for int32(1) != 0 {
|
|
rc = Xsqlite3_step(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
/* Invoke the callback function if required */
|
|
if __ccgo_fp_xCallback != 0 && (int32(SQLITE_ROW) == rc || int32(SQLITE_DONE) == rc && !(callbackIsInit != 0) && (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_NullCallback) != 0) {
|
|
if !(callbackIsInit != 0) {
|
|
nCol = Xsqlite3_column_count(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
azCols = _sqlite3DbMallocRaw(tls, db, uint64(libc.Uint64FromInt32(libc.Int32FromInt32(2)*nCol+libc.Int32FromInt32(1))*uint64(8)))
|
|
if azCols == uintptr(0) {
|
|
goto exec_out
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(i < nCol) {
|
|
break
|
|
}
|
|
**(**uintptr)(__ccgo_up(azCols + uintptr(i)*8)) = Xsqlite3_column_name(tls, **(**uintptr)(__ccgo_up(bp + 8)), i)
|
|
/* sqlite3VdbeSetColName() installs column names as UTF8
|
|
** strings so there is no way for sqlite3_column_name() to fail. */
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
callbackIsInit = int32(1)
|
|
}
|
|
if rc == int32(SQLITE_ROW) {
|
|
azVals = azCols + uintptr(nCol)*8
|
|
i = 0
|
|
for {
|
|
if !(i < nCol) {
|
|
break
|
|
}
|
|
**(**uintptr)(__ccgo_up(azVals + uintptr(i)*8)) = Xsqlite3_column_text(tls, **(**uintptr)(__ccgo_up(bp + 8)), i)
|
|
if !(**(**uintptr)(__ccgo_up(azVals + uintptr(i)*8)) != 0) && Xsqlite3_column_type(tls, **(**uintptr)(__ccgo_up(bp + 8)), i) != int32(SQLITE_NULL) {
|
|
_sqlite3OomFault(tls, db)
|
|
goto exec_out
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
**(**uintptr)(__ccgo_up(azVals + uintptr(i)*8)) = uintptr(0)
|
|
}
|
|
if (*(*func(*libc.TLS, uintptr, int32, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{__ccgo_fp_xCallback})))(tls, pArg, nCol, azVals, azCols) != 0 {
|
|
/* EVIDENCE-OF: R-38229-40159 If the callback function to
|
|
** sqlite3_exec() returns non-zero, then sqlite3_exec() will
|
|
** return SQLITE_ABORT. */
|
|
rc = int32(SQLITE_ABORT)
|
|
_sqlite3VdbeFinalize(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
_sqlite3Error(tls, db, int32(SQLITE_ABORT))
|
|
goto exec_out
|
|
}
|
|
}
|
|
if rc != int32(SQLITE_ROW) {
|
|
rc = _sqlite3VdbeFinalize(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
zSql = **(**uintptr)(__ccgo_up(bp))
|
|
for libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zSql)))])&int32(0x01) != 0 {
|
|
zSql = zSql + 1
|
|
}
|
|
break
|
|
}
|
|
}
|
|
_sqlite3DbFree(tls, db, azCols)
|
|
azCols = uintptr(0)
|
|
}
|
|
goto exec_out
|
|
exec_out:
|
|
;
|
|
if **(**uintptr)(__ccgo_up(bp + 8)) != 0 {
|
|
_sqlite3VdbeFinalize(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
}
|
|
_sqlite3DbFree(tls, db, azCols)
|
|
rc = _sqlite3ApiExit(tls, db, rc)
|
|
if rc != SQLITE_OK && pzErrMsg != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = _sqlite3DbStrDup(tls, uintptr(0), Xsqlite3_errmsg(tls, db))
|
|
if **(**uintptr)(__ccgo_up(pzErrMsg)) == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
_sqlite3Error(tls, db, int32(SQLITE_NOMEM))
|
|
}
|
|
} else {
|
|
if pzErrMsg != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = uintptr(0)
|
|
}
|
|
}
|
|
Xsqlite3_mutex_leave(tls, (*Tsqlite3)(unsafe.Pointer(db)).Fmutex)
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Render a string given by "fmt" into the StrAccum object.
|
|
// */
|
|
func Xsqlite3_str_vappendf(tls *libc.TLS, pAccum uintptr, fmt uintptr, ap Tva_list) {
|
|
bp := tls.Alloc(128)
|
|
defer tls.Free(128)
|
|
var adj, c, e2, exp, iRound, idx, ii, ix, j, length, nOut, needQuote, nn, nn1, nn2, nn3, precision, width, x, v2, v3 int32
|
|
var bArgList, base Tu8
|
|
var bufpt, cset, escarg, infop, pArgList, pExpr, pItem, pSel, pToken, pre, z, zExtra, zOut, v4 uintptr
|
|
var cThousand, done, flag_alternateform, flag_altform2, flag_dp, flag_leftjustify, flag_long, flag_prefix, flag_rtz, flag_zeropad, xtype, v5, v6, v7, v8, v9 TetByte
|
|
var ch, px, wx uint32
|
|
var ch1, prefix, q, x1, v54 int8
|
|
var i, j1, k, n1, nBack, nCopyBytes, nCtrl, nPad, nPrior, szBufNeeded, v, v90 Ti64
|
|
var longvalue Tsqlite_uint64
|
|
var n Tu64
|
|
var realvalue float64
|
|
var v12 bool
|
|
var _ /* buf at bp+0 */ [70]int8
|
|
var _ /* s at bp+72 */ TFpDecode
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = adj, bArgList, base, bufpt, c, cThousand, ch, ch1, cset, done, e2, escarg, exp, flag_alternateform, flag_altform2, flag_dp, flag_leftjustify, flag_long, flag_prefix, flag_rtz, flag_zeropad, i, iRound, idx, ii, infop, ix, j, j1, k, length, longvalue, n, n1, nBack, nCopyBytes, nCtrl, nOut, nPad, nPrior, needQuote, nn, nn1, nn2, nn3, pArgList, pExpr, pItem, pSel, pToken, pre, precision, prefix, px, q, realvalue, szBufNeeded, v, width, wx, x, x1, xtype, z, zExtra, zOut, v12, v2, v3, v4, v5, v54, v6, v7, v8, v9, v90 /* Thousands separator for %d and %u */
|
|
xtype = uint8(etINVALID) /* Size of the rendering buffer */
|
|
zExtra = uintptr(0) /* True if trailing zeros should be removed */
|
|
pArgList = uintptr(0) /* Conversion buffer */
|
|
/* pAccum never starts out with an empty buffer that was obtained from
|
|
** malloc(). This precondition is required by the mprintf("%z...")
|
|
** optimization. */
|
|
bufpt = uintptr(0)
|
|
if libc.Int32FromUint8((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FprintfFlags)&int32(SQLITE_PRINTF_SQLFUNC) != 0 {
|
|
pArgList = libc.VaUintptr(&ap)
|
|
bArgList = uint8(1)
|
|
} else {
|
|
bArgList = uint8(0)
|
|
}
|
|
for {
|
|
v2 = int32(**(**int8)(__ccgo_up(fmt)))
|
|
c = v2
|
|
if !(v2 != 0) {
|
|
break
|
|
}
|
|
if c != int32('%') {
|
|
bufpt = fmt
|
|
fmt = libc.Xstrchr(tls, fmt, int32('%'))
|
|
if fmt == uintptr(0) {
|
|
fmt = bufpt + uintptr(libc.Xstrlen(tls, bufpt))
|
|
}
|
|
Xsqlite3_str_append(tls, pAccum, bufpt, int32(int64(fmt)-int64(bufpt)))
|
|
if int32(**(**int8)(__ccgo_up(fmt))) == 0 {
|
|
break
|
|
}
|
|
}
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
v2 = int32(**(**int8)(__ccgo_up(v4)))
|
|
c = v2
|
|
if v2 == 0 {
|
|
Xsqlite3_str_append(tls, pAccum, __ccgo_ts+1688, int32(1))
|
|
break
|
|
}
|
|
/* Find out what flags are present */
|
|
v9 = libc.Uint8FromInt32(0)
|
|
flag_zeropad = v9
|
|
v8 = v9
|
|
flag_altform2 = v8
|
|
v7 = v8
|
|
flag_alternateform = v7
|
|
v6 = v7
|
|
cThousand = v6
|
|
v5 = v6
|
|
flag_prefix = v5
|
|
flag_leftjustify = v5
|
|
done = uint8(0)
|
|
width = 0
|
|
flag_long = uint8(0)
|
|
precision = -int32(1)
|
|
for {
|
|
switch c {
|
|
case int32('-'):
|
|
flag_leftjustify = uint8(1)
|
|
case int32('+'):
|
|
flag_prefix = uint8('+')
|
|
case int32(' '):
|
|
flag_prefix = uint8(' ')
|
|
case int32('#'):
|
|
flag_alternateform = uint8(1)
|
|
case int32('!'):
|
|
flag_altform2 = uint8(1)
|
|
case int32('0'):
|
|
flag_zeropad = uint8(1)
|
|
case int32(','):
|
|
cThousand = uint8(',')
|
|
default:
|
|
done = uint8(1)
|
|
case int32('l'):
|
|
flag_long = uint8(1)
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
c = int32(**(**int8)(__ccgo_up(v4)))
|
|
if c == int32('l') {
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
c = int32(**(**int8)(__ccgo_up(v4)))
|
|
flag_long = uint8(2)
|
|
}
|
|
done = uint8(1)
|
|
case int32('1'):
|
|
fallthrough
|
|
case int32('2'):
|
|
fallthrough
|
|
case int32('3'):
|
|
fallthrough
|
|
case int32('4'):
|
|
fallthrough
|
|
case int32('5'):
|
|
fallthrough
|
|
case int32('6'):
|
|
fallthrough
|
|
case int32('7'):
|
|
fallthrough
|
|
case int32('8'):
|
|
fallthrough
|
|
case int32('9'):
|
|
wx = libc.Uint32FromInt32(c - int32('0'))
|
|
for {
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
v2 = int32(**(**int8)(__ccgo_up(v4)))
|
|
c = v2
|
|
if !(v2 >= int32('0') && c <= int32('9')) {
|
|
break
|
|
}
|
|
wx = wx*uint32(10) + libc.Uint32FromInt32(c) - uint32('0')
|
|
}
|
|
width = libc.Int32FromUint32(wx & uint32(0x7fffffff))
|
|
if c != int32('.') && c != int32('l') {
|
|
done = uint8(1)
|
|
} else {
|
|
fmt = fmt - 1
|
|
}
|
|
case int32('*'):
|
|
if bArgList != 0 {
|
|
width = int32(_getIntArg(tls, pArgList))
|
|
} else {
|
|
width = libc.VaInt32(&ap)
|
|
}
|
|
if width < 0 {
|
|
flag_leftjustify = uint8(1)
|
|
if width >= -int32(2147483647) {
|
|
v2 = -width
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
width = v2
|
|
}
|
|
v2 = int32(**(**int8)(__ccgo_up(fmt + 1)))
|
|
c = v2
|
|
if v2 != int32('.') && c != int32('l') {
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
c = int32(**(**int8)(__ccgo_up(v4)))
|
|
done = uint8(1)
|
|
}
|
|
case int32('.'):
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
c = int32(**(**int8)(__ccgo_up(v4)))
|
|
if c == int32('*') {
|
|
if bArgList != 0 {
|
|
precision = int32(_getIntArg(tls, pArgList))
|
|
} else {
|
|
precision = libc.VaInt32(&ap)
|
|
}
|
|
if precision < 0 {
|
|
if precision >= -int32(2147483647) {
|
|
v2 = -precision
|
|
} else {
|
|
v2 = -int32(1)
|
|
}
|
|
precision = v2
|
|
}
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
c = int32(**(**int8)(__ccgo_up(v4)))
|
|
} else {
|
|
px = uint32(0)
|
|
for c >= int32('0') && c <= int32('9') {
|
|
px = px*uint32(10) + libc.Uint32FromInt32(c) - uint32('0')
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
c = int32(**(**int8)(__ccgo_up(v4)))
|
|
}
|
|
precision = libc.Int32FromUint32(px & uint32(0x7fffffff))
|
|
}
|
|
if c == int32('l') {
|
|
fmt = fmt - 1
|
|
} else {
|
|
done = uint8(1)
|
|
}
|
|
break
|
|
}
|
|
goto _13
|
|
_13:
|
|
;
|
|
if v12 = !(done != 0); v12 {
|
|
fmt = fmt + 1
|
|
v4 = fmt
|
|
v2 = int32(**(**int8)(__ccgo_up(v4)))
|
|
c = v2
|
|
}
|
|
if !(v12 && v2 != 0) {
|
|
break
|
|
}
|
|
}
|
|
/* Fetch the info entry for the field */
|
|
/* Fast hash-table lookup */
|
|
idx = libc.Int32FromUint32(libc.Uint32FromInt32(c) % uint32(23))
|
|
if v12 = int32(_fmtinfo[idx].Ffmttype) == c; !v12 {
|
|
v2 = int32(_fmtinfo[idx].FiNxt)
|
|
idx = v2
|
|
}
|
|
if v12 || int32(_fmtinfo[v2].Ffmttype) == c {
|
|
infop = uintptr(unsafe.Pointer(&_fmtinfo)) + uintptr(idx)*7
|
|
xtype = (*Tet_info)(unsafe.Pointer(infop)).Ftype1
|
|
} else {
|
|
infop = uintptr(unsafe.Pointer(&_fmtinfo))
|
|
xtype = uint8(etINVALID)
|
|
}
|
|
/*
|
|
** At this point, variables are initialized as follows:
|
|
**
|
|
** flag_alternateform TRUE if a '#' is present.
|
|
** flag_altform2 TRUE if a '!' is present.
|
|
** flag_prefix '+' or ' ' or zero
|
|
** flag_leftjustify TRUE if a '-' is present or if the
|
|
** field width was negative.
|
|
** flag_zeropad TRUE if the width began with 0.
|
|
** flag_long 1 for "l", 2 for "ll"
|
|
** width The specified field width. This is
|
|
** always non-negative. Zero is the default.
|
|
** precision The specified precision. The default
|
|
** is -1.
|
|
** xtype The class of the conversion.
|
|
** infop Pointer to the appropriate info struct.
|
|
*/
|
|
switch libc.Int32FromUint8(xtype) {
|
|
case int32(etPOINTER):
|
|
goto _27
|
|
case etRADIX:
|
|
goto _28
|
|
case int32(etORDINAL):
|
|
goto _29
|
|
case int32(etDECIMAL):
|
|
goto _30
|
|
case int32(etGENERIC):
|
|
goto _31
|
|
case int32(etEXP):
|
|
goto _32
|
|
case int32(etFLOAT):
|
|
goto _33
|
|
case int32(etSIZE):
|
|
goto _34
|
|
case int32(etPERCENT):
|
|
goto _35
|
|
case int32(etCHARX):
|
|
goto _36
|
|
case int32(etDYNSTRING):
|
|
goto _37
|
|
case int32(etSTRING):
|
|
goto _38
|
|
case int32(etESCAPE_w):
|
|
goto _39
|
|
case int32(etESCAPE_Q):
|
|
goto _40
|
|
case int32(etESCAPE_q):
|
|
goto _41
|
|
case int32(etTOKEN):
|
|
goto _42
|
|
case int32(etSRCITEM):
|
|
goto _43
|
|
default:
|
|
goto _44
|
|
}
|
|
goto _45
|
|
_27:
|
|
;
|
|
flag_long = uint8(2)
|
|
_29:
|
|
;
|
|
_28:
|
|
;
|
|
cThousand = uint8(0)
|
|
_30:
|
|
;
|
|
if libc.Int32FromUint8((*Tet_info)(unsafe.Pointer(infop)).Fflags)&int32(FLAG_SIGNED) != 0 {
|
|
if bArgList != 0 {
|
|
v = _getIntArg(tls, pArgList)
|
|
} else {
|
|
if flag_long != 0 {
|
|
if libc.Int32FromUint8(flag_long) == int32(2) {
|
|
v = libc.VaInt64(&ap)
|
|
} else {
|
|
v = int64(libc.VaInt64(&ap))
|
|
}
|
|
} else {
|
|
v = int64(libc.VaInt32(&ap))
|
|
}
|
|
}
|
|
if v < 0 {
|
|
longvalue = libc.Uint64FromInt64(^v)
|
|
longvalue = longvalue + 1
|
|
prefix = int8('-')
|
|
} else {
|
|
longvalue = libc.Uint64FromInt64(v)
|
|
prefix = libc.Int8FromUint8(flag_prefix)
|
|
}
|
|
} else {
|
|
if bArgList != 0 {
|
|
longvalue = libc.Uint64FromInt64(_getIntArg(tls, pArgList))
|
|
} else {
|
|
if flag_long != 0 {
|
|
if libc.Int32FromUint8(flag_long) == int32(2) {
|
|
longvalue = libc.VaUint64(&ap)
|
|
} else {
|
|
longvalue = uint64(libc.VaUint64(&ap))
|
|
}
|
|
} else {
|
|
longvalue = uint64(libc.VaUint32(&ap))
|
|
}
|
|
}
|
|
prefix = 0
|
|
}
|
|
if longvalue == uint64(0) {
|
|
flag_alternateform = uint8(0)
|
|
}
|
|
if flag_zeropad != 0 && precision < width-libc.BoolInt32(int32(prefix) != 0) {
|
|
precision = width - libc.BoolInt32(int32(prefix) != 0)
|
|
}
|
|
if precision < libc.Int32FromInt32(SQLITE_PRINT_BUF_SIZE)-libc.Int32FromInt32(10)-libc.Int32FromInt32(SQLITE_PRINT_BUF_SIZE)/libc.Int32FromInt32(3) {
|
|
nOut = int32(SQLITE_PRINT_BUF_SIZE)
|
|
zOut = bp
|
|
} else {
|
|
n = libc.Uint64FromInt32(precision) + uint64(10)
|
|
if cThousand != 0 {
|
|
n = n + libc.Uint64FromInt32(precision/int32(3))
|
|
}
|
|
v4 = _printfTempBuf(tls, pAccum, libc.Int64FromUint64(n))
|
|
zExtra = v4
|
|
zOut = v4
|
|
if zOut == uintptr(0) {
|
|
return
|
|
}
|
|
nOut = libc.Int32FromUint64(n)
|
|
}
|
|
bufpt = zOut + uintptr(nOut-int32(1))
|
|
if libc.Int32FromUint8(xtype) == int32(etORDINAL) {
|
|
x = libc.Int32FromUint64(longvalue % libc.Uint64FromInt32(10))
|
|
if x >= int32(4) || longvalue/uint64(10)%uint64(10) == uint64(1) {
|
|
x = 0
|
|
}
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = _zOrd[x*int32(2)+int32(1)]
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = _zOrd[x*int32(2)]
|
|
}
|
|
cset = uintptr(unsafe.Pointer(&_aDigits)) + uintptr((*Tet_info)(unsafe.Pointer(infop)).Fcharset)
|
|
base = (*Tet_info)(unsafe.Pointer(infop)).Fbase
|
|
for cond := true; cond; cond = longvalue > uint64(0) { /* Convert to ascii */
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = **(**int8)(__ccgo_up(cset + uintptr(longvalue%uint64(base))))
|
|
longvalue = longvalue / uint64(base)
|
|
}
|
|
length = int32(t__predefined_ptrdiff_t(zOut+uintptr(nOut-int32(1))) - int64(bufpt))
|
|
if precision > length { /* zero pad */
|
|
nn = precision - length
|
|
bufpt = bufpt - uintptr(nn)
|
|
libc.Xmemset(tls, bufpt, int32('0'), libc.Uint64FromInt32(nn))
|
|
length = precision
|
|
}
|
|
if cThousand != 0 {
|
|
nn1 = (length - int32(1)) / int32(3) /* Number of "," to insert */
|
|
ix = (length-int32(1))%int32(3) + int32(1)
|
|
bufpt = bufpt - uintptr(nn1)
|
|
idx = 0
|
|
for {
|
|
if !(nn1 > 0) {
|
|
break
|
|
}
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(idx))) = **(**int8)(__ccgo_up(bufpt + uintptr(idx+nn1)))
|
|
ix = ix - 1
|
|
if ix == 0 {
|
|
idx = idx + 1
|
|
v2 = idx
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v2))) = libc.Int8FromUint8(cThousand)
|
|
nn1 = nn1 - 1
|
|
ix = int32(3)
|
|
}
|
|
goto _50
|
|
_50:
|
|
;
|
|
idx = idx + 1
|
|
}
|
|
}
|
|
if prefix != 0 {
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = prefix
|
|
} /* Add sign */
|
|
if flag_alternateform != 0 && (*Tet_info)(unsafe.Pointer(infop)).Fprefix != 0 {
|
|
pre = uintptr(unsafe.Pointer(&_aPrefix)) + uintptr((*Tet_info)(unsafe.Pointer(infop)).Fprefix)
|
|
for {
|
|
v54 = **(**int8)(__ccgo_up(pre))
|
|
x1 = v54
|
|
if !(int32(v54) != 0) {
|
|
break
|
|
}
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = x1
|
|
goto _53
|
|
_53:
|
|
;
|
|
pre = pre + 1
|
|
}
|
|
}
|
|
length = int32(t__predefined_ptrdiff_t(zOut+uintptr(nOut-int32(1))) - int64(bufpt))
|
|
goto _45
|
|
_33:
|
|
;
|
|
_32:
|
|
;
|
|
_31:
|
|
; /* Size needed to hold the output */
|
|
if bArgList != 0 {
|
|
realvalue = _getDoubleArg(tls, pArgList)
|
|
} else {
|
|
realvalue = libc.VaFloat64(&ap)
|
|
}
|
|
if precision < 0 {
|
|
precision = int32(6)
|
|
} /* Set default precision */
|
|
if precision > int32(SQLITE_FP_PRECISION_LIMIT) {
|
|
precision = int32(SQLITE_FP_PRECISION_LIMIT)
|
|
}
|
|
if libc.Int32FromUint8(xtype) == int32(etFLOAT) {
|
|
iRound = -precision
|
|
} else {
|
|
if libc.Int32FromUint8(xtype) == int32(etGENERIC) {
|
|
if precision == 0 {
|
|
precision = int32(1)
|
|
}
|
|
iRound = precision
|
|
} else {
|
|
iRound = precision + int32(1)
|
|
}
|
|
}
|
|
if flag_altform2 != 0 {
|
|
v2 = int32(20)
|
|
} else {
|
|
v2 = int32(16)
|
|
}
|
|
_sqlite3FpDecode(tls, bp+72, realvalue, iRound, v2)
|
|
if (**(**TFpDecode)(__ccgo_up(bp + 72))).FisSpecial != 0 {
|
|
if int32((**(**TFpDecode)(__ccgo_up(bp + 72))).FisSpecial) == int32(2) {
|
|
if flag_zeropad != 0 {
|
|
v4 = __ccgo_ts + 1690
|
|
} else {
|
|
v4 = __ccgo_ts + 1695
|
|
}
|
|
bufpt = v4
|
|
length = _sqlite3Strlen30(tls, bufpt)
|
|
goto _45
|
|
} else {
|
|
if flag_zeropad != 0 {
|
|
**(**int8)(__ccgo_up((**(**TFpDecode)(__ccgo_up(bp + 72))).Fz)) = int8('9')
|
|
(**(**TFpDecode)(__ccgo_up(bp + 72))).FiDP = int32(1000)
|
|
(**(**TFpDecode)(__ccgo_up(bp + 72))).Fn = int32(1)
|
|
} else {
|
|
libc.Xmemcpy(tls, bp, __ccgo_ts+1699, uint64(5))
|
|
bufpt = bp
|
|
if int32((**(**TFpDecode)(__ccgo_up(bp + 72))).Fsign) == int32('-') {
|
|
/* no-op */
|
|
} else {
|
|
if flag_prefix != 0 {
|
|
(**(**[70]int8)(__ccgo_up(bp)))[0] = libc.Int8FromUint8(flag_prefix)
|
|
} else {
|
|
bufpt = bufpt + 1
|
|
}
|
|
}
|
|
length = _sqlite3Strlen30(tls, bufpt)
|
|
goto _45
|
|
}
|
|
}
|
|
}
|
|
if int32((**(**TFpDecode)(__ccgo_up(bp + 72))).Fsign) == int32('-') {
|
|
if flag_alternateform != 0 && !(flag_prefix != 0) && libc.Int32FromUint8(xtype) == int32(etFLOAT) && (**(**TFpDecode)(__ccgo_up(bp + 72))).FiDP <= iRound {
|
|
/* Suppress the minus sign if all of the following are true:
|
|
** * The value displayed is zero
|
|
** * The '#' flag is used
|
|
** * The '+' flag is not used, and
|
|
** * The format is %f
|
|
*/
|
|
prefix = 0
|
|
} else {
|
|
prefix = int8('-')
|
|
}
|
|
} else {
|
|
prefix = libc.Int8FromUint8(flag_prefix)
|
|
}
|
|
exp = (**(**TFpDecode)(__ccgo_up(bp + 72))).FiDP - int32(1)
|
|
/*
|
|
** If the field type is etGENERIC, then convert to either etEXP
|
|
** or etFLOAT, as appropriate.
|
|
*/
|
|
if libc.Int32FromUint8(xtype) == int32(etGENERIC) {
|
|
precision = precision - 1
|
|
flag_rtz = libc.BoolUint8(!(flag_alternateform != 0))
|
|
if exp < -int32(4) || exp > precision {
|
|
xtype = uint8(etEXP)
|
|
} else {
|
|
precision = precision - exp
|
|
xtype = uint8(etFLOAT)
|
|
}
|
|
} else {
|
|
flag_rtz = flag_altform2
|
|
}
|
|
if libc.Int32FromUint8(xtype) == int32(etEXP) {
|
|
e2 = 0
|
|
} else {
|
|
e2 = (**(**TFpDecode)(__ccgo_up(bp + 72))).FiDP - int32(1)
|
|
}
|
|
if e2 > 0 {
|
|
v2 = e2
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
szBufNeeded = int64(v2) + int64(precision) + int64(width) + int64(10)
|
|
if cThousand != 0 && e2 > 0 {
|
|
szBufNeeded = szBufNeeded + int64((e2+int32(2))/int32(3))
|
|
}
|
|
if szBufNeeded+libc.Int64FromUint32((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar) >= libc.Int64FromUint32((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnAlloc) {
|
|
if (*Tsqlite3_str)(unsafe.Pointer(pAccum)).FmxAlloc == uint32(0) && libc.Int32FromUint8((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FaccError) == 0 {
|
|
/* Unable to allocate space in pAccum, perhaps because it
|
|
** is coming from sqlite3_snprintf() or similar. We'll have
|
|
** to render into temporary space and the memcpy() it over. */
|
|
bufpt = Xsqlite3_malloc(tls, int32(szBufNeeded))
|
|
if bufpt == uintptr(0) {
|
|
_sqlite3StrAccumSetError(tls, pAccum, uint8(SQLITE_NOMEM))
|
|
return
|
|
}
|
|
zExtra = bufpt
|
|
} else {
|
|
if int64(_sqlite3StrAccumEnlarge(tls, pAccum, szBufNeeded)) < szBufNeeded {
|
|
v2 = libc.Int32FromInt32(0)
|
|
length = v2
|
|
width = v2
|
|
goto _45
|
|
} else {
|
|
bufpt = (*Tsqlite3_str)(unsafe.Pointer(pAccum)).FzText + uintptr((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar)
|
|
}
|
|
}
|
|
} else {
|
|
bufpt = (*Tsqlite3_str)(unsafe.Pointer(pAccum)).FzText + uintptr((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar)
|
|
}
|
|
zOut = bufpt
|
|
if precision > 0 {
|
|
v2 = int32(1)
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
flag_dp = libc.Uint8FromInt32(v2 | libc.Int32FromUint8(flag_alternateform) | libc.Int32FromUint8(flag_altform2))
|
|
/* The sign in front of the number */
|
|
if prefix != 0 {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = prefix
|
|
}
|
|
/* Digits prior to the decimal point */
|
|
j = 0
|
|
if e2 < 0 {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8('0')
|
|
} else {
|
|
if cThousand != 0 {
|
|
for {
|
|
if !(e2 >= 0) {
|
|
break
|
|
}
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
if j < (**(**TFpDecode)(__ccgo_up(bp + 72))).Fn {
|
|
v3 = j
|
|
j = j + 1
|
|
v2 = int32(**(**int8)(__ccgo_up((**(**TFpDecode)(__ccgo_up(bp + 72))).Fz + uintptr(v3))))
|
|
} else {
|
|
v2 = int32('0')
|
|
}
|
|
**(**int8)(__ccgo_up(v4)) = int8(v2)
|
|
if e2%int32(3) == 0 && e2 > int32(1) {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8(',')
|
|
}
|
|
goto _63
|
|
_63:
|
|
;
|
|
e2 = e2 - 1
|
|
}
|
|
} else {
|
|
j = e2 + int32(1)
|
|
if j > (**(**TFpDecode)(__ccgo_up(bp + 72))).Fn {
|
|
j = (**(**TFpDecode)(__ccgo_up(bp + 72))).Fn
|
|
}
|
|
libc.Xmemcpy(tls, bufpt, (**(**TFpDecode)(__ccgo_up(bp + 72))).Fz, libc.Uint64FromInt32(j))
|
|
bufpt = bufpt + uintptr(j)
|
|
e2 = e2 - j
|
|
if e2 >= 0 {
|
|
libc.Xmemset(tls, bufpt, int32('0'), libc.Uint64FromInt32(e2+int32(1)))
|
|
bufpt = bufpt + uintptr(e2+int32(1))
|
|
e2 = -int32(1)
|
|
}
|
|
}
|
|
}
|
|
/* The decimal point */
|
|
if flag_dp != 0 {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8('.')
|
|
}
|
|
/* "0" digits after the decimal point but before the first
|
|
** significant digit of the number */
|
|
if e2 < -int32(1) && precision > 0 {
|
|
nn2 = -int32(1) - e2
|
|
if nn2 > precision {
|
|
nn2 = precision
|
|
}
|
|
libc.Xmemset(tls, bufpt, int32('0'), libc.Uint64FromInt32(nn2))
|
|
bufpt = bufpt + uintptr(nn2)
|
|
precision = precision - nn2
|
|
}
|
|
/* Significant digits after the decimal point */
|
|
if precision > 0 {
|
|
nn3 = (**(**TFpDecode)(__ccgo_up(bp + 72))).Fn - j
|
|
if nn3 > precision {
|
|
nn3 = precision
|
|
}
|
|
if nn3 > 0 {
|
|
libc.Xmemcpy(tls, bufpt, (**(**TFpDecode)(__ccgo_up(bp + 72))).Fz+uintptr(j), libc.Uint64FromInt32(nn3))
|
|
bufpt = bufpt + uintptr(nn3)
|
|
precision = precision - nn3
|
|
}
|
|
if precision > 0 && !(flag_rtz != 0) {
|
|
libc.Xmemset(tls, bufpt, int32('0'), libc.Uint64FromInt32(precision))
|
|
bufpt = bufpt + uintptr(precision)
|
|
}
|
|
}
|
|
/* Remove trailing zeros and the "." if no digits follow the "." */
|
|
if flag_rtz != 0 && flag_dp != 0 {
|
|
for int32(**(**int8)(__ccgo_up(bufpt + uintptr(-libc.Int32FromInt32(1))))) == int32('0') {
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = 0
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(bufpt + uintptr(-libc.Int32FromInt32(1))))) == int32('.') {
|
|
if flag_altform2 != 0 {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8('0')
|
|
} else {
|
|
bufpt = bufpt - 1
|
|
v4 = bufpt
|
|
**(**int8)(__ccgo_up(v4)) = 0
|
|
}
|
|
}
|
|
}
|
|
/* Add the "eNNN" suffix */
|
|
if libc.Int32FromUint8(xtype) == int32(etEXP) {
|
|
exp = (**(**TFpDecode)(__ccgo_up(bp + 72))).FiDP - int32(1)
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = _aDigits[(*Tet_info)(unsafe.Pointer(infop)).Fcharset]
|
|
if exp < 0 {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8('-')
|
|
exp = -exp
|
|
} else {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8('+')
|
|
}
|
|
if exp >= int32(100) {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8(exp/libc.Int32FromInt32(100) + libc.Int32FromUint8('0')) /* 100's digit */
|
|
exp = exp % int32(100)
|
|
}
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8(exp/libc.Int32FromInt32(10) + libc.Int32FromUint8('0')) /* 10's digit */
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
**(**int8)(__ccgo_up(v4)) = int8(exp%libc.Int32FromInt32(10) + libc.Int32FromUint8('0')) /* 1's digit */
|
|
}
|
|
length = int32(int64(bufpt) - int64(zOut))
|
|
if length < width {
|
|
nPad = int64(width - length)
|
|
if flag_leftjustify != 0 {
|
|
libc.Xmemset(tls, bufpt, int32(' '), libc.Uint64FromInt64(nPad))
|
|
} else {
|
|
if !(flag_zeropad != 0) {
|
|
libc.Xmemmove(tls, zOut+uintptr(nPad), zOut, libc.Uint64FromInt32(length))
|
|
libc.Xmemset(tls, zOut, int32(' '), libc.Uint64FromInt64(nPad))
|
|
} else {
|
|
adj = libc.BoolInt32(int32(prefix) != 0)
|
|
libc.Xmemmove(tls, zOut+uintptr(nPad)+uintptr(adj), zOut+uintptr(adj), libc.Uint64FromInt32(length-adj))
|
|
libc.Xmemset(tls, zOut+uintptr(adj), int32('0'), libc.Uint64FromInt64(nPad))
|
|
}
|
|
}
|
|
length = width
|
|
}
|
|
if zExtra == uintptr(0) {
|
|
/* The result is being rendered directory into pAccum. This
|
|
** is the command and fast case */
|
|
**(**Tu32)(__ccgo_up(pAccum + 24)) += libc.Uint32FromInt32(length)
|
|
**(**int8)(__ccgo_up(zOut + uintptr(length))) = 0
|
|
goto _1
|
|
} else {
|
|
/* We were unable to render directly into pAccum because we
|
|
** couldn't allocate sufficient memory. We need to memcpy()
|
|
** the rendering (or some prefix thereof) into the output
|
|
** buffer. */
|
|
**(**int8)(__ccgo_up(bufpt)) = 0
|
|
bufpt = zExtra
|
|
goto _45
|
|
}
|
|
_34:
|
|
;
|
|
if !(bArgList != 0) {
|
|
**(**int32)(__ccgo_up(libc.VaUintptr(&ap))) = libc.Int32FromUint32((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar)
|
|
}
|
|
v2 = libc.Int32FromInt32(0)
|
|
width = v2
|
|
length = v2
|
|
goto _45
|
|
_35:
|
|
;
|
|
(**(**[70]int8)(__ccgo_up(bp)))[0] = int8('%')
|
|
bufpt = bp
|
|
length = int32(1)
|
|
goto _45
|
|
_36:
|
|
;
|
|
if bArgList != 0 {
|
|
bufpt = _getTextArg(tls, pArgList)
|
|
length = int32(1)
|
|
if bufpt != 0 {
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
v2 = int32(**(**int8)(__ccgo_up(v4)))
|
|
c = v2
|
|
(**(**[70]int8)(__ccgo_up(bp)))[0] = int8(v2)
|
|
if c&int32(0xc0) == int32(0xc0) {
|
|
for length < int32(4) && int32(**(**int8)(__ccgo_up(bufpt)))&int32(0xc0) == int32(0x80) {
|
|
v2 = length
|
|
length = length + 1
|
|
v4 = bufpt
|
|
bufpt = bufpt + 1
|
|
(**(**[70]int8)(__ccgo_up(bp)))[v2] = **(**int8)(__ccgo_up(v4))
|
|
}
|
|
}
|
|
} else {
|
|
(**(**[70]int8)(__ccgo_up(bp)))[0] = 0
|
|
}
|
|
} else {
|
|
ch = libc.VaUint32(&ap)
|
|
length = _sqlite3AppendOneUtf8Character(tls, bp, ch)
|
|
}
|
|
if precision > int32(1) {
|
|
nPrior = int64(1)
|
|
width = width - (precision - int32(1))
|
|
if width > int32(1) && !(flag_leftjustify != 0) {
|
|
Xsqlite3_str_appendchar(tls, pAccum, width-int32(1), int8(' '))
|
|
width = 0
|
|
}
|
|
Xsqlite3_str_append(tls, pAccum, bp, length)
|
|
precision = precision - 1
|
|
for precision > int32(1) {
|
|
if nPrior > int64(precision-int32(1)) {
|
|
nPrior = int64(precision - int32(1))
|
|
}
|
|
nCopyBytes = int64(length) * nPrior
|
|
if _sqlite3StrAccumEnlargeIfNeeded(tls, pAccum, nCopyBytes) != 0 {
|
|
break
|
|
}
|
|
Xsqlite3_str_append(tls, pAccum, (*Tsqlite3_str)(unsafe.Pointer(pAccum)).FzText+uintptr(libc.Int64FromUint32((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar)-nCopyBytes), int32(nCopyBytes))
|
|
precision = int32(int64(precision) - nPrior)
|
|
nPrior = nPrior * int64(2)
|
|
}
|
|
}
|
|
bufpt = bp
|
|
flag_altform2 = uint8(1)
|
|
goto adjust_width_for_utf8
|
|
_38:
|
|
;
|
|
_37:
|
|
;
|
|
if bArgList != 0 {
|
|
bufpt = _getTextArg(tls, pArgList)
|
|
xtype = uint8(etSTRING)
|
|
} else {
|
|
bufpt = libc.VaUintptr(&ap)
|
|
}
|
|
if bufpt == uintptr(0) {
|
|
bufpt = __ccgo_ts + 1704
|
|
} else {
|
|
if libc.Int32FromUint8(xtype) == int32(etDYNSTRING) {
|
|
if (*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar == uint32(0) && (*Tsqlite3_str)(unsafe.Pointer(pAccum)).FmxAlloc != 0 && width == 0 && precision < 0 && libc.Int32FromUint8((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FaccError) == 0 {
|
|
/* Special optimization for sqlite3_mprintf("%z..."):
|
|
** Extend an existing memory allocation rather than creating
|
|
** a new one. */
|
|
(*Tsqlite3_str)(unsafe.Pointer(pAccum)).FzText = bufpt
|
|
(*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnAlloc = libc.Uint32FromInt32(_sqlite3DbMallocSize(tls, (*Tsqlite3_str)(unsafe.Pointer(pAccum)).Fdb, bufpt))
|
|
(*Tsqlite3_str)(unsafe.Pointer(pAccum)).FnChar = libc.Uint32FromInt32(int32(0x7fffffff) & libc.Int32FromUint64(libc.Xstrlen(tls, bufpt)))
|
|
v4 = pAccum + 29
|
|
*(*Tu8)(unsafe.Pointer(v4)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v4))) | libc.Int32FromInt32(SQLITE_PRINTF_MALLOCED))
|
|
length = 0
|
|
goto _45
|
|
}
|
|
zExtra = bufpt
|
|
}
|
|
}
|
|
if precision >= 0 {
|
|
if flag_altform2 != 0 {
|
|
/* Set length to the number of bytes needed in order to display
|
|
** precision characters */
|
|
z = bufpt
|
|
for {
|
|
v2 = precision
|
|
precision = precision - 1
|
|
if !(v2 > 0 && **(**uint8)(__ccgo_up(z)) != 0) {
|
|
break
|
|
}
|
|
v4 = z
|
|
z = z + 1
|
|
if libc.Int32FromUint8(**(**uint8)(__ccgo_up(v4))) >= int32(0xc0) {
|
|
for libc.Int32FromUint8(**(**uint8)(__ccgo_up(z)))&int32(0xc0) == int32(0x80) {
|
|
z = z + 1
|
|
}
|
|
}
|
|
}
|
|
length = int32(int64(z) - int64(bufpt))
|
|
} else {
|
|
length = 0
|
|
for {
|
|
if !(length < precision && **(**int8)(__ccgo_up(bufpt + uintptr(length))) != 0) {
|
|
break
|
|
}
|
|
goto _86
|
|
_86:
|
|
;
|
|
length = length + 1
|
|
}
|
|
}
|
|
} else {
|
|
length = int32(0x7fffffff) & libc.Int32FromUint64(libc.Xstrlen(tls, bufpt))
|
|
}
|
|
goto adjust_width_for_utf8
|
|
adjust_width_for_utf8:
|
|
;
|
|
if flag_altform2 != 0 && width > 0 {
|
|
/* Adjust width to account for extra bytes in UTF-8 characters */
|
|
ii = length - int32(1)
|
|
for ii >= 0 {
|
|
v2 = ii
|
|
ii = ii - 1
|
|
if int32(**(**int8)(__ccgo_up(bufpt + uintptr(v2))))&int32(0xc0) == int32(0x80) {
|
|
width = width + 1
|
|
}
|
|
}
|
|
}
|
|
goto _45
|
|
_41:
|
|
; /* %q: Escape ' characters */
|
|
_40:
|
|
; /* %Q: Escape ' and enclose in '...' */
|
|
_39:
|
|
;
|
|
needQuote = 0
|
|
if bArgList != 0 {
|
|
escarg = _getTextArg(tls, pArgList)
|
|
} else {
|
|
escarg = libc.VaUintptr(&ap)
|
|
}
|
|
if escarg == uintptr(0) {
|
|
if libc.Int32FromUint8(xtype) == int32(etESCAPE_Q) {
|
|
v4 = __ccgo_ts + 1705
|
|
} else {
|
|
v4 = __ccgo_ts + 1710
|
|
}
|
|
escarg = v4
|
|
} else {
|
|
if libc.Int32FromUint8(xtype) == int32(etESCAPE_Q) {
|
|
needQuote = int32(1)
|
|
}
|
|
}
|
|
if libc.Int32FromUint8(xtype) == int32(etESCAPE_w) {
|
|
q = int8('"')
|
|
flag_alternateform = uint8(0)
|
|
} else {
|
|
q = int8('\'')
|
|
}
|
|
/* For %q, %Q, and %w, the precision is the number of bytes (or
|
|
** characters if the ! flags is present) to use from the input.
|
|
** Because of the extra quoting characters inserted, the number
|
|
** of output characters may be larger than the precision.
|
|
*/
|
|
k = int64(precision)
|
|
v90 = libc.Int64FromInt32(0)
|
|
n1 = v90
|
|
i = v90
|
|
for {
|
|
if v12 = k != 0; v12 {
|
|
v54 = **(**int8)(__ccgo_up(escarg + uintptr(i)))
|
|
ch1 = v54
|
|
}
|
|
if !(v12 && int32(v54) != 0) {
|
|
break
|
|
}
|
|
if int32(ch1) == int32(q) {
|
|
n1 = n1 + 1
|
|
}
|
|
if flag_altform2 != 0 && int32(ch1)&int32(0xc0) == int32(0xc0) {
|
|
for int32(**(**int8)(__ccgo_up(escarg + uintptr(i+int64(1)))))&int32(0xc0) == int32(0x80) {
|
|
i = i + 1
|
|
}
|
|
}
|
|
goto _89
|
|
_89:
|
|
;
|
|
i = i + 1
|
|
k = k - 1
|
|
}
|
|
if flag_alternateform != 0 {
|
|
/* For %#q, do unistr()-style backslash escapes for
|
|
** all control characters, and for backslash itself.
|
|
** For %#Q, do the same but only if there is at least
|
|
** one control character. */
|
|
nBack = 0
|
|
nCtrl = 0
|
|
k = 0
|
|
for {
|
|
if !(k < i) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(escarg + uintptr(k)))) == int32('\\') {
|
|
nBack = nBack + 1
|
|
} else {
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up(escarg + uintptr(k)))) <= int32(0x1f) {
|
|
nCtrl = nCtrl + 1
|
|
}
|
|
}
|
|
goto _93
|
|
_93:
|
|
;
|
|
k = k + 1
|
|
}
|
|
if nCtrl != 0 || libc.Int32FromUint8(xtype) == int32(etESCAPE_q) {
|
|
n1 = n1 + (nBack + int64(5)*nCtrl)
|
|
if libc.Int32FromUint8(xtype) == int32(etESCAPE_Q) {
|
|
n1 = n1 + int64(10)
|
|
needQuote = int32(2)
|
|
}
|
|
} else {
|
|
flag_alternateform = uint8(0)
|
|
}
|
|
}
|
|
n1 = n1 + (i + int64(3))
|
|
if n1 > int64(SQLITE_PRINT_BUF_SIZE) {
|
|
v4 = _printfTempBuf(tls, pAccum, n1)
|
|
zExtra = v4
|
|
bufpt = v4
|
|
if bufpt == uintptr(0) {
|
|
return
|
|
}
|
|
} else {
|
|
bufpt = bp
|
|
}
|
|
j1 = 0
|
|
if needQuote != 0 {
|
|
if needQuote == int32(2) {
|
|
libc.Xmemcpy(tls, bufpt+uintptr(j1), __ccgo_ts+1717, uint64(8))
|
|
j1 = j1 + int64(8)
|
|
} else {
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8('\'')
|
|
}
|
|
}
|
|
k = i
|
|
if flag_alternateform != 0 {
|
|
i = 0
|
|
for {
|
|
if !(i < k) {
|
|
break
|
|
}
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
v54 = **(**int8)(__ccgo_up(escarg + uintptr(i)))
|
|
ch1 = v54
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = v54
|
|
if int32(ch1) == int32(q) {
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = ch1
|
|
} else {
|
|
if int32(ch1) == int32('\\') {
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8('\\')
|
|
} else {
|
|
if libc.Int32FromUint8(libc.Uint8FromInt8(ch1)) <= int32(0x1f) {
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(j1-int64(1)))) = int8('\\')
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8('u')
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8('0')
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8('0')
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
if int32(ch1) >= int32(0x10) {
|
|
v2 = int32('1')
|
|
} else {
|
|
v2 = int32('0')
|
|
}
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8(v2)
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = **(**int8)(__ccgo_up(__ccgo_ts + 1726 + uintptr(int32(ch1)&int32(0xf))))
|
|
}
|
|
}
|
|
}
|
|
goto _96
|
|
_96:
|
|
;
|
|
i = i + 1
|
|
}
|
|
} else {
|
|
i = 0
|
|
for {
|
|
if !(i < k) {
|
|
break
|
|
}
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
v54 = **(**int8)(__ccgo_up(escarg + uintptr(i)))
|
|
ch1 = v54
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = v54
|
|
if int32(ch1) == int32(q) {
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = ch1
|
|
}
|
|
goto _107
|
|
_107:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if needQuote != 0 {
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8('\'')
|
|
if needQuote == int32(2) {
|
|
v90 = j1
|
|
j1 = j1 + 1
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(v90))) = int8(')')
|
|
}
|
|
}
|
|
**(**int8)(__ccgo_up(bufpt + uintptr(j1))) = 0
|
|
length = int32(j1)
|
|
goto adjust_width_for_utf8
|
|
_42:
|
|
;
|
|
if libc.Int32FromUint8((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FprintfFlags)&int32(SQLITE_PRINTF_INTERNAL) == 0 {
|
|
return
|
|
}
|
|
if flag_alternateform != 0 {
|
|
/* %#T means an Expr pointer that uses Expr.u.zToken */
|
|
pExpr = libc.VaUintptr(&ap)
|
|
if pExpr != 0 && !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_IntValue)) != libc.Uint32FromInt32(0)) {
|
|
Xsqlite3_str_appendall(tls, pAccum, *(*uintptr)(unsafe.Pointer(pExpr + 8)))
|
|
_sqlite3RecordErrorOffsetOfExpr(tls, (*Tsqlite3_str)(unsafe.Pointer(pAccum)).Fdb, pExpr)
|
|
}
|
|
} else {
|
|
/* %T means a Token pointer */
|
|
pToken = libc.VaUintptr(&ap)
|
|
if pToken != 0 && (*TToken)(unsafe.Pointer(pToken)).Fn != 0 {
|
|
Xsqlite3_str_append(tls, pAccum, (*TToken)(unsafe.Pointer(pToken)).Fz, libc.Int32FromUint32((*TToken)(unsafe.Pointer(pToken)).Fn))
|
|
_sqlite3RecordErrorByteOffset(tls, (*Tsqlite3_str)(unsafe.Pointer(pAccum)).Fdb, (*TToken)(unsafe.Pointer(pToken)).Fz)
|
|
}
|
|
}
|
|
v2 = libc.Int32FromInt32(0)
|
|
width = v2
|
|
length = v2
|
|
goto _45
|
|
_43:
|
|
;
|
|
if libc.Int32FromUint8((*Tsqlite3_str)(unsafe.Pointer(pAccum)).FprintfFlags)&int32(SQLITE_PRINTF_INTERNAL) == 0 {
|
|
return
|
|
}
|
|
pItem = libc.VaUintptr(&ap)
|
|
if (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias != 0 && !(flag_altform2 != 0) {
|
|
Xsqlite3_str_appendall(tls, pAccum, (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias)
|
|
} else {
|
|
if (*TSrcItem)(unsafe.Pointer(pItem)).FzName != 0 {
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x10000>>16) == 0 && int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x4>>2) == 0 && *(*uintptr)(unsafe.Pointer(pItem + 72)) != uintptr(0) {
|
|
Xsqlite3_str_appendall(tls, pAccum, *(*uintptr)(unsafe.Pointer(pItem + 72)))
|
|
Xsqlite3_str_append(tls, pAccum, __ccgo_ts+1743, int32(1))
|
|
}
|
|
Xsqlite3_str_appendall(tls, pAccum, (*TSrcItem)(unsafe.Pointer(pItem)).FzName)
|
|
} else {
|
|
if (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias != 0 {
|
|
Xsqlite3_str_appendall(tls, pAccum, (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias)
|
|
} else {
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x4>>2) != 0 { /* Because of tag-20240424-1 */
|
|
pSel = (*TSubquery)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pItem + 72)))).FpSelect
|
|
if (*TSelect)(unsafe.Pointer(pSel)).FselFlags&uint32(SF_NestedFrom) != 0 {
|
|
Xsqlite3_str_appendf(tls, pAccum, __ccgo_ts+1745, libc.VaList(bp+120, (*TSelect)(unsafe.Pointer(pSel)).FselId))
|
|
} else {
|
|
if (*TSelect)(unsafe.Pointer(pSel)).FselFlags&uint32(SF_MultiValue) != 0 {
|
|
Xsqlite3_str_appendf(tls, pAccum, __ccgo_ts+1755, libc.VaList(bp+120, *(*Tu32)(unsafe.Pointer(&(*TSrcItem)(unsafe.Pointer(pItem)).Fu1))))
|
|
} else {
|
|
Xsqlite3_str_appendf(tls, pAccum, __ccgo_ts+1776, libc.VaList(bp+120, (*TSelect)(unsafe.Pointer(pSel)).FselId))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
v2 = libc.Int32FromInt32(0)
|
|
width = v2
|
|
length = v2
|
|
goto _45
|
|
_44:
|
|
;
|
|
return
|
|
_45:
|
|
; /* End switch over the format type */
|
|
/*
|
|
** The text of the conversion is pointed to by "bufpt" and is
|
|
** "length" characters long. The field width is "width". Do
|
|
** the output. Both length and width are in bytes, not characters,
|
|
** at this point. If the "!" flag was present on string conversions
|
|
** indicating that width and precision should be expressed in characters,
|
|
** then the values have been translated prior to reaching this point.
|
|
*/
|
|
width = width - length
|
|
if width > 0 {
|
|
if !(flag_leftjustify != 0) {
|
|
Xsqlite3_str_appendchar(tls, pAccum, width, int8(' '))
|
|
}
|
|
Xsqlite3_str_append(tls, pAccum, bufpt, length)
|
|
if flag_leftjustify != 0 {
|
|
Xsqlite3_str_appendchar(tls, pAccum, width, int8(' '))
|
|
}
|
|
} else {
|
|
Xsqlite3_str_append(tls, pAccum, bufpt, length)
|
|
}
|
|
if zExtra != 0 {
|
|
_sqlite3DbFree(tls, (*Tsqlite3_str)(unsafe.Pointer(pAccum)).Fdb, zExtra)
|
|
zExtra = uintptr(0)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
fmt = fmt + 1
|
|
} /* End for loop over the format string */
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Checkpoint database zDb.
|
|
// */
|
|
func Xsqlite3_wal_checkpoint_v2(tls *libc.TLS, db uintptr, zDb uintptr, eMode int32, pnLog uintptr, pnCkpt uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var iDb, rc int32
|
|
_, _ = iDb, rc /* Schema to checkpoint */
|
|
/* Initialize the output variables to -1 in case an error occurs. */
|
|
if pnLog != 0 {
|
|
**(**int32)(__ccgo_up(pnLog)) = -int32(1)
|
|
}
|
|
if pnCkpt != 0 {
|
|
**(**int32)(__ccgo_up(pnCkpt)) = -int32(1)
|
|
}
|
|
if eMode < -int32(1) || eMode > int32(SQLITE_CHECKPOINT_TRUNCATE) {
|
|
/* EVIDENCE-OF: R-03996-12088 The M parameter must be a valid checkpoint
|
|
** mode: */
|
|
return _sqlite3MisuseError(tls, int32(189958))
|
|
}
|
|
Xsqlite3_mutex_enter(tls, (*Tsqlite3)(unsafe.Pointer(db)).Fmutex)
|
|
if zDb != 0 && **(**int8)(__ccgo_up(zDb)) != 0 {
|
|
iDb = _sqlite3FindDbName(tls, db, zDb)
|
|
} else {
|
|
iDb = libc.Int32FromInt32(SQLITE_MAX_ATTACHED) + libc.Int32FromInt32(2) /* This means process all schemas */
|
|
}
|
|
if iDb < 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
_sqlite3ErrorWithMsg(tls, db, int32(SQLITE_ERROR), __ccgo_ts+26029, libc.VaList(bp+8, zDb))
|
|
} else {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FbusyHandler.FnBusy = 0
|
|
rc = _sqlite3Checkpoint(tls, db, iDb, eMode, pnLog, pnCkpt)
|
|
_sqlite3Error(tls, db, rc)
|
|
}
|
|
rc = _sqlite3ApiExit(tls, db, rc)
|
|
/* If there are no active statements, clear the interrupt flag at this
|
|
** point. */
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeActive == 0 {
|
|
libc.AtomicStoreNInt32(db+432, libc.Int32FromInt32(0), libc.Int32FromInt32(__ATOMIC_RELAXED))
|
|
}
|
|
Xsqlite3_mutex_leave(tls, (*Tsqlite3)(unsafe.Pointer(db)).Fmutex)
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Append a single path element to the DbPath under construction
|
|
// */
|
|
func _appendOnePathElement(tls *libc.TLS, pPath uintptr, zName uintptr, nName int32) {
|
|
bp := tls.Alloc(4256)
|
|
defer tls.Free(4256)
|
|
var got Tssize_t
|
|
var zIn, v2 uintptr
|
|
var v1 int32
|
|
var _ /* buf at bp+0 */ Tstat
|
|
var _ /* zLnk at bp+144 */ [4098]int8
|
|
_, _, _, _ = got, zIn, v1, v2
|
|
if int32(**(**int8)(__ccgo_up(zName))) == int32('.') {
|
|
if nName == int32(1) {
|
|
return
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zName + 1))) == int32('.') && nName == int32(2) {
|
|
if (*TDbPath)(unsafe.Pointer(pPath)).FnUsed > int32(1) {
|
|
for {
|
|
v2 = pPath + 20
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) - 1
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
if !(int32(**(**int8)(__ccgo_up((*TDbPath)(unsafe.Pointer(pPath)).FzOut + uintptr(v1)))) != int32('/')) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
}
|
|
if (*TDbPath)(unsafe.Pointer(pPath)).FnUsed+nName+int32(2) >= (*TDbPath)(unsafe.Pointer(pPath)).FnOut {
|
|
(*TDbPath)(unsafe.Pointer(pPath)).Frc = int32(SQLITE_ERROR)
|
|
return
|
|
}
|
|
v2 = pPath + 20
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
**(**int8)(__ccgo_up((*TDbPath)(unsafe.Pointer(pPath)).FzOut + uintptr(v1))) = int8('/')
|
|
libc.Xmemcpy(tls, (*TDbPath)(unsafe.Pointer(pPath)).FzOut+uintptr((*TDbPath)(unsafe.Pointer(pPath)).FnUsed), zName, libc.Uint64FromInt32(nName))
|
|
**(**int32)(__ccgo_up(pPath + 20)) += nName
|
|
if (*TDbPath)(unsafe.Pointer(pPath)).Frc == SQLITE_OK {
|
|
**(**int8)(__ccgo_up((*TDbPath)(unsafe.Pointer(pPath)).FzOut + uintptr((*TDbPath)(unsafe.Pointer(pPath)).FnUsed))) = 0
|
|
zIn = (*TDbPath)(unsafe.Pointer(pPath)).FzOut
|
|
if (*(*func(*libc.TLS, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{_aSyscall[int32(27)].FpCurrent})))(tls, zIn, bp) != 0 {
|
|
if **(**int32)(__ccgo_up(libc.X__errno_location(tls))) != int32(ENOENT) {
|
|
(*TDbPath)(unsafe.Pointer(pPath)).Frc = _unixLogErrorAtLine(tls, _sqlite3CantopenError(tls, int32(47152)), __ccgo_ts+3740, zIn, int32(47152))
|
|
}
|
|
} else {
|
|
if (**(**Tstat)(__ccgo_up(bp))).Fst_mode&uint32(S_IFMT) == uint32(S_IFLNK) {
|
|
v2 = pPath + 4
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
if v1 > int32(SQLITE_MAX_SYMLINK) {
|
|
(*TDbPath)(unsafe.Pointer(pPath)).Frc = _sqlite3CantopenError(tls, int32(47158))
|
|
return
|
|
}
|
|
got = (*(*func(*libc.TLS, uintptr, uintptr, Tsize_t) Tssize_t)(unsafe.Pointer(&struct{ uintptr }{_aSyscall[int32(26)].FpCurrent})))(tls, zIn, bp+144, libc.Uint64FromInt64(4098)-libc.Uint64FromInt32(2))
|
|
if got <= 0 || got >= libc.Int64FromInt64(4098)-libc.Int64FromInt32(2) {
|
|
(*TDbPath)(unsafe.Pointer(pPath)).Frc = _unixLogErrorAtLine(tls, _sqlite3CantopenError(tls, int32(47163)), __ccgo_ts+3731, zIn, int32(47163))
|
|
return
|
|
}
|
|
(**(**[4098]int8)(__ccgo_up(bp + 144)))[got] = 0
|
|
if int32((**(**[4098]int8)(__ccgo_up(bp + 144)))[0]) == int32('/') {
|
|
(*TDbPath)(unsafe.Pointer(pPath)).FnUsed = 0
|
|
} else {
|
|
**(**int32)(__ccgo_up(pPath + 20)) -= nName + int32(1)
|
|
}
|
|
_appendAllPathElements(tls, pPath, bp+144)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate code to construct the Index object for an automatic index
|
|
// ** and to set up the WhereLevel object pLevel so that the code generator
|
|
// ** makes use of the automatic index.
|
|
// */
|
|
func _constructAutomaticIndex(tls *libc.TLS, pParse uintptr, pWC uintptr, notReady TBitmask, pLevel uintptr) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var addrCounter, addrInit, addrTop, i, iCol, iCol1, iContinue, mxBitCol, n, nKeyCol, regBase, regRecord, regYield, v3 int32
|
|
var cMask, cMask1, extraCols, idxCols TBitmask
|
|
var pColl, pExpr, pIdx, pLoop, pPartial, pSrc, pSubq, pTabList, pTable, pTerm, pWCEnd, pX, v, v10 uintptr
|
|
var sentWarning, useBloomFilter Tu8
|
|
var v2 uint64
|
|
var v4 Tu16
|
|
var _ /* zNotUsed at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = addrCounter, addrInit, addrTop, cMask, cMask1, extraCols, i, iCol, iCol1, iContinue, idxCols, mxBitCol, n, nKeyCol, pColl, pExpr, pIdx, pLoop, pPartial, pSrc, pSubq, pTabList, pTable, pTerm, pWCEnd, pX, regBase, regRecord, regYield, sentWarning, useBloomFilter, v, v10, v2, v3, v4 /* Bitmap of additional columns */
|
|
sentWarning = uint8(0) /* True if a warning has been issued */
|
|
useBloomFilter = uint8(0) /* True to also add a Bloom filter */
|
|
pPartial = uintptr(0) /* Partial Index Expression */
|
|
iContinue = 0 /* The FROM clause term to get the next index */
|
|
addrCounter = 0 /* Array of registers where record is assembled */
|
|
/* Generate code to skip over the creation and initialization of the
|
|
** transient index on 2nd and subsequent iterations of the loop. */
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe
|
|
addrInit = _sqlite3VdbeAddOp0(tls, v, int32(OP_Once))
|
|
/* Count the number of columns that will be added to the index
|
|
** and used to match WHERE clause constraints */
|
|
nKeyCol = 0
|
|
pTabList = (*TWhereInfo)(unsafe.Pointer((*TWhereClause)(unsafe.Pointer(pWC)).FpWInfo)).FpTabList
|
|
pSrc = pTabList + 8 + uintptr((*TWhereLevel)(unsafe.Pointer(pLevel)).FiFrom)*80
|
|
pTable = (*TSrcItem)(unsafe.Pointer(pSrc)).FpSTab
|
|
pWCEnd = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr((*TWhereClause)(unsafe.Pointer(pWC)).FnTerm)*56
|
|
pLoop = (*TWhereLevel)(unsafe.Pointer(pLevel)).FpWLoop
|
|
idxCols = uint64(0)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa
|
|
for {
|
|
if !(pTerm < pWCEnd) {
|
|
break
|
|
}
|
|
pExpr = (*TWhereTerm)(unsafe.Pointer(pTerm)).FpExpr
|
|
/* Make the automatic index a partial index if there are terms in the
|
|
** WHERE clause (or the ON clause of a LEFT join) that constrain which
|
|
** rows of the target table (pSrc) that can be used. */
|
|
if libc.Int32FromUint16((*TWhereTerm)(unsafe.Pointer(pTerm)).FwtFlags)&int32(TERM_VIRTUAL) == 0 && _sqlite3ExprIsSingleTableConstraint(tls, pExpr, pTabList, libc.Int32FromUint8((*TWhereLevel)(unsafe.Pointer(pLevel)).FiFrom), 0) != 0 {
|
|
pPartial = _sqlite3ExprAnd(tls, pParse, pPartial, _sqlite3ExprDup(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pExpr, 0))
|
|
}
|
|
if _termCanDriveIndex(tls, pTerm, pSrc, notReady) != 0 {
|
|
iCol = (*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FleftColumn
|
|
if iCol >= libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) {
|
|
v2 = libc.Uint64FromInt32(1) << (libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) - libc.Int32FromInt32(1))
|
|
} else {
|
|
v2 = libc.Uint64FromInt32(1) << iCol
|
|
}
|
|
cMask = v2
|
|
if !(sentWarning != 0) {
|
|
Xsqlite3_log(tls, libc.Int32FromInt32(SQLITE_WARNING)|libc.Int32FromInt32(1)<<libc.Int32FromInt32(8), __ccgo_ts+23988, libc.VaList(bp+16, (*TTable)(unsafe.Pointer(pTable)).FzName, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTable)).FaCol + uintptr(iCol)*16))).FzCnName))
|
|
sentWarning = uint8(1)
|
|
}
|
|
if idxCols&cMask == uint64(0) {
|
|
if _whereLoopResize(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pLoop, nKeyCol+int32(1)) != 0 {
|
|
goto end_auto_index_create
|
|
}
|
|
v3 = nKeyCol
|
|
nKeyCol = nKeyCol + 1
|
|
**(**uintptr)(__ccgo_up((*TWhereLoop)(unsafe.Pointer(pLoop)).FaLTerm + uintptr(v3)*8)) = pTerm
|
|
idxCols = idxCols | cMask
|
|
}
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
pTerm += 56
|
|
}
|
|
v4 = libc.Uint16FromInt32(nKeyCol)
|
|
(*TWhereLoop)(unsafe.Pointer(pLoop)).FnLTerm = v4
|
|
(*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FnEq = v4
|
|
(*TWhereLoop)(unsafe.Pointer(pLoop)).FwsFlags = libc.Uint32FromInt32(libc.Int32FromInt32(WHERE_COLUMN_EQ) | libc.Int32FromInt32(WHERE_IDX_ONLY) | libc.Int32FromInt32(WHERE_INDEXED) | libc.Int32FromInt32(WHERE_AUTO_INDEX))
|
|
/* Count the number of additional columns needed to create a
|
|
** covering index. A "covering index" is an index that contains all
|
|
** columns that are needed by the query. With a covering index, the
|
|
** original table never needs to be accessed. Automatic indices must
|
|
** be a covering index because the index will not be updated if the
|
|
** original table changes and the index and table cannot both be used
|
|
** if they go out of sync.
|
|
*/
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTable)).FeTabType) == int32(TABTYP_VIEW) {
|
|
extraCols = libc.Uint64FromInt32(-libc.Int32FromInt32(1)) & ^idxCols
|
|
} else {
|
|
extraCols = (*TSrcItem)(unsafe.Pointer(pSrc)).FcolUsed & (^idxCols | libc.Uint64FromInt32(1)<<(libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1)))
|
|
}
|
|
if !((*TTable)(unsafe.Pointer(pTable)).FtabFlags&libc.Uint32FromInt32(TF_WithoutRowid) == libc.Uint32FromInt32(0)) {
|
|
/* For WITHOUT ROWID tables, ensure that all PRIMARY KEY columns are
|
|
** either in the idxCols mask or in the extraCols mask */
|
|
i = 0
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTable)).FnCol)) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTable)).FaCol + uintptr(i)*16))).FcolFlags)&int32(COLFLAG_PRIMKEY) == 0 {
|
|
goto _5
|
|
}
|
|
if i >= libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1) {
|
|
extraCols = extraCols | libc.Uint64FromInt32(1)<<(libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1))
|
|
break
|
|
}
|
|
if idxCols&(libc.Uint64FromInt32(1)<<i) != 0 {
|
|
goto _5
|
|
}
|
|
extraCols = extraCols | libc.Uint64FromInt32(1)<<i
|
|
goto _5
|
|
_5:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1) < int32((*TTable)(unsafe.Pointer(pTable)).FnCol) {
|
|
v3 = libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) - libc.Int32FromInt32(1)
|
|
} else {
|
|
v3 = int32((*TTable)(unsafe.Pointer(pTable)).FnCol)
|
|
}
|
|
mxBitCol = v3
|
|
i = 0
|
|
for {
|
|
if !(i < mxBitCol) {
|
|
break
|
|
}
|
|
if extraCols&(libc.Uint64FromInt32(1)<<i) != 0 {
|
|
nKeyCol = nKeyCol + 1
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if (*TSrcItem)(unsafe.Pointer(pSrc)).FcolUsed&(libc.Uint64FromInt32(1)<<(libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1))) != 0 {
|
|
nKeyCol = nKeyCol + (int32((*TTable)(unsafe.Pointer(pTable)).FnCol) - libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) + int32(1))
|
|
}
|
|
/* Construct the Index object to describe this index */
|
|
/* ^-- This guarantees that the number of index columns will fit in the u16 */
|
|
pIdx = _sqlite3AllocateIndexObject(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, nKeyCol+libc.BoolInt32((*TTable)(unsafe.Pointer(pTable)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0)), 0, bp)
|
|
if pIdx == uintptr(0) {
|
|
goto end_auto_index_create
|
|
}
|
|
(*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FpIndex = pIdx
|
|
(*TIndex)(unsafe.Pointer(pIdx)).FzName = __ccgo_ts + 24014
|
|
(*TIndex)(unsafe.Pointer(pIdx)).FpTable = pTable
|
|
n = 0
|
|
idxCols = uint64(0)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa
|
|
for {
|
|
if !(pTerm < pWCEnd) {
|
|
break
|
|
}
|
|
if _termCanDriveIndex(tls, pTerm, pSrc, notReady) != 0 {
|
|
iCol1 = (*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FleftColumn
|
|
if iCol1 >= libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) {
|
|
v2 = libc.Uint64FromInt32(1) << (libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) - libc.Int32FromInt32(1))
|
|
} else {
|
|
v2 = libc.Uint64FromInt32(1) << iCol1
|
|
}
|
|
cMask1 = v2
|
|
if idxCols&cMask1 == uint64(0) {
|
|
pX = (*TWhereTerm)(unsafe.Pointer(pTerm)).FpExpr
|
|
idxCols = idxCols | cMask1
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(n)*2)) = int16((*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FleftColumn)
|
|
pColl = _sqlite3ExprCompareCollSeq(tls, pParse, pX)
|
|
/* TH3 collate01.800 */
|
|
if pColl != 0 {
|
|
v10 = (*TCollSeq)(unsafe.Pointer(pColl)).FzName
|
|
} else {
|
|
v10 = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
}
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(n)*8)) = v10
|
|
n = n + 1
|
|
if (*TExpr)(unsafe.Pointer(pX)).FpLeft != uintptr(0) && int32(_sqlite3ExprAffinity(tls, (*TExpr)(unsafe.Pointer(pX)).FpLeft)) != int32(SQLITE_AFF_TEXT) {
|
|
/* TUNING: only use a Bloom filter on an automatic index
|
|
** if one or more key columns has the ability to hold numeric
|
|
** values, since strings all have the same hash in the Bloom
|
|
** filter implementation and hence a Bloom filter on a text column
|
|
** is not usually helpful. */
|
|
useBloomFilter = uint8(1)
|
|
}
|
|
}
|
|
}
|
|
goto _8
|
|
_8:
|
|
;
|
|
pTerm += 56
|
|
}
|
|
/* Add additional columns needed to make the automatic index into
|
|
** a covering index */
|
|
i = 0
|
|
for {
|
|
if !(i < mxBitCol) {
|
|
break
|
|
}
|
|
if extraCols&(libc.Uint64FromInt32(1)<<i) != 0 {
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(n)*2)) = int16(i)
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(n)*8)) = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
n = n + 1
|
|
}
|
|
goto _11
|
|
_11:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if (*TSrcItem)(unsafe.Pointer(pSrc)).FcolUsed&(libc.Uint64FromInt32(1)<<(libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1))) != 0 {
|
|
i = libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8)) - libc.Int32FromInt32(1)
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTable)).FnCol)) {
|
|
break
|
|
}
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(n)*2)) = int16(i)
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(n)*8)) = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
n = n + 1
|
|
goto _12
|
|
_12:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if (*TTable)(unsafe.Pointer(pTable)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(n)*2)) = int16(-libc.Int32FromInt32(1))
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(n)*8)) = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
}
|
|
/* Create the automatic index */
|
|
v10 = pParse + 56
|
|
v3 = *(*int32)(unsafe.Pointer(v10))
|
|
*(*int32)(unsafe.Pointer(v10)) = *(*int32)(unsafe.Pointer(v10)) + 1
|
|
(*TWhereLevel)(unsafe.Pointer(pLevel)).FiIdxCur = v3
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_OpenAutoindex), (*TWhereLevel)(unsafe.Pointer(pLevel)).FiIdxCur, nKeyCol+int32(1))
|
|
_sqlite3VdbeSetP4KeyInfo(tls, pParse, pIdx)
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FdbOptFlags&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_BloomFilter)) == uint32(0) && useBloomFilter != 0 {
|
|
_sqlite3WhereExplainBloomFilter(tls, pParse, (*TWhereClause)(unsafe.Pointer(pWC)).FpWInfo, pLevel)
|
|
v10 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v10)) = *(*int32)(unsafe.Pointer(v10)) + 1
|
|
v3 = *(*int32)(unsafe.Pointer(v10))
|
|
(*TWhereLevel)(unsafe.Pointer(pLevel)).FregFilter = v3
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Blob), int32(10000), (*TWhereLevel)(unsafe.Pointer(pLevel)).FregFilter)
|
|
}
|
|
/* Fill the automatic index with content */
|
|
if int32(*(*uint32)(unsafe.Pointer(pSrc + 24 + 4))&0x40>>6) != 0 {
|
|
pSubq = *(*uintptr)(unsafe.Pointer(pSrc + 72))
|
|
regYield = (*TSubquery)(unsafe.Pointer(pSubq)).FregReturn
|
|
addrCounter = _sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), 0, 0)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_InitCoroutine), regYield, 0, (*TSubquery)(unsafe.Pointer(pSubq)).FaddrFillSub)
|
|
addrTop = _sqlite3VdbeAddOp1(tls, v, int32(OP_Yield), regYield)
|
|
} else {
|
|
addrTop = _sqlite3VdbeAddOp2(tls, v, int32(OP_Rewind), (*TWhereLevel)(unsafe.Pointer(pLevel)).FiTabCur, (*TWhereLevel)(unsafe.Pointer(pLevel)).FaddrHalt)
|
|
}
|
|
if pPartial != 0 {
|
|
iContinue = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
_sqlite3ExprIfFalse(tls, pParse, pPartial, iContinue, int32(SQLITE_JUMPIFNULL))
|
|
**(**Tu32)(__ccgo_up(pLoop + 48)) |= uint32(WHERE_PARTIALIDX)
|
|
}
|
|
regRecord = _sqlite3GetTempReg(tls, pParse)
|
|
regBase = _sqlite3GenerateIndexKey(tls, pParse, pIdx, (*TWhereLevel)(unsafe.Pointer(pLevel)).FiTabCur, regRecord, 0, uintptr(0), uintptr(0), 0)
|
|
if (*TWhereLevel)(unsafe.Pointer(pLevel)).FregFilter != 0 {
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_FilterAdd), (*TWhereLevel)(unsafe.Pointer(pLevel)).FregFilter, 0, regBase, libc.Int32FromUint16((*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FnEq))
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IdxInsert), (*TWhereLevel)(unsafe.Pointer(pLevel)).FiIdxCur, regRecord)
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(OPFLAG_USESEEKRESULT))
|
|
if pPartial != 0 {
|
|
_sqlite3VdbeResolveLabel(tls, v, iContinue)
|
|
}
|
|
if int32(*(*uint32)(unsafe.Pointer(pSrc + 24 + 4))&0x40>>6) != 0 {
|
|
_sqlite3VdbeChangeP2(tls, v, addrCounter, regBase+n)
|
|
_translateColumnToCopy(tls, pParse, addrTop, (*TWhereLevel)(unsafe.Pointer(pLevel)).FiTabCur, (*TSubquery)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pSrc + 72)))).FregResult, (*TWhereLevel)(unsafe.Pointer(pLevel)).FiIdxCur)
|
|
_sqlite3VdbeGoto(tls, v, addrTop)
|
|
libc.SetBitFieldPtr32Uint32(pSrc+24+4, libc.Uint32FromInt32(0), 6, 0x40)
|
|
_sqlite3VdbeJumpHere(tls, v, addrTop)
|
|
} else {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Next), (*TWhereLevel)(unsafe.Pointer(pLevel)).FiTabCur, addrTop+int32(1))
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(SQLITE_STMTSTATUS_AUTOINDEX))
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pSrc)).Ffg.Fjointype)&int32(JT_LEFT) != 0 {
|
|
_sqlite3VdbeJumpHere(tls, v, addrTop)
|
|
}
|
|
}
|
|
_sqlite3ReleaseTempReg(tls, pParse, regRecord)
|
|
/* Jump here when skipping the initialization */
|
|
_sqlite3VdbeJumpHere(tls, v, addrInit)
|
|
goto end_auto_index_create
|
|
end_auto_index_create:
|
|
;
|
|
_sqlite3ExprDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pPartial)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Fill the InitData structure with an error message that indicates
|
|
// ** that the database is corrupt.
|
|
// */
|
|
func _corruptSchema(tls *libc.TLS, pData uintptr, azObj uintptr, zExtra uintptr) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var db, z, zObj, v1 uintptr
|
|
_, _, _, _ = db, z, zObj, v1
|
|
db = (*TInitData)(unsafe.Pointer(pData)).Fdb
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
(*TInitData)(unsafe.Pointer(pData)).Frc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
if **(**uintptr)(__ccgo_up((*TInitData)(unsafe.Pointer(pData)).FpzErrMsg)) != uintptr(0) {
|
|
/* A error message has already been generated. Do not overwrite it */
|
|
} else {
|
|
if (*TInitData)(unsafe.Pointer(pData)).FmInitFlags&libc.Uint32FromInt32(libc.Int32FromInt32(INITFLAG_AlterMask)) != 0 {
|
|
**(**uintptr)(__ccgo_up((*TInitData)(unsafe.Pointer(pData)).FpzErrMsg)) = _sqlite3MPrintf(tls, db, __ccgo_ts+20027, libc.VaList(bp+8, **(**uintptr)(__ccgo_up(azObj)), **(**uintptr)(__ccgo_up(azObj + 1*8)), _azAlterType[(*TInitData)(unsafe.Pointer(pData)).FmInitFlags&uint32(INITFLAG_AlterMask)-uint32(1)], zExtra))
|
|
(*TInitData)(unsafe.Pointer(pData)).Frc = int32(SQLITE_ERROR)
|
|
} else {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_WriteSchema) != 0 {
|
|
(*TInitData)(unsafe.Pointer(pData)).Frc = _sqlite3CorruptError(tls, int32(147944))
|
|
} else {
|
|
if **(**uintptr)(__ccgo_up(azObj + 1*8)) != 0 {
|
|
v1 = **(**uintptr)(__ccgo_up(azObj + 1*8))
|
|
} else {
|
|
v1 = __ccgo_ts + 5263
|
|
}
|
|
zObj = v1
|
|
z = _sqlite3MPrintf(tls, db, __ccgo_ts+20055, libc.VaList(bp+8, zObj))
|
|
if zExtra != 0 && **(**int8)(__ccgo_up(zExtra)) != 0 {
|
|
z = _sqlite3MPrintf(tls, db, __ccgo_ts+20086, libc.VaList(bp+8, z, zExtra))
|
|
}
|
|
**(**uintptr)(__ccgo_up((*TInitData)(unsafe.Pointer(pData)).FpzErrMsg)) = z
|
|
(*TInitData)(unsafe.Pointer(pData)).Frc = _sqlite3CorruptError(tls, int32(147951))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate a CREATE TABLE statement appropriate for the given
|
|
// ** table. Memory to hold the text of the statement is obtained
|
|
// ** from sqliteMalloc() and must be freed by the calling function.
|
|
// */
|
|
func _createTableStmt(tls *libc.TLS, db uintptr, p uintptr) (r uintptr) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var i, len1, v2 int32
|
|
var n Ti64
|
|
var pCol, zEnd, zSep, zSep2, zStmt, zType uintptr
|
|
var _ /* k at bp+0 */ int32
|
|
_, _, _, _, _, _, _, _, _, _ = i, len1, n, pCol, zEnd, zSep, zSep2, zStmt, zType, v2
|
|
n = 0
|
|
pCol = (*TTable)(unsafe.Pointer(p)).FaCol
|
|
i = libc.Int32FromInt32(0)
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(p)).FnCol)) {
|
|
break
|
|
}
|
|
n = n + (_identLength(tls, (*TColumn)(unsafe.Pointer(pCol)).FzCnName) + int64(5))
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
pCol += 16
|
|
}
|
|
n = n + _identLength(tls, (*TTable)(unsafe.Pointer(p)).FzName)
|
|
if n < int64(50) {
|
|
zSep = __ccgo_ts + 1704
|
|
zSep2 = __ccgo_ts + 14350
|
|
zEnd = __ccgo_ts + 5261
|
|
} else {
|
|
zSep = __ccgo_ts + 14352
|
|
zSep2 = __ccgo_ts + 14356
|
|
zEnd = __ccgo_ts + 14361
|
|
}
|
|
n = n + int64(int32(35)+int32(6)*int32((*TTable)(unsafe.Pointer(p)).FnCol))
|
|
zStmt = _sqlite3DbMallocRaw(tls, uintptr(0), libc.Uint64FromInt64(n))
|
|
if zStmt == uintptr(0) {
|
|
_sqlite3OomFault(tls, db)
|
|
return uintptr(0)
|
|
}
|
|
libc.Xmemcpy(tls, zStmt, __ccgo_ts+14364, uint64(13))
|
|
**(**int32)(__ccgo_up(bp)) = int32(13)
|
|
_identPut(tls, zStmt, bp, (*TTable)(unsafe.Pointer(p)).FzName)
|
|
v2 = **(**int32)(__ccgo_up(bp))
|
|
**(**int32)(__ccgo_up(bp)) = **(**int32)(__ccgo_up(bp)) + 1
|
|
**(**int8)(__ccgo_up(zStmt + uintptr(v2))) = int8('(')
|
|
pCol = (*TTable)(unsafe.Pointer(p)).FaCol
|
|
i = libc.Int32FromInt32(0)
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(p)).FnCol)) {
|
|
break
|
|
}
|
|
len1 = _sqlite3Strlen30(tls, zSep)
|
|
libc.Xmemcpy(tls, zStmt+uintptr(**(**int32)(__ccgo_up(bp))), zSep, libc.Uint64FromInt32(len1))
|
|
**(**int32)(__ccgo_up(bp)) = **(**int32)(__ccgo_up(bp)) + len1
|
|
zSep = zSep2
|
|
_identPut(tls, zStmt, bp, (*TColumn)(unsafe.Pointer(pCol)).FzCnName)
|
|
zType = _azType1[int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity)-int32(SQLITE_AFF_BLOB)]
|
|
len1 = _sqlite3Strlen30(tls, zType)
|
|
libc.Xmemcpy(tls, zStmt+uintptr(**(**int32)(__ccgo_up(bp))), zType, libc.Uint64FromInt32(len1))
|
|
**(**int32)(__ccgo_up(bp)) = **(**int32)(__ccgo_up(bp)) + len1
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
pCol += 16
|
|
}
|
|
len1 = _sqlite3Strlen30(tls, zEnd)
|
|
libc.Xmemcpy(tls, zStmt+uintptr(**(**int32)(__ccgo_up(bp))), zEnd, libc.Uint64FromInt32(len1+int32(1)))
|
|
return zStmt
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** The first argument points to a nul-terminated string containing a
|
|
// ** list of space separated integers. Read the first nOut of these into
|
|
// ** the array aOut[].
|
|
// */
|
|
func _decodeIntArray(tls *libc.TLS, zIntArray uintptr, nOut int32, aOut uintptr, aLog uintptr, pIndex uintptr) {
|
|
var c, i, sz, v2 int32
|
|
var v TtRowcnt
|
|
var z uintptr
|
|
_, _, _, _, _, _ = c, i, sz, v, z, v2
|
|
z = zIntArray
|
|
if z == uintptr(0) {
|
|
z = __ccgo_ts + 1704
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(z)) != 0 && i < nOut) {
|
|
break
|
|
}
|
|
v = uint64(0)
|
|
for {
|
|
v2 = int32(**(**int8)(__ccgo_up(z)))
|
|
c = v2
|
|
if !(v2 >= int32('0') && c <= int32('9')) {
|
|
break
|
|
}
|
|
v = v*uint64(10) + libc.Uint64FromInt32(c) - uint64('0')
|
|
z = z + 1
|
|
}
|
|
if aOut != 0 {
|
|
**(**TtRowcnt)(__ccgo_up(aOut + uintptr(i)*8)) = v
|
|
}
|
|
if aLog != 0 {
|
|
**(**TLogEst)(__ccgo_up(aLog + uintptr(i)*2)) = _sqlite3LogEst(tls, v)
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z))) == int32(' ') {
|
|
z = z + 1
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if pIndex != 0 {
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(0), 2, 0x4)
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(0), 6, 0x40)
|
|
for **(**int8)(__ccgo_up(z)) != 0 {
|
|
if Xsqlite3_strglob(tls, __ccgo_ts+13056, z) == 0 {
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(1), 2, 0x4)
|
|
} else {
|
|
if Xsqlite3_strglob(tls, __ccgo_ts+13067, z) == 0 {
|
|
sz = _sqlite3Atoi(tls, z+uintptr(3))
|
|
if sz < int32(2) {
|
|
sz = int32(2)
|
|
}
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FszIdxRow = _sqlite3LogEst(tls, libc.Uint64FromInt32(sz))
|
|
} else {
|
|
if Xsqlite3_strglob(tls, __ccgo_ts+13077, z) == 0 {
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(1), 6, 0x40)
|
|
}
|
|
}
|
|
}
|
|
for int32(**(**int8)(__ccgo_up(z))) != 0 && int32(**(**int8)(__ccgo_up(z))) != int32(' ') {
|
|
z = z + 1
|
|
}
|
|
for int32(**(**int8)(__ccgo_up(z))) == int32(' ') {
|
|
z = z + 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** An SQL user-function registered to do the work of an DETACH statement. The
|
|
// ** three arguments to the function come directly from a detach statement:
|
|
// **
|
|
// ** DETACH DATABASE x
|
|
// **
|
|
// ** SELECT sqlite_detach(x)
|
|
// */
|
|
func _detachFunc(tls *libc.TLS, context uintptr, NotUsed int32, argv uintptr) {
|
|
bp := tls.Alloc(144)
|
|
defer tls.Free(144)
|
|
var db, pDb, pEntry, pTrig, zName uintptr
|
|
var i int32
|
|
var _ /* zErr at bp+0 */ [128]int8
|
|
_, _, _, _, _, _ = db, i, pDb, pEntry, pTrig, zName
|
|
zName = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
db = Xsqlite3_context_db_handle(tls, context)
|
|
pDb = uintptr(0)
|
|
_ = NotUsed
|
|
if zName == uintptr(0) {
|
|
zName = __ccgo_ts + 1704
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(i < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
pDb = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i)*32
|
|
if (*TDb)(unsafe.Pointer(pDb)).FpBt == uintptr(0) {
|
|
goto _1
|
|
}
|
|
if _sqlite3DbIsNamed(tls, db, i, zName) != 0 {
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if i >= (*Tsqlite3)(unsafe.Pointer(db)).FnDb {
|
|
Xsqlite3_snprintf(tls, int32(128), bp, __ccgo_ts+13446, libc.VaList(bp+136, zName))
|
|
goto detach_error
|
|
}
|
|
if i < int32(2) {
|
|
Xsqlite3_snprintf(tls, int32(128), bp, __ccgo_ts+13467, libc.VaList(bp+136, zName))
|
|
goto detach_error
|
|
}
|
|
if _sqlite3BtreeTxnState(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt) != SQLITE_TXN_NONE || _sqlite3BtreeIsInBackup(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt) != 0 {
|
|
Xsqlite3_snprintf(tls, int32(128), bp, __ccgo_ts+13493, libc.VaList(bp+136, zName))
|
|
goto detach_error
|
|
}
|
|
/* If any TEMP triggers reference the schema being detached, move those
|
|
** triggers to reference the TEMP schema itself. */
|
|
pEntry = (*THash)(unsafe.Pointer((**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + 1*32))).FpSchema + 56)).Ffirst
|
|
for pEntry != 0 {
|
|
pTrig = (*THashElem)(unsafe.Pointer(pEntry)).Fdata
|
|
if (*TTrigger)(unsafe.Pointer(pTrig)).FpTabSchema == (*TDb)(unsafe.Pointer(pDb)).FpSchema {
|
|
(*TTrigger)(unsafe.Pointer(pTrig)).FpTabSchema = (*TTrigger)(unsafe.Pointer(pTrig)).FpSchema
|
|
}
|
|
pEntry = (*THashElem)(unsafe.Pointer(pEntry)).Fnext
|
|
}
|
|
_sqlite3BtreeClose(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt)
|
|
(*TDb)(unsafe.Pointer(pDb)).FpBt = uintptr(0)
|
|
(*TDb)(unsafe.Pointer(pDb)).FpSchema = uintptr(0)
|
|
_sqlite3CollapseDatabaseArray(tls, db)
|
|
return
|
|
goto detach_error
|
|
detach_error:
|
|
;
|
|
Xsqlite3_result_error(tls, context, bp, -int32(1))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** The input to this routine is an WhereTerm structure with only the
|
|
// ** "pExpr" field filled in. The job of this routine is to analyze the
|
|
// ** subexpression and populate all the other fields of the WhereTerm
|
|
// ** structure.
|
|
// **
|
|
// ** If the expression is of the form "<expr> <op> X" it gets commuted
|
|
// ** to the standard form of "X <op> <expr>".
|
|
// **
|
|
// ** If the expression is of the form "X <op> Y" where both X and Y are
|
|
// ** columns, then the original expression is unchanged and a new virtual
|
|
// ** term of the form "Y <op> X" is added to the WHERE clause and
|
|
// ** analyzed separately. The original term is marked with TERM_COPIED
|
|
// ** and the new term is marked with TERM_DYNAMIC (because it's pExpr
|
|
// ** needs to be freed with the WhereClause) and TERM_VIRTUAL (because it
|
|
// ** is a commuted copy of a prior term.) The original term has nChild=1
|
|
// ** and the copy has idxParent set to the index of the original term.
|
|
// */
|
|
func _exprAnalyze(tls *libc.TLS, pSrc uintptr, pWC uintptr, idxTerm int32) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var c, v12 int8
|
|
var db, pC, pDup, pExpr, pLeft, pLeft1, pLeft2, pLeft3, pList, pMaskSet, pNew, pNew1, pNewExpr, pNewExpr1, pNewExpr11, pNewExpr2, pNewExpr21, pNewTerm, pNewTerm1, pParse, pRight, pRight1, pStr2, pTerm, pWInfo, t, zCollSeqName, v1 uintptr
|
|
var eExtraOp, opMask, wtFlags Tu16
|
|
var extraRight, prereqAll, prereqColumn, prereqExpr, prereqLeft, x TBitmask
|
|
var i, i1, i2, i3, idxNew, idxNew1, idxNew11, idxNew2, idxNew21, idxNew3, idxNew4, idxNew5, nLeft, op, res, v2 int32
|
|
var v15 bool
|
|
var _ /* aiCurCol at bp+24 */ [2]int32
|
|
var _ /* eOp2 at bp+16 */ uint8
|
|
var _ /* isComplete at bp+8 */ int32
|
|
var _ /* noCase at bp+12 */ int32
|
|
var _ /* pLeft at bp+40 */ uintptr
|
|
var _ /* pRight at bp+32 */ uintptr
|
|
var _ /* pStr1 at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = c, db, eExtraOp, extraRight, i, i1, i2, i3, idxNew, idxNew1, idxNew11, idxNew2, idxNew21, idxNew3, idxNew4, idxNew5, nLeft, op, opMask, pC, pDup, pExpr, pLeft, pLeft1, pLeft2, pLeft3, pList, pMaskSet, pNew, pNew1, pNewExpr, pNewExpr1, pNewExpr11, pNewExpr2, pNewExpr21, pNewTerm, pNewTerm1, pParse, pRight, pRight1, pStr2, pTerm, pWInfo, prereqAll, prereqColumn, prereqExpr, prereqLeft, res, t, wtFlags, x, zCollSeqName, v1, v12, v15, v2
|
|
pWInfo = (*TWhereClause)(unsafe.Pointer(pWC)).FpWInfo /* Prerequisites of pExpr */
|
|
extraRight = uint64(0) /* Extra dependencies on LEFT JOIN */
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0) /* RHS of LIKE/GLOB operator */
|
|
**(**int32)(__ccgo_up(bp + 8)) = 0 /* RHS of LIKE/GLOB ends with wildcard */
|
|
**(**int32)(__ccgo_up(bp + 12)) = 0 /* Top-level operator. pExpr->op */
|
|
pParse = (*TWhereInfo)(unsafe.Pointer(pWInfo)).FpParse /* Parsing context */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Database connection */
|
|
**(**uint8)(__ccgo_up(bp + 16)) = uint8(0) /* Number of elements on left side vector */
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
return
|
|
}
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
pMaskSet = pWInfo + 592
|
|
pExpr = (*TWhereTerm)(unsafe.Pointer(pTerm)).FpExpr
|
|
/* Because malloc() has not failed */
|
|
(*TWhereMaskSet)(unsafe.Pointer(pMaskSet)).FbVarSelect = 0
|
|
prereqLeft = _sqlite3WhereExprUsage(tls, pMaskSet, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
op = libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop)
|
|
if op == int32(TK_IN) {
|
|
if _sqlite3ExprCheckIN(tls, pParse, pExpr) != 0 {
|
|
return
|
|
}
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0) {
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqRight = _exprSelectUsage(tls, pMaskSet, *(*uintptr)(unsafe.Pointer(pExpr + 32)))
|
|
} else {
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqRight = _sqlite3WhereExprListUsage(tls, pMaskSet, *(*uintptr)(unsafe.Pointer(pExpr + 32)))
|
|
}
|
|
prereqAll = prereqLeft | (*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqRight
|
|
} else {
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqRight = _sqlite3WhereExprUsage(tls, pMaskSet, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).FpLeft == uintptr(0) || (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_xIsSelect)|libc.Int32FromInt32(EP_IfNullRow)) != uint32(0) || *(*uintptr)(unsafe.Pointer(pExpr + 32)) != uintptr(0) {
|
|
prereqAll = _sqlite3WhereExprUsageNN(tls, pMaskSet, pExpr)
|
|
} else {
|
|
prereqAll = prereqLeft | (*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqRight
|
|
}
|
|
}
|
|
if (*TWhereMaskSet)(unsafe.Pointer(pMaskSet)).FbVarSelect != 0 {
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_VARSELECT))
|
|
}
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_OuterON)|libc.Int32FromInt32(EP_InnerON)) != uint32(0) {
|
|
x = _sqlite3WhereGetMask(tls, pMaskSet, *(*int32)(unsafe.Pointer(pExpr + 52)))
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_OuterON)) != uint32(0) {
|
|
prereqAll = prereqAll | x
|
|
extraRight = x - uint64(1) /* ON clause terms may not be used with an index
|
|
** on left table of a LEFT JOIN. Ticket #3015 */
|
|
} else {
|
|
if prereqAll>>libc.Int32FromInt32(1) >= x {
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) &= ^libc.Uint32FromInt32(libc.Int32FromInt32(EP_InnerON))
|
|
}
|
|
}
|
|
}
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqAll = prereqAll
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FleftCursor = -int32(1)
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FiParent = -int32(1)
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FeOperator = uint16(0)
|
|
if _allowedOp(tls, op) != 0 {
|
|
pLeft = _sqlite3ExprSkipCollate(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
pRight = _sqlite3ExprSkipCollate(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
if (*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqRight&prereqLeft == uint64(0) {
|
|
v2 = int32(WO_ALL)
|
|
} else {
|
|
v2 = int32(WO_EQUIV)
|
|
}
|
|
opMask = libc.Uint16FromInt32(v2)
|
|
if (*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FiField > 0 {
|
|
pLeft = (*(*TExprList_item)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pLeft + 32)) + 8 + uintptr((*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FiField-int32(1))*32))).FpExpr
|
|
}
|
|
if _exprMightBeIndexed(tls, pSrc, bp+24, pLeft, op) != 0 {
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FleftCursor = (**(**[2]int32)(__ccgo_up(bp + 24)))[0]
|
|
(*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FleftColumn = (**(**[2]int32)(__ccgo_up(bp + 24)))[int32(1)]
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FeOperator = libc.Uint16FromInt32(libc.Int32FromUint16(_operatorMask(tls, op)) & libc.Int32FromUint16(opMask))
|
|
}
|
|
if op == int32(TK_IS) {
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_IS))
|
|
}
|
|
if pRight != 0 && _exprMightBeIndexed(tls, pSrc, bp+24, pRight, op) != 0 && !((*TExpr)(unsafe.Pointer(pRight)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_FixedCol)) != libc.Uint32FromInt32(0)) {
|
|
eExtraOp = uint16(0) /* Extra bits for pNew->eOperator */
|
|
if (*TWhereTerm)(unsafe.Pointer(pTerm)).FleftCursor >= 0 {
|
|
pDup = _sqlite3ExprDup(tls, db, pExpr, 0)
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
_sqlite3ExprDelete(tls, db, pDup)
|
|
return
|
|
}
|
|
idxNew = _whereClauseInsert(tls, pWC, pDup, libc.Uint16FromInt32(libc.Int32FromInt32(TERM_VIRTUAL)|libc.Int32FromInt32(TERM_DYNAMIC)))
|
|
if idxNew == 0 {
|
|
return
|
|
}
|
|
pNew = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxNew)*56
|
|
_markTermAsChild(tls, pWC, idxNew, idxTerm)
|
|
if op == int32(TK_IS) {
|
|
v1 = pNew + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_IS))
|
|
}
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_COPIED))
|
|
if _termIsEquivalence(tls, pParse, pDup, (*TWhereInfo)(unsafe.Pointer(pWInfo)).FpTabList) != 0 {
|
|
v1 = pTerm + 20
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(WO_EQUIV))
|
|
eExtraOp = uint16(WO_EQUIV)
|
|
}
|
|
} else {
|
|
pDup = pExpr
|
|
pNew = pTerm
|
|
}
|
|
v1 = pNew + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromUint16(_exprCommute(tls, pParse, pDup)))
|
|
(*TWhereTerm)(unsafe.Pointer(pNew)).FleftCursor = (**(**[2]int32)(__ccgo_up(bp + 24)))[0]
|
|
(*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pNew + 32))).FleftColumn = (**(**[2]int32)(__ccgo_up(bp + 24)))[int32(1)]
|
|
(*TWhereTerm)(unsafe.Pointer(pNew)).FprereqRight = prereqLeft | extraRight
|
|
(*TWhereTerm)(unsafe.Pointer(pNew)).FprereqAll = prereqAll
|
|
(*TWhereTerm)(unsafe.Pointer(pNew)).FeOperator = libc.Uint16FromInt32((libc.Int32FromUint16(_operatorMask(tls, libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pDup)).Fop))) + libc.Int32FromUint16(eExtraOp)) & libc.Int32FromUint16(opMask))
|
|
} else {
|
|
if op == int32(TK_ISNULL) && !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_OuterON)) != libc.Uint32FromInt32(0)) && 0 == _sqlite3ExprCanBeNull(tls, pLeft) {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_TRUEFALSE) /* See tag-20230504-1 */
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 8)) = __ccgo_ts + 8187
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_IsFalse))
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqAll = uint64(0)
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FeOperator = uint16(0)
|
|
}
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_BETWEEN) && libc.Int32FromUint8((*TWhereClause)(unsafe.Pointer(pWC)).Fop) == int32(TK_AND) {
|
|
pList = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
i = 0
|
|
for {
|
|
if !(i < int32(2)) {
|
|
break
|
|
}
|
|
pNewExpr = _sqlite3PExpr(tls, pParse, libc.Int32FromUint8(_ops[i]), _sqlite3ExprDup(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, 0), _sqlite3ExprDup(tls, db, (*(*TExprList_item)(unsafe.Pointer(pList + 8 + uintptr(i)*32))).FpExpr, 0))
|
|
_transferJoinMarkings(tls, pNewExpr, pExpr)
|
|
idxNew1 = _whereClauseInsert(tls, pWC, pNewExpr, libc.Uint16FromInt32(libc.Int32FromInt32(TERM_VIRTUAL)|libc.Int32FromInt32(TERM_DYNAMIC)))
|
|
_exprAnalyze(tls, pSrc, pWC, idxNew1)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
_markTermAsChild(tls, pWC, idxNew1, idxTerm)
|
|
goto _8
|
|
_8:
|
|
;
|
|
i = i + 1
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_OR) && !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Collate)) != libc.Uint32FromInt32(0)) {
|
|
_exprAnalyzeOrTerm(tls, pSrc, pWC, idxTerm)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_NOTNULL) {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpLeft)).Fop) == int32(TK_COLUMN) && int32((*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpLeft)).FiColumn) >= 0 && !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_OuterON)) != libc.Uint32FromInt32(0)) {
|
|
pLeft1 = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
pNewExpr1 = _sqlite3PExpr(tls, pParse, int32(TK_GT), _sqlite3ExprDup(tls, db, pLeft1, 0), _sqlite3ExprAlloc(tls, db, int32(TK_NULL), uintptr(0), 0))
|
|
idxNew2 = _whereClauseInsert(tls, pWC, pNewExpr1, libc.Uint16FromInt32(libc.Int32FromInt32(TERM_VIRTUAL)|libc.Int32FromInt32(TERM_DYNAMIC)|libc.Int32FromInt32(TERM_VNULL)))
|
|
if idxNew2 != 0 {
|
|
pNewTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxNew2)*56
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm)).FprereqRight = uint64(0)
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm)).FleftCursor = (*TExpr)(unsafe.Pointer(pLeft1)).FiTable
|
|
(*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pNewTerm + 32))).FleftColumn = int32((*TExpr)(unsafe.Pointer(pLeft1)).FiColumn)
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm)).FeOperator = libc.Uint16FromInt32(libc.Int32FromInt32(WO_EQ) << (libc.Int32FromInt32(TK_GT) - libc.Int32FromInt32(TK_EQ)))
|
|
_markTermAsChild(tls, pWC, idxNew2, idxTerm)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_COPIED))
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm)).FprereqAll = (*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqAll
|
|
}
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_FUNCTION) && libc.Int32FromUint8((*TWhereClause)(unsafe.Pointer(pWC)).Fop) == int32(TK_AND) && _isLikeOrGlob(tls, pParse, pExpr, bp, bp+8, bp+12) != 0 { /* Name of collating sequence */
|
|
wtFlags = libc.Uint16FromInt32(libc.Int32FromInt32(TERM_LIKEOPT) | libc.Int32FromInt32(TERM_VIRTUAL) | libc.Int32FromInt32(TERM_DYNAMIC))
|
|
pLeft2 = (*(*TExprList_item)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)) + 8 + 1*32))).FpExpr
|
|
pStr2 = _sqlite3ExprDup(tls, db, **(**uintptr)(__ccgo_up(bp)), 0)
|
|
/* Convert the lower bound to upper-case and the upper bound to
|
|
** lower-case (upper-case is less than lower-case in ASCII) so that
|
|
** the range constraints also work for BLOBs
|
|
*/
|
|
if **(**int32)(__ccgo_up(bp + 12)) != 0 && !((*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmallocFailed != 0) {
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_LIKE))
|
|
i1 = 0
|
|
for {
|
|
v12 = **(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)) + 8)) + uintptr(i1)))
|
|
c = v12
|
|
if !(int32(v12) != 0) {
|
|
break
|
|
}
|
|
**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)) + 8)) + uintptr(i1))) = int8(int32(c) & ^(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(c)]) & libc.Int32FromInt32(0x20)))
|
|
**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pStr2 + 8)) + uintptr(i1))) = libc.Int8FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(c)])
|
|
goto _11
|
|
_11:
|
|
;
|
|
i1 = i1 + 1
|
|
}
|
|
}
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0) { /* Last character before the first wildcard */
|
|
pC = *(*uintptr)(unsafe.Pointer(pStr2 + 8)) + uintptr(_sqlite3Strlen30(tls, *(*uintptr)(unsafe.Pointer(pStr2 + 8)))-int32(1))
|
|
if **(**int32)(__ccgo_up(bp + 12)) != 0 {
|
|
/* The point is to increment the last character before the first
|
|
** wildcard. But if we increment '@', that will push it into the
|
|
** alphabetic range where case conversions will mess up the
|
|
** inequality. To avoid this, make sure to also run the full
|
|
** LIKE on all candidate expressions by clearing the isComplete flag
|
|
*/
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up(pC))) == libc.Int32FromUint8('A')-libc.Int32FromInt32(1) {
|
|
**(**int32)(__ccgo_up(bp + 8)) = 0
|
|
}
|
|
**(**Tu8)(__ccgo_up(pC)) = _sqlite3UpperToLower[**(**Tu8)(__ccgo_up(pC))]
|
|
}
|
|
/* Increment the value of the last utf8 character in the prefix. */
|
|
for libc.Int32FromUint8(**(**Tu8)(__ccgo_up(pC))) == int32(0xBF) && pC > *(*uintptr)(unsafe.Pointer(pStr2 + 8)) {
|
|
**(**Tu8)(__ccgo_up(pC)) = uint8(0x80)
|
|
pC = pC - 1
|
|
}
|
|
/* isLikeOrGlob() guarantees this */
|
|
**(**Tu8)(__ccgo_up(pC)) = **(**Tu8)(__ccgo_up(pC)) + 1
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 12)) != 0 {
|
|
v1 = __ccgo_ts + 23945
|
|
} else {
|
|
v1 = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
}
|
|
zCollSeqName = v1
|
|
pNewExpr11 = _sqlite3ExprDup(tls, db, pLeft2, 0)
|
|
pNewExpr11 = _sqlite3PExpr(tls, pParse, int32(TK_GE), _sqlite3ExprAddCollateString(tls, pParse, pNewExpr11, zCollSeqName), **(**uintptr)(__ccgo_up(bp)))
|
|
_transferJoinMarkings(tls, pNewExpr11, pExpr)
|
|
idxNew11 = _whereClauseInsert(tls, pWC, pNewExpr11, wtFlags)
|
|
pNewExpr21 = _sqlite3ExprDup(tls, db, pLeft2, 0)
|
|
pNewExpr21 = _sqlite3PExpr(tls, pParse, int32(TK_LT), _sqlite3ExprAddCollateString(tls, pParse, pNewExpr21, zCollSeqName), pStr2)
|
|
_transferJoinMarkings(tls, pNewExpr21, pExpr)
|
|
idxNew21 = _whereClauseInsert(tls, pWC, pNewExpr21, wtFlags)
|
|
_exprAnalyze(tls, pSrc, pWC, idxNew11)
|
|
_exprAnalyze(tls, pSrc, pWC, idxNew21)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
if **(**int32)(__ccgo_up(bp + 8)) != 0 {
|
|
_markTermAsChild(tls, pWC, idxNew11, idxTerm)
|
|
_markTermAsChild(tls, pWC, idxNew21, idxTerm)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/* If there is a vector == or IS term - e.g. "(a, b) == (?, ?)" - create
|
|
** new terms for each component comparison - "a = ?" and "b = ?". The
|
|
** new terms completely replace the original vector comparison, which is
|
|
** no longer used.
|
|
**
|
|
** This is only required if at least one side of the comparison operation
|
|
** is not a sub-select.
|
|
**
|
|
** tag-20220128a
|
|
*/
|
|
if v15 = libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_EQ) || libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_IS); v15 {
|
|
v2 = _sqlite3ExprVectorSize(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
nLeft = v2
|
|
}
|
|
if v15 && v2 > int32(1) && _sqlite3ExprVectorSize(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpRight) == nLeft && ((*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpLeft)).Fflags&uint32(EP_xIsSelect) == uint32(0) || (*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpRight)).Fflags&uint32(EP_xIsSelect) == uint32(0)) && libc.Int32FromUint8((*TWhereClause)(unsafe.Pointer(pWC)).Fop) == int32(TK_AND) {
|
|
i2 = 0
|
|
for {
|
|
if !(i2 < nLeft) {
|
|
break
|
|
}
|
|
pLeft3 = _sqlite3ExprForVectorField(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, i2, nLeft)
|
|
pRight1 = _sqlite3ExprForVectorField(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpRight, i2, nLeft)
|
|
pNew1 = _sqlite3PExpr(tls, pParse, libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop), pLeft3, pRight1)
|
|
_transferJoinMarkings(tls, pNew1, pExpr)
|
|
idxNew3 = _whereClauseInsert(tls, pWC, pNew1, libc.Uint16FromInt32(libc.Int32FromInt32(TERM_DYNAMIC)|libc.Int32FromInt32(TERM_SLICE)))
|
|
_exprAnalyze(tls, pSrc, pWC, idxNew3)
|
|
goto _16
|
|
_16:
|
|
;
|
|
i2 = i2 + 1
|
|
}
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | (libc.Int32FromInt32(TERM_CODED) | libc.Int32FromInt32(TERM_VIRTUAL))) /* Disable the original */
|
|
(*TWhereTerm)(unsafe.Pointer(pTerm)).FeOperator = uint16(WO_ROWVAL)
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_IN) && (*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pTerm + 32))).FiField == 0 && libc.Int32FromUint8((*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpLeft)).Fop) == int32(TK_VECTOR) && (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0) && ((*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FpPrior == uintptr(0) || (*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FselFlags&uint32(SF_Values) != 0) && (*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FpWin == uintptr(0) && libc.Int32FromUint8((*TWhereClause)(unsafe.Pointer(pWC)).Fop) == int32(TK_AND) && int64((*TExprList)(unsafe.Pointer((*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FpEList)).FnExpr) <= libc.Int64FromInt32(1)<<(libc.Uint64FromInt64(1)*libc.Uint64FromInt32(8))-libc.Int64FromInt32(1) {
|
|
i3 = 0
|
|
for {
|
|
if !(i3 < _sqlite3ExprVectorSize(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)) {
|
|
break
|
|
}
|
|
idxNew4 = _whereClauseInsert(tls, pWC, pExpr, libc.Uint16FromInt32(libc.Int32FromInt32(TERM_VIRTUAL)|libc.Int32FromInt32(TERM_SLICE)))
|
|
*(*int32)(unsafe.Pointer((*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxNew4)*56 + 32 + 4)) = i3 + int32(1)
|
|
_exprAnalyze(tls, pSrc, pWC, idxNew4)
|
|
_markTermAsChild(tls, pWC, idxNew4, idxTerm)
|
|
goto _18
|
|
_18:
|
|
;
|
|
i3 = i3 + 1
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint8((*TWhereClause)(unsafe.Pointer(pWC)).Fop) == int32(TK_AND) {
|
|
**(**uintptr)(__ccgo_up(bp + 32)) = uintptr(0)
|
|
**(**uintptr)(__ccgo_up(bp + 40)) = uintptr(0)
|
|
res = _isAuxiliaryVtabOperator(tls, db, pExpr, bp+16, bp+40, bp+32)
|
|
for {
|
|
v2 = res
|
|
res = res - 1
|
|
if !(v2 > 0) {
|
|
break
|
|
}
|
|
prereqExpr = _sqlite3WhereExprUsage(tls, pMaskSet, **(**uintptr)(__ccgo_up(bp + 32)))
|
|
prereqColumn = _sqlite3WhereExprUsage(tls, pMaskSet, **(**uintptr)(__ccgo_up(bp + 40)))
|
|
if prereqExpr&prereqColumn == uint64(0) {
|
|
pNewExpr2 = _sqlite3PExpr(tls, pParse, int32(TK_MATCH), uintptr(0), _sqlite3ExprDup(tls, db, **(**uintptr)(__ccgo_up(bp + 32)), 0))
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_OuterON)) != uint32(0) && pNewExpr2 != 0 {
|
|
**(**Tu32)(__ccgo_up(pNewExpr2 + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_OuterON))
|
|
*(*int32)(unsafe.Pointer(pNewExpr2 + 52)) = *(*int32)(unsafe.Pointer(pExpr + 52))
|
|
}
|
|
idxNew5 = _whereClauseInsert(tls, pWC, pNewExpr2, libc.Uint16FromInt32(libc.Int32FromInt32(TERM_VIRTUAL)|libc.Int32FromInt32(TERM_DYNAMIC)))
|
|
pNewTerm1 = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxNew5)*56
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm1)).FprereqRight = prereqExpr | extraRight
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm1)).FleftCursor = (*TExpr)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 40)))).FiTable
|
|
(*(*struct {
|
|
FleftColumn int32
|
|
FiField int32
|
|
})(unsafe.Pointer(pNewTerm1 + 32))).FleftColumn = int32((*TExpr)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 40)))).FiColumn)
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm1)).FeOperator = uint16(WO_AUX)
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm1)).FeMatchOp = **(**uint8)(__ccgo_up(bp + 16))
|
|
_markTermAsChild(tls, pWC, idxNew5, idxTerm)
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
v1 = pTerm + 18
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(TERM_COPIED))
|
|
(*TWhereTerm)(unsafe.Pointer(pNewTerm1)).FprereqAll = (*TWhereTerm)(unsafe.Pointer(pTerm)).FprereqAll
|
|
}
|
|
t = **(**uintptr)(__ccgo_up(bp + 40))
|
|
**(**uintptr)(__ccgo_up(bp + 40)) = **(**uintptr)(__ccgo_up(bp + 32))
|
|
**(**uintptr)(__ccgo_up(bp + 32)) = t
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/* Prevent ON clause terms of a LEFT JOIN from being used to drive
|
|
** an index for tables to the left of the join.
|
|
*/
|
|
pTerm = (*TWhereClause)(unsafe.Pointer(pWC)).Fa + uintptr(idxTerm)*56
|
|
**(**TBitmask)(__ccgo_up(pTerm + 40)) |= extraRight
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate code to implement special SQL functions that are implemented
|
|
// ** in-line rather than by using the usual callbacks.
|
|
// */
|
|
func _exprCodeInlineFunction(tls *libc.TLS, pParse uintptr, pFarg uintptr, iFuncId int32, target int32) (r int32) {
|
|
bp := tls.Alloc(80)
|
|
defer tls.Free(80)
|
|
var aff int8
|
|
var azAff [6]uintptr
|
|
var endCoalesce, i, nFarg int32
|
|
var pA1, pArg, v, v2 uintptr
|
|
var _ /* caseExpr at bp+0 */ TExpr
|
|
_, _, _, _, _, _, _, _, _ = aff, azAff, endCoalesce, i, nFarg, pA1, pArg, v, v2
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe
|
|
nFarg = (*TExprList)(unsafe.Pointer(pFarg)).FnExpr
|
|
/* All in-line functions have at least one argument */
|
|
switch iFuncId {
|
|
case INLINEFUNC_coalesce:
|
|
/* Attempt a direct implementation of the built-in COALESCE() and
|
|
** IFNULL() functions. This avoids unnecessary evaluation of
|
|
** arguments past the first non-NULL argument.
|
|
*/
|
|
endCoalesce = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
_sqlite3ExprCode(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr, target)
|
|
i = int32(1)
|
|
for {
|
|
if !(i < nFarg) {
|
|
break
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_NotNull), target, endCoalesce)
|
|
_sqlite3ExprCode(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + uintptr(i)*32))).FpExpr, target)
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
_setDoNotMergeFlagOnCopy(tls, v)
|
|
_sqlite3VdbeResolveLabel(tls, v, endCoalesce)
|
|
case int32(INLINEFUNC_iif):
|
|
libc.Xmemset(tls, bp, 0, uint64(72))
|
|
(**(**TExpr)(__ccgo_up(bp))).Fop = uint8(TK_CASE)
|
|
*(*uintptr)(unsafe.Pointer(bp + 32)) = pFarg
|
|
return _sqlite3ExprCodeTarget(tls, pParse, bp, target)
|
|
case int32(INLINEFUNC_sqlite_offset):
|
|
pArg = (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pArg)).Fop) == int32(TK_COLUMN) && (*TExpr)(unsafe.Pointer(pArg)).FiTable >= 0 {
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Offset), (*TExpr)(unsafe.Pointer(pArg)).FiTable, int32((*TExpr)(unsafe.Pointer(pArg)).FiColumn), target)
|
|
} else {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
}
|
|
default:
|
|
/* The UNLIKELY() function is a no-op. The result is the value
|
|
** of the first argument.
|
|
*/
|
|
target = _sqlite3ExprCodeTarget(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr, target)
|
|
break
|
|
/***********************************************************************
|
|
** Test-only SQL functions that are only usable if enabled
|
|
** via SQLITE_TESTCTRL_INTERNAL_FUNCTIONS
|
|
*/
|
|
fallthrough
|
|
case int32(INLINEFUNC_expr_compare):
|
|
/* Compare two expressions using sqlite3ExprCompare() */
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), _sqlite3ExprCompare(tls, uintptr(0), (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + 1*32))).FpExpr, -int32(1)), target)
|
|
case int32(INLINEFUNC_expr_implies_expr):
|
|
/* Compare two expressions using sqlite3ExprImpliesExpr() */
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), _sqlite3ExprImpliesExpr(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + 1*32))).FpExpr, -int32(1)), target)
|
|
case int32(INLINEFUNC_implies_nonnull_row):
|
|
pA1 = (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + 1*32))).FpExpr
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pA1)).Fop) == int32(TK_COLUMN) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), _sqlite3ExprImpliesNonNullRow(tls, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr, (*TExpr)(unsafe.Pointer(pA1)).FiTable, int32(1)), target)
|
|
} else {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
}
|
|
case int32(INLINEFUNC_affinity):
|
|
/* The AFFINITY() function evaluates to a string that describes
|
|
** the type affinity of the argument. This is used for testing of
|
|
** the SQLite type logic.
|
|
*/
|
|
azAff = [6]uintptr{
|
|
0: __ccgo_ts + 8486,
|
|
1: __ccgo_ts + 8491,
|
|
2: __ccgo_ts + 8496,
|
|
3: __ccgo_ts + 6496,
|
|
4: __ccgo_ts + 6491,
|
|
5: __ccgo_ts + 8504,
|
|
}
|
|
aff = _sqlite3ExprAffinity(tls, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr)
|
|
if int32(aff) <= int32(SQLITE_AFF_NONE) {
|
|
v2 = __ccgo_ts + 8512
|
|
} else {
|
|
v2 = azAff[int32(aff)-int32(SQLITE_AFF_BLOB)]
|
|
}
|
|
_sqlite3VdbeLoadString(tls, v, target, v2)
|
|
break
|
|
}
|
|
return target
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is called by unixOpen() to determine the unix permissions
|
|
// ** to create new files with. If no error occurs, then SQLITE_OK is returned
|
|
// ** and a value suitable for passing as the third argument to open(2) is
|
|
// ** written to *pMode. If an IO error occurs, an SQLite error code is
|
|
// ** returned and the value of *pMode is not modified.
|
|
// **
|
|
// ** In most cases, this routine sets *pMode to 0, which will become
|
|
// ** an indication to robust_open() to create the file using
|
|
// ** SQLITE_DEFAULT_FILE_PERMISSIONS adjusted by the umask.
|
|
// ** But if the file being opened is a WAL or regular journal file, then
|
|
// ** this function queries the file-system for the permissions on the
|
|
// ** corresponding database file and sets *pMode to this value. Whenever
|
|
// ** possible, WAL and journal files are created using the same permissions
|
|
// ** as the associated database file.
|
|
// **
|
|
// ** If the SQLITE_ENABLE_8_3_NAMES option is enabled, then the
|
|
// ** original filename is unavailable. But 8_3_NAMES is only used for
|
|
// ** FAT filesystems and permissions do not matter there, so just use
|
|
// ** the default permissions. In 8_3_NAMES mode, leave *pMode set to zero.
|
|
// */
|
|
func _findCreateFileMode(tls *libc.TLS, zPath uintptr, flags int32, pMode uintptr, pUid uintptr, pGid uintptr) (r int32) {
|
|
bp := tls.Alloc(528)
|
|
defer tls.Free(528)
|
|
var nDb, rc int32
|
|
var z uintptr
|
|
var _ /* zDb at bp+0 */ [513]int8
|
|
_, _, _ = nDb, rc, z
|
|
rc = SQLITE_OK /* Return Code */
|
|
**(**Tmode_t)(__ccgo_up(pMode)) = uint32(0)
|
|
**(**Tuid_t)(__ccgo_up(pUid)) = uint32(0)
|
|
**(**Tgid_t)(__ccgo_up(pGid)) = uint32(0)
|
|
if flags&(libc.Int32FromInt32(SQLITE_OPEN_WAL)|libc.Int32FromInt32(SQLITE_OPEN_MAIN_JOURNAL)) != 0 { /* Number of valid bytes in zDb */
|
|
/* zPath is a path to a WAL or journal file. The following block derives
|
|
** the path to the associated database file from zPath. This block handles
|
|
** the following naming conventions:
|
|
**
|
|
** "<path to db>-journal"
|
|
** "<path to db>-wal"
|
|
** "<path to db>-journalNN"
|
|
** "<path to db>-walNN"
|
|
**
|
|
** where NN is a decimal number. The NN naming schemes are
|
|
** used by the test_multiplex.c module.
|
|
**
|
|
** In normal operation, the journal file name will always contain
|
|
** a '-' character. However in 8+3 filename mode, or if a corrupt
|
|
** rollback journal specifies a super-journal with a goofy name, then
|
|
** the '-' might be missing or the '-' might be the first character in
|
|
** the filename. In that case, just return SQLITE_OK with *pMode==0.
|
|
*/
|
|
nDb = _sqlite3Strlen30(tls, zPath) - int32(1)
|
|
for nDb > 0 && int32(**(**int8)(__ccgo_up(zPath + uintptr(nDb)))) != int32('.') {
|
|
if int32(**(**int8)(__ccgo_up(zPath + uintptr(nDb)))) == int32('-') {
|
|
libc.Xmemcpy(tls, bp, zPath, libc.Uint64FromInt32(nDb))
|
|
(**(**[513]int8)(__ccgo_up(bp)))[nDb] = int8('\000')
|
|
rc = _getFileMode(tls, bp, pMode, pUid, pGid)
|
|
break
|
|
}
|
|
nDb = nDb - 1
|
|
}
|
|
} else {
|
|
if flags&int32(SQLITE_OPEN_DELETEONCLOSE) != 0 {
|
|
**(**Tmode_t)(__ccgo_up(pMode)) = uint32(0600)
|
|
} else {
|
|
if flags&int32(SQLITE_OPEN_URI) != 0 {
|
|
/* If this is a main database file and the file was opened using a URI
|
|
** filename, check for the "modeof" parameter. If present, interpret
|
|
** its value as a filename and try to copy the mode, uid and gid from
|
|
** that file. */
|
|
z = Xsqlite3_uri_parameter(tls, zPath, __ccgo_ts+4062)
|
|
if z != 0 {
|
|
rc = _getFileMode(tls, z, pMode, pUid, pGid)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is called when an UPDATE or DELETE operation is being
|
|
// ** compiled on table pTab, which is the parent table of foreign-key pFKey.
|
|
// ** If the current operation is an UPDATE, then the pChanges parameter is
|
|
// ** passed a pointer to the list of columns being modified. If it is a
|
|
// ** DELETE, pChanges is passed a NULL pointer.
|
|
// **
|
|
// ** It returns a pointer to a Trigger structure containing a trigger
|
|
// ** equivalent to the ON UPDATE or ON DELETE action specified by pFKey.
|
|
// ** If the action is "NO ACTION" then a NULL pointer is returned (these actions
|
|
// ** require no special handling by the triggers sub-system, code for them is
|
|
// ** created by fkScanChildren()).
|
|
// **
|
|
// ** For example, if pFKey is the foreign key and pTab is table "p" in
|
|
// ** the following schema:
|
|
// **
|
|
// ** CREATE TABLE p(pk PRIMARY KEY);
|
|
// ** CREATE TABLE c(ck REFERENCES p ON DELETE CASCADE);
|
|
// **
|
|
// ** then the returned trigger structure is equivalent to:
|
|
// **
|
|
// ** CREATE TRIGGER ... DELETE ON p BEGIN
|
|
// ** DELETE FROM c WHERE ck = old.pk;
|
|
// ** END;
|
|
// **
|
|
// ** The returned pointer is cached as part of the foreign key object. It
|
|
// ** is eventually freed along with the rest of the foreign key object by
|
|
// ** sqlite3FkDelete().
|
|
// */
|
|
func _fkActionTrigger(tls *libc.TLS, pParse uintptr, pTab uintptr, pFKey uintptr, pChanges uintptr) (r uintptr) {
|
|
bp := tls.Alloc(80)
|
|
defer tls.Free(80)
|
|
var action, i, iAction, iFromCol, nFrom, v2 int32
|
|
var db, pCol, pDflt, pEq, pItem, pItem1, pList, pNew, pRaise, pSelect, pSrc, pStep, pTrigger, pWhen, pWhere, zFrom, v4 uintptr
|
|
var _ /* aiCol at bp+8 */ uintptr
|
|
var _ /* pIdx at bp+0 */ uintptr
|
|
var _ /* tFromCol at bp+48 */ TToken
|
|
var _ /* tNew at bp+32 */ TToken
|
|
var _ /* tOld at bp+16 */ TToken
|
|
var _ /* tToCol at bp+64 */ TToken
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = action, db, i, iAction, iFromCol, nFrom, pCol, pDflt, pEq, pItem, pItem1, pList, pNew, pRaise, pSelect, pSrc, pStep, pTrigger, pWhen, pWhere, zFrom, v2, v4
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Trigger definition to return */
|
|
iAction = libc.BoolInt32(pChanges != uintptr(0)) /* 1 for UPDATE, 0 for DELETE */
|
|
action = libc.Int32FromUint8(**(**Tu8)(__ccgo_up(pFKey + 45 + uintptr(iAction))))
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&(libc.Uint64FromInt32(libc.Int32FromInt32(0x00008))<<libc.Int32FromInt32(32)) != 0 {
|
|
action = OE_None
|
|
}
|
|
if action == int32(OE_Restrict) && (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_DeferFKs) != 0 {
|
|
return uintptr(0)
|
|
}
|
|
pTrigger = **(**uintptr)(__ccgo_up(pFKey + 48 + uintptr(iAction)*8))
|
|
if action != OE_None && !(pTrigger != 0) { /* Length in bytes of zFrom */
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0) /* Parent key index for this FK */
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0) /* child table cols -> parent key cols */
|
|
pStep = uintptr(0) /* First (only) step of trigger program */
|
|
pWhere = uintptr(0) /* WHERE clause of trigger step */
|
|
pList = uintptr(0) /* Changes list if ON UPDATE CASCADE */
|
|
pSelect = uintptr(0) /* Iterator variable */
|
|
pWhen = uintptr(0) /* WHEN clause for the trigger */
|
|
if _sqlite3FkLocateIndex(tls, pParse, pTab, pFKey, bp, bp+8) != 0 {
|
|
return uintptr(0)
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(i < (*TFKey)(unsafe.Pointer(pFKey)).FnCol) {
|
|
break
|
|
}
|
|
**(**TToken)(__ccgo_up(bp + 16)) = TToken{
|
|
Fz: __ccgo_ts + 6831,
|
|
Fn: uint32(3),
|
|
} /* Literal "old" token */
|
|
**(**TToken)(__ccgo_up(bp + 32)) = TToken{
|
|
Fz: __ccgo_ts + 6827,
|
|
Fn: uint32(3),
|
|
} /* tFromCol = OLD.tToCol */
|
|
if **(**uintptr)(__ccgo_up(bp + 8)) != 0 {
|
|
v2 = **(**int32)(__ccgo_up(**(**uintptr)(__ccgo_up(bp + 8)) + uintptr(i)*4))
|
|
} else {
|
|
v2 = (*(*TsColMap)(unsafe.Pointer(pFKey + 64))).FiFrom
|
|
}
|
|
iFromCol = v2
|
|
if **(**uintptr)(__ccgo_up(bp)) != 0 {
|
|
v2 = int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FaiColumn + uintptr(i)*2)))
|
|
} else {
|
|
v2 = int32((*TTable)(unsafe.Pointer(pTab)).FiPKey)
|
|
}
|
|
_sqlite3TokenInit(tls, bp+64, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(v2)*16))).FzCnName)
|
|
_sqlite3TokenInit(tls, bp+48, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer((*TFKey)(unsafe.Pointer(pFKey)).FpFrom)).FaCol + uintptr(iFromCol)*16))).FzCnName)
|
|
/* Create the expression "OLD.zToCol = zFromCol". It is important
|
|
** that the "OLD.zToCol" term is on the LHS of the = operator, so
|
|
** that the affinity and collation sequence associated with the
|
|
** parent table are used for the comparison. */
|
|
pEq = _sqlite3PExpr(tls, pParse, int32(TK_EQ), _sqlite3PExpr(tls, pParse, int32(TK_DOT), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+16, 0), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+64, 0)), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+48, 0))
|
|
pWhere = _sqlite3ExprAnd(tls, pParse, pWhere, pEq)
|
|
/* For ON UPDATE, construct the next term of the WHEN clause.
|
|
** The final WHEN clause will be like this:
|
|
**
|
|
** WHEN NOT(old.col1 IS new.col1 AND ... AND old.colN IS new.colN)
|
|
*/
|
|
if pChanges != 0 {
|
|
pEq = _sqlite3PExpr(tls, pParse, int32(TK_IS), _sqlite3PExpr(tls, pParse, int32(TK_DOT), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+16, 0), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+64, 0)), _sqlite3PExpr(tls, pParse, int32(TK_DOT), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+32, 0), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+64, 0)))
|
|
pWhen = _sqlite3ExprAnd(tls, pParse, pWhen, pEq)
|
|
}
|
|
if action != int32(OE_Restrict) && (action != int32(OE_Cascade) || pChanges != 0) {
|
|
if action == int32(OE_Cascade) {
|
|
pNew = _sqlite3PExpr(tls, pParse, int32(TK_DOT), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+32, 0), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+64, 0))
|
|
} else {
|
|
if action == int32(OE_SetDflt) {
|
|
pCol = (*TTable)(unsafe.Pointer((*TFKey)(unsafe.Pointer(pFKey)).FpFrom)).FaCol + uintptr(iFromCol)*16
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_GENERATED) != 0 {
|
|
pDflt = uintptr(0)
|
|
} else {
|
|
pDflt = _sqlite3ColumnExpr(tls, (*TFKey)(unsafe.Pointer(pFKey)).FpFrom, pCol)
|
|
}
|
|
if pDflt != 0 {
|
|
pNew = _sqlite3ExprDup(tls, db, pDflt, 0)
|
|
} else {
|
|
pNew = _sqlite3ExprAlloc(tls, db, int32(TK_NULL), uintptr(0), 0)
|
|
}
|
|
} else {
|
|
pNew = _sqlite3ExprAlloc(tls, db, int32(TK_NULL), uintptr(0), 0)
|
|
}
|
|
}
|
|
pList = _sqlite3ExprListAppend(tls, pParse, pList, pNew)
|
|
_sqlite3ExprListSetName(tls, pParse, pList, bp+48, 0)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
_sqlite3DbFree(tls, db, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
zFrom = (*TTable)(unsafe.Pointer((*TFKey)(unsafe.Pointer(pFKey)).FpFrom)).FzName
|
|
nFrom = _sqlite3Strlen30(tls, zFrom)
|
|
if action == int32(OE_Restrict) {
|
|
pRaise = _sqlite3Expr(tls, db, int32(TK_STRING), __ccgo_ts+5396)
|
|
pRaise = _sqlite3PExpr(tls, pParse, int32(TK_RAISE), pRaise, uintptr(0))
|
|
if pRaise != 0 {
|
|
(*TExpr)(unsafe.Pointer(pRaise)).FaffExpr = int8(OE_Abort)
|
|
}
|
|
pSrc = _sqlite3SrcListAppend(tls, pParse, uintptr(0), uintptr(0), uintptr(0))
|
|
if pSrc != 0 {
|
|
pItem = pSrc + 8
|
|
(*TSrcItem)(unsafe.Pointer(pItem)).FzName = _sqlite3DbStrDup(tls, db, zFrom)
|
|
libc.SetBitFieldPtr32Uint32(pItem+24+4, libc.Uint32FromInt32(1), 16, 0x10000)
|
|
*(*uintptr)(unsafe.Pointer(pItem + 72)) = (*TTable)(unsafe.Pointer(pTab)).FpSchema
|
|
}
|
|
pSelect = _sqlite3SelectNew(tls, pParse, _sqlite3ExprListAppend(tls, pParse, uintptr(0), pRaise), pSrc, pWhere, uintptr(0), uintptr(0), uintptr(0), uint32(0), uintptr(0))
|
|
pWhere = uintptr(0)
|
|
}
|
|
/* Disable lookaside memory allocation */
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable = (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable + 1
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.Fsz = uint16(0)
|
|
pTrigger = _sqlite3DbMallocZero(tls, db, uint64(libc.Uint64FromInt64(72)+libc.Uint64FromInt64(88)))
|
|
if pTrigger != 0 {
|
|
v4 = pTrigger + 1*72
|
|
(*TTrigger)(unsafe.Pointer(pTrigger)).Fstep_list = v4
|
|
pStep = v4
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).FpSrc = _sqlite3SrcListAppend(tls, pParse, uintptr(0), uintptr(0), uintptr(0))
|
|
if (*TTriggerStep)(unsafe.Pointer(pStep)).FpSrc != 0 {
|
|
pItem1 = (*TTriggerStep)(unsafe.Pointer(pStep)).FpSrc + 8
|
|
(*TSrcItem)(unsafe.Pointer(pItem1)).FzName = _sqlite3DbStrNDup(tls, db, zFrom, libc.Uint64FromInt32(nFrom))
|
|
*(*uintptr)(unsafe.Pointer(pItem1 + 72)) = (*TTable)(unsafe.Pointer(pTab)).FpSchema
|
|
libc.SetBitFieldPtr32Uint32(pItem1+24+4, libc.Uint32FromInt32(1), 16, 0x10000)
|
|
}
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).FpWhere = _sqlite3ExprDup(tls, db, pWhere, int32(EXPRDUP_REDUCE))
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).FpExprList = _sqlite3ExprListDup(tls, db, pList, int32(EXPRDUP_REDUCE))
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).FpSelect = _sqlite3SelectDup(tls, db, pSelect, int32(EXPRDUP_REDUCE))
|
|
if pWhen != 0 {
|
|
pWhen = _sqlite3PExpr(tls, pParse, int32(TK_NOT), pWhen, uintptr(0))
|
|
(*TTrigger)(unsafe.Pointer(pTrigger)).FpWhen = _sqlite3ExprDup(tls, db, pWhen, int32(EXPRDUP_REDUCE))
|
|
}
|
|
}
|
|
/* Re-enable the lookaside buffer, if it was disabled earlier. */
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable = (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable - 1
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable != 0 {
|
|
v2 = 0
|
|
} else {
|
|
v2 = libc.Int32FromUint16((*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FszTrue)
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.Fsz = libc.Uint16FromInt32(v2)
|
|
_sqlite3ExprDelete(tls, db, pWhere)
|
|
_sqlite3ExprDelete(tls, db, pWhen)
|
|
_sqlite3ExprListDelete(tls, db, pList)
|
|
_sqlite3SelectDelete(tls, db, pSelect)
|
|
if libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed) == int32(1) {
|
|
_fkTriggerDelete(tls, db, pTrigger)
|
|
return uintptr(0)
|
|
}
|
|
switch action {
|
|
case int32(OE_Restrict):
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).Fop = uint8(TK_SELECT)
|
|
case int32(OE_Cascade):
|
|
if !(pChanges != 0) {
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).Fop = uint8(TK_DELETE)
|
|
break
|
|
}
|
|
fallthrough
|
|
default:
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).Fop = uint8(TK_UPDATE)
|
|
}
|
|
(*TTriggerStep)(unsafe.Pointer(pStep)).FpTrig = pTrigger
|
|
(*TTrigger)(unsafe.Pointer(pTrigger)).FpSchema = (*TTable)(unsafe.Pointer(pTab)).FpSchema
|
|
(*TTrigger)(unsafe.Pointer(pTrigger)).FpTabSchema = (*TTable)(unsafe.Pointer(pTab)).FpSchema
|
|
**(**uintptr)(__ccgo_up(pFKey + 48 + uintptr(iAction)*8)) = pTrigger
|
|
if pChanges != 0 {
|
|
v2 = int32(TK_UPDATE)
|
|
} else {
|
|
v2 = int32(TK_DELETE)
|
|
}
|
|
(*TTrigger)(unsafe.Pointer(pTrigger)).Fop = libc.Uint8FromInt32(v2)
|
|
}
|
|
return pTrigger
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Implementation of the xBestIndex method for FTS5 tables. Within the
|
|
// ** WHERE constraint, it searches for the following:
|
|
// **
|
|
// ** 1. A MATCH constraint against the table column.
|
|
// ** 2. A MATCH constraint against the "rank" column.
|
|
// ** 3. A MATCH constraint against some other column.
|
|
// ** 4. An == constraint against the rowid column.
|
|
// ** 5. A < or <= constraint against the rowid column.
|
|
// ** 6. A > or >= constraint against the rowid column.
|
|
// **
|
|
// ** Within the ORDER BY, the following are supported:
|
|
// **
|
|
// ** 5. ORDER BY rank [ASC|DESC]
|
|
// ** 6. ORDER BY rowid [ASC|DESC]
|
|
// **
|
|
// ** Information for the xFilter call is passed via both the idxNum and
|
|
// ** idxStr variables. Specifically, idxNum is a bitmask of the following
|
|
// ** flags used to encode the ORDER BY clause:
|
|
// **
|
|
// ** FTS5_BI_ORDER_RANK
|
|
// ** FTS5_BI_ORDER_ROWID
|
|
// ** FTS5_BI_ORDER_DESC
|
|
// **
|
|
// ** idxStr is used to encode data from the WHERE clause. For each argument
|
|
// ** passed to the xFilter method, the following is appended to idxStr:
|
|
// **
|
|
// ** Match against table column: "m"
|
|
// ** Match against rank column: "r"
|
|
// ** Match against other column: "M<column-number>"
|
|
// ** LIKE against other column: "L<column-number>"
|
|
// ** GLOB against other column: "G<column-number>"
|
|
// ** Equality constraint against the rowid: "="
|
|
// ** A < or <= against the rowid: "<"
|
|
// ** A > or >= against the rowid: ">"
|
|
// **
|
|
// ** This function ensures that there is at most one "r" or "=". And that if
|
|
// ** there exists an "=" then there is no "<" or ">".
|
|
// **
|
|
// ** If an unusable MATCH operator is present in the WHERE clause, then
|
|
// ** SQLITE_CONSTRAINT is returned.
|
|
// **
|
|
// ** Costs are assigned as follows:
|
|
// **
|
|
// ** a) If a MATCH operator is present, the cost depends on the other
|
|
// ** constraints also present. As follows:
|
|
// **
|
|
// ** * No other constraints: cost=50000.0
|
|
// ** * One rowid range constraint: cost=37500.0
|
|
// ** * Both rowid range constraints: cost=30000.0
|
|
// ** * An == rowid constraint: cost=25000.0
|
|
// **
|
|
// ** b) Otherwise, if there is no MATCH:
|
|
// **
|
|
// ** * No other constraints: cost=3000000.0
|
|
// ** * One rowid range constraints: cost=2250000.0
|
|
// ** * Both rowid range constraint: cost=750000.0
|
|
// ** * An == rowid constraint: cost=25.0
|
|
// **
|
|
// ** Costs are not modified by the ORDER BY clause.
|
|
// **
|
|
// ** The ratios used in case (a) are based on informal results obtained from
|
|
// ** the tool/fts5cost.tcl script. The "MATCH and ==" combination has the
|
|
// ** cost set quite high because the query may be a prefix query. Unless
|
|
// ** there is a prefix index, prefix queries with rowid constraints are much
|
|
// ** more expensive than non-prefix queries with rowid constraints.
|
|
// **
|
|
// ** The estimated rows returned is set to the cost/40. For simple queries,
|
|
// ** experimental results show that cost/4 might be about right. But for
|
|
// ** more complex queries that use multiple terms the number of rows might
|
|
// ** be far fewer than this. So we compromise and use cost/40.
|
|
// */
|
|
func _fts5BestIndexMethod(tls *libc.TLS, pVTab uintptr, pInfo uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var bSeenEq, bSeenGt, bSeenLt, bSeenRank, i, iCol, iCons, iIdxStr, iSort, idxFlags, nCol, nSeenMatch, op, v2, v3 int32
|
|
var idxStr, p, p1, pConfig, pTab uintptr
|
|
var nEstRows Ti64
|
|
var v15 float64
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = bSeenEq, bSeenGt, bSeenLt, bSeenRank, i, iCol, iCons, iIdxStr, iSort, idxFlags, idxStr, nCol, nEstRows, nSeenMatch, op, p, p1, pConfig, pTab, v15, v2, v3
|
|
pTab = pVTab
|
|
pConfig = (*TFts5Table)(unsafe.Pointer(pTab)).FpConfig
|
|
nCol = (*TFts5Config)(unsafe.Pointer(pConfig)).FnCol
|
|
idxFlags = 0
|
|
iIdxStr = 0
|
|
iCons = 0
|
|
bSeenEq = 0
|
|
bSeenGt = 0
|
|
bSeenLt = 0
|
|
nSeenMatch = 0
|
|
bSeenRank = 0
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).FbLock != 0 {
|
|
(*TFts5Table)(unsafe.Pointer(pTab)).Fbase.FzErrMsg = Xsqlite3_mprintf(tls, __ccgo_ts+39716, 0)
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
idxStr = Xsqlite3_malloc64(tls, libc.Uint64FromInt64(int64((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FnConstraint)*int64(8)+int64(1)))
|
|
if idxStr == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FidxStr = idxStr
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FneedToFreeIdxStr = int32(1)
|
|
i = 0
|
|
for {
|
|
if !(i < (*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FnConstraint) {
|
|
break
|
|
}
|
|
p = (*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraint + uintptr(i)*12
|
|
iCol = (*Tsqlite3_index_constraint)(unsafe.Pointer(p)).FiColumn
|
|
if libc.Int32FromUint8((*Tsqlite3_index_constraint)(unsafe.Pointer(p)).Fop) == int32(SQLITE_INDEX_CONSTRAINT_MATCH) || libc.Int32FromUint8((*Tsqlite3_index_constraint)(unsafe.Pointer(p)).Fop) == int32(SQLITE_INDEX_CONSTRAINT_EQ) && iCol >= nCol {
|
|
/* A MATCH operator or equivalent */
|
|
if libc.Int32FromUint8((*Tsqlite3_index_constraint)(unsafe.Pointer(p)).Fusable) == 0 || iCol < 0 {
|
|
/* As there exists an unusable MATCH constraint this is an
|
|
** unusable plan. Return SQLITE_CONSTRAINT. */
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr))) = 0
|
|
return int32(SQLITE_CONSTRAINT)
|
|
} else {
|
|
if iCol == nCol+int32(1) {
|
|
if bSeenRank != 0 {
|
|
goto _1
|
|
}
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(v2))) = int8('r')
|
|
bSeenRank = int32(1)
|
|
} else {
|
|
nSeenMatch = nSeenMatch + 1
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(v2))) = int8('M')
|
|
Xsqlite3_snprintf(tls, int32(6), idxStr+uintptr(iIdxStr), __ccgo_ts+5293, libc.VaList(bp+8, iCol))
|
|
iIdxStr = iIdxStr + libc.Int32FromUint64(libc.Xstrlen(tls, idxStr+uintptr(iIdxStr)))
|
|
}
|
|
iCons = iCons + 1
|
|
v2 = iCons
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).FargvIndex = v2
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).Fomit = uint8(1)
|
|
}
|
|
} else {
|
|
if (*Tsqlite3_index_constraint)(unsafe.Pointer(p)).Fusable != 0 {
|
|
if iCol >= 0 && iCol < nCol && _fts5UsePatternMatch(tls, pConfig, p) != 0 {
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
if libc.Int32FromUint8((*Tsqlite3_index_constraint)(unsafe.Pointer(p)).Fop) == int32(FTS5_PATTERN_LIKE) {
|
|
v3 = int32('L')
|
|
} else {
|
|
v3 = int32('G')
|
|
}
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(v2))) = int8(v3)
|
|
Xsqlite3_snprintf(tls, int32(6), idxStr+uintptr(iIdxStr), __ccgo_ts+5293, libc.VaList(bp+8, iCol))
|
|
idxStr = idxStr + uintptr(libc.Xstrlen(tls, idxStr+uintptr(iIdxStr)))
|
|
iCons = iCons + 1
|
|
v2 = iCons
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).FargvIndex = v2
|
|
nSeenMatch = nSeenMatch + 1
|
|
} else {
|
|
if bSeenEq == 0 && libc.Int32FromUint8((*Tsqlite3_index_constraint)(unsafe.Pointer(p)).Fop) == int32(SQLITE_INDEX_CONSTRAINT_EQ) && iCol < 0 {
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(v2))) = int8('=')
|
|
bSeenEq = int32(1)
|
|
iCons = iCons + 1
|
|
v2 = iCons
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).FargvIndex = v2
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).Fomit = uint8(1)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if bSeenEq == 0 {
|
|
i = 0
|
|
for {
|
|
if !(i < (*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FnConstraint) {
|
|
break
|
|
}
|
|
p1 = (*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraint + uintptr(i)*12
|
|
if (*Tsqlite3_index_constraint)(unsafe.Pointer(p1)).FiColumn < 0 && (*Tsqlite3_index_constraint)(unsafe.Pointer(p1)).Fusable != 0 {
|
|
op = libc.Int32FromUint8((*Tsqlite3_index_constraint)(unsafe.Pointer(p1)).Fop)
|
|
if op == int32(SQLITE_INDEX_CONSTRAINT_LT) || op == int32(SQLITE_INDEX_CONSTRAINT_LE) {
|
|
if bSeenLt != 0 {
|
|
goto _10
|
|
}
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(v2))) = int8('<')
|
|
iCons = iCons + 1
|
|
v2 = iCons
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).FargvIndex = v2
|
|
bSeenLt = int32(1)
|
|
} else {
|
|
if op == int32(SQLITE_INDEX_CONSTRAINT_GT) || op == int32(SQLITE_INDEX_CONSTRAINT_GE) {
|
|
if bSeenGt != 0 {
|
|
goto _10
|
|
}
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(v2))) = int8('>')
|
|
iCons = iCons + 1
|
|
v2 = iCons
|
|
(**(**Tsqlite3_index_constraint_usage)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaConstraintUsage + uintptr(i)*8))).FargvIndex = v2
|
|
bSeenGt = int32(1)
|
|
}
|
|
}
|
|
}
|
|
goto _10
|
|
_10:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr))) = int8('\000')
|
|
/* Set idxFlags flags for the ORDER BY clause
|
|
**
|
|
** Note that tokendata=1 tables cannot currently handle "ORDER BY rowid DESC".
|
|
*/
|
|
if (*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FnOrderBy == int32(1) {
|
|
iSort = (**(**Tsqlite3_index_orderby)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaOrderBy))).FiColumn
|
|
if iSort == (*TFts5Config)(unsafe.Pointer(pConfig)).FnCol+int32(1) && nSeenMatch > 0 {
|
|
idxFlags = idxFlags | int32(FTS5_BI_ORDER_RANK)
|
|
} else {
|
|
if iSort == -int32(1) && (!((**(**Tsqlite3_index_orderby)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaOrderBy))).Fdesc != 0) || !((*TFts5Config)(unsafe.Pointer(pConfig)).FbTokendata != 0)) {
|
|
idxFlags = idxFlags | int32(FTS5_BI_ORDER_ROWID)
|
|
}
|
|
}
|
|
if idxFlags&(libc.Int32FromInt32(FTS5_BI_ORDER_RANK)|libc.Int32FromInt32(FTS5_BI_ORDER_ROWID)) != 0 {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).ForderByConsumed = int32(1)
|
|
if (**(**Tsqlite3_index_orderby)(__ccgo_up((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FaOrderBy))).Fdesc != 0 {
|
|
idxFlags = idxFlags | int32(FTS5_BI_ORDER_DESC)
|
|
}
|
|
}
|
|
}
|
|
/* Calculate the estimated cost based on the flags set in idxFlags. */
|
|
if bSeenEq != 0 {
|
|
if nSeenMatch != 0 {
|
|
v15 = float64(25000)
|
|
} else {
|
|
v15 = float64(25)
|
|
}
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = v15
|
|
_fts5SetEstimatedRows(tls, pInfo, int64(1))
|
|
_fts5SetUniqueFlag(tls, pInfo)
|
|
} else {
|
|
if nSeenMatch != 0 {
|
|
if bSeenLt != 0 && bSeenGt != 0 {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = float64(50000)
|
|
} else {
|
|
if bSeenLt != 0 || bSeenGt != 0 {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = float64(37500)
|
|
} else {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = float64(50000)
|
|
}
|
|
}
|
|
nEstRows = int64((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost / libc.Float64FromFloat64(40))
|
|
i = int32(1)
|
|
for {
|
|
if !(i < nSeenMatch) {
|
|
break
|
|
}
|
|
**(**float64)(__ccgo_up(pInfo + 64)) *= float64(2.5)
|
|
nEstRows = nEstRows / int64(2)
|
|
goto _16
|
|
_16:
|
|
;
|
|
i = i + 1
|
|
}
|
|
} else {
|
|
if bSeenLt != 0 && bSeenGt != 0 {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = float64(750000)
|
|
} else {
|
|
if bSeenLt != 0 || bSeenGt != 0 {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = float64(2.25e+06)
|
|
} else {
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost = float64(3e+06)
|
|
}
|
|
}
|
|
nEstRows = int64((*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FestimatedCost / libc.Float64FromFloat64(4))
|
|
}
|
|
_fts5SetEstimatedRows(tls, pInfo, nEstRows)
|
|
}
|
|
(*Tsqlite3_index_info)(unsafe.Pointer(pInfo)).FidxNum = idxFlags
|
|
return SQLITE_OK
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Parse a "special" CREATE VIRTUAL TABLE directive and update
|
|
// ** configuration object pConfig as appropriate.
|
|
// **
|
|
// ** If successful, object pConfig is updated and SQLITE_OK returned. If
|
|
// ** an error occurs, an SQLite error code is returned and an error message
|
|
// ** may be left in *pzErr. It is the responsibility of the caller to
|
|
// ** eventually free any such error message using sqlite3_free().
|
|
// */
|
|
func _fts5ConfigParseSpecial(tls *libc.TLS, pConfig uintptr, zCmd uintptr, zArg uintptr, pzErr uintptr) (r int32) {
|
|
bp := tls.Alloc(96)
|
|
defer tls.Free(96)
|
|
var azArg, p, p1, p2, pSpace uintptr
|
|
var bFirst, nByte, nCmd, nPre, v2 int32
|
|
var nArg Tsqlite3_int64
|
|
var _ /* aDetail at bp+8 */ [4]TFts5Enum
|
|
var _ /* rc at bp+0 */ int32
|
|
_, _, _, _, _, _, _, _, _, _, _ = azArg, bFirst, nArg, nByte, nCmd, nPre, p, p1, p2, pSpace, v2
|
|
**(**int32)(__ccgo_up(bp)) = SQLITE_OK
|
|
nCmd = libc.Int32FromUint64(libc.Xstrlen(tls, zCmd))
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37407, zCmd, nCmd) == 0 {
|
|
nByte = libc.Int32FromUint64(libc.Uint64FromInt64(4) * libc.Uint64FromInt32(FTS5_MAX_PREFIX_INDEXES))
|
|
bFirst = int32(1)
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).FaPrefix == uintptr(0) {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FaPrefix = _sqlite3Fts5MallocZero(tls, bp, int64(nByte))
|
|
if **(**int32)(__ccgo_up(bp)) != 0 {
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
}
|
|
p = zArg
|
|
for int32(1) != 0 {
|
|
nPre = 0
|
|
for int32(**(**int8)(__ccgo_up(p))) == int32(' ') {
|
|
p = p + 1
|
|
}
|
|
if bFirst == 0 && int32(**(**int8)(__ccgo_up(p))) == int32(',') {
|
|
p = p + 1
|
|
for int32(**(**int8)(__ccgo_up(p))) == int32(' ') {
|
|
p = p + 1
|
|
}
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(p))) == int32('\000') {
|
|
break
|
|
}
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(p))) < int32('0') || int32(**(**int8)(__ccgo_up(p))) > int32('9') {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37414, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
break
|
|
}
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).FnPrefix == int32(FTS5_MAX_PREFIX_INDEXES) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37445, libc.VaList(bp+80, int32(FTS5_MAX_PREFIX_INDEXES)))
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
break
|
|
}
|
|
for int32(**(**int8)(__ccgo_up(p))) >= int32('0') && int32(**(**int8)(__ccgo_up(p))) <= int32('9') && nPre < int32(1000) {
|
|
nPre = nPre*int32(10) + (int32(**(**int8)(__ccgo_up(p))) - int32('0'))
|
|
p = p + 1
|
|
}
|
|
if nPre <= 0 || nPre >= int32(1000) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37478, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
break
|
|
}
|
|
**(**int32)(__ccgo_up((*TFts5Config)(unsafe.Pointer(pConfig)).FaPrefix + uintptr((*TFts5Config)(unsafe.Pointer(pConfig)).FnPrefix)*4)) = nPre
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FnPrefix = (*TFts5Config)(unsafe.Pointer(pConfig)).FnPrefix + 1
|
|
bFirst = 0
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37515, zCmd, nCmd) == 0 {
|
|
p1 = zArg
|
|
nArg = libc.Int64FromUint64(libc.Xstrlen(tls, zArg) + uint64(1))
|
|
azArg = _sqlite3Fts5MallocZero(tls, bp, libc.Int64FromUint64(uint64(libc.Uint64FromInt64(8)+libc.Uint64FromInt32(2))*libc.Uint64FromInt64(nArg)))
|
|
if azArg != 0 {
|
|
pSpace = azArg + uintptr(nArg)*8
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).Ft.FazArg != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37524, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
nArg = 0
|
|
for {
|
|
if !(p1 != 0 && **(**int8)(__ccgo_up(p1)) != 0) {
|
|
break
|
|
}
|
|
p2 = _fts5ConfigSkipWhitespace(tls, p1)
|
|
if int32(**(**int8)(__ccgo_up(p2))) == int32('\'') {
|
|
p1 = _fts5ConfigSkipLiteral(tls, p2)
|
|
} else {
|
|
p1 = _fts5ConfigSkipBareword(tls, p2)
|
|
}
|
|
if p1 != 0 {
|
|
libc.Xmemcpy(tls, pSpace, p2, libc.Uint64FromInt64(int64(p1)-int64(p2)))
|
|
**(**uintptr)(__ccgo_up(azArg + uintptr(nArg)*8)) = pSpace
|
|
_sqlite3Fts5Dequote(tls, pSpace)
|
|
pSpace = pSpace + uintptr(int64(p1)-int64(p2)+int64(1))
|
|
p1 = _fts5ConfigSkipWhitespace(tls, p1)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
nArg = nArg + 1
|
|
}
|
|
if p1 == uintptr(0) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37557, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).Ft.FazArg = azArg
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).Ft.FnArg = int32(nArg)
|
|
azArg = uintptr(0)
|
|
}
|
|
}
|
|
}
|
|
Xsqlite3_free(tls, azArg)
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37591, zCmd, nCmd) == 0 {
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).FeContent != FTS5_CONTENT_NORMAL {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37599, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
if **(**int8)(__ccgo_up(zArg)) != 0 {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FeContent = int32(FTS5_CONTENT_EXTERNAL)
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FzContent = _sqlite3Fts5Mprintf(tls, bp, __ccgo_ts+37631, libc.VaList(bp+80, (*TFts5Config)(unsafe.Pointer(pConfig)).FzDb, zArg))
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FeContent = int32(FTS5_CONTENT_NONE)
|
|
}
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37637, zCmd, nCmd) == 0 {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') || int32(**(**int8)(__ccgo_up(zArg + 1))) != int32('\000') {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37656, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbContentlessDelete = libc.BoolInt32(int32(**(**int8)(__ccgo_up(zArg))) == int32('1'))
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37699, zCmd, nCmd) == 0 {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') || int32(**(**int8)(__ccgo_up(zArg + 1))) != int32('\000') {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37656, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbContentlessUnindexed = libc.BoolInt32(int32(**(**int8)(__ccgo_up(zArg))) == int32('1'))
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37721, zCmd, nCmd) == 0 {
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).FzContentRowid != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37735, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FzContentRowid = _sqlite3Fts5Strndup(tls, bp, zArg, -int32(1))
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37773, zCmd, nCmd) == 0 {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') || int32(**(**int8)(__ccgo_up(zArg + 1))) != int32('\000') {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37784, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbColumnsize = libc.BoolInt32(int32(**(**int8)(__ccgo_up(zArg))) == int32('1'))
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37819, zCmd, nCmd) == 0 {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') || int32(**(**int8)(__ccgo_up(zArg + 1))) != int32('\000') {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37826, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbLocale = libc.BoolInt32(int32(**(**int8)(__ccgo_up(zArg))) == int32('1'))
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+5670, zCmd, nCmd) == 0 {
|
|
**(**[4]TFts5Enum)(__ccgo_up(bp + 8)) = [4]TFts5Enum{
|
|
0: {
|
|
FzName: __ccgo_ts + 8512,
|
|
FeVal: int32(FTS5_DETAIL_NONE),
|
|
},
|
|
1: {
|
|
FzName: __ccgo_ts + 19020,
|
|
},
|
|
2: {
|
|
FzName: __ccgo_ts + 37857,
|
|
FeVal: int32(FTS5_DETAIL_COLUMNS),
|
|
},
|
|
3: {},
|
|
}
|
|
v2 = _fts5ConfigSetEnum(tls, bp+8, zArg, pConfig+116)
|
|
**(**int32)(__ccgo_up(bp)) = v2
|
|
if v2 != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37865, 0)
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+37896, zCmd, nCmd) == 0 {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') || int32(**(**int8)(__ccgo_up(zArg + 1))) != int32('\000') {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37906, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbTokendata = libc.BoolInt32(int32(**(**int8)(__ccgo_up(zArg))) == int32('1'))
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+37940, libc.VaList(bp+80, nCmd, zCmd))
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
|
|
func _fts5ConfigSkipLiteral(tls *libc.TLS, pIn uintptr) (r uintptr) {
|
|
var p uintptr
|
|
_ = p
|
|
p = pIn
|
|
switch int32(**(**int8)(__ccgo_up(p))) {
|
|
case int32('n'):
|
|
fallthrough
|
|
case int32('N'):
|
|
if Xsqlite3_strnicmp(tls, __ccgo_ts+1690, p, int32(4)) == 0 {
|
|
p = p + 4
|
|
} else {
|
|
p = uintptr(0)
|
|
}
|
|
case int32('x'):
|
|
fallthrough
|
|
case int32('X'):
|
|
p = p + 1
|
|
if int32(**(**int8)(__ccgo_up(p))) == int32('\'') {
|
|
p = p + 1
|
|
for int32(**(**int8)(__ccgo_up(p))) >= int32('a') && int32(**(**int8)(__ccgo_up(p))) <= int32('f') || int32(**(**int8)(__ccgo_up(p))) >= int32('A') && int32(**(**int8)(__ccgo_up(p))) <= int32('F') || int32(**(**int8)(__ccgo_up(p))) >= int32('0') && int32(**(**int8)(__ccgo_up(p))) <= int32('9') {
|
|
p = p + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(p))) == int32('\'') && 0 == (int64(p)-int64(pIn))%int64(2) {
|
|
p = p + 1
|
|
} else {
|
|
p = uintptr(0)
|
|
}
|
|
} else {
|
|
p = uintptr(0)
|
|
}
|
|
case int32('\''):
|
|
p = p + 1
|
|
for p != 0 {
|
|
if int32(**(**int8)(__ccgo_up(p))) == int32('\'') {
|
|
p = p + 1
|
|
if int32(**(**int8)(__ccgo_up(p))) != int32('\'') {
|
|
break
|
|
}
|
|
}
|
|
p = p + 1
|
|
if int32(**(**int8)(__ccgo_up(p))) == 0 {
|
|
p = uintptr(0)
|
|
}
|
|
}
|
|
default:
|
|
/* maybe a number */
|
|
if int32(**(**int8)(__ccgo_up(p))) == int32('+') || int32(**(**int8)(__ccgo_up(p))) == int32('-') {
|
|
p = p + 1
|
|
}
|
|
for _fts5_isdigit(tls, **(**int8)(__ccgo_up(p))) != 0 {
|
|
p = p + 1
|
|
}
|
|
/* At this point, if the literal was an integer, the parse is
|
|
** finished. Or, if it is a floating point value, it may continue
|
|
** with either a decimal point or an 'E' character. */
|
|
if int32(**(**int8)(__ccgo_up(p))) == int32('.') && _fts5_isdigit(tls, **(**int8)(__ccgo_up(p + 1))) != 0 {
|
|
p = p + uintptr(2)
|
|
for _fts5_isdigit(tls, **(**int8)(__ccgo_up(p))) != 0 {
|
|
p = p + 1
|
|
}
|
|
}
|
|
if p == pIn {
|
|
p = uintptr(0)
|
|
}
|
|
break
|
|
}
|
|
return p
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Read the first token from the nul-terminated string at *pz.
|
|
// */
|
|
func _fts5ExprGetToken(tls *libc.TLS, pParse uintptr, pz uintptr, pToken uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var tok int32
|
|
var z, z2, z21 uintptr
|
|
_, _, _, _ = tok, z, z2, z21
|
|
z = **(**uintptr)(__ccgo_up(pz))
|
|
/* Skip past any whitespace */
|
|
for _fts5ExprIsspace(tls, **(**int8)(__ccgo_up(z))) != 0 {
|
|
z = z + 1
|
|
}
|
|
(*TFts5Token)(unsafe.Pointer(pToken)).Fp = z
|
|
(*TFts5Token)(unsafe.Pointer(pToken)).Fn = int32(1)
|
|
switch int32(**(**int8)(__ccgo_up(z))) {
|
|
case int32('('):
|
|
tok = int32(FTS5_LP)
|
|
case int32(')'):
|
|
tok = int32(FTS5_RP)
|
|
case int32('{'):
|
|
tok = int32(FTS5_LCP)
|
|
case int32('}'):
|
|
tok = int32(FTS5_RCP)
|
|
case int32(':'):
|
|
tok = int32(FTS5_COLON)
|
|
case int32(','):
|
|
tok = int32(FTS5_COMMA)
|
|
case int32('+'):
|
|
tok = int32(FTS5_PLUS)
|
|
case int32('*'):
|
|
tok = int32(FTS5_STAR)
|
|
case int32('-'):
|
|
tok = int32(FTS5_MINUS)
|
|
case int32('^'):
|
|
tok = int32(FTS5_CARET)
|
|
case int32('\000'):
|
|
tok = FTS5_EOF
|
|
case int32('"'):
|
|
tok = int32(FTS5_STRING)
|
|
z2 = z + 1
|
|
for {
|
|
if !(int32(1) != 0) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z2))) == int32('"') {
|
|
z2 = z2 + 1
|
|
if int32(**(**int8)(__ccgo_up(z2))) != int32('"') {
|
|
break
|
|
}
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z2))) == int32('\000') {
|
|
_sqlite3Fts5ParseError(tls, pParse, __ccgo_ts+38547, 0)
|
|
return FTS5_EOF
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
z2 = z2 + 1
|
|
}
|
|
(*TFts5Token)(unsafe.Pointer(pToken)).Fn = int32(int64(z2) - int64(z))
|
|
default:
|
|
if _sqlite3Fts5IsBareword(tls, **(**int8)(__ccgo_up(z))) == 0 {
|
|
_sqlite3Fts5ParseError(tls, pParse, __ccgo_ts+38567, libc.VaList(bp+8, z))
|
|
return FTS5_EOF
|
|
}
|
|
tok = int32(FTS5_STRING)
|
|
z21 = z + 1
|
|
for {
|
|
if !(_sqlite3Fts5IsBareword(tls, **(**int8)(__ccgo_up(z21))) != 0) {
|
|
break
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
z21 = z21 + 1
|
|
}
|
|
(*TFts5Token)(unsafe.Pointer(pToken)).Fn = int32(int64(z21) - int64(z))
|
|
if (*TFts5Token)(unsafe.Pointer(pToken)).Fn == int32(2) && libc.Xmemcmp(tls, (*TFts5Token)(unsafe.Pointer(pToken)).Fp, __ccgo_ts+38598, uint64(2)) == 0 {
|
|
tok = int32(FTS5_OR)
|
|
}
|
|
if (*TFts5Token)(unsafe.Pointer(pToken)).Fn == int32(3) && libc.Xmemcmp(tls, (*TFts5Token)(unsafe.Pointer(pToken)).Fp, __ccgo_ts+38601, uint64(3)) == 0 {
|
|
tok = int32(FTS5_NOT)
|
|
}
|
|
if (*TFts5Token)(unsafe.Pointer(pToken)).Fn == int32(3) && libc.Xmemcmp(tls, (*TFts5Token)(unsafe.Pointer(pToken)).Fp, __ccgo_ts+32408, uint64(3)) == 0 {
|
|
tok = int32(FTS5_AND)
|
|
}
|
|
break
|
|
}
|
|
**(**uintptr)(__ccgo_up(pz)) = (*TFts5Token)(unsafe.Pointer(pToken)).Fp + uintptr((*TFts5Token)(unsafe.Pointer(pToken)).Fn)
|
|
return tok
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This is the xFilter interface for the virtual table. See
|
|
// ** the virtual table xFilter method documentation for additional
|
|
// ** information.
|
|
// **
|
|
// ** There are three possible query strategies:
|
|
// **
|
|
// ** 1. Full-text search using a MATCH operator.
|
|
// ** 2. A by-rowid lookup.
|
|
// ** 3. A full-table scan.
|
|
// */
|
|
func _fts5FilterMethod(tls *libc.TLS, pCursor uintptr, idxNum int32, idxStr uintptr, nVal int32, apVal uintptr) (r int32) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var bDesc, bGlob, bInternal, bOrderByRank, bPrefixInsttoken, i, iCol, iIdxStr, rc, v2, v3 int32
|
|
var pConfig, pCsr, pRank, pRowidEq, pRowidGe, pRowidLe, pTab, pzErr, pzErrmsg, zText1, v6 uintptr
|
|
var _ /* bFreeAndReset at bp+16 */ int32
|
|
var _ /* pExpr at bp+0 */ uintptr
|
|
var _ /* zText at bp+8 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = bDesc, bGlob, bInternal, bOrderByRank, bPrefixInsttoken, i, iCol, iIdxStr, pConfig, pCsr, pRank, pRowidEq, pRowidGe, pRowidLe, pTab, pzErr, pzErrmsg, rc, zText1, v2, v3, v6
|
|
pTab = (*Tsqlite3_vtab_cursor)(unsafe.Pointer(pCursor)).FpVtab
|
|
pConfig = (*TFts5FullTable)(unsafe.Pointer(pTab)).Fp.FpConfig
|
|
pCsr = pCursor
|
|
rc = SQLITE_OK /* True if ORDER BY rank */
|
|
pRank = uintptr(0) /* rank MATCH ? expression (or NULL) */
|
|
pRowidEq = uintptr(0) /* rowid = ? expression (or NULL) */
|
|
pRowidLe = uintptr(0) /* rowid <= ? expression (or NULL) */
|
|
pRowidGe = uintptr(0) /* Column on LHS of MATCH operator */
|
|
pzErrmsg = (*TFts5Config)(unsafe.Pointer(pConfig)).FpzErrmsg
|
|
bPrefixInsttoken = (*TFts5Config)(unsafe.Pointer(pConfig)).FbPrefixInsttoken
|
|
iIdxStr = 0
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
if (*TFts5Cursor)(unsafe.Pointer(pCsr)).FePlan != 0 {
|
|
_fts5FreeCursorComponents(tls, pCsr)
|
|
libc.Xmemset(tls, pCsr+32, 0, uint64(184)-libc.Uint64FromInt64(int64(pCsr+32)-int64(pCsr)))
|
|
}
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FpzErrmsg = pTab + 16
|
|
/* Decode the arguments passed through to this function. */
|
|
i = 0
|
|
for {
|
|
if !(i < nVal) {
|
|
break
|
|
}
|
|
v2 = iIdxStr
|
|
iIdxStr = iIdxStr + 1
|
|
switch int32(**(**int8)(__ccgo_up(idxStr + uintptr(v2)))) {
|
|
case int32('r'):
|
|
pRank = **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8))
|
|
case int32('M'):
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
**(**int32)(__ccgo_up(bp + 16)) = 0
|
|
bInternal = 0
|
|
rc = _fts5ExtractExprText(tls, pConfig, **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8)), bp+8, bp+16)
|
|
if rc != SQLITE_OK {
|
|
goto filter_out
|
|
}
|
|
if **(**uintptr)(__ccgo_up(bp + 8)) == uintptr(0) {
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = __ccgo_ts + 1704
|
|
}
|
|
if Xsqlite3_value_subtype(tls, **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8))) == uint32(FTS5_INSTTOKEN_SUBTYPE) {
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbPrefixInsttoken = int32(1)
|
|
}
|
|
iCol = 0
|
|
for cond := true; cond; cond = int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr)))) >= int32('0') && int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr)))) <= int32('9') {
|
|
iCol = iCol*int32(10) + (int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr)))) - int32('0'))
|
|
iIdxStr = iIdxStr + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(bp + 8))))) == int32('*') {
|
|
/* The user has issued a query of the form "MATCH '*...'". This
|
|
** indicates that the MATCH expression is not a full text query,
|
|
** but a request for an internal parameter. */
|
|
rc = _fts5SpecialMatch(tls, pTab, pCsr, **(**uintptr)(__ccgo_up(bp + 8))+1)
|
|
bInternal = int32(1)
|
|
} else {
|
|
pzErr = pTab + 16
|
|
rc = _sqlite3Fts5ExprNew(tls, pConfig, 0, iCol, **(**uintptr)(__ccgo_up(bp + 8)), bp, pzErr)
|
|
if rc == SQLITE_OK {
|
|
rc = _sqlite3Fts5ExprAnd(tls, pCsr+64, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
}
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 16)) != 0 {
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
_sqlite3Fts5ClearLocale(tls, pConfig)
|
|
}
|
|
if bInternal != 0 || rc != SQLITE_OK {
|
|
goto filter_out
|
|
}
|
|
case int32('L'):
|
|
fallthrough
|
|
case int32('G'):
|
|
bGlob = libc.BoolInt32(int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr-int32(1))))) == int32('G'))
|
|
zText1 = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8)))
|
|
iCol = 0
|
|
for cond := true; cond; cond = int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr)))) >= int32('0') && int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr)))) <= int32('9') {
|
|
iCol = iCol*int32(10) + (int32(**(**int8)(__ccgo_up(idxStr + uintptr(iIdxStr)))) - int32('0'))
|
|
iIdxStr = iIdxStr + 1
|
|
}
|
|
if zText1 != 0 {
|
|
rc = _sqlite3Fts5ExprPattern(tls, pConfig, bGlob, iCol, zText1, bp)
|
|
}
|
|
if rc == SQLITE_OK {
|
|
rc = _sqlite3Fts5ExprAnd(tls, pCsr+64, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
}
|
|
if rc != SQLITE_OK {
|
|
goto filter_out
|
|
}
|
|
case int32('='):
|
|
pRowidEq = **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8))
|
|
case int32('<'):
|
|
pRowidLe = **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8))
|
|
default:
|
|
pRowidGe = **(**uintptr)(__ccgo_up(apVal + uintptr(i)*8))
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if idxNum&int32(FTS5_BI_ORDER_RANK) != 0 {
|
|
v2 = int32(1)
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
bOrderByRank = v2
|
|
if idxNum&int32(FTS5_BI_ORDER_DESC) != 0 {
|
|
v3 = int32(1)
|
|
} else {
|
|
v3 = 0
|
|
}
|
|
v2 = v3
|
|
bDesc = v2
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FbDesc = v2
|
|
/* Set the cursor upper and lower rowid limits. Only some strategies
|
|
** actually use them. This is ok, as the xBestIndex() method leaves the
|
|
** sqlite3_index_constraint.omit flag clear for range constraints
|
|
** on the rowid field. */
|
|
if pRowidEq != 0 {
|
|
v6 = pRowidEq
|
|
pRowidGe = v6
|
|
pRowidLe = v6
|
|
}
|
|
if bDesc != 0 {
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiFirstRowid = _fts5GetRowidLimit(tls, pRowidLe, libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32))
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiLastRowid = _fts5GetRowidLimit(tls, pRowidGe, int64(-libc.Int32FromInt32(1))-(libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)))
|
|
} else {
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiLastRowid = _fts5GetRowidLimit(tls, pRowidLe, libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32))
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiFirstRowid = _fts5GetRowidLimit(tls, pRowidGe, int64(-libc.Int32FromInt32(1))-(libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)))
|
|
}
|
|
rc = _sqlite3Fts5IndexLoadConfig(tls, (*TFts5FullTable)(unsafe.Pointer(pTab)).Fp.FpIndex)
|
|
if rc != SQLITE_OK {
|
|
goto filter_out
|
|
}
|
|
if (*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr != 0 {
|
|
/* If pSortCsr is non-NULL, then this call is being made as part of
|
|
** processing for a "... MATCH <expr> ORDER BY rank" query (ePlan is
|
|
** set to FTS5_PLAN_SORTED_MATCH). pSortCsr is the cursor that will
|
|
** return results to the user for this query. The current cursor
|
|
** (pCursor) is used to execute the query issued by function
|
|
** fts5CursorFirstSorted() above. */
|
|
if (*TFts5Cursor)(unsafe.Pointer((*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr)).FbDesc != 0 {
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiLastRowid = (*TFts5Cursor)(unsafe.Pointer((*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr)).FiFirstRowid
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiFirstRowid = (*TFts5Cursor)(unsafe.Pointer((*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr)).FiLastRowid
|
|
} else {
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiLastRowid = (*TFts5Cursor)(unsafe.Pointer((*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr)).FiLastRowid
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FiFirstRowid = (*TFts5Cursor)(unsafe.Pointer((*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr)).FiFirstRowid
|
|
}
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FePlan = int32(FTS5_PLAN_SOURCE)
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FpExpr = (*TFts5Cursor)(unsafe.Pointer((*TFts5FullTable)(unsafe.Pointer(pTab)).FpSortCsr)).FpExpr
|
|
rc = _fts5CursorFirst(tls, pTab, pCsr, bDesc)
|
|
} else {
|
|
if (*TFts5Cursor)(unsafe.Pointer(pCsr)).FpExpr != 0 {
|
|
rc = _fts5CursorParseRank(tls, pConfig, pCsr, pRank)
|
|
if rc == SQLITE_OK {
|
|
if bOrderByRank != 0 {
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FePlan = int32(FTS5_PLAN_SORTED_MATCH)
|
|
rc = _fts5CursorFirstSorted(tls, pTab, pCsr, bDesc)
|
|
} else {
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FePlan = int32(FTS5_PLAN_MATCH)
|
|
rc = _fts5CursorFirst(tls, pTab, pCsr, bDesc)
|
|
}
|
|
}
|
|
} else {
|
|
if (*TFts5Config)(unsafe.Pointer(pConfig)).FzContent == uintptr(0) {
|
|
_fts5SetVtabError(tls, pTab, __ccgo_ts+39917, libc.VaList(bp+32, (*TFts5Config)(unsafe.Pointer(pConfig)).FzName))
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
/* This is either a full-table scan (ePlan==FTS5_PLAN_SCAN) or a lookup
|
|
** by rowid (ePlan==FTS5_PLAN_ROWID). */
|
|
if pRowidEq != 0 {
|
|
v2 = int32(FTS5_PLAN_ROWID)
|
|
} else {
|
|
v2 = int32(FTS5_PLAN_SCAN)
|
|
}
|
|
(*TFts5Cursor)(unsafe.Pointer(pCsr)).FePlan = v2
|
|
rc = _sqlite3Fts5StorageStmt(tls, (*TFts5FullTable)(unsafe.Pointer(pTab)).FpStorage, _fts5StmtType(tls, pCsr), pCsr+56, pTab+16)
|
|
if rc == SQLITE_OK {
|
|
if pRowidEq != uintptr(0) {
|
|
Xsqlite3_bind_value(tls, (*TFts5Cursor)(unsafe.Pointer(pCsr)).FpStmt, int32(1), pRowidEq)
|
|
} else {
|
|
Xsqlite3_bind_int64(tls, (*TFts5Cursor)(unsafe.Pointer(pCsr)).FpStmt, int32(1), (*TFts5Cursor)(unsafe.Pointer(pCsr)).FiFirstRowid)
|
|
Xsqlite3_bind_int64(tls, (*TFts5Cursor)(unsafe.Pointer(pCsr)).FpStmt, int32(2), (*TFts5Cursor)(unsafe.Pointer(pCsr)).FiLastRowid)
|
|
}
|
|
rc = _fts5NextMethod(tls, pCursor)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
goto filter_out
|
|
filter_out:
|
|
;
|
|
_sqlite3Fts5ExprFree(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FpzErrmsg = pzErrmsg
|
|
(*TFts5Config)(unsafe.Pointer(pConfig)).FbPrefixInsttoken = bPrefixInsttoken
|
|
return rc
|
|
}
|
|
|
|
func _fts5PorterStep1B(tls *libc.TLS, aBuf uintptr, pnBuf uintptr) (r int32) {
|
|
var nBuf, ret int32
|
|
_, _ = nBuf, ret
|
|
ret = 0
|
|
nBuf = **(**int32)(__ccgo_up(pnBuf))
|
|
switch int32(**(**int8)(__ccgo_up(aBuf + uintptr(nBuf-int32(2))))) {
|
|
case int32('e'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42176, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(3)), __ccgo_ts+42180, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3) + int32(2)
|
|
}
|
|
} else {
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42183, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
if _fts5Porter_Vowel(tls, aBuf, nBuf-int32(2)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2)
|
|
ret = int32(1)
|
|
}
|
|
}
|
|
}
|
|
case int32('n'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42186, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_Vowel(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
ret = int32(1)
|
|
}
|
|
}
|
|
break
|
|
}
|
|
return ret
|
|
}
|
|
|
|
/*
|
|
** GENERATED CODE ENDS HERE (mkportersteps.tcl)
|
|
***************************************************************************
|
|
**************************************************************************/
|
|
|
|
func _fts5PorterStep1B2(tls *libc.TLS, aBuf uintptr, pnBuf uintptr) (r int32) {
|
|
var nBuf, ret int32
|
|
_, _ = nBuf, ret
|
|
ret = 0
|
|
nBuf = **(**int32)(__ccgo_up(pnBuf))
|
|
switch int32(**(**int8)(__ccgo_up(aBuf + uintptr(nBuf-int32(2))))) {
|
|
case int32('a'):
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41990, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(2)), __ccgo_ts+41970, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2) + int32(3)
|
|
ret = int32(1)
|
|
}
|
|
case int32('b'):
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41993, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(2)), __ccgo_ts+41996, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2) + int32(3)
|
|
ret = int32(1)
|
|
}
|
|
case int32('i'):
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42000, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(2)), __ccgo_ts+41986, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2) + int32(3)
|
|
ret = int32(1)
|
|
}
|
|
break
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func _fts5PorterStep2(tls *libc.TLS, aBuf uintptr, pnBuf uintptr) (r int32) {
|
|
var nBuf, ret int32
|
|
_, _ = nBuf, ret
|
|
ret = 0
|
|
nBuf = **(**int32)(__ccgo_up(pnBuf))
|
|
switch int32(**(**int8)(__ccgo_up(aBuf + uintptr(nBuf-int32(2))))) {
|
|
case int32('a'):
|
|
if nBuf > int32(7) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42003, aBuf+uintptr(nBuf-int32(7)), uint64(7)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(7)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(7)), __ccgo_ts+41970, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(7) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(6) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42011, aBuf+uintptr(nBuf-int32(6)), uint64(6)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(6)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(6)), __ccgo_ts+42018, uint64(4))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(6) + int32(4)
|
|
}
|
|
}
|
|
}
|
|
case int32('c'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42023, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+41919, uint64(4))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(4)
|
|
}
|
|
} else {
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42028, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+41914, uint64(4))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(4)
|
|
}
|
|
}
|
|
}
|
|
case int32('e'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42033, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+41986, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(3)
|
|
}
|
|
}
|
|
case int32('g'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42038, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+17169, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(3)
|
|
}
|
|
}
|
|
case int32('l'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42043, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(3)), __ccgo_ts+41996, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42047, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+41911, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(2)
|
|
}
|
|
} else {
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42052, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41955, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42058, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(3)), __ccgo_ts+42062, uint64(1))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3) + int32(1)
|
|
}
|
|
} else {
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42064, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41978, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(3)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
case int32('o'):
|
|
if nBuf > int32(7) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42070, aBuf+uintptr(nBuf-int32(7)), uint64(7)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(7)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(7)), __ccgo_ts+41986, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(7) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42078, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41970, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42084, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+41970, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(3)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
case int32('s'):
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42089, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41911, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(2)
|
|
}
|
|
} else {
|
|
if nBuf > int32(7) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42095, aBuf+uintptr(nBuf-int32(7)), uint64(7)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(7)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(7)), __ccgo_ts+41982, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(7) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(7) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42103, aBuf+uintptr(nBuf-int32(7)), uint64(7)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(7)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(7)), __ccgo_ts+42111, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(7) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(7) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42115, aBuf+uintptr(nBuf-int32(7)), uint64(7)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(7)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(7)), __ccgo_ts+41978, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(7) + int32(3)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
case int32('t'):
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42123, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41911, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(2)
|
|
}
|
|
} else {
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42129, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41982, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(6) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42135, aBuf+uintptr(nBuf-int32(6)), uint64(6)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(6)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(6)), __ccgo_ts+41996, uint64(3))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(6) + int32(3)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func _fts5PorterStep3(tls *libc.TLS, aBuf uintptr, pnBuf uintptr) (r int32) {
|
|
var nBuf, ret int32
|
|
_, _ = nBuf, ret
|
|
ret = 0
|
|
nBuf = **(**int32)(__ccgo_up(pnBuf))
|
|
switch int32(**(**int8)(__ccgo_up(aBuf + uintptr(nBuf-int32(2))))) {
|
|
case int32('a'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42142, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(4)), __ccgo_ts+41927, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4) + int32(2)
|
|
}
|
|
}
|
|
case int32('s'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42147, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4)
|
|
}
|
|
}
|
|
case int32('t'):
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42152, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41927, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(2)
|
|
}
|
|
} else {
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42158, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41927, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(2)
|
|
}
|
|
}
|
|
}
|
|
case int32('u'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42111, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
case int32('v'):
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42164, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5)
|
|
}
|
|
}
|
|
case int32('z'):
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+42170, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt0(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
libc.Xmemcpy(tls, aBuf+uintptr(nBuf-int32(5)), __ccgo_ts+41911, uint64(2))
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5) + int32(2)
|
|
}
|
|
}
|
|
break
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func _fts5PorterStep4(tls *libc.TLS, aBuf uintptr, pnBuf uintptr) (r int32) {
|
|
var nBuf, ret int32
|
|
_, _ = nBuf, ret
|
|
ret = 0
|
|
nBuf = **(**int32)(__ccgo_up(pnBuf))
|
|
switch int32(**(**int8)(__ccgo_up(aBuf + uintptr(nBuf-int32(2))))) {
|
|
case int32('a'):
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41911, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(2)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2)
|
|
}
|
|
}
|
|
case int32('c'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41914, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4)
|
|
}
|
|
} else {
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41919, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4)
|
|
}
|
|
}
|
|
}
|
|
case int32('e'):
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41924, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(2)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2)
|
|
}
|
|
}
|
|
case int32('i'):
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41927, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(2)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2)
|
|
}
|
|
}
|
|
case int32('l'):
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41930, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4)
|
|
}
|
|
} else {
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41935, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4)
|
|
}
|
|
}
|
|
}
|
|
case int32('n'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41940, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41944, aBuf+uintptr(nBuf-int32(5)), uint64(5)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(5)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(5)
|
|
}
|
|
} else {
|
|
if nBuf > int32(4) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41950, aBuf+uintptr(nBuf-int32(4)), uint64(4)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(4)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(4)
|
|
}
|
|
} else {
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41955, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
case int32('o'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41959, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1_and_S_or_T(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(2) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41963, aBuf+uintptr(nBuf-int32(2)), uint64(2)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(2)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(2)
|
|
}
|
|
}
|
|
}
|
|
case int32('s'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41966, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
case int32('t'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41970, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
} else {
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41974, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
}
|
|
case int32('u'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41978, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
case int32('v'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41982, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
case int32('z'):
|
|
if nBuf > int32(3) && 0 == libc.Xmemcmp(tls, __ccgo_ts+41986, aBuf+uintptr(nBuf-int32(3)), uint64(3)) {
|
|
if _fts5Porter_MGt1(tls, aBuf, nBuf-int32(3)) != 0 {
|
|
**(**int32)(__ccgo_up(pnBuf)) = nBuf - int32(3)
|
|
}
|
|
}
|
|
break
|
|
}
|
|
return ret
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Allocate a trigram tokenizer.
|
|
// */
|
|
func _fts5TriCreate(tls *libc.TLS, pUnused uintptr, azArg uintptr, nArg int32, ppOut uintptr) (r int32) {
|
|
var i, rc, v2 int32
|
|
var pNew, zArg uintptr
|
|
_, _, _, _, _ = i, pNew, rc, zArg, v2
|
|
rc = SQLITE_OK
|
|
pNew = uintptr(0)
|
|
_ = pUnused
|
|
if nArg%int32(2) != 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
pNew = Xsqlite3_malloc64(tls, uint64(8))
|
|
if pNew == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
(*TTrigramTokenizer)(unsafe.Pointer(pNew)).FbFold = int32(1)
|
|
(*TTrigramTokenizer)(unsafe.Pointer(pNew)).FiFoldParam = 0
|
|
i = 0
|
|
for {
|
|
if !(rc == SQLITE_OK && i < nArg) {
|
|
break
|
|
}
|
|
zArg = **(**uintptr)(__ccgo_up(azArg + uintptr(i+int32(1))*8))
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+42190) {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') || **(**int8)(__ccgo_up(zArg + 1)) != 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TTrigramTokenizer)(unsafe.Pointer(pNew)).FbFold = libc.BoolInt32(int32(**(**int8)(__ccgo_up(zArg))) == int32('0'))
|
|
}
|
|
} else {
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+41876) {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') && int32(**(**int8)(__ccgo_up(zArg))) != int32('2') || **(**int8)(__ccgo_up(zArg + 1)) != 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') {
|
|
v2 = int32(2)
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
(*TTrigramTokenizer)(unsafe.Pointer(pNew)).FiFoldParam = v2
|
|
}
|
|
} else {
|
|
rc = int32(SQLITE_ERROR)
|
|
}
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + int32(2)
|
|
}
|
|
if (*TTrigramTokenizer)(unsafe.Pointer(pNew)).FiFoldParam != 0 && (*TTrigramTokenizer)(unsafe.Pointer(pNew)).FbFold == 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
}
|
|
if rc != SQLITE_OK {
|
|
_fts5TriDelete(tls, pNew)
|
|
pNew = uintptr(0)
|
|
}
|
|
}
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppOut)) = pNew
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Create a "unicode61" tokenizer.
|
|
// */
|
|
func _fts5UnicodeCreate(tls *libc.TLS, pUnused uintptr, azArg uintptr, nArg int32, ppOut uintptr) (r int32) {
|
|
var i, rc int32
|
|
var p, zArg, zCat uintptr
|
|
_, _, _, _, _ = i, p, rc, zArg, zCat
|
|
rc = SQLITE_OK /* Return code */
|
|
p = uintptr(0) /* New tokenizer object */
|
|
_ = pUnused
|
|
if nArg%int32(2) != 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
p = Xsqlite3_malloc64(tls, uint64(192))
|
|
if p != 0 {
|
|
zCat = __ccgo_ts + 41856
|
|
libc.Xmemset(tls, p, 0, uint64(192))
|
|
(*TUnicode61Tokenizer)(unsafe.Pointer(p)).FeRemoveDiacritic = int32(FTS5_REMOVE_DIACRITICS_SIMPLE)
|
|
(*TUnicode61Tokenizer)(unsafe.Pointer(p)).FnFold = int32(64)
|
|
(*TUnicode61Tokenizer)(unsafe.Pointer(p)).FaFold = Xsqlite3_malloc64(tls, uint64(libc.Uint64FromInt32((*TUnicode61Tokenizer)(unsafe.Pointer(p)).FnFold)*uint64(1)))
|
|
if (*TUnicode61Tokenizer)(unsafe.Pointer(p)).FaFold == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
}
|
|
/* Search for a "categories" argument */
|
|
i = 0
|
|
for {
|
|
if !(rc == SQLITE_OK && i < nArg) {
|
|
break
|
|
}
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+41865) {
|
|
zCat = **(**uintptr)(__ccgo_up(azArg + uintptr(i+int32(1))*8))
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + int32(2)
|
|
}
|
|
if rc == SQLITE_OK {
|
|
rc = _unicodeSetCategories(tls, p, zCat)
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(rc == SQLITE_OK && i < nArg) {
|
|
break
|
|
}
|
|
zArg = **(**uintptr)(__ccgo_up(azArg + uintptr(i+int32(1))*8))
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+41876) {
|
|
if int32(**(**int8)(__ccgo_up(zArg))) != int32('0') && int32(**(**int8)(__ccgo_up(zArg))) != int32('1') && int32(**(**int8)(__ccgo_up(zArg))) != int32('2') || **(**int8)(__ccgo_up(zArg + 1)) != 0 {
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
(*TUnicode61Tokenizer)(unsafe.Pointer(p)).FeRemoveDiacritic = int32(**(**int8)(__ccgo_up(zArg))) - int32('0')
|
|
}
|
|
} else {
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+41834) {
|
|
rc = _fts5UnicodeAddExceptions(tls, p, zArg, int32(1))
|
|
} else {
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+41845) {
|
|
rc = _fts5UnicodeAddExceptions(tls, p, zArg, 0)
|
|
} else {
|
|
if 0 == Xsqlite3_stricmp(tls, **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8)), __ccgo_ts+41865) {
|
|
/* no-op */
|
|
} else {
|
|
rc = int32(SQLITE_ERROR)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + int32(2)
|
|
}
|
|
} else {
|
|
rc = int32(SQLITE_NOMEM)
|
|
}
|
|
if rc != SQLITE_OK {
|
|
_fts5UnicodeDelete(tls, p)
|
|
p = uintptr(0)
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppOut)) = p
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** SQL function: geopoly_svg(X, ....)
|
|
// **
|
|
// ** Interpret X as a polygon and render it as a SVG <polyline>.
|
|
// ** Additional arguments are added as attributes to the <polyline>.
|
|
// */
|
|
func _geopolySvgFunc(tls *libc.TLS, context uintptr, argc int32, argv uintptr) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var cSep int8
|
|
var db, p, x, z uintptr
|
|
var i int32
|
|
_, _, _, _, _, _ = cSep, db, i, p, x, z
|
|
if argc < int32(1) {
|
|
return
|
|
}
|
|
p = _geopolyFuncParam(tls, context, **(**uintptr)(__ccgo_up(argv)), uintptr(0))
|
|
if p != 0 {
|
|
db = Xsqlite3_context_db_handle(tls, context)
|
|
x = Xsqlite3_str_new(tls, db)
|
|
cSep = int8('\'')
|
|
Xsqlite3_str_appendf(tls, x, __ccgo_ts+29859, 0)
|
|
i = 0
|
|
for {
|
|
if !(i < (*TGeoPoly)(unsafe.Pointer(p)).FnVertex) {
|
|
break
|
|
}
|
|
Xsqlite3_str_appendf(tls, x, __ccgo_ts+29877, libc.VaList(bp+8, int32(cSep), float64(**(**TGeoCoord)(__ccgo_up(p + 8 + uintptr(i*int32(2))*4))), float64(**(**TGeoCoord)(__ccgo_up(p + 8 + uintptr(i*int32(2)+int32(1))*4)))))
|
|
cSep = int8(' ')
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
Xsqlite3_str_appendf(tls, x, __ccgo_ts+29885, libc.VaList(bp+8, float64(**(**TGeoCoord)(__ccgo_up(p + 8 + uintptr(libc.Int32FromInt32(0)*libc.Int32FromInt32(2))*4))), float64(**(**TGeoCoord)(__ccgo_up(p + 8 + uintptr(libc.Int32FromInt32(0)*libc.Int32FromInt32(2)+libc.Int32FromInt32(1))*4)))))
|
|
i = int32(1)
|
|
for {
|
|
if !(i < argc) {
|
|
break
|
|
}
|
|
z = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv + uintptr(i)*8)))
|
|
if z != 0 && **(**int8)(__ccgo_up(z)) != 0 {
|
|
Xsqlite3_str_appendf(tls, x, __ccgo_ts+29893, libc.VaList(bp+8, z))
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
Xsqlite3_str_appendf(tls, x, __ccgo_ts+29897, 0)
|
|
Xsqlite3_result_text(tls, context, Xsqlite3_str_finish(tls, x), -int32(1), __ccgo_fp(Xsqlite3_free))
|
|
Xsqlite3_free(tls, p)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /* c is a control character. Append the canonical JSON representation
|
|
// ** of that control character to p.
|
|
// **
|
|
// ** This routine assumes that the output buffer has already been enlarged
|
|
// ** sufficiently to hold the worst-case encoding plus a nul terminator.
|
|
// */
|
|
func _jsonAppendControlChar(tls *libc.TLS, p uintptr, c Tu8) {
|
|
if _aSpecial[c] != 0 {
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed))) = int8('\\')
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed+uint64(1)))) = _aSpecial[c]
|
|
**(**Tu64)(__ccgo_up(p + 24)) += uint64(2)
|
|
} else {
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed))) = int8('\\')
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed+uint64(1)))) = int8('u')
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed+uint64(2)))) = int8('0')
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed+uint64(3)))) = int8('0')
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed+uint64(4)))) = **(**int8)(__ccgo_up(__ccgo_ts + 1726 + uintptr(libc.Int32FromUint8(c)>>int32(4))))
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(p)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(p)).FnUsed+uint64(5)))) = **(**int8)(__ccgo_up(__ccgo_ts + 1726 + uintptr(libc.Int32FromUint8(c)&int32(0xf))))
|
|
**(**Tu64)(__ccgo_up(p + 24)) += uint64(6)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Append the path name for the current element.
|
|
// */
|
|
func _jsonAppendPathName(tls *libc.TLS, p uintptr) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var i, k, n Tu32
|
|
var needQuote int32
|
|
var z uintptr
|
|
var _ /* sz at bp+0 */ Tu32
|
|
_, _, _, _, _ = i, k, n, needQuote, z
|
|
if libc.Int32FromUint8((*TJsonEachCursor)(unsafe.Pointer(p)).FeType) == int32(JSONB_ARRAY) {
|
|
_jsonPrintf(tls, int32(30), p+56, __ccgo_ts+26945, libc.VaList(bp+16, (**(**TJsonParent)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FaParent + uintptr((*TJsonEachCursor)(unsafe.Pointer(p)).FnParent-uint32(1))*24))).FiKey))
|
|
} else {
|
|
**(**Tu32)(__ccgo_up(bp)) = uint32(0)
|
|
needQuote = 0
|
|
n = _jsonbPayloadSize(tls, p+192, (*TJsonEachCursor)(unsafe.Pointer(p)).Fi, bp)
|
|
k = (*TJsonEachCursor)(unsafe.Pointer(p)).Fi + n
|
|
z = (*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FaBlob + uintptr(k)
|
|
if **(**Tu32)(__ccgo_up(bp)) == uint32(0) || !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z)))])&libc.Int32FromInt32(0x02) != 0) {
|
|
needQuote = int32(1)
|
|
} else {
|
|
i = uint32(0)
|
|
for {
|
|
if !(i < **(**Tu32)(__ccgo_up(bp))) {
|
|
break
|
|
}
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i))))])&libc.Int32FromInt32(0x06) != 0) {
|
|
needQuote = int32(1)
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if needQuote != 0 {
|
|
_jsonPrintf(tls, libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp))+uint32(4)), p+56, __ccgo_ts+26952, libc.VaList(bp+16, **(**Tu32)(__ccgo_up(bp)), z))
|
|
} else {
|
|
_jsonPrintf(tls, libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp))+uint32(2)), p+56, __ccgo_ts+26960, libc.VaList(bp+16, **(**Tu32)(__ccgo_up(bp)), z))
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** json_array_length(JSON)
|
|
// ** json_array_length(JSON, PATH)
|
|
// **
|
|
// ** Return the number of elements in the top-level JSON array.
|
|
// ** Return 0 if the input is not a well-formed JSON array.
|
|
// */
|
|
func _jsonArrayLengthFunc(tls *libc.TLS, ctx uintptr, argc int32, argv uintptr) {
|
|
var cnt Tsqlite3_int64
|
|
var eErr Tu8
|
|
var i Tu32
|
|
var p, zPath, v1 uintptr
|
|
_, _, _, _, _, _ = cnt, eErr, i, p, zPath, v1 /* The parse */
|
|
cnt = 0
|
|
eErr = uint8(0)
|
|
p = _jsonParseFuncArg(tls, ctx, **(**uintptr)(__ccgo_up(argv)), uint32(0))
|
|
if p == uintptr(0) {
|
|
return
|
|
}
|
|
if argc == int32(2) {
|
|
zPath = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv + 1*8)))
|
|
if zPath == uintptr(0) {
|
|
_jsonParseFree(tls, p)
|
|
return
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('$') {
|
|
v1 = zPath + uintptr(1)
|
|
} else {
|
|
v1 = __ccgo_ts + 26672
|
|
}
|
|
i = _jsonLookupStep(tls, p, uint32(0), v1, uint32(0))
|
|
if i >= uint32(JSON_LOOKUP_PATHERROR) {
|
|
if i == uint32(JSON_LOOKUP_NOTFOUND) {
|
|
/* no-op */
|
|
} else {
|
|
_jsonBadPathError(tls, ctx, zPath, libc.Int32FromUint32(i))
|
|
}
|
|
eErr = uint8(1)
|
|
i = uint32(0)
|
|
}
|
|
} else {
|
|
i = uint32(0)
|
|
}
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(p)).FaBlob + uintptr(i))))&int32(0x0f) == int32(JSONB_ARRAY) {
|
|
cnt = libc.Int64FromUint32(_jsonbArrayCount(tls, p, i))
|
|
}
|
|
if !(eErr != 0) {
|
|
Xsqlite3_result_int64(tls, ctx, cnt)
|
|
}
|
|
_jsonParseFree(tls, p)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /* Constructor for the json_each virtual table */
|
|
func _jsonEachConnect(tls *libc.TLS, db uintptr, pAux uintptr, argc int32, argv uintptr, ppVtab uintptr, pzErr uintptr) (r int32) {
|
|
var pNew uintptr
|
|
var rc, v1 int32
|
|
_, _, _ = pNew, rc, v1
|
|
/* Column numbers */
|
|
/* The xBestIndex method assumes that the JSON and ROOT columns are
|
|
** the last two columns in the table. Should this ever changes, be
|
|
** sure to update the xBestIndex method. */
|
|
_ = pzErr
|
|
_ = argv
|
|
_ = argc
|
|
_ = pAux
|
|
rc = Xsqlite3_declare_vtab(tls, db, __ccgo_ts+26862)
|
|
if rc == SQLITE_OK {
|
|
pNew = _sqlite3DbMallocZero(tls, db, uint64(40))
|
|
**(**uintptr)(__ccgo_up(ppVtab)) = pNew
|
|
if pNew == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
Xsqlite3_vtab_config(tls, db, int32(SQLITE_VTAB_INNOCUOUS), 0)
|
|
(*TJsonEachConnection)(unsafe.Pointer(pNew)).Fdb = db
|
|
if int32(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(argv)) + 4))) == int32('b') {
|
|
v1 = int32(2)
|
|
} else {
|
|
v1 = int32(1)
|
|
}
|
|
(*TJsonEachConnection)(unsafe.Pointer(pNew)).FeMode = libc.Uint8FromInt32(v1)
|
|
(*TJsonEachConnection)(unsafe.Pointer(pNew)).FbRecursive = libc.BoolUint8(int32(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(argv)) + uintptr(int32(4)+libc.Int32FromUint8((*TJsonEachConnection)(unsafe.Pointer(pNew)).FeMode))))) == int32('t'))
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /* Start a search on a new JSON string */
|
|
func _jsonEachFilter(tls *libc.TLS, cur uintptr, idxNum int32, idxStr uintptr, argc int32, argv uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var i, n, v1 Tu32
|
|
var p, zRoot uintptr
|
|
var v2 int32
|
|
var _ /* sz at bp+0 */ Tu32
|
|
_, _, _, _, _, _ = i, n, p, zRoot, v1, v2
|
|
p = cur
|
|
zRoot = uintptr(0)
|
|
_ = idxStr
|
|
_ = argc
|
|
_jsonEachCursorReset(tls, p)
|
|
if idxNum == 0 {
|
|
return SQLITE_OK
|
|
}
|
|
libc.Xmemset(tls, p+192, 0, uint64(72))
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FnJPRef = uint32(1)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.Fdb = (*TJsonEachCursor)(unsafe.Pointer(p)).Fdb
|
|
if _jsonArgIsJsonb(tls, **(**uintptr)(__ccgo_up(argv)), p+192) != 0 {
|
|
/* We have JSONB */
|
|
} else {
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FzJson = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FnJson = Xsqlite3_value_bytes(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
if (*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FzJson == uintptr(0) {
|
|
v1 = libc.Uint32FromInt32(0)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FiEnd = v1
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = v1
|
|
return SQLITE_OK
|
|
}
|
|
if _jsonConvertTextToBlob(tls, p+192, uintptr(0)) != 0 {
|
|
if (*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.Foom != 0 {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
goto json_each_malformed_input
|
|
}
|
|
}
|
|
if idxNum == int32(3) {
|
|
zRoot = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv + 1*8)))
|
|
if zRoot == uintptr(0) {
|
|
return SQLITE_OK
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zRoot))) != int32('$') {
|
|
Xsqlite3_free(tls, (*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg)
|
|
(*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg = _jsonBadPathError(tls, uintptr(0), zRoot, 0)
|
|
_jsonEachCursorReset(tls, p)
|
|
if (*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg != 0 {
|
|
v2 = int32(SQLITE_ERROR)
|
|
} else {
|
|
v2 = int32(SQLITE_NOMEM)
|
|
}
|
|
return v2
|
|
}
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FnRoot = libc.Uint32FromInt32(_sqlite3Strlen30(tls, zRoot))
|
|
if int32(**(**int8)(__ccgo_up(zRoot + 1))) == 0 {
|
|
v1 = libc.Uint32FromInt32(0)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = v1
|
|
i = v1
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FeType = uint8(0)
|
|
} else {
|
|
i = _jsonLookupStep(tls, p+192, uint32(0), zRoot+uintptr(1), uint32(0))
|
|
if i >= uint32(JSON_LOOKUP_PATHERROR) {
|
|
if i == uint32(JSON_LOOKUP_NOTFOUND) {
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = uint32(0)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FeType = uint8(0)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FiEnd = uint32(0)
|
|
return SQLITE_OK
|
|
}
|
|
Xsqlite3_free(tls, (*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg)
|
|
(*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg = _jsonBadPathError(tls, uintptr(0), zRoot, 0)
|
|
_jsonEachCursorReset(tls, p)
|
|
if (*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg != 0 {
|
|
v2 = int32(SQLITE_ERROR)
|
|
} else {
|
|
v2 = int32(SQLITE_NOMEM)
|
|
}
|
|
return v2
|
|
}
|
|
if (*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FiLabel != 0 {
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = (*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FiLabel
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FeType = uint8(JSONB_OBJECT)
|
|
} else {
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = i
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FeType = uint8(JSONB_ARRAY)
|
|
}
|
|
}
|
|
_jsonAppendRaw(tls, p+56, zRoot, (*TJsonEachCursor)(unsafe.Pointer(p)).FnRoot)
|
|
} else {
|
|
v1 = libc.Uint32FromInt32(0)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = v1
|
|
i = v1
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FeType = uint8(0)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FnRoot = uint32(1)
|
|
_jsonAppendRaw(tls, p+56, __ccgo_ts+26966, uint32(1))
|
|
}
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FnParent = uint32(0)
|
|
n = _jsonbPayloadSize(tls, p+192, i, bp)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FiEnd = i + n + **(**Tu32)(__ccgo_up(bp))
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FaBlob + uintptr(i))))&int32(0x0f) >= int32(JSONB_ARRAY) && !((*TJsonEachCursor)(unsafe.Pointer(p)).FbRecursive != 0) {
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).Fi = i + n
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FeType = libc.Uint8FromInt32(libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FsParse.FaBlob + uintptr(i)))) & int32(0x0f))
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FaParent = _sqlite3DbMallocZero(tls, (*TJsonEachCursor)(unsafe.Pointer(p)).Fdb, uint64(24))
|
|
if (*TJsonEachCursor)(unsafe.Pointer(p)).FaParent == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FnParent = uint32(1)
|
|
(*TJsonEachCursor)(unsafe.Pointer(p)).FnParentAlloc = uint32(1)
|
|
(**(**TJsonParent)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FaParent))).FiKey = 0
|
|
(**(**TJsonParent)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FaParent))).FiEnd = (*TJsonEachCursor)(unsafe.Pointer(p)).FiEnd
|
|
(**(**TJsonParent)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FaParent))).FiHead = (*TJsonEachCursor)(unsafe.Pointer(p)).Fi
|
|
(**(**TJsonParent)(__ccgo_up((*TJsonEachCursor)(unsafe.Pointer(p)).FaParent))).FiValue = i
|
|
}
|
|
return SQLITE_OK
|
|
goto json_each_malformed_input
|
|
json_each_malformed_input:
|
|
;
|
|
Xsqlite3_free(tls, (*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg)
|
|
(*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg = Xsqlite3_mprintf(tls, __ccgo_ts+26462, 0)
|
|
_jsonEachCursorReset(tls, p)
|
|
if (*Tsqlite3_vtab)(unsafe.Pointer((*Tsqlite3_vtab_cursor)(unsafe.Pointer(cur)).FpVtab)).FzErrMsg != 0 {
|
|
v2 = int32(SQLITE_ERROR)
|
|
} else {
|
|
v2 = int32(SQLITE_NOMEM)
|
|
}
|
|
return v2
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** json_extract(JSON, PATH, ...)
|
|
// ** "->"(JSON,PATH)
|
|
// ** "->>"(JSON,PATH)
|
|
// **
|
|
// ** Return the element described by PATH. Return NULL if that PATH element
|
|
// ** is not found.
|
|
// **
|
|
// ** If JSON_JSON is set or if more that one PATH argument is supplied then
|
|
// ** always return a JSON representation of the result. If JSON_SQL is set,
|
|
// ** then always return an SQL representation of the result. If neither flag
|
|
// ** is present and argc==2, then return JSON for objects and arrays and SQL
|
|
// ** for all other values.
|
|
// **
|
|
// ** When multiple PATH arguments are supplied, the result is a JSON array
|
|
// ** containing the result of each PATH.
|
|
// **
|
|
// ** Abbreviated JSON path expressions are allows if JSON_ABPATH, for
|
|
// ** compatibility with PG.
|
|
// */
|
|
func _jsonExtractFunc(tls *libc.TLS, ctx uintptr, argc int32, argv uintptr) {
|
|
bp := tls.Alloc(144)
|
|
defer tls.Free(144)
|
|
var flags, i, nPath int32
|
|
var j Tu32
|
|
var p, zPath uintptr
|
|
var _ /* jx at bp+0 */ TJsonString
|
|
_, _, _, _, _, _ = flags, i, j, nPath, p, zPath
|
|
p = uintptr(0) /* String for array result */
|
|
if argc < int32(2) {
|
|
return
|
|
}
|
|
p = _jsonParseFuncArg(tls, ctx, **(**uintptr)(__ccgo_up(argv)), uint32(0))
|
|
if p == uintptr(0) {
|
|
return
|
|
}
|
|
flags = int32(int64(Xsqlite3_user_data(tls, ctx)))
|
|
_jsonStringInit(tls, bp, ctx)
|
|
if argc > int32(2) {
|
|
_jsonAppendChar(tls, bp, int8('['))
|
|
}
|
|
i = int32(1)
|
|
for {
|
|
if !(i < argc) {
|
|
break
|
|
}
|
|
/* With a single PATH argument */
|
|
zPath = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv + uintptr(i)*8)))
|
|
if zPath == uintptr(0) {
|
|
goto json_extract_error
|
|
}
|
|
nPath = _sqlite3Strlen30(tls, zPath)
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('$') {
|
|
j = _jsonLookupStep(tls, p, uint32(0), zPath+uintptr(1), uint32(0))
|
|
} else {
|
|
if flags&int32(JSON_ABPATH) != 0 {
|
|
/* The -> and ->> operators accept abbreviated PATH arguments. This
|
|
** is mostly for compatibility with PostgreSQL, but also for
|
|
** convenience.
|
|
**
|
|
** NUMBER ==> $[NUMBER] // PG compatible
|
|
** LABEL ==> $.LABEL // PG compatible
|
|
** [NUMBER] ==> $[NUMBER] // Not PG. Purely for convenience
|
|
**
|
|
** Updated 2024-05-27: If the NUMBER is negative, then PG counts from
|
|
** the right of the array. Hence for negative NUMBER:
|
|
**
|
|
** NUMBER ==> $[#NUMBER] // PG compatible
|
|
*/
|
|
_jsonStringInit(tls, bp, ctx)
|
|
if Xsqlite3_value_type(tls, **(**uintptr)(__ccgo_up(argv + uintptr(i)*8))) == int32(SQLITE_INTEGER) {
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+26674, uint32(1))
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('-') {
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+26676, uint32(1))
|
|
}
|
|
_jsonAppendRaw(tls, bp, zPath, libc.Uint32FromInt32(nPath))
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+5316, uint32(2))
|
|
} else {
|
|
if _jsonAllAlphanum(tls, zPath, nPath) != 0 {
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+1743, uint32(1))
|
|
_jsonAppendRaw(tls, bp, zPath, libc.Uint32FromInt32(nPath))
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('[') && nPath >= int32(3) && int32(**(**int8)(__ccgo_up(zPath + uintptr(nPath-int32(1))))) == int32(']') {
|
|
_jsonAppendRaw(tls, bp, zPath, libc.Uint32FromInt32(nPath))
|
|
} else {
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+26678, uint32(2))
|
|
_jsonAppendRaw(tls, bp, zPath, libc.Uint32FromInt32(nPath))
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+26681, uint32(1))
|
|
}
|
|
}
|
|
}
|
|
_jsonStringTerminate(tls, bp)
|
|
j = _jsonLookupStep(tls, p, uint32(0), (**(**TJsonString)(__ccgo_up(bp))).FzBuf, uint32(0))
|
|
_jsonStringReset(tls, bp)
|
|
} else {
|
|
_jsonBadPathError(tls, ctx, zPath, 0)
|
|
goto json_extract_error
|
|
}
|
|
}
|
|
if j < (*TJsonParse)(unsafe.Pointer(p)).FnBlob {
|
|
if argc == int32(2) {
|
|
if flags&int32(JSON_JSON) != 0 {
|
|
_jsonStringInit(tls, bp, ctx)
|
|
_jsonTranslateBlobToText(tls, p, j, bp)
|
|
_jsonReturnString(tls, bp, uintptr(0), uintptr(0))
|
|
_jsonStringReset(tls, bp)
|
|
Xsqlite3_result_subtype(tls, ctx, uint32(JSON_SUBTYPE))
|
|
} else {
|
|
_jsonReturnFromBlob(tls, p, j, ctx, 0)
|
|
if flags&(libc.Int32FromInt32(JSON_SQL)|libc.Int32FromInt32(JSON_BLOB)) == 0 && libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(p)).FaBlob + uintptr(j))))&int32(0x0f) >= int32(JSONB_ARRAY) {
|
|
Xsqlite3_result_subtype(tls, ctx, uint32(JSON_SUBTYPE))
|
|
}
|
|
}
|
|
} else {
|
|
_jsonAppendSeparator(tls, bp)
|
|
_jsonTranslateBlobToText(tls, p, j, bp)
|
|
}
|
|
} else {
|
|
if j == uint32(JSON_LOOKUP_NOTFOUND) {
|
|
if argc == int32(2) {
|
|
goto json_extract_error /* Return NULL if not found */
|
|
} else {
|
|
_jsonAppendSeparator(tls, bp)
|
|
_jsonAppendRawNZ(tls, bp, __ccgo_ts+1690, uint32(4))
|
|
}
|
|
} else {
|
|
_jsonBadPathError(tls, ctx, zPath, libc.Int32FromUint32(j))
|
|
goto json_extract_error
|
|
}
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if argc > int32(2) {
|
|
_jsonAppendChar(tls, bp, int8(']'))
|
|
_jsonReturnString(tls, bp, uintptr(0), uintptr(0))
|
|
if flags&int32(JSON_BLOB) == 0 {
|
|
Xsqlite3_result_subtype(tls, ctx, uint32(JSON_SUBTYPE))
|
|
}
|
|
}
|
|
goto json_extract_error
|
|
json_extract_error:
|
|
;
|
|
_jsonStringReset(tls, bp)
|
|
_jsonParseFree(tls, p)
|
|
return
|
|
}
|
|
|
|
/*
|
|
** Return codes for jsonMergePatch()
|
|
*/
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** pArg is a function argument that might be an SQL value or a JSON
|
|
// ** value. Figure out what it is and encode it as a JSONB blob.
|
|
// ** Return the results in pParse.
|
|
// **
|
|
// ** pParse is uninitialized upon entry. This routine will handle the
|
|
// ** initialization of pParse. The result will be contained in
|
|
// ** pParse->aBlob and pParse->nBlob. pParse->aBlob might be dynamically
|
|
// ** allocated (if pParse->nBlobAlloc is greater than zero) in which case
|
|
// ** the caller is responsible for freeing the space allocated to pParse->aBlob
|
|
// ** when it has finished with it. Or pParse->aBlob might be a static string
|
|
// ** or a value obtained from sqlite3_value_blob(pArg).
|
|
// **
|
|
// ** If the argument is a BLOB that is clearly not a JSONB, then this
|
|
// ** function might set an error message in ctx and return non-zero.
|
|
// ** It might also set an error message and return non-zero on an OOM error.
|
|
// */
|
|
func _jsonFunctionArgToBlob(tls *libc.TLS, ctx uintptr, pArg uintptr, pParse uintptr) (r1 int32) {
|
|
var eType, n, n1, nJson int32
|
|
var r float64
|
|
var z, z1, zJson uintptr
|
|
_, _, _, _, _, _, _, _ = eType, n, n1, nJson, r, z, z1, zJson
|
|
eType = Xsqlite3_value_type(tls, pArg)
|
|
libc.Xmemset(tls, pParse, 0, uint64(72))
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).Fdb = Xsqlite3_context_db_handle(tls, ctx)
|
|
switch eType {
|
|
default:
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FaBlob = uintptr(unsafe.Pointer(&_aNull))
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FnBlob = uint32(1)
|
|
return 0
|
|
case int32(SQLITE_BLOB):
|
|
if !(_jsonArgIsJsonb(tls, pArg, pParse) != 0) {
|
|
Xsqlite3_result_error(tls, ctx, __ccgo_ts+26433, -int32(1))
|
|
return int32(1)
|
|
}
|
|
case int32(SQLITE_TEXT):
|
|
zJson = Xsqlite3_value_text(tls, pArg)
|
|
nJson = Xsqlite3_value_bytes(tls, pArg)
|
|
if zJson == uintptr(0) {
|
|
return int32(1)
|
|
}
|
|
if Xsqlite3_value_subtype(tls, pArg) == uint32(JSON_SUBTYPE) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FzJson = zJson
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FnJson = nJson
|
|
if _jsonConvertTextToBlob(tls, pParse, ctx) != 0 {
|
|
Xsqlite3_result_error(tls, ctx, __ccgo_ts+26462, -int32(1))
|
|
_sqlite3DbFree(tls, (*TJsonParse)(unsafe.Pointer(pParse)).Fdb, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob)
|
|
libc.Xmemset(tls, pParse, 0, uint64(72))
|
|
return int32(1)
|
|
}
|
|
} else {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_TEXTRAW), libc.Uint64FromInt32(nJson), zJson)
|
|
}
|
|
case int32(SQLITE_FLOAT):
|
|
r = Xsqlite3_value_double(tls, pArg)
|
|
if _sqlite3IsNaN(tls, r) != 0 {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_NULL), uint64(0), uintptr(0))
|
|
} else {
|
|
n = Xsqlite3_value_bytes(tls, pArg)
|
|
z = Xsqlite3_value_text(tls, pArg)
|
|
if z == uintptr(0) {
|
|
return int32(1)
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z))) == int32('I') {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_FLOAT), uint64(5), __ccgo_ts+26567)
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(z))) == int32('-') && int32(**(**int8)(__ccgo_up(z + 1))) == int32('I') {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_FLOAT), uint64(6), __ccgo_ts+26560)
|
|
} else {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_FLOAT), libc.Uint64FromInt32(n), z)
|
|
}
|
|
}
|
|
}
|
|
case int32(SQLITE_INTEGER):
|
|
n1 = Xsqlite3_value_bytes(tls, pArg)
|
|
z1 = Xsqlite3_value_text(tls, pArg)
|
|
if z1 == uintptr(0) {
|
|
return int32(1)
|
|
}
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_INT), libc.Uint64FromInt32(n1), z1)
|
|
break
|
|
}
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Foom != 0 {
|
|
Xsqlite3_result_error_nomem(tls, ctx)
|
|
return int32(1)
|
|
} else {
|
|
return 0
|
|
}
|
|
return r1
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Search along zPath to find the Json element specified. Return an
|
|
// ** index into pParse->aBlob[] for the start of that element's value.
|
|
// **
|
|
// ** If the value found by this routine is the value half of label/value pair
|
|
// ** within an object, then set pPath->iLabel to the start of the corresponding
|
|
// ** label, before returning.
|
|
// **
|
|
// ** Return one of the JSON_LOOKUP error codes if problems are seen.
|
|
// **
|
|
// ** This routine will also modify the blob. If pParse->eEdit is one of
|
|
// ** JEDIT_DEL, JEDIT_REPL, JEDIT_INS, JEDIT_SET, or JEDIT_AINS, then changes
|
|
// ** might be made to the selected value. If an edit is performed, then the
|
|
// ** return value does not necessarily point to the select element. If an edit
|
|
// ** is performed, the return value is only useful for detecting error
|
|
// ** conditions.
|
|
// */
|
|
func _jsonLookupStep(tls *libc.TLS, pParse uintptr, iRoot Tu32, zPath uintptr, iLabel Tu32) (r Tu32) {
|
|
bp := tls.Alloc(224)
|
|
defer tls.Free(224)
|
|
var i, iEnd, j, k, n, nIns, nKey, rc, v Tu32
|
|
var kk, nn Tu64
|
|
var rawKey, rawLabel, v5 int32
|
|
var x Tu8
|
|
var zKey, zLabel, v4 uintptr
|
|
var v3 Tu16
|
|
var _ /* ix at bp+80 */ TJsonParse
|
|
var _ /* sz at bp+0 */ Tu32
|
|
var _ /* v at bp+152 */ TJsonParse
|
|
var _ /* v at bp+8 */ TJsonParse
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = i, iEnd, j, k, kk, n, nIns, nKey, nn, rawKey, rawLabel, rc, v, x, zKey, zLabel, v3, v4, v5
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == 0 {
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).FeEdit != 0 && _jsonBlobMakeEditable(tls, pParse, (*TJsonParse)(unsafe.Pointer(pParse)).FnIns) != 0 {
|
|
n = _jsonbPayloadSize(tls, pParse, iRoot, bp)
|
|
**(**Tu32)(__ccgo_up(bp)) = **(**Tu32)(__ccgo_up(bp)) + n
|
|
if libc.Int32FromUint8((*TJsonParse)(unsafe.Pointer(pParse)).FeEdit) == int32(JEDIT_DEL) {
|
|
if iLabel > uint32(0) {
|
|
**(**Tu32)(__ccgo_up(bp)) = **(**Tu32)(__ccgo_up(bp)) + (iRoot - iLabel)
|
|
iRoot = iLabel
|
|
}
|
|
_jsonBlobEdit(tls, pParse, iRoot, **(**Tu32)(__ccgo_up(bp)), uintptr(0), uint32(0))
|
|
} else {
|
|
if libc.Int32FromUint8((*TJsonParse)(unsafe.Pointer(pParse)).FeEdit) == int32(JEDIT_INS) {
|
|
/* Already exists, so json_insert() is a no-op */
|
|
} else {
|
|
if libc.Int32FromUint8((*TJsonParse)(unsafe.Pointer(pParse)).FeEdit) == int32(JEDIT_AINS) {
|
|
/* json_array_insert() */
|
|
if int32(**(**int8)(__ccgo_up(zPath + uintptr(-libc.Int32FromInt32(1))))) != int32(']') {
|
|
return uint32(JSON_LOOKUP_NOTARRAY)
|
|
} else {
|
|
_jsonBlobEdit(tls, pParse, iRoot, uint32(0), (*TJsonParse)(unsafe.Pointer(pParse)).FaIns, (*TJsonParse)(unsafe.Pointer(pParse)).FnIns)
|
|
}
|
|
} else {
|
|
/* json_set() or json_replace() */
|
|
_jsonBlobEdit(tls, pParse, iRoot, **(**Tu32)(__ccgo_up(bp)), (*TJsonParse)(unsafe.Pointer(pParse)).FaIns, (*TJsonParse)(unsafe.Pointer(pParse)).FnIns)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiLabel = iLabel
|
|
return iRoot
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('.') {
|
|
rawKey = int32(1)
|
|
x = **(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(iRoot)))
|
|
zPath = zPath + 1
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('"') {
|
|
zKey = zPath + uintptr(1)
|
|
i = uint32(1)
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zPath + uintptr(i))) != 0 && int32(**(**int8)(__ccgo_up(zPath + uintptr(i)))) != int32('"')) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zPath + uintptr(i)))) == int32('\\') && int32(**(**int8)(__ccgo_up(zPath + uintptr(i+uint32(1))))) != 0 {
|
|
i = i + 1
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
nKey = i - uint32(1)
|
|
if **(**int8)(__ccgo_up(zPath + uintptr(i))) != 0 {
|
|
i = i + 1
|
|
} else {
|
|
return uint32(JSON_LOOKUP_PATHERROR)
|
|
}
|
|
rawKey = libc.BoolInt32(libc.Xmemchr(tls, zKey, int32('\\'), uint64(nKey)) == uintptr(0))
|
|
} else {
|
|
zKey = zPath
|
|
i = uint32(0)
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zPath + uintptr(i))) != 0 && int32(**(**int8)(__ccgo_up(zPath + uintptr(i)))) != int32('.') && int32(**(**int8)(__ccgo_up(zPath + uintptr(i)))) != int32('[')) {
|
|
break
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
nKey = i
|
|
if nKey == uint32(0) {
|
|
return uint32(JSON_LOOKUP_PATHERROR)
|
|
}
|
|
}
|
|
if libc.Int32FromUint8(x)&int32(0x0f) != int32(JSONB_OBJECT) {
|
|
return uint32(JSON_LOOKUP_NOTFOUND)
|
|
}
|
|
n = _jsonbPayloadSize(tls, pParse, iRoot, bp)
|
|
j = iRoot + n /* j is the index of a label */
|
|
iEnd = j + **(**Tu32)(__ccgo_up(bp))
|
|
for j < iEnd {
|
|
x = libc.Uint8FromInt32(libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(j)))) & int32(0x0f))
|
|
if libc.Int32FromUint8(x) < int32(JSONB_TEXT) || libc.Int32FromUint8(x) > int32(JSONB_TEXTRAW) {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
n = _jsonbPayloadSize(tls, pParse, j, bp)
|
|
if n == uint32(0) {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
k = j + n /* k is the index of the label text */
|
|
if k+**(**Tu32)(__ccgo_up(bp)) >= iEnd {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
zLabel = (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(k)
|
|
rawLabel = libc.BoolInt32(libc.Int32FromUint8(x) == int32(JSONB_TEXT) || libc.Int32FromUint8(x) == int32(JSONB_TEXTRAW))
|
|
if _jsonLabelCompare(tls, zKey, nKey, rawKey, zLabel, **(**Tu32)(__ccgo_up(bp)), rawLabel) != 0 {
|
|
v = k + **(**Tu32)(__ccgo_up(bp)) /* v is the index of the value */
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(v))))&int32(0x0f) > int32(JSONB_OBJECT) {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
n = _jsonbPayloadSize(tls, pParse, v, bp)
|
|
if n == uint32(0) || v+n+**(**Tu32)(__ccgo_up(bp)) > iEnd {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
v4 = pParse + 44
|
|
*(*Tu16)(unsafe.Pointer(v4)) = *(*Tu16)(unsafe.Pointer(v4)) + 1
|
|
v3 = *(*Tu16)(unsafe.Pointer(v4))
|
|
if libc.Int32FromUint16(v3) >= int32(JSON_MAX_DEPTH) {
|
|
return uint32(JSON_LOOKUP_TOODEEP)
|
|
}
|
|
rc = _jsonLookupStep(tls, pParse, v, zPath+uintptr(i), j)
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = (*TJsonParse)(unsafe.Pointer(pParse)).FiDepth - 1
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Fdelta != 0 {
|
|
_jsonAfterEditSizeAdjust(tls, pParse, iRoot)
|
|
}
|
|
return rc
|
|
}
|
|
j = k + **(**Tu32)(__ccgo_up(bp))
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(j))))&int32(0x0f) > int32(JSONB_OBJECT) {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
n = _jsonbPayloadSize(tls, pParse, j, bp)
|
|
if n == uint32(0) {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
j = j + (n + **(**Tu32)(__ccgo_up(bp)))
|
|
}
|
|
if j > iEnd {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
if libc.Int32FromUint8((*TJsonParse)(unsafe.Pointer(pParse)).FeEdit) >= int32(JEDIT_INS) { /* Header of the label to be inserted */
|
|
if libc.Int32FromUint8((*TJsonParse)(unsafe.Pointer(pParse)).FeEdit) == int32(JEDIT_AINS) && Xsqlite3_strglob(tls, __ccgo_ts+26607, zPath+uintptr(i)) != 0 {
|
|
return uint32(JSON_LOOKUP_NOTARRAY)
|
|
}
|
|
libc.Xmemset(tls, bp+80, 0, uint64(72))
|
|
(**(**TJsonParse)(__ccgo_up(bp + 80))).Fdb = (*TJsonParse)(unsafe.Pointer(pParse)).Fdb
|
|
if rawKey != 0 {
|
|
v5 = int32(JSONB_TEXTRAW)
|
|
} else {
|
|
v5 = int32(JSONB_TEXT5)
|
|
}
|
|
_jsonBlobAppendNode(tls, bp+80, libc.Uint8FromInt32(v5), uint64(nKey), uintptr(0))
|
|
v4 = pParse + 47
|
|
*(*Tu8)(unsafe.Pointer(v4)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v4))) | libc.Int32FromUint8((**(**TJsonParse)(__ccgo_up(bp + 80))).Foom))
|
|
rc = _jsonCreateEditSubstructure(tls, pParse, bp+8, zPath+uintptr(i))
|
|
if !(rc >= libc.Uint32FromUint32(JSON_LOOKUP_PATHERROR)) && _jsonBlobMakeEditable(tls, pParse, (**(**TJsonParse)(__ccgo_up(bp + 80))).FnBlob+nKey+(**(**TJsonParse)(__ccgo_up(bp + 8))).FnBlob) != 0 {
|
|
nIns = (**(**TJsonParse)(__ccgo_up(bp + 80))).FnBlob + nKey + (**(**TJsonParse)(__ccgo_up(bp + 8))).FnBlob
|
|
_jsonBlobEdit(tls, pParse, j, uint32(0), uintptr(0), nIns)
|
|
if !((*TJsonParse)(unsafe.Pointer(pParse)).Foom != 0) {
|
|
/* Because pParse->oom!=0 */
|
|
/* Because pPasre->oom!=0 */
|
|
libc.Xmemcpy(tls, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(j), (**(**TJsonParse)(__ccgo_up(bp + 80))).FaBlob, uint64((**(**TJsonParse)(__ccgo_up(bp + 80))).FnBlob))
|
|
k = j + (**(**TJsonParse)(__ccgo_up(bp + 80))).FnBlob
|
|
libc.Xmemcpy(tls, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(k), zKey, uint64(nKey))
|
|
k = k + nKey
|
|
libc.Xmemcpy(tls, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(k), (**(**TJsonParse)(__ccgo_up(bp + 8))).FaBlob, uint64((**(**TJsonParse)(__ccgo_up(bp + 8))).FnBlob))
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Fdelta != 0 {
|
|
_jsonAfterEditSizeAdjust(tls, pParse, iRoot)
|
|
}
|
|
}
|
|
}
|
|
_jsonParseReset(tls, bp+8)
|
|
_jsonParseReset(tls, bp+80)
|
|
return rc
|
|
}
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zPath))) == int32('[') {
|
|
kk = uint64(0)
|
|
x = libc.Uint8FromInt32(libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(iRoot)))) & int32(0x0f))
|
|
if libc.Int32FromUint8(x) != int32(JSONB_ARRAY) {
|
|
return uint32(JSON_LOOKUP_NOTFOUND)
|
|
}
|
|
n = _jsonbPayloadSize(tls, pParse, iRoot, bp)
|
|
i = uint32(1)
|
|
for libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zPath + uintptr(i))))])&int32(0x04) != 0 {
|
|
if kk < uint64(0xffffffff) {
|
|
kk = kk*uint64(10) + libc.Uint64FromInt8(**(**int8)(__ccgo_up(zPath + uintptr(i)))) - uint64('0')
|
|
}
|
|
/* ^^^^^^^^^^--- Allow kk to be bigger than any JSON array so that
|
|
** we get NOTFOUND instead of PATHERROR, without overflowing kk. */
|
|
i = i + 1
|
|
}
|
|
if i < uint32(2) || int32(**(**int8)(__ccgo_up(zPath + uintptr(i)))) != int32(']') {
|
|
if int32(**(**int8)(__ccgo_up(zPath + 1))) == int32('#') {
|
|
kk = uint64(_jsonbArrayCount(tls, pParse, iRoot))
|
|
i = uint32(2)
|
|
if int32(**(**int8)(__ccgo_up(zPath + 2))) == int32('-') && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zPath + 3)))])&int32(0x04) != 0 {
|
|
nn = uint64(0)
|
|
i = uint32(3)
|
|
for cond := true; cond; cond = libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zPath + uintptr(i))))])&int32(0x04) != 0 {
|
|
if nn < uint64(0xffffffff) {
|
|
nn = nn*uint64(10) + libc.Uint64FromInt8(**(**int8)(__ccgo_up(zPath + uintptr(i)))) - uint64('0')
|
|
}
|
|
/* ^^^^^^^^^^--- Allow nn to be bigger than any JSON array to
|
|
** get NOTFOUND instead of PATHERROR, without overflowing nn. */
|
|
i = i + 1
|
|
}
|
|
if nn > kk {
|
|
return uint32(JSON_LOOKUP_NOTFOUND)
|
|
}
|
|
kk = kk - nn
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zPath + uintptr(i)))) != int32(']') {
|
|
return uint32(JSON_LOOKUP_PATHERROR)
|
|
}
|
|
} else {
|
|
return uint32(JSON_LOOKUP_PATHERROR)
|
|
}
|
|
}
|
|
j = iRoot + n
|
|
iEnd = j + **(**Tu32)(__ccgo_up(bp))
|
|
for j < iEnd {
|
|
if kk == uint64(0) {
|
|
v4 = pParse + 44
|
|
*(*Tu16)(unsafe.Pointer(v4)) = *(*Tu16)(unsafe.Pointer(v4)) + 1
|
|
v3 = *(*Tu16)(unsafe.Pointer(v4))
|
|
if libc.Int32FromUint16(v3) >= int32(JSON_MAX_DEPTH) {
|
|
return uint32(JSON_LOOKUP_TOODEEP)
|
|
}
|
|
rc = _jsonLookupStep(tls, pParse, j, zPath+uintptr(i+uint32(1)), uint32(0))
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = (*TJsonParse)(unsafe.Pointer(pParse)).FiDepth - 1
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Fdelta != 0 {
|
|
_jsonAfterEditSizeAdjust(tls, pParse, iRoot)
|
|
}
|
|
return rc
|
|
}
|
|
kk = kk - 1
|
|
n = _jsonbPayloadSize(tls, pParse, j, bp)
|
|
if n == uint32(0) {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
j = j + (n + **(**Tu32)(__ccgo_up(bp)))
|
|
}
|
|
if j > iEnd {
|
|
return uint32(JSON_LOOKUP_ERROR)
|
|
}
|
|
if kk > uint64(0) {
|
|
return uint32(JSON_LOOKUP_NOTFOUND)
|
|
}
|
|
if libc.Int32FromUint8((*TJsonParse)(unsafe.Pointer(pParse)).FeEdit) >= int32(JEDIT_INS) {
|
|
rc = _jsonCreateEditSubstructure(tls, pParse, bp+152, zPath+uintptr(i+uint32(1)))
|
|
if !(rc >= libc.Uint32FromUint32(JSON_LOOKUP_PATHERROR)) && _jsonBlobMakeEditable(tls, pParse, (**(**TJsonParse)(__ccgo_up(bp + 152))).FnBlob) != 0 {
|
|
_jsonBlobEdit(tls, pParse, j, uint32(0), (**(**TJsonParse)(__ccgo_up(bp + 152))).FaBlob, (**(**TJsonParse)(__ccgo_up(bp + 152))).FnBlob)
|
|
}
|
|
_jsonParseReset(tls, bp+152)
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Fdelta != 0 {
|
|
_jsonAfterEditSizeAdjust(tls, pParse, iRoot)
|
|
}
|
|
return rc
|
|
}
|
|
} else {
|
|
return uint32(JSON_LOOKUP_PATHERROR)
|
|
}
|
|
}
|
|
return uint32(JSON_LOOKUP_NOTFOUND)
|
|
}
|
|
|
|
func _jsonObjectCompute(tls *libc.TLS, ctx uintptr, isFinal int32) {
|
|
bp := tls.Alloc(144)
|
|
defer tls.Free(144)
|
|
var c int8
|
|
var flags, inStr int32
|
|
var i, j, v2, v3 Tu64
|
|
var pOgStr, pStr uintptr
|
|
var v8 Tsqlite3_destructor_type
|
|
var _ /* tmpStr at bp+0 */ TJsonString
|
|
_, _, _, _, _, _, _, _, _, _ = c, flags, i, inStr, j, pOgStr, pStr, v2, v3, v8
|
|
flags = int32(int64(Xsqlite3_user_data(tls, ctx)))
|
|
pStr = Xsqlite3_aggregate_context(tls, ctx, 0)
|
|
if pStr != 0 {
|
|
pOgStr = pStr
|
|
_jsonAppendRawNZ(tls, pOgStr, __ccgo_ts+26857, uint32(2)) /* Ensure it is zero-terminated */
|
|
_jsonStringTrimOneChar(tls, pOgStr) /* Remove the zero terminator */
|
|
(*TJsonString)(unsafe.Pointer(pStr)).FpCtx = ctx
|
|
if (*TJsonString)(unsafe.Pointer(pStr)).FeErr != 0 {
|
|
_jsonReturnString(tls, pStr, uintptr(0), uintptr(0))
|
|
return
|
|
}
|
|
if int32(**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf))) != int32('{') {
|
|
inStr = 0
|
|
if !(isFinal != 0) {
|
|
/* Work with a temporary copy of the string if this is not the
|
|
** final result */
|
|
_jsonStringInit(tls, bp, ctx)
|
|
_jsonAppendRawNZ(tls, bp, (*TJsonString)(unsafe.Pointer(pStr)).FzBuf, uint32((*TJsonString)(unsafe.Pointer(pStr)).FnUsed+uint64(1)))
|
|
pStr = bp
|
|
if (*TJsonString)(unsafe.Pointer(pStr)).FeErr != 0 {
|
|
_jsonReturnString(tls, pStr, uintptr(0), uintptr(0))
|
|
return
|
|
}
|
|
_jsonStringTrimOneChar(tls, pStr) /* Remove zero terminator */
|
|
}
|
|
/* Fix up the string by changing the initial "@" flag back to
|
|
** to "{" and removing all subsequence "@" entries, with their
|
|
** associated comma delimeters. */
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf)) = int8('{')
|
|
v2 = libc.Uint64FromInt32(1)
|
|
j = v2
|
|
i = v2
|
|
for {
|
|
if !(i < (*TJsonString)(unsafe.Pointer(pStr)).FnUsed) {
|
|
break
|
|
}
|
|
c = **(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(i)))
|
|
if int32(c) == int32('"') {
|
|
inStr = libc.BoolInt32(!(inStr != 0))
|
|
v2 = j
|
|
j = j + 1
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(v2))) = int8('"')
|
|
} else {
|
|
if int32(c) == int32('\\') {
|
|
v2 = j
|
|
j = j + 1
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(v2))) = int8('\\')
|
|
v2 = j
|
|
j = j + 1
|
|
i = i + 1
|
|
v3 = i
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(v2))) = **(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(v3)))
|
|
} else {
|
|
if int32(c) == int32('@') && !(inStr != 0) {
|
|
if int32(**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(i+uint64(1))))) == int32(',') {
|
|
i = i + 1
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(j-uint64(1))))) == int32(',') {
|
|
j = j - 1
|
|
}
|
|
}
|
|
} else {
|
|
v2 = j
|
|
j = j + 1
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(v2))) = c
|
|
}
|
|
}
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf + uintptr(j))) = 0 /* Restore zero terminator */
|
|
(*TJsonString)(unsafe.Pointer(pStr)).FnUsed = j /* Truncate the string */
|
|
}
|
|
if flags&int32(JSON_BLOB) != 0 {
|
|
_jsonReturnStringAsBlob(tls, pStr)
|
|
if isFinal != 0 {
|
|
if !((*TJsonString)(unsafe.Pointer(pStr)).FbStatic != 0) {
|
|
_sqlite3RCStrUnref(tls, (*TJsonString)(unsafe.Pointer(pStr)).FzBuf)
|
|
}
|
|
} else {
|
|
_jsonStringTrimOneChar(tls, pOgStr)
|
|
}
|
|
} else {
|
|
if isFinal != 0 {
|
|
if (*TJsonString)(unsafe.Pointer(pStr)).FbStatic != 0 {
|
|
v8 = uintptr(-libc.Int32FromInt32(1))
|
|
} else {
|
|
v8 = __ccgo_fp(_sqlite3RCStrUnref)
|
|
}
|
|
Xsqlite3_result_text(tls, ctx, (*TJsonString)(unsafe.Pointer(pStr)).FzBuf, libc.Int32FromUint64((*TJsonString)(unsafe.Pointer(pStr)).FnUsed), v8)
|
|
(*TJsonString)(unsafe.Pointer(pStr)).FbStatic = uint8(1)
|
|
} else {
|
|
Xsqlite3_result_text(tls, ctx, (*TJsonString)(unsafe.Pointer(pStr)).FzBuf, libc.Int32FromUint64((*TJsonString)(unsafe.Pointer(pStr)).FnUsed), uintptr(-libc.Int32FromInt32(1)))
|
|
_jsonStringTrimOneChar(tls, pOgStr)
|
|
}
|
|
}
|
|
if pStr != pOgStr {
|
|
_jsonStringReset(tls, pStr)
|
|
}
|
|
} else {
|
|
if flags&int32(JSON_BLOB) != 0 {
|
|
Xsqlite3_result_blob(tls, ctx, uintptr(unsafe.Pointer(&_emptyObject1)), int32(1), libc.UintptrFromInt32(0))
|
|
} else {
|
|
Xsqlite3_result_text(tls, ctx, __ccgo_ts+26859, int32(2), libc.UintptrFromInt32(0))
|
|
}
|
|
}
|
|
Xsqlite3_result_subtype(tls, ctx, uint32(JSON_SUBTYPE))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Implementation of the json_object(NAME,VALUE,...) function. Return a JSON
|
|
// ** object that contains all name/value given in arguments. Or if any name
|
|
// ** is not a string or if any value is a BLOB, throw an error.
|
|
// */
|
|
func _jsonObjectFunc(tls *libc.TLS, ctx uintptr, argc int32, argv uintptr) {
|
|
bp := tls.Alloc(144)
|
|
defer tls.Free(144)
|
|
var i int32
|
|
var n Tu32
|
|
var z uintptr
|
|
var _ /* jx at bp+0 */ TJsonString
|
|
_, _, _ = i, n, z
|
|
if argc&int32(1) != 0 {
|
|
Xsqlite3_result_error(tls, ctx, __ccgo_ts+26683, -int32(1))
|
|
return
|
|
}
|
|
_jsonStringInit(tls, bp, ctx)
|
|
_jsonAppendChar(tls, bp, int8('{'))
|
|
i = 0
|
|
for {
|
|
if !(i < argc) {
|
|
break
|
|
}
|
|
if Xsqlite3_value_type(tls, **(**uintptr)(__ccgo_up(argv + uintptr(i)*8))) != int32(SQLITE_TEXT) {
|
|
Xsqlite3_result_error(tls, ctx, __ccgo_ts+26734, -int32(1))
|
|
_jsonStringReset(tls, bp)
|
|
return
|
|
}
|
|
_jsonAppendSeparator(tls, bp)
|
|
z = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv + uintptr(i)*8)))
|
|
n = libc.Uint32FromInt32(Xsqlite3_value_bytes(tls, **(**uintptr)(__ccgo_up(argv + uintptr(i)*8))))
|
|
_jsonAppendString(tls, bp, z, n)
|
|
_jsonAppendChar(tls, bp, int8(':'))
|
|
_jsonAppendSqlValue(tls, bp, **(**uintptr)(__ccgo_up(argv + uintptr(i+int32(1))*8)))
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + int32(2)
|
|
}
|
|
_jsonAppendChar(tls, bp, int8('}'))
|
|
_jsonReturnString(tls, bp, uintptr(0), uintptr(0))
|
|
Xsqlite3_result_subtype(tls, ctx, uint32(JSON_SUBTYPE))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** json_group_obj(NAME,VALUE)
|
|
// **
|
|
// ** Return a JSON object composed of all names and values in the aggregate.
|
|
// **
|
|
// ** Rows for which NAME is NULL do not result in a new entry. However, we
|
|
// ** do initially insert a "@" entry into the growing string for each null entry
|
|
// ** and change the first character of the string to "@" to signal that the
|
|
// ** string contains null entries. The "@" markers are needed in order to
|
|
// ** correctly process xInverse() requests. The initial "@" is converted
|
|
// ** back into "{" and the "@" null values are removed by jsonObjectCompute().
|
|
// */
|
|
func _jsonObjectStep(tls *libc.TLS, ctx uintptr, argc int32, argv uintptr) {
|
|
var n Tu32
|
|
var pStr, z uintptr
|
|
_, _, _ = n, pStr, z
|
|
_ = argc
|
|
pStr = Xsqlite3_aggregate_context(tls, ctx, int32(136))
|
|
if pStr != 0 {
|
|
z = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
n = libc.Uint32FromInt32(_sqlite3Strlen30(tls, z))
|
|
if (*TJsonString)(unsafe.Pointer(pStr)).FzBuf == uintptr(0) {
|
|
_jsonStringInit(tls, pStr, ctx)
|
|
_jsonAppendChar(tls, pStr, int8('{'))
|
|
} else {
|
|
if (*TJsonString)(unsafe.Pointer(pStr)).FnUsed > uint64(1) {
|
|
_jsonAppendChar(tls, pStr, int8(','))
|
|
}
|
|
}
|
|
(*TJsonString)(unsafe.Pointer(pStr)).FpCtx = ctx
|
|
if z != uintptr(0) {
|
|
_jsonAppendString(tls, pStr, z, n)
|
|
_jsonAppendChar(tls, pStr, int8(':'))
|
|
_jsonAppendSqlValue(tls, pStr, **(**uintptr)(__ccgo_up(argv + 1*8)))
|
|
} else {
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pStr)).FzBuf)) = int8('@')
|
|
_jsonAppendRawNZ(tls, pStr, __ccgo_ts+26672, uint32(1))
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate a JsonParse object, containing valid JSONB in aBlob and nBlob,
|
|
// ** from the SQL function argument pArg. Return a pointer to the new
|
|
// ** JsonParse object.
|
|
// **
|
|
// ** Ownership of the new JsonParse object is passed to the caller. The
|
|
// ** caller should invoke jsonParseFree() on the return value when it
|
|
// ** has finished using it.
|
|
// **
|
|
// ** If any errors are detected, an appropriate error messages is set
|
|
// ** using sqlite3_result_error() or the equivalent and this routine
|
|
// ** returns NULL. This routine also returns NULL if the pArg argument
|
|
// ** is an SQL NULL value, but no error message is set in that case. This
|
|
// ** is so that SQL functions that are given NULL arguments will return
|
|
// ** a NULL value.
|
|
// */
|
|
func _jsonParseFuncArg(tls *libc.TLS, ctx uintptr, pArg uintptr, flgs Tu32) (r uintptr) {
|
|
var db, p, pFromCache, zNew, v2 uintptr
|
|
var eType, isRCStr, rc int32
|
|
var nBlob, v1 Tu32
|
|
_, _, _, _, _, _, _, _, _, _ = db, eType, isRCStr, nBlob, p, pFromCache, rc, zNew, v1, v2 /* Datatype of pArg */
|
|
p = uintptr(0) /* Value to be returned */
|
|
pFromCache = uintptr(0) /* The database connection */
|
|
eType = Xsqlite3_value_type(tls, pArg)
|
|
if eType == int32(SQLITE_NULL) {
|
|
return uintptr(0)
|
|
}
|
|
pFromCache = _jsonCacheSearch(tls, ctx, pArg)
|
|
if pFromCache != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pFromCache)).FnJPRef = (*TJsonParse)(unsafe.Pointer(pFromCache)).FnJPRef + 1
|
|
if flgs&uint32(JSON_EDITABLE) == uint32(0) {
|
|
return pFromCache
|
|
}
|
|
}
|
|
db = Xsqlite3_context_db_handle(tls, ctx)
|
|
goto rebuild_from_cache
|
|
rebuild_from_cache:
|
|
;
|
|
p = _sqlite3DbMallocZero(tls, db, uint64(72))
|
|
if p == uintptr(0) {
|
|
goto json_pfa_oom
|
|
}
|
|
libc.Xmemset(tls, p, 0, uint64(72))
|
|
(*TJsonParse)(unsafe.Pointer(p)).Fdb = db
|
|
(*TJsonParse)(unsafe.Pointer(p)).FnJPRef = uint32(1)
|
|
if pFromCache != uintptr(0) {
|
|
nBlob = (*TJsonParse)(unsafe.Pointer(pFromCache)).FnBlob
|
|
(*TJsonParse)(unsafe.Pointer(p)).FaBlob = _sqlite3DbMallocRaw(tls, db, uint64(nBlob))
|
|
if (*TJsonParse)(unsafe.Pointer(p)).FaBlob == uintptr(0) {
|
|
goto json_pfa_oom
|
|
}
|
|
libc.Xmemcpy(tls, (*TJsonParse)(unsafe.Pointer(p)).FaBlob, (*TJsonParse)(unsafe.Pointer(pFromCache)).FaBlob, uint64(nBlob))
|
|
v1 = nBlob
|
|
(*TJsonParse)(unsafe.Pointer(p)).FnBlob = v1
|
|
(*TJsonParse)(unsafe.Pointer(p)).FnBlobAlloc = v1
|
|
(*TJsonParse)(unsafe.Pointer(p)).FhasNonstd = (*TJsonParse)(unsafe.Pointer(pFromCache)).FhasNonstd
|
|
_jsonParseFree(tls, pFromCache)
|
|
return p
|
|
}
|
|
if eType == int32(SQLITE_BLOB) {
|
|
if _jsonArgIsJsonb(tls, pArg, p) != 0 {
|
|
if flgs&uint32(JSON_EDITABLE) != uint32(0) && _jsonBlobMakeEditable(tls, p, uint32(0)) == 0 {
|
|
goto json_pfa_oom
|
|
}
|
|
return p
|
|
}
|
|
/* If the blob is not valid JSONB, fall through into trying to cast
|
|
** the blob into text which is then interpreted as JSON. (tag-20240123-a)
|
|
**
|
|
** This goes against all historical documentation about how the SQLite
|
|
** JSON functions were suppose to work. From the beginning, blob was
|
|
** reserved for expansion and a blob value should have raised an error.
|
|
** But it did not, due to a bug. And many applications came to depend
|
|
** upon this buggy behavior, especially when using the CLI and reading
|
|
** JSON text using readfile(), which returns a blob. For this reason
|
|
** we will continue to support the bug moving forward.
|
|
** See for example https://sqlite.org/forum/forumpost/012136abd5292b8d
|
|
*/
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(p)).FzJson = Xsqlite3_value_text(tls, pArg)
|
|
(*TJsonParse)(unsafe.Pointer(p)).FnJson = Xsqlite3_value_bytes(tls, pArg)
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
goto json_pfa_oom
|
|
}
|
|
if (*TJsonParse)(unsafe.Pointer(p)).FnJson == 0 {
|
|
goto json_pfa_malformed
|
|
}
|
|
if flgs&uint32(JSON_KEEPERROR) != 0 {
|
|
v2 = uintptr(0)
|
|
} else {
|
|
v2 = ctx
|
|
}
|
|
if _jsonConvertTextToBlob(tls, p, v2) != 0 {
|
|
if flgs&uint32(JSON_KEEPERROR) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(p)).FnErr = uint8(1)
|
|
return p
|
|
} else {
|
|
_jsonParseFree(tls, p)
|
|
return uintptr(0)
|
|
}
|
|
} else {
|
|
isRCStr = _sqlite3ValueIsOfClass(tls, pArg, __ccgo_fp(_sqlite3RCStrUnref))
|
|
if !(isRCStr != 0) {
|
|
zNew = _sqlite3RCStrNew(tls, libc.Uint64FromInt32((*TJsonParse)(unsafe.Pointer(p)).FnJson))
|
|
if zNew == uintptr(0) {
|
|
goto json_pfa_oom
|
|
}
|
|
libc.Xmemcpy(tls, zNew, (*TJsonParse)(unsafe.Pointer(p)).FzJson, libc.Uint64FromInt32((*TJsonParse)(unsafe.Pointer(p)).FnJson))
|
|
(*TJsonParse)(unsafe.Pointer(p)).FzJson = zNew
|
|
**(**int8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(p)).FzJson + uintptr((*TJsonParse)(unsafe.Pointer(p)).FnJson))) = 0
|
|
} else {
|
|
_sqlite3RCStrRef(tls, (*TJsonParse)(unsafe.Pointer(p)).FzJson)
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(p)).FbJsonIsRCStr = uint8(1)
|
|
rc = _jsonCacheInsert(tls, ctx, p)
|
|
if rc == int32(SQLITE_NOMEM) {
|
|
goto json_pfa_oom
|
|
}
|
|
if flgs&uint32(JSON_EDITABLE) != 0 {
|
|
pFromCache = p
|
|
p = uintptr(0)
|
|
goto rebuild_from_cache
|
|
}
|
|
}
|
|
return p
|
|
goto json_pfa_malformed
|
|
json_pfa_malformed:
|
|
;
|
|
if flgs&uint32(JSON_KEEPERROR) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(p)).FnErr = uint8(1)
|
|
return p
|
|
} else {
|
|
_jsonParseFree(tls, p)
|
|
Xsqlite3_result_error(tls, ctx, __ccgo_ts+26462, -int32(1))
|
|
return uintptr(0)
|
|
}
|
|
goto json_pfa_oom
|
|
json_pfa_oom:
|
|
;
|
|
_jsonParseFree(tls, pFromCache)
|
|
_jsonParseFree(tls, p)
|
|
Xsqlite3_result_error_nomem(tls, ctx)
|
|
return uintptr(0)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Return the value of the BLOB node at index i.
|
|
// **
|
|
// ** If the value is a primitive, return it as an SQL value.
|
|
// ** If the value is an array or object, return it as either
|
|
// ** JSON text or the BLOB encoding, depending on the eMode flag
|
|
// ** as follows:
|
|
// **
|
|
// ** eMode==0 JSONB if the JSON_B flag is set in userdata or
|
|
// ** text if the JSON_B flag is omitted from userdata.
|
|
// **
|
|
// ** eMode==1 Text
|
|
// **
|
|
// ** eMode==2 JSONB
|
|
// */
|
|
func _jsonReturnFromBlob(tls *libc.TLS, pParse uintptr, i Tu32, pCtx uintptr, eMode int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var bNeg, rc int32
|
|
var c, x int8
|
|
var db, z, z1, z2, zOut uintptr
|
|
var iIn, iOut, n, nOut, szEscape, v19, v20 Tu32
|
|
var r, v16 float64
|
|
var v17 int64
|
|
var _ /* iRes at bp+8 */ Tsqlite3_int64
|
|
var _ /* r at bp+16 */ float64
|
|
var _ /* sz at bp+0 */ Tu32
|
|
var _ /* v at bp+24 */ Tu32
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = bNeg, c, db, iIn, iOut, n, nOut, r, rc, szEscape, x, z, z1, z2, zOut, v16, v17, v19, v20
|
|
db = Xsqlite3_context_db_handle(tls, pCtx)
|
|
n = _jsonbPayloadSize(tls, pParse, i, bp)
|
|
if n == uint32(0) {
|
|
Xsqlite3_result_error(tls, pCtx, __ccgo_ts+26462, -int32(1))
|
|
return
|
|
}
|
|
switch libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i)))) & libc.Int32FromInt32(0x0f) {
|
|
case JSONB_NULL:
|
|
goto _1
|
|
case int32(JSONB_TRUE):
|
|
goto _2
|
|
case int32(JSONB_FALSE):
|
|
goto _3
|
|
case int32(JSONB_INT):
|
|
goto _4
|
|
case int32(JSONB_INT5):
|
|
goto _5
|
|
case int32(JSONB_FLOAT):
|
|
goto _6
|
|
case int32(JSONB_FLOAT5):
|
|
goto _7
|
|
case int32(JSONB_TEXT):
|
|
goto _8
|
|
case int32(JSONB_TEXTRAW):
|
|
goto _9
|
|
case int32(JSONB_TEXTJ):
|
|
goto _10
|
|
case int32(JSONB_TEXT5):
|
|
goto _11
|
|
case int32(JSONB_OBJECT):
|
|
goto _12
|
|
case int32(JSONB_ARRAY):
|
|
goto _13
|
|
default:
|
|
goto _14
|
|
}
|
|
goto _15
|
|
_1:
|
|
;
|
|
if **(**Tu32)(__ccgo_up(bp)) != 0 {
|
|
goto returnfromblob_malformed
|
|
}
|
|
Xsqlite3_result_null(tls, pCtx)
|
|
goto _15
|
|
_2:
|
|
;
|
|
if **(**Tu32)(__ccgo_up(bp)) != 0 {
|
|
goto returnfromblob_malformed
|
|
}
|
|
Xsqlite3_result_int(tls, pCtx, int32(1))
|
|
goto _15
|
|
_3:
|
|
;
|
|
if **(**Tu32)(__ccgo_up(bp)) != 0 {
|
|
goto returnfromblob_malformed
|
|
}
|
|
Xsqlite3_result_int(tls, pCtx, 0)
|
|
goto _15
|
|
_5:
|
|
;
|
|
_4:
|
|
;
|
|
**(**Tsqlite3_int64)(__ccgo_up(bp + 8)) = 0
|
|
bNeg = 0
|
|
if **(**Tu32)(__ccgo_up(bp)) == uint32(0) {
|
|
goto returnfromblob_malformed
|
|
}
|
|
x = libc.Int8FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i+n))))
|
|
if int32(x) == int32('-') {
|
|
if **(**Tu32)(__ccgo_up(bp)) < uint32(2) {
|
|
goto returnfromblob_malformed
|
|
}
|
|
n = n + 1
|
|
**(**Tu32)(__ccgo_up(bp)) = **(**Tu32)(__ccgo_up(bp)) - 1
|
|
bNeg = int32(1)
|
|
}
|
|
z = _sqlite3DbStrNDup(tls, db, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i+n), libc.Uint64FromInt32(libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp)))))
|
|
if z == uintptr(0) {
|
|
goto returnfromblob_oom
|
|
}
|
|
rc = _sqlite3DecOrHexToI64(tls, z, bp+8)
|
|
_sqlite3DbFree(tls, db, z)
|
|
if rc == 0 {
|
|
if **(**Tsqlite3_int64)(__ccgo_up(bp + 8)) < 0 {
|
|
r = float64(**(**Tsqlite3_uint64)(__ccgo_up(bp + 8)))
|
|
if bNeg != 0 {
|
|
v16 = -r
|
|
} else {
|
|
v16 = r
|
|
}
|
|
Xsqlite3_result_double(tls, pCtx, v16)
|
|
} else {
|
|
if bNeg != 0 {
|
|
v17 = -**(**Tsqlite3_int64)(__ccgo_up(bp + 8))
|
|
} else {
|
|
v17 = **(**Tsqlite3_int64)(__ccgo_up(bp + 8))
|
|
}
|
|
Xsqlite3_result_int64(tls, pCtx, v17)
|
|
}
|
|
} else {
|
|
if rc == int32(3) && bNeg != 0 {
|
|
Xsqlite3_result_int64(tls, pCtx, int64(-libc.Int32FromInt32(1))-(libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)))
|
|
} else {
|
|
if rc == int32(1) {
|
|
goto returnfromblob_malformed
|
|
} else {
|
|
if bNeg != 0 {
|
|
n = n - 1
|
|
**(**Tu32)(__ccgo_up(bp)) = **(**Tu32)(__ccgo_up(bp)) + 1
|
|
}
|
|
goto to_double
|
|
}
|
|
}
|
|
}
|
|
goto _15
|
|
_7:
|
|
;
|
|
_6:
|
|
;
|
|
if **(**Tu32)(__ccgo_up(bp)) == uint32(0) {
|
|
goto returnfromblob_malformed
|
|
}
|
|
goto to_double
|
|
to_double:
|
|
;
|
|
z1 = _sqlite3DbStrNDup(tls, db, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i+n), libc.Uint64FromInt32(libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp)))))
|
|
if z1 == uintptr(0) {
|
|
goto returnfromblob_oom
|
|
}
|
|
rc = _sqlite3AtoF(tls, z1, bp+16)
|
|
_sqlite3DbFree(tls, db, z1)
|
|
if rc <= 0 {
|
|
goto returnfromblob_malformed
|
|
}
|
|
Xsqlite3_result_double(tls, pCtx, **(**float64)(__ccgo_up(bp + 16)))
|
|
goto _15
|
|
_9:
|
|
;
|
|
_8:
|
|
;
|
|
Xsqlite3_result_text(tls, pCtx, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i+n), libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp))), uintptr(-libc.Int32FromInt32(1)))
|
|
goto _15
|
|
_11:
|
|
;
|
|
_10:
|
|
;
|
|
nOut = **(**Tu32)(__ccgo_up(bp))
|
|
z2 = (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i+n)
|
|
zOut = _sqlite3DbMallocRaw(tls, db, uint64(nOut)+uint64(1))
|
|
if zOut == uintptr(0) {
|
|
goto returnfromblob_oom
|
|
}
|
|
v19 = libc.Uint32FromInt32(0)
|
|
iOut = v19
|
|
iIn = v19
|
|
for {
|
|
if !(iIn < **(**Tu32)(__ccgo_up(bp))) {
|
|
break
|
|
}
|
|
c = **(**int8)(__ccgo_up(z2 + uintptr(iIn)))
|
|
if int32(c) == int32('\\') {
|
|
szEscape = _jsonUnescapeOneChar(tls, z2+uintptr(iIn), **(**Tu32)(__ccgo_up(bp))-iIn, bp+24)
|
|
if **(**Tu32)(__ccgo_up(bp + 24)) <= uint32(0x7f) {
|
|
v20 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v20))) = libc.Int8FromUint32(**(**Tu32)(__ccgo_up(bp + 24)))
|
|
} else {
|
|
if **(**Tu32)(__ccgo_up(bp + 24)) <= uint32(0x7ff) {
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(libc.Uint32FromInt32(0xc0) | **(**Tu32)(__ccgo_up(bp + 24))>>libc.Int32FromInt32(6))
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0x80) | **(**Tu32)(__ccgo_up(bp + 24))&uint32(0x3f))
|
|
} else {
|
|
if **(**Tu32)(__ccgo_up(bp + 24)) < uint32(0x10000) {
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0xe0) | **(**Tu32)(__ccgo_up(bp + 24))>>libc.Int32FromInt32(12))
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0x80) | **(**Tu32)(__ccgo_up(bp + 24))>>libc.Int32FromInt32(6)&uint32(0x3f))
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0x80) | **(**Tu32)(__ccgo_up(bp + 24))&uint32(0x3f))
|
|
} else {
|
|
if **(**Tu32)(__ccgo_up(bp + 24)) == uint32(JSON_INVALID_CHAR) {
|
|
/* Silently ignore illegal unicode */
|
|
} else {
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0xf0) | **(**Tu32)(__ccgo_up(bp + 24))>>libc.Int32FromInt32(18))
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0x80) | **(**Tu32)(__ccgo_up(bp + 24))>>libc.Int32FromInt32(12)&uint32(0x3f))
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0x80) | **(**Tu32)(__ccgo_up(bp + 24))>>libc.Int32FromInt32(6)&uint32(0x3f))
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = libc.Int8FromUint32(uint32(0x80) | **(**Tu32)(__ccgo_up(bp + 24))&uint32(0x3f))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
iIn = iIn + (szEscape - uint32(1))
|
|
} else {
|
|
v19 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v19))) = c
|
|
}
|
|
goto _18
|
|
_18:
|
|
;
|
|
iIn = iIn + 1
|
|
} /* end for() */
|
|
**(**int8)(__ccgo_up(zOut + uintptr(iOut))) = 0
|
|
Xsqlite3_result_text(tls, pCtx, zOut, libc.Int32FromUint32(iOut), __ccgo_fp(_sqlite3RowSetClear))
|
|
goto _15
|
|
_13:
|
|
;
|
|
_12:
|
|
;
|
|
if eMode == 0 {
|
|
if int32(int64(Xsqlite3_user_data(tls, pCtx)))&int32(JSON_BLOB) != 0 {
|
|
eMode = int32(2)
|
|
} else {
|
|
eMode = int32(1)
|
|
}
|
|
}
|
|
if eMode == int32(2) {
|
|
Xsqlite3_result_blob(tls, pCtx, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i), libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp))+n), uintptr(-libc.Int32FromInt32(1)))
|
|
} else {
|
|
_jsonReturnTextJsonFromBlob(tls, pCtx, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i), **(**Tu32)(__ccgo_up(bp))+n)
|
|
}
|
|
goto _15
|
|
_14:
|
|
;
|
|
goto returnfromblob_malformed
|
|
_15:
|
|
;
|
|
return
|
|
goto returnfromblob_oom
|
|
returnfromblob_oom:
|
|
;
|
|
Xsqlite3_result_error_nomem(tls, pCtx)
|
|
return
|
|
goto returnfromblob_malformed
|
|
returnfromblob_malformed:
|
|
;
|
|
Xsqlite3_result_error(tls, pCtx, __ccgo_ts+26462, -int32(1))
|
|
return
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Translate the binary JSONB representation of JSON beginning at
|
|
// ** pParse->aBlob[i] into a JSON text string. Append the JSON
|
|
// ** text onto the end of pOut. Return the index in pParse->aBlob[]
|
|
// ** of the first byte past the end of the element that is translated.
|
|
// **
|
|
// ** This is a variant of jsonTranslateBlobToText() that "pretty-prints"
|
|
// ** the output. Extra whitespace is inserted to make the JSON easier
|
|
// ** for humans to read.
|
|
// **
|
|
// ** If an error is detected in the BLOB input, the pOut->eErr flag
|
|
// ** might get set to JSTRING_MALFORMED. But not all BLOB input errors
|
|
// ** are detected. So a malformed JSONB input might either result
|
|
// ** in an error, or in incorrect JSON.
|
|
// **
|
|
// ** The pOut->eErr JSTRING_OOM flag is set on a OOM.
|
|
// */
|
|
func _jsonTranslateBlobToPrettyText(tls *libc.TLS, pPretty uintptr, i Tu32) (r Tu32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var iEnd, j, n Tu32
|
|
var pOut, pParse, v1 uintptr
|
|
var _ /* sz at bp+0 */ Tu32
|
|
_, _, _, _, _, _ = iEnd, j, n, pOut, pParse, v1
|
|
pParse = (*TJsonPretty)(unsafe.Pointer(pPretty)).FpParse
|
|
pOut = (*TJsonPretty)(unsafe.Pointer(pPretty)).FpOut
|
|
n = _jsonbPayloadSize(tls, pParse, i, bp)
|
|
if n == uint32(0) {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
return (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob + uint32(1)
|
|
}
|
|
switch libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i)))) & libc.Int32FromInt32(0x0f) {
|
|
case int32(JSONB_ARRAY):
|
|
j = i + n
|
|
iEnd = j + **(**Tu32)(__ccgo_up(bp))
|
|
_jsonAppendChar(tls, pOut, int8('['))
|
|
if j < iEnd {
|
|
_jsonAppendChar(tls, pOut, int8('\n'))
|
|
(*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent = (*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent + 1
|
|
if (*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent >= uint32(JSON_MAX_DEPTH) {
|
|
_jsonStringTooDeep(tls, pOut)
|
|
}
|
|
for libc.Int32FromUint8((*TJsonString)(unsafe.Pointer(pOut)).FeErr) == 0 {
|
|
_jsonPrettyIndent(tls, pPretty)
|
|
j = _jsonTranslateBlobToPrettyText(tls, pPretty, j)
|
|
if j >= iEnd {
|
|
break
|
|
}
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26601, uint32(2))
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8('\n'))
|
|
(*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent = (*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent - 1
|
|
_jsonPrettyIndent(tls, pPretty)
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8(']'))
|
|
i = iEnd
|
|
case int32(JSONB_OBJECT):
|
|
j = i + n
|
|
iEnd = j + **(**Tu32)(__ccgo_up(bp))
|
|
_jsonAppendChar(tls, pOut, int8('{'))
|
|
if j < iEnd {
|
|
_jsonAppendChar(tls, pOut, int8('\n'))
|
|
(*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent = (*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent + 1
|
|
if (*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent >= uint32(JSON_MAX_DEPTH) {
|
|
_jsonStringTooDeep(tls, pOut)
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = uint16((*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent)
|
|
for libc.Int32FromUint8((*TJsonString)(unsafe.Pointer(pOut)).FeErr) == 0 {
|
|
_jsonPrettyIndent(tls, pPretty)
|
|
j = _jsonTranslateBlobToText(tls, pParse, j, pOut)
|
|
if j > iEnd {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
break
|
|
}
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26604, uint32(2))
|
|
j = _jsonTranslateBlobToPrettyText(tls, pPretty, j)
|
|
if j >= iEnd {
|
|
break
|
|
}
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26601, uint32(2))
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8('\n'))
|
|
(*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent = (*TJsonPretty)(unsafe.Pointer(pPretty)).FnIndent - 1
|
|
_jsonPrettyIndent(tls, pPretty)
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8('}'))
|
|
i = iEnd
|
|
default:
|
|
i = _jsonTranslateBlobToText(tls, pParse, i, pOut)
|
|
break
|
|
}
|
|
return i
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Translate the binary JSONB representation of JSON beginning at
|
|
// ** pParse->aBlob[i] into a JSON text string. Append the JSON
|
|
// ** text onto the end of pOut. Return the index in pParse->aBlob[]
|
|
// ** of the first byte past the end of the element that is translated.
|
|
// **
|
|
// ** If an error is detected in the BLOB input, the pOut->eErr flag
|
|
// ** might get set to JSTRING_MALFORMED. But not all BLOB input errors
|
|
// ** are detected. So a malformed JSONB input might either result
|
|
// ** in an error, or in incorrect JSON.
|
|
// **
|
|
// ** The pOut->eErr JSTRING_OOM flag is set on a OOM.
|
|
// */
|
|
func _jsonTranslateBlobToText(tls *libc.TLS, pParse uintptr, i Tu32, pOut uintptr) (r Tu32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var bOverflow, x, v30, v31 int32
|
|
var iEnd, j, k, k1, k2, n, sz2 Tu32
|
|
var u Tsqlite3_uint64
|
|
var zIn, zIn1, zIn2, v1 uintptr
|
|
var v25 Tu16
|
|
var _ /* sz at bp+0 */ Tu32
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = bOverflow, iEnd, j, k, k1, k2, n, sz2, u, x, zIn, zIn1, zIn2, v1, v25, v30, v31
|
|
n = _jsonbPayloadSize(tls, pParse, i, bp)
|
|
if n == uint32(0) {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
return (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob + uint32(1)
|
|
}
|
|
switch libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i)))) & libc.Int32FromInt32(0x0f) {
|
|
case JSONB_NULL:
|
|
goto _2
|
|
case int32(JSONB_TRUE):
|
|
goto _3
|
|
case int32(JSONB_FALSE):
|
|
goto _4
|
|
case int32(JSONB_FLOAT):
|
|
goto _5
|
|
case int32(JSONB_INT):
|
|
goto _6
|
|
case int32(JSONB_INT5):
|
|
goto _7
|
|
case int32(JSONB_FLOAT5):
|
|
goto _8
|
|
case int32(JSONB_TEXTJ):
|
|
goto _9
|
|
case int32(JSONB_TEXT):
|
|
goto _10
|
|
case int32(JSONB_TEXT5):
|
|
goto _11
|
|
case int32(JSONB_TEXTRAW):
|
|
goto _12
|
|
case int32(JSONB_ARRAY):
|
|
goto _13
|
|
case int32(JSONB_OBJECT):
|
|
goto _14
|
|
default:
|
|
goto _15
|
|
}
|
|
goto _16
|
|
_2:
|
|
;
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+1690, uint32(4))
|
|
return i + uint32(1)
|
|
_3:
|
|
;
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+8182, uint32(4))
|
|
return i + uint32(1)
|
|
_4:
|
|
;
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+8187, uint32(5))
|
|
return i + uint32(1)
|
|
_6:
|
|
;
|
|
_5:
|
|
;
|
|
if **(**Tu32)(__ccgo_up(bp)) == uint32(0) {
|
|
goto malformed_jsonb
|
|
}
|
|
_jsonAppendRaw(tls, pOut, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i+n), **(**Tu32)(__ccgo_up(bp)))
|
|
goto _16
|
|
_7:
|
|
; /* Integer literal in hexadecimal notation */
|
|
k = uint32(2)
|
|
u = uint64(0)
|
|
zIn = (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i+n)
|
|
bOverflow = 0
|
|
if **(**Tu32)(__ccgo_up(bp)) == uint32(0) {
|
|
goto malformed_jsonb
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn))) == int32('-') {
|
|
_jsonAppendChar(tls, pOut, int8('-'))
|
|
k = k + 1
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zIn))) == int32('+') {
|
|
k = k + 1
|
|
}
|
|
}
|
|
for {
|
|
if !(k < **(**Tu32)(__ccgo_up(bp))) {
|
|
break
|
|
}
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn + uintptr(k))))])&libc.Int32FromInt32(0x08) != 0) {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
break
|
|
} else {
|
|
if u>>libc.Int32FromInt32(60) != uint64(0) {
|
|
bOverflow = int32(1)
|
|
} else {
|
|
u = u*uint64(16) + uint64(_sqlite3HexToInt(tls, int32(**(**int8)(__ccgo_up(zIn + uintptr(k))))))
|
|
}
|
|
}
|
|
goto _17
|
|
_17:
|
|
;
|
|
k = k + 1
|
|
}
|
|
if bOverflow != 0 {
|
|
v1 = __ccgo_ts + 26481
|
|
} else {
|
|
v1 = __ccgo_ts + 13008
|
|
}
|
|
_jsonPrintf(tls, int32(100), pOut, v1, libc.VaList(bp+16, u))
|
|
goto _16
|
|
_8:
|
|
; /* Float literal missing digits beside "." */
|
|
k1 = uint32(0)
|
|
zIn1 = (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i+n)
|
|
if **(**Tu32)(__ccgo_up(bp)) == uint32(0) {
|
|
goto malformed_jsonb
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn1))) == int32('-') {
|
|
_jsonAppendChar(tls, pOut, int8('-'))
|
|
k1 = k1 + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn1 + uintptr(k1)))) == int32('.') {
|
|
_jsonAppendChar(tls, pOut, int8('0'))
|
|
}
|
|
for {
|
|
if !(k1 < **(**Tu32)(__ccgo_up(bp))) {
|
|
break
|
|
}
|
|
_jsonAppendChar(tls, pOut, **(**int8)(__ccgo_up(zIn1 + uintptr(k1))))
|
|
if int32(**(**int8)(__ccgo_up(zIn1 + uintptr(k1)))) == int32('.') && (k1+uint32(1) == **(**Tu32)(__ccgo_up(bp)) || !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn1 + uintptr(k1+uint32(1)))))])&libc.Int32FromInt32(0x04) != 0)) {
|
|
_jsonAppendChar(tls, pOut, int8('0'))
|
|
}
|
|
goto _20
|
|
_20:
|
|
;
|
|
k1 = k1 + 1
|
|
}
|
|
goto _16
|
|
_10:
|
|
;
|
|
_9:
|
|
;
|
|
if (*TJsonString)(unsafe.Pointer(pOut)).FnUsed+uint64(**(**Tu32)(__ccgo_up(bp)))+uint64(2) <= (*TJsonString)(unsafe.Pointer(pOut)).FnAlloc || _jsonStringGrow(tls, pOut, **(**Tu32)(__ccgo_up(bp))+uint32(2)) == 0 {
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pOut)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(pOut)).FnUsed))) = int8('"')
|
|
libc.Xmemcpy(tls, (*TJsonString)(unsafe.Pointer(pOut)).FzBuf+uintptr((*TJsonString)(unsafe.Pointer(pOut)).FnUsed)+uintptr(1), (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i+n), uint64(**(**Tu32)(__ccgo_up(bp))))
|
|
**(**int8)(__ccgo_up((*TJsonString)(unsafe.Pointer(pOut)).FzBuf + uintptr((*TJsonString)(unsafe.Pointer(pOut)).FnUsed+uint64(**(**Tu32)(__ccgo_up(bp)))+uint64(1)))) = int8('"')
|
|
**(**Tu64)(__ccgo_up(pOut + 24)) += uint64(**(**Tu32)(__ccgo_up(bp)) + uint32(2))
|
|
}
|
|
goto _16
|
|
_11:
|
|
;
|
|
sz2 = **(**Tu32)(__ccgo_up(bp))
|
|
zIn2 = (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(i+n)
|
|
_jsonAppendChar(tls, pOut, int8('"'))
|
|
for sz2 > uint32(0) {
|
|
k2 = uint32(0)
|
|
for {
|
|
if !(k2 < sz2 && (_jsonIsOk[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn2 + uintptr(k2))))] != 0 || int32(**(**int8)(__ccgo_up(zIn2 + uintptr(k2)))) == int32('\''))) {
|
|
break
|
|
}
|
|
goto _21
|
|
_21:
|
|
;
|
|
k2 = k2 + 1
|
|
}
|
|
if k2 > uint32(0) {
|
|
_jsonAppendRawNZ(tls, pOut, zIn2, k2)
|
|
if k2 >= sz2 {
|
|
break
|
|
}
|
|
zIn2 = zIn2 + uintptr(k2)
|
|
sz2 = sz2 - k2
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn2))) == int32('"') {
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26579, uint32(2))
|
|
zIn2 = zIn2 + 1
|
|
sz2 = sz2 - 1
|
|
continue
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn2))) <= int32(0x1f) {
|
|
if (*TJsonString)(unsafe.Pointer(pOut)).FnUsed+uint64(7) > (*TJsonString)(unsafe.Pointer(pOut)).FnAlloc && _jsonStringGrow(tls, pOut, uint32(7)) != 0 {
|
|
break
|
|
}
|
|
_jsonAppendControlChar(tls, pOut, libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn2))))
|
|
zIn2 = zIn2 + 1
|
|
sz2 = sz2 - 1
|
|
continue
|
|
}
|
|
if sz2 < uint32(2) {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
break
|
|
}
|
|
switch libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn2 + 1)))) {
|
|
case int32('\''):
|
|
_jsonAppendChar(tls, pOut, int8('\''))
|
|
case int32('v'):
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26582, uint32(6))
|
|
case int32('x'):
|
|
if sz2 < uint32(4) {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
sz2 = uint32(2)
|
|
break
|
|
}
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26589, uint32(4))
|
|
_jsonAppendRawNZ(tls, pOut, zIn2+2, uint32(2))
|
|
zIn2 = zIn2 + uintptr(2)
|
|
sz2 = sz2 - uint32(2)
|
|
case int32('0'):
|
|
_jsonAppendRawNZ(tls, pOut, __ccgo_ts+26594, uint32(6))
|
|
case int32('\r'):
|
|
if sz2 > uint32(2) && int32(**(**int8)(__ccgo_up(zIn2 + 2))) == int32('\n') {
|
|
zIn2 = zIn2 + 1
|
|
sz2 = sz2 - 1
|
|
}
|
|
case int32('\n'):
|
|
case int32(0xe2):
|
|
/* '\' followed by either U+2028 or U+2029 is ignored as
|
|
** whitespace. Not that in UTF8, U+2028 is 0xe2 0x80 0x29.
|
|
** U+2029 is the same except for the last byte */
|
|
if sz2 < uint32(4) || int32(0x80) != libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn2 + 2)))) || int32(0xa8) != libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn2 + 3)))) && int32(0xa9) != libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn2 + 3)))) {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
sz2 = uint32(2)
|
|
break
|
|
}
|
|
zIn2 = zIn2 + uintptr(2)
|
|
sz2 = sz2 - uint32(2)
|
|
default:
|
|
_jsonAppendRawNZ(tls, pOut, zIn2, uint32(2))
|
|
break
|
|
}
|
|
zIn2 = zIn2 + uintptr(2)
|
|
sz2 = sz2 - uint32(2)
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8('"'))
|
|
goto _16
|
|
_12:
|
|
;
|
|
_jsonAppendString(tls, pOut, (*TJsonParse)(unsafe.Pointer(pParse)).FaBlob+uintptr(i+n), **(**Tu32)(__ccgo_up(bp)))
|
|
goto _16
|
|
_13:
|
|
;
|
|
_jsonAppendChar(tls, pOut, int8('['))
|
|
j = i + n
|
|
iEnd = j + **(**Tu32)(__ccgo_up(bp))
|
|
v1 = pParse + 44
|
|
*(*Tu16)(unsafe.Pointer(v1)) = *(*Tu16)(unsafe.Pointer(v1)) + 1
|
|
v25 = *(*Tu16)(unsafe.Pointer(v1))
|
|
if libc.Int32FromUint16(v25) > int32(JSON_MAX_DEPTH) {
|
|
_jsonStringTooDeep(tls, pOut)
|
|
}
|
|
for j < iEnd && libc.Int32FromUint8((*TJsonString)(unsafe.Pointer(pOut)).FeErr) == 0 {
|
|
j = _jsonTranslateBlobToText(tls, pParse, j, pOut)
|
|
_jsonAppendChar(tls, pOut, int8(','))
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = (*TJsonParse)(unsafe.Pointer(pParse)).FiDepth - 1
|
|
if j > iEnd {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
}
|
|
if **(**Tu32)(__ccgo_up(bp)) > uint32(0) {
|
|
_jsonStringTrimOneChar(tls, pOut)
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8(']'))
|
|
goto _16
|
|
_14:
|
|
;
|
|
x = 0
|
|
_jsonAppendChar(tls, pOut, int8('{'))
|
|
j = i + n
|
|
iEnd = j + **(**Tu32)(__ccgo_up(bp))
|
|
v1 = pParse + 44
|
|
*(*Tu16)(unsafe.Pointer(v1)) = *(*Tu16)(unsafe.Pointer(v1)) + 1
|
|
v25 = *(*Tu16)(unsafe.Pointer(v1))
|
|
if libc.Int32FromUint16(v25) > int32(JSON_MAX_DEPTH) {
|
|
_jsonStringTooDeep(tls, pOut)
|
|
}
|
|
for j < iEnd && libc.Int32FromUint8((*TJsonString)(unsafe.Pointer(pOut)).FeErr) == 0 {
|
|
j = _jsonTranslateBlobToText(tls, pParse, j, pOut)
|
|
v31 = x
|
|
x = x + 1
|
|
if v31&int32(1) != 0 {
|
|
v30 = int32(',')
|
|
} else {
|
|
v30 = int32(':')
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8(v30))
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = (*TJsonParse)(unsafe.Pointer(pParse)).FiDepth - 1
|
|
if x&int32(1) != 0 || j > iEnd {
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
}
|
|
if **(**Tu32)(__ccgo_up(bp)) > uint32(0) {
|
|
_jsonStringTrimOneChar(tls, pOut)
|
|
}
|
|
_jsonAppendChar(tls, pOut, int8('}'))
|
|
goto _16
|
|
_15:
|
|
;
|
|
goto malformed_jsonb
|
|
malformed_jsonb:
|
|
;
|
|
v1 = pOut + 33
|
|
*(*Tu8)(unsafe.Pointer(v1)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v1))) | libc.Int32FromInt32(JSTRING_MALFORMED))
|
|
goto _16
|
|
_16:
|
|
;
|
|
return i + n + **(**Tu32)(__ccgo_up(bp))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Translate a single element of JSON text at pParse->zJson[i] into
|
|
// ** its equivalent binary JSONB representation. Append the translation into
|
|
// ** pParse->aBlob[] beginning at pParse->nBlob. The size of
|
|
// ** pParse->aBlob[] is increased as necessary.
|
|
// **
|
|
// ** Return the index of the first character past the end of the element parsed,
|
|
// ** or one of the following special result codes:
|
|
// **
|
|
// ** 0 End of input
|
|
// ** -1 Syntax error or OOM
|
|
// ** -2 '}' seen ** -3 ']' seen \___ For these returns, pParse->iErr is set to
|
|
// ** -4 ',' seen / the index in zJson[] of the seen character
|
|
// ** -5 ':' seen /
|
|
// */
|
|
func _jsonTranslateTextToBlob(tls *libc.TLS, pParse uintptr, i Tu32) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var c, cDelim int8
|
|
var iBlob, iStart, iThis, j, k1, v46 Tu32
|
|
var k, nn, x, v48 int32
|
|
var opcode, seenE, t Tu8
|
|
var z, v41 uintptr
|
|
var v40 Tu16
|
|
var _ /* op at bp+0 */ int32
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = c, cDelim, iBlob, iStart, iThis, j, k, k1, nn, opcode, seenE, t, x, z, v40, v41, v46, v48
|
|
z = (*TJsonParse)(unsafe.Pointer(pParse)).FzJson
|
|
goto json_parse_restart
|
|
json_parse_restart:
|
|
;
|
|
switch libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i))))) {
|
|
case int32('{'):
|
|
goto _1
|
|
case int32('['):
|
|
goto _2
|
|
case int32('"'):
|
|
goto _3
|
|
case int32('\''):
|
|
goto _4
|
|
case int32('t'):
|
|
goto _5
|
|
case int32('f'):
|
|
goto _6
|
|
case int32('.'):
|
|
goto _7
|
|
case int32('9'):
|
|
goto _8
|
|
case int32('8'):
|
|
goto _9
|
|
case int32('7'):
|
|
goto _10
|
|
case int32('6'):
|
|
goto _11
|
|
case int32('5'):
|
|
goto _12
|
|
case int32('4'):
|
|
goto _13
|
|
case int32('3'):
|
|
goto _14
|
|
case int32('2'):
|
|
goto _15
|
|
case int32('1'):
|
|
goto _16
|
|
case int32('0'):
|
|
goto _17
|
|
case int32('-'):
|
|
goto _18
|
|
case int32('+'):
|
|
goto _19
|
|
case int32('}'):
|
|
goto _20
|
|
case int32(']'):
|
|
goto _21
|
|
case int32(','):
|
|
goto _22
|
|
case int32(':'):
|
|
goto _23
|
|
case 0:
|
|
goto _24
|
|
case int32(0x20):
|
|
goto _25
|
|
case int32(0x0d):
|
|
goto _26
|
|
case int32(0x0a):
|
|
goto _27
|
|
case int32(0x09):
|
|
goto _28
|
|
case int32(0xef):
|
|
goto _29
|
|
case int32(0xe3):
|
|
goto _30
|
|
case int32(0xe2):
|
|
goto _31
|
|
case int32(0xe1):
|
|
goto _32
|
|
case int32(0xc2):
|
|
goto _33
|
|
case int32('/'):
|
|
goto _34
|
|
case int32(0x0c):
|
|
goto _35
|
|
case int32(0x0b):
|
|
goto _36
|
|
case int32('n'):
|
|
goto _37
|
|
default:
|
|
goto _38
|
|
}
|
|
goto _39
|
|
_1:
|
|
;
|
|
/* Parse object */
|
|
iThis = (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_OBJECT), uint64(libc.Uint32FromInt32((*TJsonParse)(unsafe.Pointer(pParse)).FnJson)-i), uintptr(0))
|
|
v41 = pParse + 44
|
|
*(*Tu16)(unsafe.Pointer(v41)) = *(*Tu16)(unsafe.Pointer(v41)) + 1
|
|
v40 = *(*Tu16)(unsafe.Pointer(v41))
|
|
if libc.Int32FromUint16(v40) > int32(JSON_MAX_DEPTH) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
}
|
|
iStart = (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob
|
|
j = i + uint32(1)
|
|
for {
|
|
iBlob = (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob
|
|
x = _jsonTranslateTextToBlob(tls, pParse, j)
|
|
if x <= 0 {
|
|
if x == -int32(2) {
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob != iStart {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
}
|
|
break
|
|
}
|
|
j = j + libc.Uint32FromInt32(_json5Whitespace(tls, z+uintptr(j)))
|
|
**(**int32)(__ccgo_up(bp)) = int32(JSONB_TEXT)
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))])&int32(0x42) != 0 || int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32('\\') && _jsonIs4HexB(tls, z+uintptr(j+uint32(1)), bp) != 0 {
|
|
k = libc.Int32FromUint32(j + uint32(1))
|
|
for libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(k))))])&int32(0x46) != 0 && _json5Whitespace(tls, z+uintptr(k)) == 0 || int32(**(**int8)(__ccgo_up(z + uintptr(k)))) == int32('\\') && _jsonIs4HexB(tls, z+uintptr(k+int32(1)), bp) != 0 {
|
|
k = k + 1
|
|
}
|
|
_jsonBlobAppendNode(tls, pParse, libc.Uint8FromInt32(**(**int32)(__ccgo_up(bp))), uint64(libc.Uint32FromInt32(k)-j), z+uintptr(j))
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
x = k
|
|
} else {
|
|
if x != -int32(1) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
}
|
|
return -int32(1)
|
|
}
|
|
}
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Foom != 0 {
|
|
return -int32(1)
|
|
}
|
|
t = libc.Uint8FromInt32(libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TJsonParse)(unsafe.Pointer(pParse)).FaBlob + uintptr(iBlob)))) & int32(0x0f))
|
|
if libc.Int32FromUint8(t) < int32(JSONB_TEXT) || libc.Int32FromUint8(t) > int32(JSONB_TEXTRAW) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
j = libc.Uint32FromInt32(x)
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(':') {
|
|
j = j + 1
|
|
} else {
|
|
if _jsonIsSpace[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))] != 0 {
|
|
/* strspn() is not helpful here */
|
|
for cond := true; cond; cond = _jsonIsSpace[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))] != 0 {
|
|
j = j + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(':') {
|
|
j = j + 1
|
|
goto parse_object_value
|
|
}
|
|
}
|
|
x = _jsonTranslateTextToBlob(tls, pParse, j)
|
|
if x != -int32(5) {
|
|
if x != -int32(1) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
}
|
|
return -int32(1)
|
|
}
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr + uint32(1)
|
|
}
|
|
goto parse_object_value
|
|
parse_object_value:
|
|
;
|
|
x = _jsonTranslateTextToBlob(tls, pParse, j)
|
|
if x <= 0 {
|
|
if x != -int32(1) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
}
|
|
return -int32(1)
|
|
}
|
|
j = libc.Uint32FromInt32(x)
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(',') {
|
|
goto _42
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32('}') {
|
|
break
|
|
} else {
|
|
if _jsonIsSpace[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))] != 0 {
|
|
j = j + (uint32(1) + uint32(libc.Xstrspn(tls, z+uintptr(j+uint32(1)), uintptr(unsafe.Pointer(&_jsonSpaces)))))
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(',') {
|
|
goto _42
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32('}') {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
x = _jsonTranslateTextToBlob(tls, pParse, j)
|
|
if x == -int32(4) {
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr
|
|
goto _42
|
|
}
|
|
if x == -int32(2) {
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr
|
|
break
|
|
}
|
|
}
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
goto _42
|
|
_42:
|
|
;
|
|
j = j + 1
|
|
}
|
|
_jsonBlobChangePayloadSize(tls, pParse, iThis, (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob-iStart)
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = (*TJsonParse)(unsafe.Pointer(pParse)).FiDepth - 1
|
|
return libc.Int32FromUint32(j + uint32(1))
|
|
_2:
|
|
;
|
|
/* Parse array */
|
|
iThis = (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_ARRAY), uint64(libc.Uint32FromInt32((*TJsonParse)(unsafe.Pointer(pParse)).FnJson)-i), uintptr(0))
|
|
iStart = (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).Foom != 0 {
|
|
return -int32(1)
|
|
}
|
|
v41 = pParse + 44
|
|
*(*Tu16)(unsafe.Pointer(v41)) = *(*Tu16)(unsafe.Pointer(v41)) + 1
|
|
v40 = *(*Tu16)(unsafe.Pointer(v41))
|
|
if libc.Int32FromUint16(v40) > int32(JSON_MAX_DEPTH) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
}
|
|
j = i + uint32(1)
|
|
for {
|
|
x = _jsonTranslateTextToBlob(tls, pParse, j)
|
|
if x <= 0 {
|
|
if x == -int32(3) {
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr
|
|
if (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob != iStart {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
}
|
|
break
|
|
}
|
|
if x != -int32(1) {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
}
|
|
return -int32(1)
|
|
}
|
|
j = libc.Uint32FromInt32(x)
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(',') {
|
|
goto _45
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(']') {
|
|
break
|
|
} else {
|
|
if _jsonIsSpace[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))] != 0 {
|
|
j = j + (uint32(1) + uint32(libc.Xstrspn(tls, z+uintptr(j+uint32(1)), uintptr(unsafe.Pointer(&_jsonSpaces)))))
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(',') {
|
|
goto _45
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) == int32(']') {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
x = _jsonTranslateTextToBlob(tls, pParse, j)
|
|
if x == -int32(4) {
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr
|
|
goto _45
|
|
}
|
|
if x == -int32(3) {
|
|
j = (*TJsonParse)(unsafe.Pointer(pParse)).FiErr
|
|
break
|
|
}
|
|
}
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
goto _45
|
|
_45:
|
|
;
|
|
j = j + 1
|
|
}
|
|
_jsonBlobChangePayloadSize(tls, pParse, iThis, (*TJsonParse)(unsafe.Pointer(pParse)).FnBlob-iStart)
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiDepth = (*TJsonParse)(unsafe.Pointer(pParse)).FiDepth - 1
|
|
return libc.Int32FromUint32(j + uint32(1))
|
|
_4:
|
|
;
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
opcode = uint8(JSONB_TEXT)
|
|
goto parse_string
|
|
_3:
|
|
;
|
|
/* Parse string */
|
|
opcode = uint8(JSONB_TEXT)
|
|
goto parse_string
|
|
parse_string:
|
|
;
|
|
cDelim = **(**int8)(__ccgo_up(z + uintptr(i)))
|
|
j = i + uint32(1)
|
|
for int32(1) != 0 {
|
|
if _jsonIsOk[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))] != 0 {
|
|
if !(_jsonIsOk[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j+uint32(1)))))] != 0) {
|
|
j = j + uint32(1)
|
|
} else {
|
|
if !(_jsonIsOk[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j+uint32(2)))))] != 0) {
|
|
j = j + uint32(2)
|
|
} else {
|
|
j = j + uint32(3)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
c = **(**int8)(__ccgo_up(z + uintptr(j)))
|
|
if int32(c) == int32(cDelim) {
|
|
break
|
|
} else {
|
|
if int32(c) == int32('\\') {
|
|
j = j + 1
|
|
v46 = j
|
|
c = **(**int8)(__ccgo_up(z + uintptr(v46)))
|
|
if int32(c) == int32('"') || int32(c) == int32('\\') || int32(c) == int32('/') || int32(c) == int32('b') || int32(c) == int32('f') || int32(c) == int32('n') || int32(c) == int32('r') || int32(c) == int32('t') || int32(c) == int32('u') && _jsonIs4Hex(tls, z+uintptr(j+uint32(1))) != 0 {
|
|
if libc.Int32FromUint8(opcode) == int32(JSONB_TEXT) {
|
|
opcode = uint8(JSONB_TEXTJ)
|
|
}
|
|
} else {
|
|
if int32(c) == int32('\'') || int32(c) == int32('v') || int32(c) == int32('\n') || int32(c) == int32('0') && !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j+uint32(1)))))])&libc.Int32FromInt32(0x04) != 0) || int32(0xe2) == libc.Int32FromUint8(libc.Uint8FromInt8(c)) && int32(0x80) == libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j+uint32(1)))))) && (int32(0xa8) == libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j+uint32(2)))))) || int32(0xa9) == libc.Int32FromUint8(libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j+uint32(2))))))) || int32(c) == int32('x') && _jsonIs2Hex(tls, z+uintptr(j+uint32(1))) != 0 {
|
|
opcode = uint8(JSONB_TEXT5)
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
} else {
|
|
if int32(c) == int32('\r') {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j+uint32(1))))) == int32('\n') {
|
|
j = j + 1
|
|
}
|
|
opcode = uint8(JSONB_TEXT5)
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
} else {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if int32(c) <= int32(0x1f) {
|
|
if int32(c) == 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
/* Control characters are not allowed in canonical JSON string
|
|
** literals, but are allowed in JSON5 string literals. */
|
|
opcode = uint8(JSONB_TEXT5)
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
} else {
|
|
if int32(c) == int32('"') {
|
|
opcode = uint8(JSONB_TEXT5)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
j = j + 1
|
|
}
|
|
_jsonBlobAppendNode(tls, pParse, opcode, uint64(j-uint32(1)-i), z+uintptr(i+uint32(1)))
|
|
return libc.Int32FromUint32(j + uint32(1))
|
|
_5:
|
|
;
|
|
if libc.Xstrncmp(tls, z+uintptr(i), __ccgo_ts+8182, uint64(4)) == 0 && !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(4)))))])&libc.Int32FromInt32(0x06) != 0) {
|
|
_jsonBlobAppendOneByte(tls, pParse, uint8(JSONB_TRUE))
|
|
return libc.Int32FromUint32(i + uint32(4))
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
_6:
|
|
;
|
|
if libc.Xstrncmp(tls, z+uintptr(i), __ccgo_ts+8187, uint64(5)) == 0 && !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(5)))))])&libc.Int32FromInt32(0x06) != 0) {
|
|
_jsonBlobAppendOneByte(tls, pParse, uint8(JSONB_FALSE))
|
|
return libc.Int32FromUint32(i + uint32(5))
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
_19:
|
|
;
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = uint8(0x00) /* Bit 0x01: JSON5. Bit 0x02: FLOAT */
|
|
goto parse_number
|
|
_7:
|
|
;
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1)))))])&int32(0x04) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = uint8(0x03) /* Bit 0x01: JSON5. Bit 0x02: FLOAT */
|
|
seenE = uint8(0)
|
|
goto parse_number_2
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
_18:
|
|
;
|
|
_17:
|
|
;
|
|
_16:
|
|
;
|
|
_15:
|
|
;
|
|
_14:
|
|
;
|
|
_13:
|
|
;
|
|
_12:
|
|
;
|
|
_11:
|
|
;
|
|
_10:
|
|
;
|
|
_9:
|
|
;
|
|
_8:
|
|
;
|
|
/* Parse number */
|
|
t = uint8(0x00) /* Bit 0x01: JSON5. Bit 0x02: FLOAT */
|
|
goto parse_number
|
|
parse_number:
|
|
;
|
|
seenE = uint8(0)
|
|
c = **(**int8)(__ccgo_up(z + uintptr(i)))
|
|
if int32(c) <= int32('0') {
|
|
if int32(c) == int32('0') {
|
|
if (int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1))))) == int32('x') || int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1))))) == int32('X')) && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(2)))))])&int32(0x08) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = uint8(0x01)
|
|
j = i + uint32(3)
|
|
for {
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))])&int32(0x08) != 0) {
|
|
break
|
|
}
|
|
goto _47
|
|
_47:
|
|
;
|
|
j = j + 1
|
|
}
|
|
goto parse_number_finish
|
|
} else {
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1)))))])&int32(0x04) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i + uint32(1)
|
|
return -int32(1)
|
|
}
|
|
}
|
|
} else {
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1)))))])&libc.Int32FromInt32(0x04) != 0) {
|
|
/* JSON5 allows for "+Infinity" and "-Infinity" using exactly
|
|
** that case. SQLite also allows these in any case and it allows
|
|
** "+inf" and "-inf". */
|
|
if (int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1))))) == int32('I') || int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1))))) == int32('i')) && Xsqlite3_strnicmp(tls, z+uintptr(i+uint32(1)), __ccgo_ts+26477, int32(3)) == 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(i)))) == int32('-') {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_FLOAT), uint64(6), __ccgo_ts+26560)
|
|
} else {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_FLOAT), uint64(5), __ccgo_ts+26567)
|
|
}
|
|
if Xsqlite3_strnicmp(tls, z+uintptr(i+uint32(4)), __ccgo_ts+26573, int32(5)) == 0 {
|
|
v48 = int32(9)
|
|
} else {
|
|
v48 = int32(4)
|
|
}
|
|
return libc.Int32FromUint32(i + libc.Uint32FromInt32(v48))
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1))))) == int32('.') {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = libc.Uint8FromInt32(int32(t) | libc.Int32FromInt32(0x01))
|
|
goto parse_number_2
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(1))))) == int32('0') {
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(2)))))])&int32(0x04) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i + uint32(1)
|
|
return -int32(1)
|
|
} else {
|
|
if (int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(2))))) == int32('x') || int32(**(**int8)(__ccgo_up(z + uintptr(i+uint32(2))))) == int32('X')) && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(3)))))])&int32(0x08) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = libc.Uint8FromInt32(int32(t) | libc.Int32FromInt32(0x01))
|
|
j = i + uint32(4)
|
|
for {
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j))))])&int32(0x08) != 0) {
|
|
break
|
|
}
|
|
goto _49
|
|
_49:
|
|
;
|
|
j = j + 1
|
|
}
|
|
goto parse_number_finish
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
goto parse_number_2
|
|
parse_number_2:
|
|
;
|
|
j = i + uint32(1)
|
|
for {
|
|
c = **(**int8)(__ccgo_up(z + uintptr(j)))
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(c)])&int32(0x04) != 0 {
|
|
goto _50
|
|
}
|
|
if int32(c) == int32('.') {
|
|
if libc.Int32FromUint8(t)&int32(0x02) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
t = libc.Uint8FromInt32(int32(t) | libc.Int32FromInt32(0x02))
|
|
goto _50
|
|
}
|
|
if int32(c) == int32('e') || int32(c) == int32('E') {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j-uint32(1))))) < int32('0') {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j-uint32(1))))) == int32('.') && j-uint32(2) >= i && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j-uint32(2)))))])&int32(0x04) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = libc.Uint8FromInt32(int32(t) | libc.Int32FromInt32(0x01))
|
|
} else {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
}
|
|
if seenE != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
t = libc.Uint8FromInt32(int32(t) | libc.Int32FromInt32(0x02))
|
|
seenE = uint8(1)
|
|
c = **(**int8)(__ccgo_up(z + uintptr(j+uint32(1))))
|
|
if int32(c) == int32('+') || int32(c) == int32('-') {
|
|
j = j + 1
|
|
c = **(**int8)(__ccgo_up(z + uintptr(j+uint32(1))))
|
|
}
|
|
if int32(c) < int32('0') || int32(c) > int32('9') {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
goto _50
|
|
}
|
|
break
|
|
goto _50
|
|
_50:
|
|
;
|
|
j = j + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j-uint32(1))))) < int32('0') {
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j-uint32(1))))) == int32('.') && j-uint32(2) >= i && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(j-uint32(2)))))])&int32(0x04) != 0 {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
t = libc.Uint8FromInt32(int32(t) | libc.Int32FromInt32(0x01))
|
|
} else {
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = j
|
|
return -int32(1)
|
|
}
|
|
}
|
|
goto parse_number_finish
|
|
parse_number_finish:
|
|
;
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(i)))) == int32('+') {
|
|
i = i + 1
|
|
}
|
|
_jsonBlobAppendNode(tls, pParse, libc.Uint8FromInt32(int32(JSONB_INT)+libc.Int32FromUint8(t)), uint64(j-i), z+uintptr(i))
|
|
return libc.Int32FromUint32(j)
|
|
_20:
|
|
;
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(2) /* End of {...} */
|
|
_21:
|
|
;
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(3) /* End of [...] */
|
|
_22:
|
|
;
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(4) /* List separator */
|
|
_23:
|
|
;
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(5) /* Object label/value separator */
|
|
_24:
|
|
;
|
|
return 0 /* End of file */
|
|
_28:
|
|
;
|
|
_27:
|
|
;
|
|
_26:
|
|
;
|
|
_25:
|
|
;
|
|
i = i + (uint32(1) + uint32(libc.Xstrspn(tls, z+uintptr(i+uint32(1)), uintptr(unsafe.Pointer(&_jsonSpaces)))))
|
|
goto json_parse_restart
|
|
_36:
|
|
;
|
|
_35:
|
|
;
|
|
_34:
|
|
;
|
|
_33:
|
|
;
|
|
_32:
|
|
;
|
|
_31:
|
|
;
|
|
_30:
|
|
;
|
|
_29:
|
|
;
|
|
j = libc.Uint32FromInt32(_json5Whitespace(tls, z+uintptr(i)))
|
|
if j > uint32(0) {
|
|
i = i + j
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
goto json_parse_restart
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1)
|
|
_37:
|
|
;
|
|
if libc.Xstrncmp(tls, z+uintptr(i), __ccgo_ts+1690, uint64(4)) == 0 && !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+uint32(4)))))])&libc.Int32FromInt32(0x06) != 0) {
|
|
_jsonBlobAppendOneByte(tls, pParse, uint8(JSONB_NULL))
|
|
return libc.Int32FromUint32(i + uint32(4))
|
|
}
|
|
/* fall-through into the default case that checks for NaN */
|
|
_38:
|
|
;
|
|
c = **(**int8)(__ccgo_up(z + uintptr(i)))
|
|
k1 = uint32(0)
|
|
for {
|
|
if !(uint64(k1) < libc.Uint64FromInt64(120)/libc.Uint64FromInt64(24)) {
|
|
break
|
|
}
|
|
if int32(c) != int32(_aNanInfName[k1].Fc1) && int32(c) != int32(_aNanInfName[k1].Fc2) {
|
|
goto _51
|
|
}
|
|
nn = int32(_aNanInfName[k1].Fn)
|
|
if Xsqlite3_strnicmp(tls, z+uintptr(i), _aNanInfName[k1].FzMatch, nn) != 0 {
|
|
goto _51
|
|
}
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(i+libc.Uint32FromInt32(nn)))))])&int32(0x06) != 0 {
|
|
goto _51
|
|
}
|
|
if int32(_aNanInfName[k1].FeType) == int32(JSONB_FLOAT) {
|
|
_jsonBlobAppendNode(tls, pParse, uint8(JSONB_FLOAT), uint64(5), __ccgo_ts+26567)
|
|
} else {
|
|
_jsonBlobAppendOneByte(tls, pParse, uint8(JSONB_NULL))
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FhasNonstd = uint8(1)
|
|
return libc.Int32FromUint32(i + libc.Uint32FromInt32(nn))
|
|
goto _51
|
|
_51:
|
|
;
|
|
k1 = k1 + 1
|
|
}
|
|
(*TJsonParse)(unsafe.Pointer(pParse)).FiErr = i
|
|
return -int32(1) /* Syntax error */
|
|
_39:
|
|
; /* End switch(z[i]) */
|
|
return r
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up
|
|
// ** that name in the set of source tables in pSrcList and make the pExpr
|
|
// ** expression node refer back to that source column. The following changes
|
|
// ** are made to pExpr:
|
|
// **
|
|
// ** pExpr->iDb Set the index in db->aDb[] of the database X
|
|
// ** (even if X is implied).
|
|
// ** pExpr->iTable Set to the cursor number for the table obtained
|
|
// ** from pSrcList.
|
|
// ** pExpr->y.pTab Points to the Table structure of X.Y (even if
|
|
// ** X and/or Y are implied.)
|
|
// ** pExpr->iColumn Set to the column number within the table.
|
|
// ** pExpr->op Set to TK_COLUMN.
|
|
// ** pExpr->pLeft Any expression this points to is deleted
|
|
// ** pExpr->pRight Any expression this points to is deleted.
|
|
// **
|
|
// ** The zDb variable is the name of the database (the "X"). This value may be
|
|
// ** NULL meaning that name is of the form Y.Z or Z. Any available database
|
|
// ** can be used. The zTable variable is the name of the table (the "Y"). This
|
|
// ** value can be NULL if zDb is also NULL. If zTable is NULL it
|
|
// ** means that the form of the name is Z and that columns from any table
|
|
// ** can be used.
|
|
// **
|
|
// ** If the name cannot be resolved unambiguously, leave an error message
|
|
// ** in pParse and return WRC_Abort. Return WRC_Prune on success.
|
|
// */
|
|
func _lookupName(tls *libc.TLS, pParse uintptr, zDb uintptr, zTab uintptr, pRight uintptr, pNC uintptr, pExpr uintptr) (r int32) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var cnt, cntTab, eNewExprOp, hit, i, iCol, j, nSubquery, op, v4 int32
|
|
var db, pEList, pItem, pMatch, pOrig, pSchema, pSel, pSrcList, pTab, pTopNC, pUpsert, zAs, zCol, zErr, v8 uintptr
|
|
var v5 uint32
|
|
var _ /* bRowid at bp+8 */ int32
|
|
var _ /* pFJMatch at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = cnt, cntTab, db, eNewExprOp, hit, i, iCol, j, nSubquery, op, pEList, pItem, pMatch, pOrig, pSchema, pSel, pSrcList, pTab, pTopNC, pUpsert, zAs, zCol, zErr, v4, v5, v8 /* Loop counters */
|
|
cnt = 0 /* Number of matching column names */
|
|
cntTab = 0 /* Number of potential "rowid" matches */
|
|
nSubquery = 0 /* How many levels of subquery */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Use for looping over pSrcList items */
|
|
pMatch = uintptr(0) /* The matching pSrcList item */
|
|
pTopNC = pNC /* First namecontext in the list */
|
|
pSchema = uintptr(0) /* Schema of the expression */
|
|
eNewExprOp = int32(TK_COLUMN) /* New value for pExpr->op on success */
|
|
pTab = uintptr(0) /* Table holding the row */
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0) /* Matches for FULL JOIN .. USING */
|
|
zCol = *(*uintptr)(unsafe.Pointer(pRight + 8))
|
|
/* the name context cannot be NULL. */
|
|
/* The Z in X.Y.Z cannot be NULL */
|
|
/* Initialize the node to no-match */
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = -int32(1)
|
|
/* Translate the schema name in zDb into a pointer to the corresponding
|
|
** schema. If not found, pSchema will remain NULL and nothing will match
|
|
** resulting in an appropriate error message toward the end of this routine
|
|
*/
|
|
if zDb != 0 {
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&(libc.Int32FromInt32(NC_PartIdx)|libc.Int32FromInt32(NC_IsCheck)) != 0 {
|
|
/* Silently ignore database qualifiers inside CHECK constraints and
|
|
** partial indices. Do not raise errors because that might break
|
|
** legacy and because it does not hurt anything to just ignore the
|
|
** database name. */
|
|
zDb = uintptr(0)
|
|
} else {
|
|
i = 0
|
|
for {
|
|
if !(i < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
if _sqlite3StrICmp(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i)*32))).FzDbSName, zDb) == 0 {
|
|
pSchema = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i)*32))).FpSchema
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if i == (*Tsqlite3)(unsafe.Pointer(db)).FnDb && _sqlite3StrICmp(tls, __ccgo_ts+6820, zDb) == 0 {
|
|
/* This branch is taken when the main database has been renamed
|
|
** using SQLITE_DBCONFIG_MAINDBNAME. */
|
|
pSchema = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb))).FpSchema
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb))).FzDbSName
|
|
}
|
|
}
|
|
}
|
|
/* Start at the inner-most context and move outward until a match is found */
|
|
for cond := true; cond; cond = pNC != 0 {
|
|
pSrcList = (*TNameContext)(unsafe.Pointer(pNC)).FpSrcList
|
|
if pSrcList != 0 {
|
|
i = 0
|
|
pItem = pSrcList + 8
|
|
for {
|
|
if !(i < (*TSrcList)(unsafe.Pointer(pSrcList)).FnSrc) {
|
|
break
|
|
}
|
|
pTab = (*TSrcItem)(unsafe.Pointer(pItem)).FpSTab
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x4000>>14) != 0 {
|
|
/* In this case, pItem is a subquery that has been formed from a
|
|
** parenthesized subset of the FROM clause terms. Example:
|
|
** .... FROM t1 LEFT JOIN (t2 RIGHT JOIN t3 USING(x)) USING(y) ...
|
|
** \_________________________/
|
|
** This pItem -------------^
|
|
*/
|
|
hit = 0
|
|
pSel = (*TSubquery)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pItem + 72)))).FpSelect
|
|
pEList = (*TSelect)(unsafe.Pointer(pSel)).FpEList
|
|
j = 0
|
|
for {
|
|
if !(j < (*TExprList)(unsafe.Pointer(pEList)).FnExpr) {
|
|
break
|
|
}
|
|
**(**int32)(__ccgo_up(bp + 8)) = 0 /* True if possible rowid match */
|
|
if !(_sqlite3MatchEName(tls, pEList+8+uintptr(j)*32, zCol, zTab, zDb, bp+8) != 0) {
|
|
goto _3
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 8)) == 0 {
|
|
if cnt > 0 {
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x800>>11) == 0 || _sqlite3IdListIndex(tls, *(*uintptr)(unsafe.Pointer(pItem + 64)), zCol) < 0 || pMatch == pItem {
|
|
/* Two or more tables have the same column name which is
|
|
** not joined by USING. Or, a single table has two columns
|
|
** that match a USING term (if pMatch==pItem). These are both
|
|
** "ambiguous column name" errors. Signal as much by clearing
|
|
** pFJMatch and letting cnt go above 1. */
|
|
_sqlite3ExprListDelete(tls, db, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
} else {
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pItem)).Ffg.Fjointype)&int32(JT_RIGHT) == 0 {
|
|
/* An INNER or LEFT JOIN. Use the left-most table */
|
|
goto _3
|
|
} else {
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pItem)).Ffg.Fjointype)&int32(JT_LEFT) == 0 {
|
|
/* A RIGHT JOIN. Use the right-most table */
|
|
cnt = 0
|
|
_sqlite3ExprListDelete(tls, db, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
} else {
|
|
/* For a FULL JOIN, we must construct a coalesce() func */
|
|
_extendFJMatch(tls, pParse, bp, pMatch, (*TExpr)(unsafe.Pointer(pExpr)).FiColumn)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
cnt = cnt + 1
|
|
hit = int32(1)
|
|
} else {
|
|
if cnt > 0 {
|
|
/* This is a potential rowid match, but there has already been
|
|
** a real match found. So this can be ignored. */
|
|
goto _3
|
|
}
|
|
}
|
|
cntTab = cntTab + 1
|
|
pMatch = pItem
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = int16(j)
|
|
libc.SetBitFieldPtr16Uint32(pEList+8+uintptr(j)*32+16+4, libc.Uint32FromInt32(1), 6, 0x40)
|
|
/* rowid cannot be part of a USING clause - assert() this. */
|
|
if int32(uint32(*(*uint16)(unsafe.Pointer(pEList + 8 + uintptr(j)*32 + 16 + 4))&0x80>>7)) != 0 {
|
|
break
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
j = j + 1
|
|
}
|
|
if hit != 0 || zTab == uintptr(0) {
|
|
goto _2
|
|
}
|
|
}
|
|
if zTab != 0 {
|
|
if zDb != 0 {
|
|
if (*TTable)(unsafe.Pointer(pTab)).FpSchema != pSchema {
|
|
goto _2
|
|
}
|
|
if pSchema == uintptr(0) && libc.Xstrcmp(tls, zDb, __ccgo_ts+6825) != 0 {
|
|
goto _2
|
|
}
|
|
}
|
|
if (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias != uintptr(0) {
|
|
if _sqlite3StrICmp(tls, zTab, (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias) != 0 {
|
|
goto _2
|
|
}
|
|
} else {
|
|
if _sqlite3StrICmp(tls, zTab, (*TTable)(unsafe.Pointer(pTab)).FzName) != 0 {
|
|
if (*TTable)(unsafe.Pointer(pTab)).Ftnum != uint32(1) {
|
|
goto _2
|
|
}
|
|
if !(_isValidSchemaTableName(tls, zTab, pTab, zDb) != 0) {
|
|
goto _2
|
|
}
|
|
}
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) && (*TSrcItem)(unsafe.Pointer(pItem)).FzAlias != 0 {
|
|
_sqlite3RenameTokenRemap(tls, pParse, uintptr(0), pExpr+64)
|
|
}
|
|
}
|
|
j = _sqlite3ColumnIndex(tls, pTab, zCol)
|
|
if j >= 0 {
|
|
if cnt > 0 {
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x800>>11) == 0 || _sqlite3IdListIndex(tls, *(*uintptr)(unsafe.Pointer(pItem + 64)), zCol) < 0 {
|
|
/* Two or more tables have the same column name which is
|
|
** not joined by USING. This is an error. Signal as much
|
|
** by clearing pFJMatch and letting cnt go above 1. */
|
|
_sqlite3ExprListDelete(tls, db, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
} else {
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pItem)).Ffg.Fjointype)&int32(JT_RIGHT) == 0 {
|
|
/* An INNER or LEFT JOIN. Use the left-most table */
|
|
goto _2
|
|
} else {
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pItem)).Ffg.Fjointype)&int32(JT_LEFT) == 0 {
|
|
/* A RIGHT JOIN. Use the right-most table */
|
|
cnt = 0
|
|
_sqlite3ExprListDelete(tls, db, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
} else {
|
|
/* For a FULL JOIN, we must construct a coalesce() func */
|
|
_extendFJMatch(tls, pParse, bp, pMatch, (*TExpr)(unsafe.Pointer(pExpr)).FiColumn)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
cnt = cnt + 1
|
|
pMatch = pItem
|
|
/* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */
|
|
if j == int32((*TTable)(unsafe.Pointer(pTab)).FiPKey) {
|
|
v4 = -int32(1)
|
|
} else {
|
|
v4 = int32(int16(j))
|
|
}
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = int16(v4)
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x4000>>14) != 0 {
|
|
_sqlite3SrcItemColumnUsed(tls, pItem, j)
|
|
}
|
|
}
|
|
if 0 == cnt && (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_NoVisibleRowid) == uint32(0) {
|
|
/* pTab is a potential ROWID match. Keep track of it and match
|
|
** the ROWID later if that seems appropriate. (Search for "cntTab"
|
|
** to find related code.) Only allow a ROWID match if there is
|
|
** a single ROWID match candidate.
|
|
*/
|
|
/* The (much more common) non-SQLITE_ALLOW_ROWID_IN_VIEW case is
|
|
** simpler since we require exactly one candidate, which will
|
|
** always be a non-VIEW
|
|
*/
|
|
cntTab = cntTab + 1
|
|
pMatch = pItem
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
pItem += 80
|
|
}
|
|
if pMatch != 0 {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = (*TSrcItem)(unsafe.Pointer(pMatch)).FiCursor
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 64)) = (*TSrcItem)(unsafe.Pointer(pMatch)).FpSTab
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pMatch)).Ffg.Fjointype)&(libc.Int32FromInt32(JT_LEFT)|libc.Int32FromInt32(JT_LTORJ)) != 0 {
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_CanBeNull))
|
|
}
|
|
pSchema = (*TTable)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 64)))).FpSchema
|
|
}
|
|
} /* if( pSrcList ) */
|
|
/* If we have not already resolved the name, then maybe
|
|
** it is a new.* or old.* trigger argument reference. Or
|
|
** maybe it is an excluded.* from an upsert. Or maybe it is
|
|
** a reference in the RETURNING clause to a table being modified.
|
|
*/
|
|
if cnt == 0 && zDb == uintptr(0) {
|
|
pTab = uintptr(0)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpTriggerTab != uintptr(0) {
|
|
op = libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeTriggerOp)
|
|
if int32(Tbft(*(*uint16)(unsafe.Pointer(pParse + 40))&0x8>>3)) != 0 {
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_UBaseReg) != 0 && (zTab == uintptr(0) || _sqlite3StrICmp(tls, zTab, (*TTable)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).FpTriggerTab)).FzName) == 0 || _isValidSchemaTableName(tls, zTab, (*TParse)(unsafe.Pointer(pParse)).FpTriggerTab, uintptr(0)) != 0) {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = libc.BoolInt32(op != int32(TK_DELETE))
|
|
pTab = (*TParse)(unsafe.Pointer(pParse)).FpTriggerTab
|
|
}
|
|
} else {
|
|
if op != int32(TK_DELETE) && zTab != 0 && _sqlite3StrICmp(tls, __ccgo_ts+6827, zTab) == 0 {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = int32(1)
|
|
pTab = (*TParse)(unsafe.Pointer(pParse)).FpTriggerTab
|
|
} else {
|
|
if op != int32(TK_INSERT) && zTab != 0 && _sqlite3StrICmp(tls, __ccgo_ts+6831, zTab) == 0 {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = 0
|
|
pTab = (*TParse)(unsafe.Pointer(pParse)).FpTriggerTab
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_UUpsert) != 0 && zTab != uintptr(0) {
|
|
pUpsert = *(*uintptr)(unsafe.Pointer(pNC + 16))
|
|
if pUpsert != 0 && _sqlite3StrICmp(tls, __ccgo_ts+6835, zTab) == 0 {
|
|
pTab = (*(*TSrcItem)(unsafe.Pointer((*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertSrc + 8))).FpSTab
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = int32(EXCLUDED_TABLE_NUMBER)
|
|
}
|
|
}
|
|
if pTab != 0 {
|
|
pSchema = (*TTable)(unsafe.Pointer(pTab)).FpSchema
|
|
cntTab = cntTab + 1
|
|
iCol = _sqlite3ColumnIndex(tls, pTab, zCol)
|
|
if iCol >= 0 {
|
|
if int32((*TTable)(unsafe.Pointer(pTab)).FiPKey) == iCol {
|
|
iCol = -int32(1)
|
|
}
|
|
} else {
|
|
if _sqlite3IsRowid(tls, zCol) != 0 && (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_NoVisibleRowid) == uint32(0) {
|
|
iCol = -int32(1)
|
|
} else {
|
|
iCol = int32((*TTable)(unsafe.Pointer(pTab)).FnCol)
|
|
}
|
|
}
|
|
if iCol < int32((*TTable)(unsafe.Pointer(pTab)).FnCol) {
|
|
cnt = cnt + 1
|
|
pMatch = uintptr(0)
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).FiTable == int32(EXCLUDED_TABLE_NUMBER) {
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = int16(iCol)
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 64)) = pTab
|
|
eNewExprOp = int32(TK_COLUMN)
|
|
} else {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = (*TUpsert)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pNC + 16)))).FregData + int32(_sqlite3TableColumnToStorage(tls, pTab, int16(iCol)))
|
|
eNewExprOp = int32(TK_REGISTER)
|
|
}
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 64)) = pTab
|
|
if int32(Tbft(*(*uint16)(unsafe.Pointer(pParse + 40))&0x8>>3)) != 0 {
|
|
eNewExprOp = int32(TK_REGISTER)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop2 = uint8(TK_COLUMN)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = int16(iCol)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = *(*int32)(unsafe.Pointer(&(*TNameContext)(unsafe.Pointer(pNC)).FuNC)) + (int32((*TTable)(unsafe.Pointer(pTab)).FnCol)+int32(1))*(*TExpr)(unsafe.Pointer(pExpr)).FiTable + int32(_sqlite3TableColumnToStorage(tls, pTab, int16(iCol))) + int32(1)
|
|
} else {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = int16(iCol)
|
|
eNewExprOp = int32(TK_TRIGGER)
|
|
if iCol < 0 {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FaffExpr = int8(SQLITE_AFF_INTEGER)
|
|
} else {
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).FiTable == 0 {
|
|
if iCol >= int32(32) {
|
|
v5 = uint32(0xffffffff)
|
|
} else {
|
|
v5 = libc.Uint32FromInt32(1) << iCol
|
|
}
|
|
**(**Tu32)(__ccgo_up(pParse + 248)) |= v5
|
|
} else {
|
|
if iCol >= int32(32) {
|
|
v5 = uint32(0xffffffff)
|
|
} else {
|
|
v5 = libc.Uint32FromInt32(1) << iCol
|
|
}
|
|
**(**Tu32)(__ccgo_up(pParse + 252)) |= v5
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
** Perhaps the name is a reference to the ROWID
|
|
*/
|
|
if cnt == 0 && cntTab >= int32(1) && pMatch != 0 && (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&(libc.Int32FromInt32(NC_IdxExpr)|libc.Int32FromInt32(NC_GenCol)) == 0 && _sqlite3IsRowid(tls, zCol) != 0 && ((*TTable)(unsafe.Pointer((*TSrcItem)(unsafe.Pointer(pMatch)).FpSTab)).FtabFlags&uint32(TF_NoVisibleRowid) == uint32(0) || int32(*(*uint32)(unsafe.Pointer(pMatch + 24 + 4))&0x4000>>14) != 0) {
|
|
cnt = cntTab
|
|
if int32(*(*uint32)(unsafe.Pointer(pMatch + 24 + 4))&0x4000>>14) == 0 {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = int16(-int32(1))
|
|
}
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FaffExpr = int8(SQLITE_AFF_INTEGER)
|
|
}
|
|
/*
|
|
** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z
|
|
** might refer to an result-set alias. This happens, for example, when
|
|
** we are resolving names in the WHERE clause of the following command:
|
|
**
|
|
** SELECT a+b AS x FROM table WHERE x<10;
|
|
**
|
|
** In cases like this, replace pExpr with a copy of the expression that
|
|
** forms the result set entry ("a+b" in the example) and return immediately.
|
|
** Note that the expression in the result set should have already been
|
|
** resolved by the time the WHERE clause is resolved.
|
|
**
|
|
** The ability to use an output result-set column in the WHERE, GROUP BY,
|
|
** or HAVING clauses, or as part of a larger expression in the ORDER BY
|
|
** clause is not standard SQL. This is a (goofy) SQLite extension, that
|
|
** is supported for backwards compatibility only. Hence, we issue a warning
|
|
** on sqlite3_log() whenever the capability is used.
|
|
*/
|
|
if cnt == 0 && (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_UEList) != 0 && zTab == uintptr(0) {
|
|
pEList = *(*uintptr)(unsafe.Pointer(pNC + 16))
|
|
j = 0
|
|
for {
|
|
if !(j < (*TExprList)(unsafe.Pointer(pEList)).FnExpr) {
|
|
break
|
|
}
|
|
zAs = (*(*TExprList_item)(unsafe.Pointer(pEList + 8 + uintptr(j)*32))).FzEName
|
|
if int32(uint32(*(*uint16)(unsafe.Pointer(pEList + 8 + uintptr(j)*32 + 16 + 4))&0x3>>0)) == ENAME_NAME && Xsqlite3_stricmp(tls, zAs, zCol) == 0 {
|
|
pOrig = (*(*TExprList_item)(unsafe.Pointer(pEList + 8 + uintptr(j)*32))).FpExpr
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_AllowAgg) == 0 && (*TExpr)(unsafe.Pointer(pOrig)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Agg)) != uint32(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+6844, libc.VaList(bp+24, zAs))
|
|
return int32(WRC_Abort)
|
|
}
|
|
if (*TExpr)(unsafe.Pointer(pOrig)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Win)) != uint32(0) && ((*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_AllowWin) == 0 || pNC != pTopNC) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+6875, libc.VaList(bp+24, zAs))
|
|
return int32(WRC_Abort)
|
|
}
|
|
if _sqlite3ExprVectorSize(tls, pOrig) != int32(1) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+6912, 0)
|
|
return int32(WRC_Abort)
|
|
}
|
|
_resolveAlias(tls, pParse, pEList, j, pExpr, nSubquery)
|
|
cnt = int32(1)
|
|
pMatch = uintptr(0)
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenRemap(tls, pParse, uintptr(0), pExpr)
|
|
}
|
|
goto lookupname_end
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
j = j + 1
|
|
}
|
|
}
|
|
/* Advance to the next name context. The loop will exit when either
|
|
** we have a match (cnt>0) or when we run out of name contexts.
|
|
*/
|
|
if cnt != 0 {
|
|
break
|
|
}
|
|
pNC = (*TNameContext)(unsafe.Pointer(pNC)).FpNext
|
|
nSubquery = nSubquery + 1
|
|
}
|
|
/*
|
|
** If X and Y are NULL (in other words if only the column name Z is
|
|
** supplied) and the value of Z is enclosed in double-quotes, then
|
|
** Z is a string literal if it doesn't match any column names. In that
|
|
** case, we need to return right away and not make any changes to
|
|
** pExpr.
|
|
**
|
|
** Because no reference was made to outer contexts, the pNC->nRef
|
|
** fields are not changed in any context.
|
|
*/
|
|
if cnt == 0 && zTab == uintptr(0) {
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_DblQuoted)) != uint32(0) && _areDoubleQuotedStringsEnabled(tls, db, pTopNC) != 0 {
|
|
/* If a double-quoted identifier does not match any known column name,
|
|
** then treat it as a string.
|
|
**
|
|
** This hack was added in the early days of SQLite in a misguided attempt
|
|
** to be compatible with MySQL 3.x, which used double-quotes for strings.
|
|
** I now sorely regret putting in this hack. The effect of this hack is
|
|
** that misspelled identifier names are silently converted into strings
|
|
** rather than causing an error, to the frustration of countless
|
|
** programmers. To all those frustrated programmers, my apologies.
|
|
**
|
|
** Someday, I hope to get rid of this hack. Unfortunately there is
|
|
** a huge amount of legacy SQL that uses it. So for now, we just
|
|
** issue a warning.
|
|
*/
|
|
Xsqlite3_log(tls, int32(SQLITE_WARNING), __ccgo_ts+6930, libc.VaList(bp+24, zCol))
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_STRING)
|
|
libc.Xmemset(tls, pExpr+64, 0, uint64(8))
|
|
return int32(WRC_Prune)
|
|
}
|
|
if _sqlite3ExprIdToTrueFalse(tls, pExpr) != 0 {
|
|
return int32(WRC_Prune)
|
|
}
|
|
}
|
|
/*
|
|
** cnt==0 means there was not match.
|
|
** cnt>1 means there were two or more matches.
|
|
**
|
|
** cnt==0 is always an error. cnt>1 is often an error, but might
|
|
** be multiple matches for a NATURAL LEFT JOIN or a LEFT JOIN USING.
|
|
*/
|
|
if cnt != int32(1) {
|
|
if **(**uintptr)(__ccgo_up(bp)) != 0 {
|
|
if (*TExprList)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FnExpr == cnt-int32(1) {
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Leaf)) != uint32(0) {
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) &= ^libc.Uint32FromInt32(libc.Int32FromInt32(EP_Leaf))
|
|
} else {
|
|
_sqlite3ExprDelete(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FpLeft = uintptr(0)
|
|
_sqlite3ExprDelete(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FpRight = uintptr(0)
|
|
}
|
|
_extendFJMatch(tls, pParse, bp, pMatch, (*TExpr)(unsafe.Pointer(pExpr)).FiColumn)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_FUNCTION)
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 8)) = __ccgo_ts + 6965
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 32)) = **(**uintptr)(__ccgo_up(bp))
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FaffExpr = int8(SQLITE_AFF_DEFER)
|
|
cnt = int32(1)
|
|
goto lookupname_end
|
|
} else {
|
|
_sqlite3ExprListDelete(tls, db, **(**uintptr)(__ccgo_up(bp)))
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
}
|
|
}
|
|
if cnt == 0 {
|
|
v8 = __ccgo_ts + 6974
|
|
} else {
|
|
v8 = __ccgo_ts + 6989
|
|
}
|
|
zErr = v8
|
|
if zDb != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7011, libc.VaList(bp+24, zErr, zDb, zTab, zCol))
|
|
} else {
|
|
if zTab != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7024, libc.VaList(bp+24, zErr, zTab, zCol))
|
|
} else {
|
|
if cnt == 0 && (*TExpr)(unsafe.Pointer(pRight)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_DblQuoted)) != uint32(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7034, libc.VaList(bp+24, zErr, zCol))
|
|
} else {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7095, libc.VaList(bp+24, zErr, zCol))
|
|
}
|
|
}
|
|
}
|
|
_sqlite3RecordErrorOffsetOfExpr(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pExpr)
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, libc.Uint32FromInt32(1), 8, 0x100)
|
|
(*TNameContext)(unsafe.Pointer(pTopNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pTopNC)).FnNcErr + 1
|
|
eNewExprOp = int32(TK_NULL)
|
|
}
|
|
/* Remove all substructure from pExpr */
|
|
if !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_TokenOnly)|libc.Int32FromInt32(EP_Leaf)) != libc.Uint32FromInt32(0)) {
|
|
_sqlite3ExprDelete(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FpLeft = uintptr(0)
|
|
_sqlite3ExprDelete(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FpRight = uintptr(0)
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_Leaf))
|
|
}
|
|
/* If a column from a table in pSrcList is referenced, then record
|
|
** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes
|
|
** bit 0 to be set. Column 1 sets bit 1. And so forth. Bit 63 is
|
|
** set if the 63rd or any subsequent column is used.
|
|
**
|
|
** The colUsed mask is an optimization used to help determine if an
|
|
** index is a covering index. The correct answer is still obtained
|
|
** if the mask contains extra set bits. However, it is important to
|
|
** avoid setting bits beyond the maximum column number of the table.
|
|
** (See ticket [b92e5e8ec2cdbaa1]).
|
|
**
|
|
** If a generated column is referenced, set bits for every column
|
|
** of the table.
|
|
*/
|
|
if pMatch != 0 {
|
|
if int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn) >= 0 {
|
|
**(**TBitmask)(__ccgo_up(pMatch + 40)) |= _sqlite3ExprColUsed(tls, pExpr)
|
|
} else {
|
|
libc.SetBitFieldPtr32Uint32(pMatch+24+4, libc.Uint32FromInt32(1), 15, 0x8000)
|
|
}
|
|
}
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = libc.Uint8FromInt32(eNewExprOp)
|
|
goto lookupname_end
|
|
lookupname_end:
|
|
;
|
|
if cnt == int32(1) {
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FxAuth != 0 && (libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_COLUMN) || libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_TRIGGER)) {
|
|
_sqlite3AuthRead(tls, pParse, pExpr, pSchema, (*TNameContext)(unsafe.Pointer(pNC)).FpSrcList)
|
|
}
|
|
/* Increment the nRef value on all name contexts from TopNC up to
|
|
** the point where the name matched. */
|
|
for {
|
|
(*TNameContext)(unsafe.Pointer(pTopNC)).FnRef = (*TNameContext)(unsafe.Pointer(pTopNC)).FnRef + 1
|
|
if pTopNC == pNC {
|
|
break
|
|
}
|
|
pTopNC = (*TNameContext)(unsafe.Pointer(pTopNC)).FpNext
|
|
goto _9
|
|
_9:
|
|
}
|
|
return int32(WRC_Prune)
|
|
} else {
|
|
return int32(WRC_Abort)
|
|
}
|
|
return r
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Open a file descriptor to the directory containing file zFilename.
|
|
// ** If successful, *pFd is set to the opened file descriptor and
|
|
// ** SQLITE_OK is returned. If an error occurs, either SQLITE_NOMEM
|
|
// ** or SQLITE_CANTOPEN is returned and *pFd is set to an undefined
|
|
// ** value.
|
|
// **
|
|
// ** The directory file descriptor is used for only one thing - to
|
|
// ** fsync() a directory to make sure file creation and deletion events
|
|
// ** are flushed to disk. Such fsyncs are not needed on newer
|
|
// ** journaling filesystems, but are required on older filesystems.
|
|
// **
|
|
// ** This routine can be overridden using the xSetSysCall interface.
|
|
// ** The ability to override this routine was added in support of the
|
|
// ** chromium sandbox. Opening a directory is a security risk (we are
|
|
// ** told) so making it overrideable allows the chromium sandbox to
|
|
// ** replace this routine with a harmless no-op. To make this routine
|
|
// ** a no-op, replace it with a stub that returns SQLITE_OK but leaves
|
|
// ** *pFd set to a negative number.
|
|
// **
|
|
// ** If SQLITE_OK is returned, the caller is responsible for closing
|
|
// ** the file descriptor *pFd using close().
|
|
// */
|
|
func _openDirectory(tls *libc.TLS, zFilename uintptr, pFd uintptr) (r int32) {
|
|
bp := tls.Alloc(544)
|
|
defer tls.Free(544)
|
|
var fd, ii int32
|
|
var _ /* zDirname at bp+0 */ [513]int8
|
|
_, _ = fd, ii
|
|
fd = -int32(1)
|
|
Xsqlite3_snprintf(tls, int32(MAX_PATHNAME), bp, __ccgo_ts+3944, libc.VaList(bp+528, zFilename))
|
|
ii = libc.Int32FromUint64(libc.Xstrlen(tls, bp))
|
|
for {
|
|
if !(ii > 0 && int32((**(**[513]int8)(__ccgo_up(bp)))[ii]) != int32('/')) {
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
ii = ii - 1
|
|
}
|
|
if ii > 0 {
|
|
(**(**[513]int8)(__ccgo_up(bp)))[ii] = int8('\000')
|
|
} else {
|
|
if int32((**(**[513]int8)(__ccgo_up(bp)))[0]) != int32('/') {
|
|
(**(**[513]int8)(__ccgo_up(bp)))[0] = int8('.')
|
|
}
|
|
(**(**[513]int8)(__ccgo_up(bp)))[int32(1)] = 0
|
|
}
|
|
fd = _robust_open(tls, bp, libc.Int32FromInt32(O_RDONLY)|libc.Int32FromInt32(O_BINARY), uint32(0))
|
|
if fd >= 0 {
|
|
}
|
|
**(**int32)(__ccgo_up(pFd)) = fd
|
|
if fd >= 0 {
|
|
return SQLITE_OK
|
|
}
|
|
return _unixLogErrorAtLine(tls, _sqlite3CantopenError(tls, int32(44090)), __ccgo_ts+3659, bp, int32(44090))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Check if zSuper is a valid super-journal name. There are two valid
|
|
// ** formats:
|
|
// **
|
|
// ** + The 3rd and 4th last bytes of the filename are ".9", and the
|
|
// ** following 2 bytes are hex digits. This is a file created in 8.3
|
|
// ** filenames mode.
|
|
// **
|
|
// ** + The 3rd last byte of the filename is "9" and the filename
|
|
// ** contains the string "-mj" starting at the 12th last byte.
|
|
// ** All bytes following the "-mj" are hex digits.
|
|
// **
|
|
// ** If the filename matches either of these patterns, return non-zero.
|
|
// ** Otherwise, return zero.
|
|
// */
|
|
func _pagerIsSuperJrnlName(tls *libc.TLS, zSuper uintptr) (r int32) {
|
|
var ii, nSuper int32
|
|
_, _ = ii, nSuper
|
|
nSuper = _sqlite3Strlen30(tls, zSuper)
|
|
if nSuper < int32(4) {
|
|
return 0
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zSuper + uintptr(nSuper-int32(3))))) != int32('9') {
|
|
return 0
|
|
}
|
|
if nSuper < int32(12) {
|
|
return 0
|
|
}
|
|
if libc.Xmemcmp(tls, zSuper+uintptr(nSuper-int32(12)), __ccgo_ts+4200, uint64(3)) != 0 {
|
|
return 0
|
|
}
|
|
ii = nSuper - int32(9)
|
|
for {
|
|
if !(ii < nSuper) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zSuper + uintptr(ii))))])&int32(0x08) == 0 {
|
|
return 0
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
return int32(1)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Process a modifier to a date-time stamp. The modifiers are
|
|
// ** as follows:
|
|
// **
|
|
// ** NNN days
|
|
// ** NNN hours
|
|
// ** NNN minutes
|
|
// ** NNN.NNNN seconds
|
|
// ** NNN months
|
|
// ** NNN years
|
|
// ** +/-YYYY-MM-DD HH:MM:SS.SSS
|
|
// ** ceiling
|
|
// ** floor
|
|
// ** start of month
|
|
// ** start of year
|
|
// ** start of week
|
|
// ** start of day
|
|
// ** weekday N
|
|
// ** unixepoch
|
|
// ** auto
|
|
// ** localtime
|
|
// ** utc
|
|
// ** subsec
|
|
// ** subsecond
|
|
// **
|
|
// ** Return 0 on success and 1 if there is any kind of error. If the error
|
|
// ** is in a system call (i.e. localtime()), then an error message is written
|
|
// ** to context pCtx. If the error is an unrecognized modifier, no error is
|
|
// ** written to pCtx.
|
|
// */
|
|
func _parseModifier(tls *libc.TLS, pCtx uintptr, z uintptr, n int32, p uintptr, idx int32) (r int32) {
|
|
bp := tls.Alloc(160)
|
|
defer tls.Free(160)
|
|
var Z, day Tsqlite3_int64
|
|
var cnt, i, rc, rx, x, y, v1 int32
|
|
var db, z2, zCopy uintptr
|
|
var iErr, iGuess, iOrigJD, v2 Ti64
|
|
var rRounder, v11 float64
|
|
var z0 int8
|
|
var v4 bool
|
|
var _ /* D at bp+64 */ int32
|
|
var _ /* M at bp+60 */ int32
|
|
var _ /* Y at bp+56 */ int32
|
|
var _ /* h at bp+68 */ int32
|
|
var _ /* m at bp+72 */ int32
|
|
var _ /* new at bp+8 */ TDateTime
|
|
var _ /* r at bp+0 */ float64
|
|
var _ /* tx at bp+80 */ TDateTime
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = Z, cnt, day, db, i, iErr, iGuess, iOrigJD, rRounder, rc, rx, x, y, z0, z2, zCopy, v1, v11, v2, v4
|
|
rc = int32(1)
|
|
switch libc.Int32FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z)))]) {
|
|
case int32('a'):
|
|
/*
|
|
** auto
|
|
**
|
|
** If rawS is available, then interpret as a julian day number, or
|
|
** a unix timestamp, depending on its magnitude.
|
|
*/
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1272) == 0 {
|
|
if idx > int32(1) {
|
|
return int32(1)
|
|
} /* IMP: R-33611-57934 */
|
|
_autoAdjustDate(tls, p)
|
|
rc = 0
|
|
}
|
|
case int32('c'):
|
|
/*
|
|
** ceiling
|
|
**
|
|
** Resolve day-of-month overflow by rolling forward into the next
|
|
** month. As this is the default action, this modifier is really
|
|
** a no-op that is only included for symmetry. See "floor".
|
|
*/
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1277) == 0 {
|
|
_computeJD(tls, p)
|
|
_clearYMD_HMS_TZ(tls, p)
|
|
rc = 0
|
|
(*TDateTime)(unsafe.Pointer(p)).FnFloor = 0
|
|
}
|
|
case int32('f'):
|
|
/*
|
|
** floor
|
|
**
|
|
** Resolve day-of-month overflow by rolling back to the end of the
|
|
** previous month.
|
|
*/
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1285) == 0 {
|
|
_computeJD(tls, p)
|
|
**(**Tsqlite3_int64)(__ccgo_up(p)) -= int64(int32((*TDateTime)(unsafe.Pointer(p)).FnFloor) * int32(86400000))
|
|
_clearYMD_HMS_TZ(tls, p)
|
|
rc = 0
|
|
}
|
|
case int32('j'):
|
|
/*
|
|
** julianday
|
|
**
|
|
** Always interpret the prior number as a julian-day value. If this
|
|
** is not the first modifier, or if the prior argument is not a numeric
|
|
** value in the allowed range of julian day numbers understood by
|
|
** SQLite (0..5373484.5) then the result will be NULL.
|
|
*/
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1291) == 0 {
|
|
if idx > int32(1) {
|
|
return int32(1)
|
|
} /* IMP: R-31176-64601 */
|
|
if (*TDateTime)(unsafe.Pointer(p)).FvalidJD != 0 && int32(uint32(*(*uint8)(unsafe.Pointer(p + 44))&0x1>>0)) != 0 {
|
|
rc = 0
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 0, 0x1)
|
|
}
|
|
}
|
|
case int32('l'):
|
|
/* localtime
|
|
**
|
|
** Assuming the current time value is UTC (a.k.a. GMT), shift it to
|
|
** show local time.
|
|
*/
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1301) == 0 && _sqlite3NotPureFunc(tls, pCtx) != 0 {
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(p + 44))&0x10>>4)) != 0 {
|
|
v1 = SQLITE_OK
|
|
} else {
|
|
v1 = _toLocaltime(tls, p, pCtx)
|
|
}
|
|
rc = v1
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 3, 0x8)
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(1), 4, 0x10)
|
|
}
|
|
case int32('u'):
|
|
/*
|
|
** unixepoch
|
|
**
|
|
** Treat the current value of p->s as the number of
|
|
** seconds since 1970. Convert to a real julian day number.
|
|
*/
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1311) == 0 && int32(uint32(*(*uint8)(unsafe.Pointer(p + 44))&0x1>>0)) != 0 {
|
|
if idx > int32(1) {
|
|
return int32(1)
|
|
} /* IMP: R-49255-55373 */
|
|
**(**float64)(__ccgo_up(bp)) = float64((*TDateTime)(unsafe.Pointer(p)).Fs*float64(1000)) + float64(2.1086676e+14)
|
|
if **(**float64)(__ccgo_up(bp)) >= float64(0) && **(**float64)(__ccgo_up(bp)) < float64(4.642690608e+14) {
|
|
_clearYMD_HMS_TZ(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).FiJD = int64(**(**float64)(__ccgo_up(bp)) + libc.Float64FromFloat64(0.5))
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = int8(1)
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 0, 0x1)
|
|
rc = 0
|
|
}
|
|
} else {
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1321) == 0 && _sqlite3NotPureFunc(tls, pCtx) != 0 {
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(p + 44))&0x8>>3)) == 0 { /* Guess at the corresponding utc time */
|
|
cnt = 0 /* Guess is off by this much */
|
|
_computeJD(tls, p)
|
|
v2 = (*TDateTime)(unsafe.Pointer(p)).FiJD
|
|
iOrigJD = v2
|
|
iGuess = v2
|
|
iErr = 0
|
|
for {
|
|
libc.Xmemset(tls, bp+8, 0, uint64(48))
|
|
iGuess = iGuess - iErr
|
|
(**(**TDateTime)(__ccgo_up(bp + 8))).FiJD = iGuess
|
|
(**(**TDateTime)(__ccgo_up(bp + 8))).FvalidJD = int8(1)
|
|
rc = _toLocaltime(tls, bp+8, pCtx)
|
|
if rc != 0 {
|
|
return rc
|
|
}
|
|
_computeJD(tls, bp+8)
|
|
iErr = (**(**TDateTime)(__ccgo_up(bp + 8))).FiJD - iOrigJD
|
|
goto _5
|
|
_5:
|
|
;
|
|
if v4 = iErr != 0; v4 {
|
|
v1 = cnt
|
|
cnt = cnt + 1
|
|
}
|
|
if !(v4 && v1 < int32(3)) {
|
|
break
|
|
}
|
|
}
|
|
libc.Xmemset(tls, p, 0, uint64(48))
|
|
(*TDateTime)(unsafe.Pointer(p)).FiJD = iGuess
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = int8(1)
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(1), 3, 0x8)
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 4, 0x10)
|
|
}
|
|
rc = SQLITE_OK
|
|
}
|
|
}
|
|
case int32('w'):
|
|
/*
|
|
** weekday N
|
|
**
|
|
** Move the date to the same time on the next occurrence of
|
|
** weekday N where 0==Sunday, 1==Monday, and so forth. If the
|
|
** date is already on the appropriate weekday, this is a no-op.
|
|
*/
|
|
if v4 = Xsqlite3_strnicmp(tls, z, __ccgo_ts+1325, int32(8)) == 0 && _sqlite3AtoF(tls, z+8, bp) > 0 && **(**float64)(__ccgo_up(bp)) >= float64(0) && **(**float64)(__ccgo_up(bp)) < float64(7); v4 {
|
|
v1 = int32(**(**float64)(__ccgo_up(bp)))
|
|
n = v1
|
|
}
|
|
if v4 && float64(v1) == **(**float64)(__ccgo_up(bp)) {
|
|
_computeYMD_HMS(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).Ftz = 0
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = 0
|
|
_computeJD(tls, p)
|
|
Z = ((*TDateTime)(unsafe.Pointer(p)).FiJD + int64(129600000)) / int64(86400000) % int64(7)
|
|
if Z > int64(n) {
|
|
Z = Z - int64(7)
|
|
}
|
|
**(**Tsqlite3_int64)(__ccgo_up(p)) += (int64(n) - Z) * int64(86400000)
|
|
_clearYMD_HMS_TZ(tls, p)
|
|
rc = 0
|
|
}
|
|
case int32('s'):
|
|
/*
|
|
** start of TTTTT
|
|
**
|
|
** Move the date backwards to the beginning of the current day,
|
|
** or month or year.
|
|
**
|
|
** subsecond
|
|
** subsec
|
|
**
|
|
** Show subsecond precision in the output of datetime() and
|
|
** unixepoch() and strftime('%s').
|
|
*/
|
|
if Xsqlite3_strnicmp(tls, z, __ccgo_ts+1334, int32(9)) != 0 {
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1232) == 0 || Xsqlite3_stricmp(tls, z, __ccgo_ts+1239) == 0 {
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(1), 2, 0x4)
|
|
rc = 0
|
|
}
|
|
break
|
|
}
|
|
if !((*TDateTime)(unsafe.Pointer(p)).FvalidJD != 0) && !((*TDateTime)(unsafe.Pointer(p)).FvalidYMD != 0) && !((*TDateTime)(unsafe.Pointer(p)).FvalidHMS != 0) {
|
|
break
|
|
}
|
|
z = z + uintptr(9)
|
|
_computeYMD(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidHMS = int8(1)
|
|
v1 = libc.Int32FromInt32(0)
|
|
(*TDateTime)(unsafe.Pointer(p)).Fm = v1
|
|
(*TDateTime)(unsafe.Pointer(p)).Fh = v1
|
|
(*TDateTime)(unsafe.Pointer(p)).Fs = float64(0)
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 0, 0x1)
|
|
(*TDateTime)(unsafe.Pointer(p)).Ftz = 0
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = 0
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1344) == 0 {
|
|
(*TDateTime)(unsafe.Pointer(p)).FD = int32(1)
|
|
rc = 0
|
|
} else {
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1350) == 0 {
|
|
(*TDateTime)(unsafe.Pointer(p)).FM = int32(1)
|
|
(*TDateTime)(unsafe.Pointer(p)).FD = int32(1)
|
|
rc = 0
|
|
} else {
|
|
if Xsqlite3_stricmp(tls, z, __ccgo_ts+1355) == 0 {
|
|
rc = 0
|
|
}
|
|
}
|
|
}
|
|
case int32('+'):
|
|
fallthrough
|
|
case int32('-'):
|
|
fallthrough
|
|
case int32('0'):
|
|
fallthrough
|
|
case int32('1'):
|
|
fallthrough
|
|
case int32('2'):
|
|
fallthrough
|
|
case int32('3'):
|
|
fallthrough
|
|
case int32('4'):
|
|
fallthrough
|
|
case int32('5'):
|
|
fallthrough
|
|
case int32('6'):
|
|
fallthrough
|
|
case int32('7'):
|
|
fallthrough
|
|
case int32('8'):
|
|
fallthrough
|
|
case int32('9'):
|
|
z2 = z
|
|
db = Xsqlite3_context_db_handle(tls, pCtx)
|
|
z0 = **(**int8)(__ccgo_up(z))
|
|
n = int32(1)
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(z + uintptr(n))) != 0) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(n)))) == int32(':') {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(n))))])&int32(0x01) != 0 {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(n)))) == int32('-') {
|
|
if n == int32(5) && _getDigits(tls, z+1, __ccgo_ts+1359, libc.VaList(bp+136, bp+56)) == int32(1) {
|
|
break
|
|
}
|
|
if n == int32(6) && _getDigits(tls, z+1, __ccgo_ts+1363, libc.VaList(bp+136, bp+56)) == int32(1) {
|
|
break
|
|
}
|
|
}
|
|
goto _9
|
|
_9:
|
|
;
|
|
n = n + 1
|
|
}
|
|
zCopy = _sqlite3DbStrNDup(tls, db, z, libc.Uint64FromInt32(n))
|
|
if zCopy == uintptr(0) {
|
|
break
|
|
}
|
|
rx = libc.BoolInt32(_sqlite3AtoF(tls, zCopy, bp) <= 0)
|
|
_sqlite3DbFree(tls, db, zCopy)
|
|
if rx != 0 {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(n)))) == int32('-') {
|
|
/* A modifier of the form (+|-)YYYY-MM-DD adds or subtracts the
|
|
** specified number of years, months, and days. MM is limited to
|
|
** the range 0-11 and DD is limited to 0-30.
|
|
*/
|
|
if int32(z0) != int32('+') && int32(z0) != int32('-') {
|
|
break
|
|
} /* Must start with +/- */
|
|
if n == int32(5) {
|
|
if _getDigits(tls, z+1, __ccgo_ts+1367, libc.VaList(bp+136, bp+56, bp+60, bp+64)) != int32(3) {
|
|
break
|
|
}
|
|
} else {
|
|
if _getDigits(tls, z+1, __ccgo_ts+1379, libc.VaList(bp+136, bp+56, bp+60, bp+64)) != int32(3) {
|
|
break
|
|
}
|
|
z = z + 1
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 60)) >= int32(12) {
|
|
break
|
|
} /* M range 0..11 */
|
|
if **(**int32)(__ccgo_up(bp + 64)) >= int32(31) {
|
|
break
|
|
} /* D range 0..30 */
|
|
_computeYMD_HMS(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = 0
|
|
if int32(z0) == int32('-') {
|
|
**(**int32)(__ccgo_up(p + 8)) -= **(**int32)(__ccgo_up(bp + 56))
|
|
**(**int32)(__ccgo_up(p + 12)) -= **(**int32)(__ccgo_up(bp + 60))
|
|
**(**int32)(__ccgo_up(bp + 64)) = -**(**int32)(__ccgo_up(bp + 64))
|
|
} else {
|
|
**(**int32)(__ccgo_up(p + 8)) += **(**int32)(__ccgo_up(bp + 56))
|
|
**(**int32)(__ccgo_up(p + 12)) += **(**int32)(__ccgo_up(bp + 60))
|
|
}
|
|
if (*TDateTime)(unsafe.Pointer(p)).FM > 0 {
|
|
v1 = ((*TDateTime)(unsafe.Pointer(p)).FM - int32(1)) / int32(12)
|
|
} else {
|
|
v1 = ((*TDateTime)(unsafe.Pointer(p)).FM - int32(12)) / int32(12)
|
|
}
|
|
x = v1
|
|
**(**int32)(__ccgo_up(p + 8)) += x
|
|
**(**int32)(__ccgo_up(p + 12)) -= x * int32(12)
|
|
_computeFloor(tls, p)
|
|
_computeJD(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidHMS = 0
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidYMD = 0
|
|
**(**Tsqlite3_int64)(__ccgo_up(p)) += int64(**(**int32)(__ccgo_up(bp + 64))) * int64(86400000)
|
|
if int32(**(**int8)(__ccgo_up(z + 11))) == 0 {
|
|
rc = 0
|
|
break
|
|
}
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + 11)))])&int32(0x01) != 0 && _getDigits(tls, z+12, __ccgo_ts+1204, libc.VaList(bp+136, bp+68, bp+72)) == int32(2) {
|
|
z2 = z + 12
|
|
n = int32(2)
|
|
} else {
|
|
break
|
|
}
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z2 + uintptr(n)))) == int32(':') {
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z2)))])&libc.Int32FromInt32(0x04) != 0) {
|
|
z2 = z2 + 1
|
|
}
|
|
libc.Xmemset(tls, bp+80, 0, uint64(48))
|
|
if _parseHhMmSs(tls, z2, bp+80) != 0 {
|
|
break
|
|
}
|
|
_computeJD(tls, bp+80)
|
|
(**(**TDateTime)(__ccgo_up(bp + 80))).FiJD -= int64(43200000)
|
|
day = (**(**TDateTime)(__ccgo_up(bp + 80))).FiJD / int64(86400000)
|
|
(**(**TDateTime)(__ccgo_up(bp + 80))).FiJD -= day * int64(86400000)
|
|
if int32(z0) == int32('-') {
|
|
(**(**TDateTime)(__ccgo_up(bp + 80))).FiJD = -(**(**TDateTime)(__ccgo_up(bp + 80))).FiJD
|
|
}
|
|
_computeJD(tls, p)
|
|
_clearYMD_HMS_TZ(tls, p)
|
|
**(**Tsqlite3_int64)(__ccgo_up(p)) += (**(**TDateTime)(__ccgo_up(bp + 80))).FiJD
|
|
rc = 0
|
|
break
|
|
}
|
|
/* If control reaches this point, it means the transformation is
|
|
** one of the forms like "+NNN days". */
|
|
z = z + uintptr(n)
|
|
for libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z)))])&int32(0x01) != 0 {
|
|
z = z + 1
|
|
}
|
|
n = _sqlite3Strlen30(tls, z)
|
|
if n < int32(3) || n > int32(10) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(n-int32(1)))))]) == int32('s') {
|
|
n = n - 1
|
|
}
|
|
_computeJD(tls, p)
|
|
if **(**float64)(__ccgo_up(bp)) < libc.Float64FromInt32(0) {
|
|
v11 = -libc.Float64FromFloat64(0.5)
|
|
} else {
|
|
v11 = +libc.Float64FromFloat64(0.5)
|
|
}
|
|
rRounder = v11
|
|
(*TDateTime)(unsafe.Pointer(p)).FnFloor = 0
|
|
i = 0
|
|
for {
|
|
if !(i < libc.Int32FromUint64(libc.Uint64FromInt64(96)/libc.Uint64FromInt64(16))) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8(_aXformType[i].FnName) == n && Xsqlite3_strnicmp(tls, uintptr(unsafe.Pointer(&_aXformType))+uintptr(i)*16+1, z, n) == 0 && **(**float64)(__ccgo_up(bp)) > float64(-_aXformType[i].FrLimit) && **(**float64)(__ccgo_up(bp)) < float64(_aXformType[i].FrLimit) {
|
|
switch i {
|
|
case int32(4): /* Special processing to add months */
|
|
_computeYMD_HMS(tls, p)
|
|
**(**int32)(__ccgo_up(p + 12)) += int32(**(**float64)(__ccgo_up(bp)))
|
|
if (*TDateTime)(unsafe.Pointer(p)).FM > 0 {
|
|
v1 = ((*TDateTime)(unsafe.Pointer(p)).FM - int32(1)) / int32(12)
|
|
} else {
|
|
v1 = ((*TDateTime)(unsafe.Pointer(p)).FM - int32(12)) / int32(12)
|
|
}
|
|
x = v1
|
|
**(**int32)(__ccgo_up(p + 8)) += x
|
|
**(**int32)(__ccgo_up(p + 12)) -= x * int32(12)
|
|
_computeFloor(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = 0
|
|
**(**float64)(__ccgo_up(bp)) = **(**float64)(__ccgo_up(bp)) - float64(int32(**(**float64)(__ccgo_up(bp))))
|
|
case int32(5): /* Special processing to add years */
|
|
y = int32(**(**float64)(__ccgo_up(bp)))
|
|
_computeYMD_HMS(tls, p)
|
|
**(**int32)(__ccgo_up(p + 8)) += y
|
|
_computeFloor(tls, p)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = 0
|
|
**(**float64)(__ccgo_up(bp)) = **(**float64)(__ccgo_up(bp)) - float64(int32(**(**float64)(__ccgo_up(bp))))
|
|
break
|
|
}
|
|
_computeJD(tls, p)
|
|
**(**Tsqlite3_int64)(__ccgo_up(p)) += int64(float64(float64(**(**float64)(__ccgo_up(bp))*libc.Float64FromFloat64(1000))*float64(_aXformType[i].FrXform)) + rRounder)
|
|
rc = 0
|
|
break
|
|
}
|
|
goto _12
|
|
_12:
|
|
;
|
|
i = i + 1
|
|
}
|
|
_clearYMD_HMS_TZ(tls, p)
|
|
default:
|
|
break
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Pragma virtual table module xConnect method.
|
|
// */
|
|
func _pragmaVtabConnect(tls *libc.TLS, db uintptr, pAux uintptr, argc int32, argv uintptr, ppVtab uintptr, pzErr uintptr) (r int32) {
|
|
bp := tls.Alloc(256)
|
|
defer tls.Free(256)
|
|
var cSep int8
|
|
var i, j, rc int32
|
|
var pPragma, pTab uintptr
|
|
var _ /* acc at bp+0 */ TStrAccum
|
|
var _ /* zBuf at bp+32 */ [200]int8
|
|
_, _, _, _, _, _ = cSep, i, j, pPragma, pTab, rc
|
|
pPragma = pAux
|
|
pTab = uintptr(0)
|
|
cSep = int8('(')
|
|
_ = argc
|
|
_ = argv
|
|
_sqlite3StrAccumInit(tls, bp, uintptr(0), bp+32, int32(200), 0)
|
|
Xsqlite3_str_appendall(tls, bp, __ccgo_ts+19910)
|
|
i = 0
|
|
j = libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FiPragCName)
|
|
for {
|
|
if !(i < libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FnPragCName)) {
|
|
break
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+19925, libc.VaList(bp+240, int32(cSep), _pragCName[j]))
|
|
cSep = int8(',')
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
j = j + 1
|
|
}
|
|
if i == 0 {
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+19932, libc.VaList(bp+240, (*TPragmaName)(unsafe.Pointer(pPragma)).FzName))
|
|
i = i + 1
|
|
}
|
|
j = 0
|
|
if libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&int32(PragFlg_Result1) != 0 {
|
|
Xsqlite3_str_appendall(tls, bp, __ccgo_ts+19938)
|
|
j = j + 1
|
|
}
|
|
if libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&(libc.Int32FromInt32(PragFlg_SchemaOpt)|libc.Int32FromInt32(PragFlg_SchemaReq)) != 0 {
|
|
Xsqlite3_str_appendall(tls, bp, __ccgo_ts+19950)
|
|
j = j + 1
|
|
}
|
|
Xsqlite3_str_append(tls, bp, __ccgo_ts+5261, int32(1))
|
|
_sqlite3StrAccumFinish(tls, bp)
|
|
rc = Xsqlite3_declare_vtab(tls, db, bp+32)
|
|
if rc == SQLITE_OK {
|
|
pTab = Xsqlite3_malloc(tls, int32(48))
|
|
if pTab == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
libc.Xmemset(tls, pTab, 0, uint64(48))
|
|
(*TPragmaVtab)(unsafe.Pointer(pTab)).FpName = pPragma
|
|
(*TPragmaVtab)(unsafe.Pointer(pTab)).Fdb = db
|
|
(*TPragmaVtab)(unsafe.Pointer(pTab)).FiHidden = libc.Uint8FromInt32(i)
|
|
(*TPragmaVtab)(unsafe.Pointer(pTab)).FnHidden = libc.Uint8FromInt32(j)
|
|
}
|
|
} else {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+240, Xsqlite3_errmsg(tls, db)))
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppVtab)) = pTab
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** If the error code currently stored in the RBU handle is SQLITE_CONSTRAINT,
|
|
// ** then edit any error message string so as to remove all occurrences of
|
|
// ** the pattern "rbu_imp_[0-9]*".
|
|
// */
|
|
func _rbuEditErrmsg(tls *libc.TLS, p uintptr) {
|
|
var i uint32
|
|
var nDel int32
|
|
var nErrmsg Tsize_t
|
|
_, _, _ = i, nDel, nErrmsg
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == int32(SQLITE_CONSTRAINT) && (*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg != 0 {
|
|
nErrmsg = libc.Xstrlen(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg)
|
|
i = uint32(0)
|
|
for {
|
|
if !(uint64(i) < nErrmsg-uint64(8)) {
|
|
break
|
|
}
|
|
if libc.Xmemcmp(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg+uintptr(i), __ccgo_ts+32699, uint64(8)) == 0 {
|
|
nDel = int32(8)
|
|
for int32(**(**int8)(__ccgo_up((*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg + uintptr(i+libc.Uint32FromInt32(nDel))))) >= int32('0') && int32(**(**int8)(__ccgo_up((*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg + uintptr(i+libc.Uint32FromInt32(nDel))))) <= int32('9') {
|
|
nDel = nDel + 1
|
|
}
|
|
libc.Xmemmove(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg+uintptr(i), (*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg+uintptr(i+libc.Uint32FromInt32(nDel)), nErrmsg+uint64(1)-uint64(i)-libc.Uint64FromInt32(nDel))
|
|
nErrmsg = nErrmsg - libc.Uint64FromInt32(nDel)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
}
|
|
|
|
func _rbuObjIterGetIndexWhere(tls *libc.TLS, p uintptr, pIter uintptr) (r uintptr) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var aIdxCol, zRet, zSql, v1 uintptr
|
|
var c int8
|
|
var i, iIdxCol, nIdxAlloc, nParen, nSpan, nSpan1, rc2, v3 int32
|
|
var _ /* pStmt at bp+0 */ uintptr
|
|
var _ /* rc at bp+8 */ int32
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _ = aIdxCol, c, i, iIdxCol, nIdxAlloc, nParen, nSpan, nSpan1, rc2, zRet, zSql, v1, v3
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
**(**int32)(__ccgo_up(bp + 8)) = (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc
|
|
zRet = uintptr(0)
|
|
if **(**int32)(__ccgo_up(bp + 8)) == SQLITE_OK {
|
|
**(**int32)(__ccgo_up(bp + 8)) = _prepareAndCollectError(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, bp, p+64, __ccgo_ts+32187)
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 8)) == SQLITE_OK {
|
|
**(**int32)(__ccgo_up(bp + 8)) = Xsqlite3_bind_text(tls, **(**uintptr)(__ccgo_up(bp)), int32(1), (*TRbuObjIter)(unsafe.Pointer(pIter)).FzIdx, -int32(1), libc.UintptrFromInt32(0))
|
|
if **(**int32)(__ccgo_up(bp + 8)) == SQLITE_OK && int32(SQLITE_ROW) == Xsqlite3_step(tls, **(**uintptr)(__ccgo_up(bp))) {
|
|
zSql = Xsqlite3_column_text(tls, **(**uintptr)(__ccgo_up(bp)), 0)
|
|
if zSql != 0 {
|
|
v1 = _rbuStrndup(tls, zSql, bp+8)
|
|
zSql = v1
|
|
(*TRbuObjIter)(unsafe.Pointer(pIter)).FzIdxSql = v1
|
|
}
|
|
if zSql != 0 {
|
|
nParen = 0
|
|
iIdxCol = 0
|
|
nIdxAlloc = 0
|
|
i = 0
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zSql + uintptr(i))) != 0) {
|
|
break
|
|
}
|
|
c = **(**int8)(__ccgo_up(zSql + uintptr(i)))
|
|
/* If necessary, grow the pIter->aIdxCol[] array */
|
|
if iIdxCol == nIdxAlloc {
|
|
aIdxCol = Xsqlite3_realloc64(tls, (*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol, uint64(libc.Uint64FromInt32(nIdxAlloc)*uint64(16)+libc.Uint64FromInt32(16)*libc.Uint64FromInt64(16)))
|
|
if aIdxCol == uintptr(0) {
|
|
**(**int32)(__ccgo_up(bp + 8)) = int32(SQLITE_NOMEM)
|
|
break
|
|
}
|
|
(*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol = aIdxCol
|
|
nIdxAlloc = nIdxAlloc + int32(16)
|
|
}
|
|
if int32(c) == int32('(') {
|
|
if nParen == 0 {
|
|
(**(**TRbuSpan)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol))).FzSpan = zSql + uintptr(i+int32(1))
|
|
}
|
|
nParen = nParen + 1
|
|
} else {
|
|
if int32(c) == int32(')') {
|
|
nParen = nParen - 1
|
|
if nParen == 0 {
|
|
nSpan = int32(t__predefined_ptrdiff_t(zSql+uintptr(i)) - int64((**(**TRbuSpan)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol + uintptr(iIdxCol)*16))).FzSpan))
|
|
v3 = iIdxCol
|
|
iIdxCol = iIdxCol + 1
|
|
(**(**TRbuSpan)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol + uintptr(v3)*16))).FnSpan = nSpan
|
|
i = i + 1
|
|
break
|
|
}
|
|
} else {
|
|
if int32(c) == int32(',') && nParen == int32(1) {
|
|
nSpan1 = int32(t__predefined_ptrdiff_t(zSql+uintptr(i)) - int64((**(**TRbuSpan)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol + uintptr(iIdxCol)*16))).FzSpan))
|
|
v3 = iIdxCol
|
|
iIdxCol = iIdxCol + 1
|
|
(**(**TRbuSpan)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol + uintptr(v3)*16))).FnSpan = nSpan1
|
|
(**(**TRbuSpan)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaIdxCol + uintptr(iIdxCol)*16))).FzSpan = zSql + uintptr(i+int32(1))
|
|
} else {
|
|
if int32(c) == int32('"') || int32(c) == int32('\'') || int32(c) == int32('`') {
|
|
i = i + 1
|
|
for {
|
|
if !(int32(1) != 0) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zSql + uintptr(i)))) == int32(c) {
|
|
if int32(**(**int8)(__ccgo_up(zSql + uintptr(i+int32(1))))) != int32(c) {
|
|
break
|
|
}
|
|
i = i + 1
|
|
}
|
|
goto _5
|
|
_5:
|
|
;
|
|
i = i + 1
|
|
}
|
|
} else {
|
|
if int32(c) == int32('[') {
|
|
i = i + 1
|
|
for {
|
|
if !(int32(1) != 0) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zSql + uintptr(i)))) == int32(']') {
|
|
break
|
|
}
|
|
goto _6
|
|
_6:
|
|
;
|
|
i = i + 1
|
|
}
|
|
} else {
|
|
if int32(c) == int32('-') && int32(**(**int8)(__ccgo_up(zSql + uintptr(i+int32(1))))) == int32('-') {
|
|
i = i + int32(2)
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zSql + uintptr(i))) != 0 && int32(**(**int8)(__ccgo_up(zSql + uintptr(i)))) != int32('\n')) {
|
|
break
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zSql + uintptr(i)))) == int32('\000') {
|
|
break
|
|
}
|
|
} else {
|
|
if int32(c) == int32('/') && int32(**(**int8)(__ccgo_up(zSql + uintptr(i+int32(1))))) == int32('*') {
|
|
i = i + int32(2)
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zSql + uintptr(i))) != 0 && (int32(**(**int8)(__ccgo_up(zSql + uintptr(i)))) != int32('*') || int32(**(**int8)(__ccgo_up(zSql + uintptr(i+int32(1))))) != int32('/'))) {
|
|
break
|
|
}
|
|
goto _8
|
|
_8:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zSql + uintptr(i)))) == int32('\000') {
|
|
break
|
|
}
|
|
i = i + 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if **(**int8)(__ccgo_up(zSql + uintptr(i))) != 0 {
|
|
zRet = _rbuStrndup(tls, zSql+uintptr(i), bp+8)
|
|
}
|
|
(*TRbuObjIter)(unsafe.Pointer(pIter)).FnIdxCol = iIdxCol
|
|
}
|
|
}
|
|
rc2 = Xsqlite3_finalize(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
if **(**int32)(__ccgo_up(bp + 8)) == SQLITE_OK {
|
|
**(**int32)(__ccgo_up(bp + 8)) = rc2
|
|
}
|
|
}
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = **(**int32)(__ccgo_up(bp + 8))
|
|
return zRet
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Return a nul-terminated string containing the comma separated list of
|
|
// ** assignments that should be included following the "SET" keyword of
|
|
// ** an UPDATE statement used to update the table object that the iterator
|
|
// ** passed as the second argument currently points to if the rbu_control
|
|
// ** column of the data_xxx table entry is set to zMask.
|
|
// **
|
|
// ** The memory for the returned string is obtained from sqlite3_malloc().
|
|
// ** It is the responsibility of the caller to eventually free it using
|
|
// ** sqlite3_free().
|
|
// **
|
|
// ** If an OOM error is encountered when allocating space for the new
|
|
// ** string, an error code is left in the rbu handle passed as the first
|
|
// ** argument and NULL is returned. Or, if an error has already occurred
|
|
// ** when this function is called, NULL is returned immediately, without
|
|
// ** attempting the allocation or modifying the stored error code.
|
|
// */
|
|
func _rbuObjIterGetSetlist(tls *libc.TLS, p uintptr, pIter uintptr, zMask uintptr) (r uintptr) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var c int8
|
|
var i int32
|
|
var zList, zSep uintptr
|
|
_, _, _, _ = c, i, zList, zSep
|
|
zList = uintptr(0)
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
if libc.Int32FromUint64(libc.Xstrlen(tls, zMask)) != (*TRbuObjIter)(unsafe.Pointer(pIter)).FnTblCol {
|
|
_rbuBadControlError(tls, p)
|
|
} else {
|
|
zSep = __ccgo_ts + 1704
|
|
i = 0
|
|
for {
|
|
if !(i < (*TRbuObjIter)(unsafe.Pointer(pIter)).FnTblCol) {
|
|
break
|
|
}
|
|
c = **(**int8)(__ccgo_up(zMask + uintptr(**(**int32)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FaiSrcOrder + uintptr(i)*4)))))
|
|
if int32(c) == int32('x') {
|
|
zList = _rbuMPrintf(tls, p, __ccgo_ts+31733, libc.VaList(bp+8, zList, zSep, **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(i)*8)), i+int32(1)))
|
|
zSep = __ccgo_ts + 16218
|
|
} else {
|
|
if int32(c) == int32('d') {
|
|
zList = _rbuMPrintf(tls, p, __ccgo_ts+31772, libc.VaList(bp+8, zList, zSep, **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(i)*8)), **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(i)*8)), i+int32(1)))
|
|
zSep = __ccgo_ts + 16218
|
|
} else {
|
|
if int32(c) == int32('f') {
|
|
zList = _rbuMPrintf(tls, p, __ccgo_ts+31802, libc.VaList(bp+8, zList, zSep, **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(i)*8)), **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(i)*8)), i+int32(1)))
|
|
zSep = __ccgo_ts + 16218
|
|
}
|
|
}
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
}
|
|
return zList
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Open the database handle and attach the RBU database as "rbu". If an
|
|
// ** error occurs, leave an error code and message in the RBU handle.
|
|
// **
|
|
// ** If argument dbMain is not NULL, then it is a database handle already
|
|
// ** open on the target database. Use this handle instead of opening a new
|
|
// ** one.
|
|
// */
|
|
func _rbuOpenDatabase(tls *libc.TLS, p uintptr, dbMain uintptr, pbRetry uintptr) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var bOpen, rc int32
|
|
var pState, zExtra, zFile, zTarget, v1, v2 uintptr
|
|
_, _, _, _, _, _, _, _ = bOpen, pState, rc, zExtra, zFile, zTarget, v1, v2
|
|
/* Open the RBU database */
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu = _rbuOpenDbhandle(tls, p, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzRbu, int32(1))
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain = dbMain
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK && (*Tsqlite3rbu)(unsafe.Pointer(p)).FzTarget == uintptr(0) {
|
|
Xsqlite3_file_control(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+6820, int32(SQLITE_FCNTL_RBUCNT), p)
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).FzState == uintptr(0) {
|
|
zFile = Xsqlite3_db_filename(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+6820)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FzState = _rbuMPrintf(tls, p, __ccgo_ts+33420, libc.VaList(bp+8, zFile, zFile))
|
|
}
|
|
}
|
|
/* If using separate RBU and state databases, attach the state database to
|
|
** the RBU db handle now. */
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).FzState != 0 {
|
|
_rbuMPrintfExec(tls, p, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+33448, libc.VaList(bp+8, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzState))
|
|
libc.Xmemcpy(tls, p+48, __ccgo_ts+3567, uint64(4))
|
|
} else {
|
|
libc.Xmemcpy(tls, p+48, __ccgo_ts+6820, uint64(4))
|
|
}
|
|
/* If it has not already been created, create the rbu_state table */
|
|
_rbuMPrintfExec(tls, p, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+33466, libc.VaList(bp+8, p+48))
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK && (*Tsqlite3rbu)(unsafe.Pointer(p)).FzTarget == uintptr(0) {
|
|
bOpen = 0
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FnRbu = 0
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FpRbuFd = uintptr(0)
|
|
rc = Xsqlite3_file_control(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+6820, int32(SQLITE_FCNTL_RBUCNT), p)
|
|
if rc != int32(SQLITE_NOTFOUND) {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = rc
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).FeStage >= int32(RBU_STAGE_MOVE) {
|
|
bOpen = int32(1)
|
|
} else {
|
|
pState = _rbuLoadState(tls, p)
|
|
if pState != 0 {
|
|
bOpen = libc.BoolInt32((*TRbuState)(unsafe.Pointer(pState)).FeStage >= int32(RBU_STAGE_MOVE))
|
|
_rbuFreeState(tls, pState)
|
|
}
|
|
}
|
|
if bOpen != 0 {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain = _rbuOpenDbhandle(tls, p, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzRbu, libc.BoolInt32((*Tsqlite3rbu)(unsafe.Pointer(p)).FnRbu <= int32(1)))
|
|
}
|
|
}
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FeStage = 0
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK && (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain == uintptr(0) {
|
|
if !((*Tsqlite3rbu)(unsafe.Pointer(p)).FzTarget == libc.UintptrFromInt32(0)) {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain = _rbuOpenDbhandle(tls, p, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzTarget, int32(1))
|
|
} else {
|
|
if (*Trbu_file)(unsafe.Pointer((*Tsqlite3rbu)(unsafe.Pointer(p)).FpRbuFd)).FpWalFd != 0 {
|
|
if pbRetry != 0 {
|
|
(*Trbu_file)(unsafe.Pointer((*Tsqlite3rbu)(unsafe.Pointer(p)).FpRbuFd)).FbNolock = uint8(0)
|
|
Xsqlite3_close(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu)
|
|
Xsqlite3_close(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain = uintptr(0)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu = uintptr(0)
|
|
**(**int32)(__ccgo_up(pbRetry)) = int32(1)
|
|
return
|
|
}
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = int32(SQLITE_ERROR)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg = Xsqlite3_mprintf(tls, __ccgo_ts+33532, 0)
|
|
} else {
|
|
zExtra = uintptr(0)
|
|
if libc.Xstrlen(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzRbu) >= uint64(5) && 0 == libc.Xmemcmp(tls, __ccgo_ts+26118, (*Tsqlite3rbu)(unsafe.Pointer(p)).FzRbu, uint64(5)) {
|
|
zExtra = (*Tsqlite3rbu)(unsafe.Pointer(p)).FzRbu + 5
|
|
for **(**int8)(__ccgo_up(zExtra)) != 0 {
|
|
v1 = zExtra
|
|
zExtra = zExtra + 1
|
|
if int32(**(**int8)(__ccgo_up(v1))) == int32('?') {
|
|
break
|
|
}
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zExtra))) == int32('\000') {
|
|
zExtra = uintptr(0)
|
|
}
|
|
}
|
|
if zExtra == uintptr(0) {
|
|
v1 = __ccgo_ts + 1704
|
|
} else {
|
|
v1 = __ccgo_ts + 33564
|
|
}
|
|
if zExtra == uintptr(0) {
|
|
v2 = __ccgo_ts + 1704
|
|
} else {
|
|
v2 = zExtra
|
|
}
|
|
zTarget = Xsqlite3_mprintf(tls, __ccgo_ts+33566, libc.VaList(bp+8, Xsqlite3_db_filename(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+6820), v1, v2))
|
|
if zTarget == uintptr(0) {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = int32(SQLITE_NOMEM)
|
|
return
|
|
}
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain = _rbuOpenDbhandle(tls, p, zTarget, libc.BoolInt32((*Tsqlite3rbu)(unsafe.Pointer(p)).FnRbu <= int32(1)))
|
|
Xsqlite3_free(tls, zTarget)
|
|
}
|
|
}
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = Xsqlite3_create_function(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, __ccgo_ts+33598, -int32(1), int32(SQLITE_UTF8), p, __ccgo_fp(_rbuTmpInsertFunc), uintptr(0), uintptr(0))
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = Xsqlite3_create_function(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, __ccgo_ts+33613, int32(2), int32(SQLITE_UTF8), uintptr(0), __ccgo_fp(_rbuFossilDeltaFunc), uintptr(0), uintptr(0))
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = Xsqlite3_create_function(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbRbu, __ccgo_ts+33630, -int32(1), int32(SQLITE_UTF8), p, __ccgo_fp(_rbuTargetNameFunc), uintptr(0), uintptr(0))
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = Xsqlite3_file_control(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, __ccgo_ts+6820, int32(SQLITE_FCNTL_RBU), p)
|
|
}
|
|
_rbuMPrintfExec(tls, p, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, __ccgo_ts+33646, 0)
|
|
/* Mark the database file just opened as an RBU target database. If
|
|
** this call returns SQLITE_NOTFOUND, then the RBU vfs is not in use.
|
|
** This is an error. */
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = Xsqlite3_file_control(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, __ccgo_ts+6820, int32(SQLITE_FCNTL_RBU), p)
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == int32(SQLITE_NOTFOUND) {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = int32(SQLITE_ERROR)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).FzErrmsg = Xsqlite3_mprintf(tls, __ccgo_ts+33674, 0)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** The implementation of the rbu_target_name() SQL function. This function
|
|
// ** accepts one or two arguments. The first argument is the name of a table -
|
|
// ** the name of a table in the RBU database. The second, if it is present, is 1
|
|
// ** for a view or 0 for a table.
|
|
// **
|
|
// ** For a non-vacuum RBU handle, if the table name matches the pattern:
|
|
// **
|
|
// ** data[0-9]_<name>
|
|
// **
|
|
// ** where <name> is any sequence of 1 or more characters, <name> is returned.
|
|
// ** Otherwise, if the only argument does not match the above pattern, an SQL
|
|
// ** NULL is returned.
|
|
// **
|
|
// ** "data_t1" -> "t1"
|
|
// ** "data0123_t2" -> "t2"
|
|
// ** "dataAB_t3" -> NULL
|
|
// **
|
|
// ** For an rbu vacuum handle, a copy of the first argument is returned if
|
|
// ** the second argument is either missing or 0 (not a view).
|
|
// */
|
|
func _rbuTargetNameFunc(tls *libc.TLS, pCtx uintptr, argc int32, argv uintptr) {
|
|
var i int32
|
|
var p, zIn uintptr
|
|
_, _, _ = i, p, zIn
|
|
p = Xsqlite3_user_data(tls, pCtx)
|
|
zIn = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
if zIn != 0 {
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).FzTarget == uintptr(0) {
|
|
if argc == int32(1) || 0 == Xsqlite3_value_int(tls, **(**uintptr)(__ccgo_up(argv + 1*8))) {
|
|
Xsqlite3_result_text(tls, pCtx, zIn, -int32(1), libc.UintptrFromInt32(0))
|
|
}
|
|
} else {
|
|
if libc.Xstrlen(tls, zIn) > uint64(4) && libc.Xmemcmp(tls, __ccgo_ts+27408, zIn, uint64(4)) == 0 {
|
|
i = int32(4)
|
|
for {
|
|
if !(int32(**(**int8)(__ccgo_up(zIn + uintptr(i)))) >= int32('0') && int32(**(**int8)(__ccgo_up(zIn + uintptr(i)))) <= int32('9')) {
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn + uintptr(i)))) == int32('_') && **(**int8)(__ccgo_up(zIn + uintptr(i+int32(1)))) != 0 {
|
|
Xsqlite3_result_text(tls, pCtx, zIn+uintptr(i+int32(1)), -int32(1), libc.UintptrFromInt32(0))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is called as part of restating an RBU vacuum when the
|
|
// ** current operation is writing content to an index. If possible, it
|
|
// ** queries the target index b-tree for the largest key already written to
|
|
// ** it, then composes and returns an expression that can be used in a WHERE
|
|
// ** clause to select the remaining required rows from the source table.
|
|
// ** It is only possible to return such an expression if:
|
|
// **
|
|
// ** * The index contains no DESC columns, and
|
|
// ** * The last key written to the index before the operation was
|
|
// ** suspended does not contain any NULL values.
|
|
// **
|
|
// ** The expression is of the form:
|
|
// **
|
|
// ** (index-field1, index-field2, ...) > (?, ?, ...)
|
|
// **
|
|
// ** except that the "?" placeholders are replaced with literal values.
|
|
// **
|
|
// ** If the expression cannot be created, NULL is returned. In this case,
|
|
// ** the caller has to use an OFFSET clause to extract only the required
|
|
// ** rows from the sourct table, just as it does for an RBU update operation.
|
|
// */
|
|
func _rbuVacuumIndexStart(tls *libc.TLS, p uintptr, pIter uintptr) (r uintptr) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var bFailed, i, iCid, iCol int32
|
|
var zCol, zCollate, zLhs, zOrder, zQuoted, zRet, zSelect, zSep, zVector uintptr
|
|
var _ /* pSel at bp+8 */ uintptr
|
|
var _ /* pXInfo at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _ = bFailed, i, iCid, iCol, zCol, zCollate, zLhs, zOrder, zQuoted, zRet, zSelect, zSep, zVector
|
|
zOrder = uintptr(0)
|
|
zLhs = uintptr(0)
|
|
zSelect = uintptr(0)
|
|
zVector = uintptr(0)
|
|
zRet = uintptr(0)
|
|
bFailed = 0
|
|
zSep = __ccgo_ts + 1704
|
|
iCol = 0
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = _prepareFreeAndCollectError(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, bp, p+64, Xsqlite3_mprintf(tls, __ccgo_ts+31019, libc.VaList(bp+24, (*TRbuObjIter)(unsafe.Pointer(pIter)).FzIdx)))
|
|
for (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK && int32(SQLITE_ROW) == Xsqlite3_step(tls, **(**uintptr)(__ccgo_up(bp))) {
|
|
iCid = Xsqlite3_column_int(tls, **(**uintptr)(__ccgo_up(bp)), int32(1))
|
|
zCollate = Xsqlite3_column_text(tls, **(**uintptr)(__ccgo_up(bp)), int32(4))
|
|
if Xsqlite3_column_int(tls, **(**uintptr)(__ccgo_up(bp)), int32(3)) != 0 {
|
|
bFailed = int32(1)
|
|
break
|
|
}
|
|
if iCid < 0 {
|
|
if (*TRbuObjIter)(unsafe.Pointer(pIter)).FeType == int32(RBU_PK_IPK) {
|
|
i = 0
|
|
for {
|
|
if !(libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FabTblPk + uintptr(i)))) == 0) {
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
zCol = **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(i)*8))
|
|
} else {
|
|
zCol = __ccgo_ts + 31342
|
|
}
|
|
} else {
|
|
zCol = **(**uintptr)(__ccgo_up((*TRbuObjIter)(unsafe.Pointer(pIter)).FazTblCol + uintptr(iCid)*8))
|
|
}
|
|
zLhs = _rbuMPrintf(tls, p, __ccgo_ts+31350, libc.VaList(bp+24, zLhs, zSep, zCol, zCollate))
|
|
zOrder = _rbuMPrintf(tls, p, __ccgo_ts+31371, libc.VaList(bp+24, zOrder, zSep, iCol, zCol, zCollate))
|
|
zSelect = _rbuMPrintf(tls, p, __ccgo_ts+31407, libc.VaList(bp+24, zSelect, zSep, iCol, zCol))
|
|
zSep = __ccgo_ts + 16218
|
|
iCol = iCol + 1
|
|
}
|
|
_rbuFinalize(tls, p, **(**uintptr)(__ccgo_up(bp)))
|
|
if bFailed != 0 {
|
|
goto index_start_out
|
|
}
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = _prepareFreeAndCollectError(tls, (*Tsqlite3rbu)(unsafe.Pointer(p)).FdbMain, bp+8, p+64, Xsqlite3_mprintf(tls, __ccgo_ts+31434, libc.VaList(bp+24, zSelect, (*TRbuObjIter)(unsafe.Pointer(pIter)).FzTbl, zOrder)))
|
|
if (*Tsqlite3rbu)(unsafe.Pointer(p)).Frc == SQLITE_OK && int32(SQLITE_ROW) == Xsqlite3_step(tls, **(**uintptr)(__ccgo_up(bp + 8))) {
|
|
zSep = __ccgo_ts + 1704
|
|
iCol = 0
|
|
for {
|
|
if !(iCol < (*TRbuObjIter)(unsafe.Pointer(pIter)).FnCol) {
|
|
break
|
|
}
|
|
zQuoted = Xsqlite3_column_text(tls, **(**uintptr)(__ccgo_up(bp + 8)), iCol)
|
|
if zQuoted == uintptr(0) {
|
|
(*Tsqlite3rbu)(unsafe.Pointer(p)).Frc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zQuoted))) == int32('N') {
|
|
bFailed = int32(1)
|
|
break
|
|
}
|
|
}
|
|
zVector = _rbuMPrintf(tls, p, __ccgo_ts+31482, libc.VaList(bp+24, zVector, zSep, zQuoted))
|
|
zSep = __ccgo_ts + 16218
|
|
goto _2
|
|
_2:
|
|
;
|
|
iCol = iCol + 1
|
|
}
|
|
if !(bFailed != 0) {
|
|
zRet = _rbuMPrintf(tls, p, __ccgo_ts+31489, libc.VaList(bp+24, zLhs, zVector))
|
|
}
|
|
}
|
|
_rbuFinalize(tls, p, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
}
|
|
goto index_start_out
|
|
index_start_out:
|
|
;
|
|
Xsqlite3_free(tls, zOrder)
|
|
Xsqlite3_free(tls, zSelect)
|
|
Xsqlite3_free(tls, zVector)
|
|
Xsqlite3_free(tls, zLhs)
|
|
return zRet
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Open an rbu file handle.
|
|
// */
|
|
func _rbuVfsOpen(tls *libc.TLS, pVfs uintptr, zName uintptr, pFile uintptr, flags int32, pOutFlags uintptr) (r int32) {
|
|
var nOpen Tsize_t
|
|
var oflags, rc int32
|
|
var pDb, pFd, pMeth, pRbuVfs, pRealVfs, zOpen uintptr
|
|
_, _, _, _, _, _, _, _, _ = nOpen, oflags, pDb, pFd, pMeth, pRbuVfs, pRealVfs, rc, zOpen
|
|
pRbuVfs = pVfs
|
|
pRealVfs = (*Trbu_vfs)(unsafe.Pointer(pRbuVfs)).FpRealVfs
|
|
pFd = pFile
|
|
rc = SQLITE_OK
|
|
zOpen = zName
|
|
oflags = flags
|
|
libc.Xmemset(tls, pFd, 0, uint64(104))
|
|
(*Trbu_file)(unsafe.Pointer(pFd)).FpReal = pFd + 1*104
|
|
(*Trbu_file)(unsafe.Pointer(pFd)).FpRbuVfs = pRbuVfs
|
|
(*Trbu_file)(unsafe.Pointer(pFd)).FopenFlags = flags
|
|
if zName != 0 {
|
|
if flags&int32(SQLITE_OPEN_MAIN_DB) != 0 {
|
|
/* A main database has just been opened. The following block sets
|
|
** (pFd->zWal) to point to a buffer owned by SQLite that contains
|
|
** the name of the *-wal file this db connection will use. SQLite
|
|
** happens to pass a pointer to this buffer when using xAccess()
|
|
** or xOpen() to operate on the *-wal file. */
|
|
(*Trbu_file)(unsafe.Pointer(pFd)).FzWal = Xsqlite3_filename_wal(tls, zName)
|
|
} else {
|
|
if flags&int32(SQLITE_OPEN_WAL) != 0 {
|
|
pDb = _rbuFindMaindb(tls, pRbuVfs, zName, 0)
|
|
if pDb != 0 {
|
|
if (*Trbu_file)(unsafe.Pointer(pDb)).FpRbu != 0 && (*Tsqlite3rbu)(unsafe.Pointer((*Trbu_file)(unsafe.Pointer(pDb)).FpRbu)).FeStage == int32(RBU_STAGE_OAL) {
|
|
if (*Tsqlite3rbu)(unsafe.Pointer((*Trbu_file)(unsafe.Pointer(pDb)).FpRbu)).FzTarget == uintptr(0) {
|
|
zOpen = Xsqlite3_db_filename(tls, (*Tsqlite3rbu)(unsafe.Pointer((*Trbu_file)(unsafe.Pointer(pDb)).FpRbu)).FdbRbu, __ccgo_ts+6820)
|
|
zOpen = Xsqlite3_filename_wal(tls, zOpen)
|
|
}
|
|
nOpen = libc.Xstrlen(tls, zOpen)
|
|
**(**int8)(__ccgo_up(zOpen + uintptr(nOpen-uint64(3)))) = int8('o')
|
|
(*Trbu_file)(unsafe.Pointer(pFd)).FpRbu = (*Trbu_file)(unsafe.Pointer(pDb)).FpRbu
|
|
}
|
|
(*Trbu_file)(unsafe.Pointer(pDb)).FpWalFd = pFd
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
(*Trbu_file)(unsafe.Pointer(pFd)).FpRbu = (*Trbu_vfs)(unsafe.Pointer(pRbuVfs)).FpRbu
|
|
}
|
|
if oflags&int32(SQLITE_OPEN_MAIN_DB) != 0 && Xsqlite3_uri_boolean(tls, zName, __ccgo_ts+34745, 0) != 0 {
|
|
oflags = libc.Int32FromInt32(SQLITE_OPEN_TEMP_DB) | libc.Int32FromInt32(SQLITE_OPEN_READWRITE) | libc.Int32FromInt32(SQLITE_OPEN_CREATE) | libc.Int32FromInt32(SQLITE_OPEN_EXCLUSIVE) | libc.Int32FromInt32(SQLITE_OPEN_DELETEONCLOSE)
|
|
zOpen = uintptr(0)
|
|
}
|
|
if rc == SQLITE_OK {
|
|
rc = (*(*func(*libc.TLS, uintptr, Tsqlite3_filename, uintptr, int32, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_vfs)(unsafe.Pointer(pRealVfs)).FxOpen})))(tls, pRealVfs, zOpen, (*Trbu_file)(unsafe.Pointer(pFd)).FpReal, oflags, pOutFlags)
|
|
}
|
|
if (*Tsqlite3_file)(unsafe.Pointer((*Trbu_file)(unsafe.Pointer(pFd)).FpReal)).FpMethods != 0 {
|
|
pMeth = (*Tsqlite3_file)(unsafe.Pointer((*Trbu_file)(unsafe.Pointer(pFd)).FpReal)).FpMethods
|
|
/* The xOpen() operation has succeeded. Set the sqlite3_file.pMethods
|
|
** pointer and, if the file is a main database file, link it into the
|
|
** mutex protected linked list of all such files. */
|
|
if (*Tsqlite3_io_methods)(unsafe.Pointer(pMeth)).FiVersion < int32(2) || (*Tsqlite3_io_methods)(unsafe.Pointer(pMeth)).FxShmLock == uintptr(0) {
|
|
(*Tsqlite3_file)(unsafe.Pointer(pFile)).FpMethods = uintptr(unsafe.Pointer(&_rbuvfs_io_methods1))
|
|
} else {
|
|
(*Tsqlite3_file)(unsafe.Pointer(pFile)).FpMethods = uintptr(unsafe.Pointer(&_rbuvfs_io_methods))
|
|
}
|
|
if flags&int32(SQLITE_OPEN_MAIN_DB) != 0 {
|
|
_rbuMainlistAdd(tls, pFd)
|
|
}
|
|
} else {
|
|
Xsqlite3_free(tls, (*Trbu_file)(unsafe.Pointer(pFd)).FzDel)
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function edits SQL statement zSql, replacing each token identified
|
|
// ** by the linked list pRename with the text of zNew. If argument bQuote is
|
|
// ** true, then zNew is always quoted first. If no error occurs, the result
|
|
// ** is loaded into context object pCtx as the result.
|
|
// **
|
|
// ** Or, if an error occurs (i.e. an OOM condition), an error is left in
|
|
// ** pCtx and an SQLite error code returned.
|
|
// */
|
|
func _renameEditSql(tls *libc.TLS, pCtx uintptr, pRename uintptr, zSql uintptr, zNew uintptr, bQuote int32) (r int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var db, pBest, zBuf1, zBuf2, zOut, zQuot, zReplace, v1 uintptr
|
|
var iOff, rc int32
|
|
var nNew, nOut, nQuot, nReplace, nSql Ti64
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = db, iOff, nNew, nOut, nQuot, nReplace, nSql, pBest, rc, zBuf1, zBuf2, zOut, zQuot, zReplace, v1
|
|
nNew = int64(_sqlite3Strlen30(tls, zNew))
|
|
nSql = int64(_sqlite3Strlen30(tls, zSql))
|
|
db = Xsqlite3_context_db_handle(tls, pCtx)
|
|
rc = SQLITE_OK
|
|
zQuot = uintptr(0)
|
|
nQuot = 0
|
|
zBuf1 = uintptr(0)
|
|
zBuf2 = uintptr(0)
|
|
if zNew != 0 {
|
|
/* Set zQuot to point to a buffer containing a quoted copy of the
|
|
** identifier zNew. If the corresponding identifier in the original
|
|
** ALTER TABLE statement was quoted (bQuote==1), then set zNew to
|
|
** point to zQuot so that all substitutions are made using the
|
|
** quoted version of the new column name. */
|
|
zQuot = _sqlite3MPrintf(tls, db, __ccgo_ts+11578, libc.VaList(bp+8, zNew))
|
|
if zQuot == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
} else {
|
|
nQuot = int64(_sqlite3Strlen30(tls, zQuot) - int32(1))
|
|
}
|
|
zOut = _sqlite3DbMallocZero(tls, db, libc.Uint64FromInt64(nSql)+libc.Uint64FromInt32((*TRenameCtx)(unsafe.Pointer(pRename)).FnList)*libc.Uint64FromInt64(nQuot)+uint64(1))
|
|
} else {
|
|
zOut = _sqlite3DbMallocZero(tls, db, (uint64(2)*libc.Uint64FromInt64(nSql)+uint64(1))*uint64(3))
|
|
if zOut != 0 {
|
|
zBuf1 = zOut + uintptr(nSql*int64(2)+int64(1))
|
|
zBuf2 = zOut + uintptr(nSql*int64(4)+int64(2))
|
|
}
|
|
}
|
|
/* At this point pRename->pList contains a list of RenameToken objects
|
|
** corresponding to all tokens in the input SQL that must be replaced
|
|
** with the new column name, or with single-quoted versions of themselves.
|
|
** All that remains is to construct and return the edited SQL string. */
|
|
if zOut != 0 {
|
|
nOut = nSql
|
|
libc.Xmemcpy(tls, zOut, zSql, libc.Uint64FromInt64(nSql))
|
|
for (*TRenameCtx)(unsafe.Pointer(pRename)).FpList != 0 {
|
|
pBest = _renameColumnTokenNext(tls, pRename)
|
|
if zNew != 0 {
|
|
if bQuote == 0 && _sqlite3IsIdChar(tls, **(**Tu8)(__ccgo_up((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fz))) != 0 {
|
|
nReplace = nNew
|
|
zReplace = zNew
|
|
} else {
|
|
nReplace = nQuot
|
|
zReplace = zQuot
|
|
if int32(**(**int8)(__ccgo_up((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fz + uintptr((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn)))) == int32('"') {
|
|
nReplace = nReplace + 1
|
|
}
|
|
}
|
|
} else {
|
|
/* Dequote the double-quoted token. Then requote it again, this time
|
|
** using single quotes. If the character immediately following the
|
|
** original token within the input SQL was a single quote ('), then
|
|
** add another space after the new, single-quoted version of the
|
|
** token. This is so that (SELECT "string"'alias') maps to
|
|
** (SELECT 'string' 'alias'), and not (SELECT 'string''alias'). */
|
|
libc.Xmemcpy(tls, zBuf1, (*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fz, uint64((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn))
|
|
**(**int8)(__ccgo_up(zBuf1 + uintptr((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn))) = 0
|
|
_sqlite3Dequote(tls, zBuf1)
|
|
if int32(**(**int8)(__ccgo_up((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fz + uintptr((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn)))) == int32('\'') {
|
|
v1 = __ccgo_ts + 11545
|
|
} else {
|
|
v1 = __ccgo_ts + 1704
|
|
}
|
|
Xsqlite3_snprintf(tls, int32(nSql*libc.Int64FromInt32(2)), zBuf2, __ccgo_ts+11584, libc.VaList(bp+8, zBuf1, v1))
|
|
zReplace = zBuf2
|
|
nReplace = int64(_sqlite3Strlen30(tls, zReplace))
|
|
}
|
|
iOff = int32(int64((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fz) - int64(zSql))
|
|
if libc.Int64FromUint32((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn) != nReplace {
|
|
libc.Xmemmove(tls, zOut+uintptr(int64(iOff)+nReplace), zOut+uintptr(libc.Uint32FromInt32(iOff)+(*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn), libc.Uint64FromInt64(nOut-libc.Int64FromUint32(libc.Uint32FromInt32(iOff)+(*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn)))
|
|
nOut = nOut + (nReplace - libc.Int64FromUint32((*TRenameToken)(unsafe.Pointer(pBest)).Ft.Fn))
|
|
**(**int8)(__ccgo_up(zOut + uintptr(nOut))) = int8('\000')
|
|
}
|
|
libc.Xmemcpy(tls, zOut+uintptr(iOff), zReplace, libc.Uint64FromInt64(nReplace))
|
|
_sqlite3DbFree(tls, db, pBest)
|
|
}
|
|
Xsqlite3_result_text(tls, pCtx, zOut, -int32(1), uintptr(-libc.Int32FromInt32(1)))
|
|
_sqlite3DbFree(tls, db, zOut)
|
|
} else {
|
|
rc = int32(SQLITE_NOMEM)
|
|
}
|
|
Xsqlite3_free(tls, zQuot)
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This routine is callback for sqlite3WalkExpr().
|
|
// **
|
|
// ** Resolve symbolic names into TK_COLUMN operators for the current
|
|
// ** node in the expression tree. Return 0 to continue the search down
|
|
// ** the tree or 2 to abort the tree walk.
|
|
// **
|
|
// ** This routine also does error checking and name resolution for
|
|
// ** function names. The operator for aggregate functions is changed
|
|
// ** to TK_AGG_FUNCTION.
|
|
// */
|
|
func _resolveExprStep(tls *libc.TLS, pWalker uintptr, pExpr uintptr) (r int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var anRef [8]int32
|
|
var auth, i, is_agg, n, nLeft, nRef, nRight, no_such_func, rc, savedAllowFlags, wrong_num_args, v5 int32
|
|
var enc Tu8
|
|
var p, pDef, pItem, pLeft, pList, pNC, pNC2, pParse, pRight, pRight1, pSel, pSrcList, pWin, zDb, zId, zTable, zType, v4 uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = anRef, auth, enc, i, is_agg, n, nLeft, nRef, nRight, no_such_func, p, pDef, pItem, pLeft, pList, pNC, pNC2, pParse, pRight, pRight1, pSel, pSrcList, pWin, rc, savedAllowFlags, wrong_num_args, zDb, zId, zTable, zType, v4, v5
|
|
pNC = *(*uintptr)(unsafe.Pointer(pWalker + 40))
|
|
pParse = (*TNameContext)(unsafe.Pointer(pNC)).FpParse
|
|
switch libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) {
|
|
/* The special operator TK_ROW means use the rowid for the first
|
|
** column in the FROM clause. This is used by the LIMIT and ORDER BY
|
|
** clause processing on UPDATE and DELETE statements, and by
|
|
** UPDATE ... FROM statement processing.
|
|
*/
|
|
case int32(TK_ROW):
|
|
pSrcList = (*TNameContext)(unsafe.Pointer(pNC)).FpSrcList
|
|
pItem = pSrcList + 8
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_COLUMN)
|
|
*(*uintptr)(unsafe.Pointer(pExpr + 64)) = (*TSrcItem)(unsafe.Pointer(pItem)).FpSTab
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = (*TSrcItem)(unsafe.Pointer(pItem)).FiCursor
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = (*TExpr)(unsafe.Pointer(pExpr)).FiColumn - 1
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FaffExpr = int8(SQLITE_AFF_INTEGER)
|
|
break
|
|
/* An optimization: Attempt to convert
|
|
**
|
|
** "expr IS NOT NULL" --> "TRUE"
|
|
** "expr IS NULL" --> "FALSE"
|
|
**
|
|
** if we can prove that "expr" is never NULL. Call this the
|
|
** "NOT NULL strength reduction optimization".
|
|
**
|
|
** If this optimization occurs, also restore the NameContext ref-counts
|
|
** to the state they where in before the "column" LHS expression was
|
|
** resolved. This prevents "column" from being counted as having been
|
|
** referenced, which might prevent a SELECT from being erroneously
|
|
** marked as correlated.
|
|
**
|
|
** 2024-03-28: Beware of aggregates. A bare column of aggregated table
|
|
** can still evaluate to NULL even though it is marked as NOT NULL.
|
|
** Example:
|
|
**
|
|
** CREATE TABLE t1(a INT NOT NULL);
|
|
** SELECT a, a IS NULL, a IS NOT NULL, count(*) FROM t1;
|
|
**
|
|
** The "a IS NULL" and "a IS NOT NULL" expressions cannot be optimized
|
|
** here because at the time this case is hit, we do not yet know whether
|
|
** or not t1 is being aggregated. We have to assume the worst and omit
|
|
** the optimization. The only time it is safe to apply this optimization
|
|
** is within the WHERE clause.
|
|
*/
|
|
fallthrough
|
|
case int32(TK_NOTNULL):
|
|
fallthrough
|
|
case int32(TK_ISNULL):
|
|
i = 0
|
|
p = pNC
|
|
for {
|
|
if !(p != 0 && i < libc.Int32FromUint64(libc.Uint64FromInt64(32)/libc.Uint64FromInt64(4))) {
|
|
break
|
|
}
|
|
anRef[i] = (*TNameContext)(unsafe.Pointer(p)).FnRef
|
|
goto _1
|
|
_1:
|
|
;
|
|
p = (*TNameContext)(unsafe.Pointer(p)).FpNext
|
|
i = i + 1
|
|
}
|
|
_sqlite3WalkExpr(tls, pWalker, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
return int32(WRC_Prune)
|
|
}
|
|
if _sqlite3ExprCanBeNull(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft) != 0 {
|
|
/* The expression can be NULL. So the optimization does not apply */
|
|
return int32(WRC_Prune)
|
|
}
|
|
i = 0
|
|
p = pNC
|
|
for {
|
|
if !(p != 0) {
|
|
break
|
|
}
|
|
if (*TNameContext)(unsafe.Pointer(p)).FncFlags&int32(NC_Where) == 0 {
|
|
return int32(WRC_Prune) /* Not in a WHERE clause. Unsafe to optimize. */
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
p = (*TNameContext)(unsafe.Pointer(p)).FpNext
|
|
i = i + 1
|
|
}
|
|
*(*int32)(unsafe.Pointer(&(*TExpr)(unsafe.Pointer(pExpr)).Fu)) = libc.BoolInt32(libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_NOTNULL))
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= uint32(EP_IntValue)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_INTEGER)
|
|
i = 0
|
|
p = pNC
|
|
for {
|
|
if !(p != 0 && i < libc.Int32FromUint64(libc.Uint64FromInt64(32)/libc.Uint64FromInt64(4))) {
|
|
break
|
|
}
|
|
(*TNameContext)(unsafe.Pointer(p)).FnRef = anRef[i]
|
|
goto _3
|
|
_3:
|
|
;
|
|
p = (*TNameContext)(unsafe.Pointer(p)).FpNext
|
|
i = i + 1
|
|
}
|
|
_sqlite3ExprDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FpLeft = uintptr(0)
|
|
return int32(WRC_Prune)
|
|
/* A column name: ID
|
|
** Or table name and column name: ID.ID
|
|
** Or a database, table and column: ID.ID.ID
|
|
**
|
|
** The TK_ID and TK_OUT cases are combined so that there will only
|
|
** be one call to lookupName(). Then the compiler will in-line
|
|
** lookupName() for a size reduction and performance increase.
|
|
*/
|
|
fallthrough
|
|
case int32(TK_ID):
|
|
fallthrough
|
|
case int32(TK_DOT):
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_ID) {
|
|
zDb = uintptr(0)
|
|
zTable = uintptr(0)
|
|
pRight = pExpr
|
|
} else {
|
|
pLeft = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&(libc.Int32FromInt32(NC_IdxExpr)|libc.Int32FromInt32(NC_GenCol)) != 0 {
|
|
_notValidImpl(tls, pParse, pNC, __ccgo_ts+7204, uintptr(0), pExpr)
|
|
}
|
|
pRight = (*TExpr)(unsafe.Pointer(pExpr)).FpRight
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pRight)).Fop) == int32(TK_ID) {
|
|
zDb = uintptr(0)
|
|
} else {
|
|
zDb = *(*uintptr)(unsafe.Pointer(pLeft + 8))
|
|
pLeft = (*TExpr)(unsafe.Pointer(pRight)).FpLeft
|
|
pRight = (*TExpr)(unsafe.Pointer(pRight)).FpRight
|
|
}
|
|
zTable = *(*uintptr)(unsafe.Pointer(pLeft + 8))
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenRemap(tls, pParse, pExpr, pRight)
|
|
_sqlite3RenameTokenRemap(tls, pParse, pExpr+64, pLeft)
|
|
}
|
|
}
|
|
return _lookupName(tls, pParse, zDb, zTable, pRight, pNC, pExpr)
|
|
/* Resolve function names
|
|
*/
|
|
fallthrough
|
|
case int32(TK_FUNCTION): /* Number of arguments */
|
|
no_such_func = 0 /* True if no such function exists */
|
|
wrong_num_args = 0 /* True if wrong number of arguments */
|
|
is_agg = 0 /* Information about the function */
|
|
enc = (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).Fenc /* The database encoding */
|
|
savedAllowFlags = (*TNameContext)(unsafe.Pointer(pNC)).FncFlags & (libc.Int32FromInt32(NC_AllowAgg) | libc.Int32FromInt32(NC_AllowWin))
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_WinFunc)) != uint32(0) && libc.Int32FromUint8((*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 64)))).FeFrmType) != int32(TK_FILTER) {
|
|
v4 = *(*uintptr)(unsafe.Pointer(pExpr + 64))
|
|
} else {
|
|
v4 = uintptr(0)
|
|
}
|
|
pWin = v4
|
|
pList = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
if pList != 0 {
|
|
v5 = (*TExprList)(unsafe.Pointer(pList)).FnExpr
|
|
} else {
|
|
v5 = 0
|
|
}
|
|
n = v5
|
|
zId = *(*uintptr)(unsafe.Pointer(pExpr + 8))
|
|
pDef = _sqlite3FindFunction(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, zId, n, enc, uint8(0))
|
|
if pDef == uintptr(0) {
|
|
pDef = _sqlite3FindFunction(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, zId, -int32(2), enc, uint8(0))
|
|
if pDef == uintptr(0) {
|
|
no_such_func = int32(1)
|
|
} else {
|
|
wrong_num_args = int32(1)
|
|
}
|
|
} else {
|
|
is_agg = libc.BoolInt32((*TFuncDef)(unsafe.Pointer(pDef)).FxFinalize != uintptr(0))
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_UNLIKELY) != 0 {
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_Unlikely))
|
|
if n == int32(2) {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = _exprProbability(tls, (*(*TExprList_item)(unsafe.Pointer(pList + 8 + 1*32))).FpExpr)
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).FiTable < 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7221, libc.VaList(bp+8, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
}
|
|
} else {
|
|
/* EVIDENCE-OF: R-61304-29449 The unlikely(X) function is
|
|
** equivalent to likelihood(X, 0.0625).
|
|
** EVIDENCE-OF: R-01283-11636 The unlikely(X) function is
|
|
** short-hand for likelihood(X,0.0625).
|
|
** EVIDENCE-OF: R-36850-34127 The likely(X) function is short-hand
|
|
** for likelihood(X,0.9375).
|
|
** EVIDENCE-OF: R-53436-40973 The likely(X) function is equivalent
|
|
** to likelihood(X,0.9375). */
|
|
/* TUNING: unlikely() probability is 0.0625. likely() is 0.9375 */
|
|
if int32(**(**int8)(__ccgo_up((*TFuncDef)(unsafe.Pointer(pDef)).FzName))) == int32('u') {
|
|
v5 = int32(8388608)
|
|
} else {
|
|
v5 = int32(125829120)
|
|
}
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = v5
|
|
}
|
|
}
|
|
auth = _sqlite3AuthCheck(tls, pParse, int32(SQLITE_FUNCTION), uintptr(0), (*TFuncDef)(unsafe.Pointer(pDef)).FzName, uintptr(0))
|
|
if auth != SQLITE_OK {
|
|
if auth == int32(SQLITE_DENY) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7285, libc.VaList(bp+8, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
}
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_NULL)
|
|
return int32(WRC_Prune)
|
|
}
|
|
/* If the function may call sqlite3_value_subtype(), then set the
|
|
** EP_SubtArg flag on all of its argument expressions. This prevents
|
|
** where.c from replacing the expression with a value read from an
|
|
** index on the same expression, which will not have the correct
|
|
** subtype. Also set the flag if the function expression itself is
|
|
** an EP_SubtArg expression. In this case subtypes are required as
|
|
** the function may return a value with a subtype back to its
|
|
** caller using sqlite3_result_value(). */
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_SUBTYPE) != 0 || (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromUint32(EP_SubtArg) != uint32(0) {
|
|
_resolveSetExprSubtypeArg(tls, pList)
|
|
}
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_FUNC_CONSTANT)|libc.Int32FromInt32(SQLITE_FUNC_SLOCHNG)) != 0 {
|
|
/* For the purposes of the EP_ConstFunc flag, date and time
|
|
** functions and other functions that change slowly are considered
|
|
** constant because they are constant for the duration of one query.
|
|
** This allows them to be factored out of inner loops. */
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_ConstFunc))
|
|
}
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_CONSTANT) == uint32(0) {
|
|
/* Clearly non-deterministic functions like random(), but also
|
|
** date/time functions that use 'now', and other functions like
|
|
** sqlite_version() that might change over time cannot be used
|
|
** in an index or generated column. Curiously, they can be used
|
|
** in a CHECK constraint. SQLServer, MySQL, and PostgreSQL all
|
|
** allow this. */
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&(libc.Int32FromInt32(NC_IdxExpr)|libc.Int32FromInt32(NC_PartIdx)|libc.Int32FromInt32(NC_GenCol)) != 0 {
|
|
_notValidImpl(tls, pParse, pNC, __ccgo_ts+7321, uintptr(0), pExpr)
|
|
}
|
|
} else {
|
|
/* Must fit in 8 bits */
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop2 = libc.Uint8FromInt32((*TNameContext)(unsafe.Pointer(pNC)).FncFlags & int32(NC_SelfRef))
|
|
}
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_INTERNAL) != uint32(0) && libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).Fnested) == 0 && (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmDbFlags&uint32(DBFLAG_InternalFunc) == uint32(0) {
|
|
/* Internal-use-only functions are disallowed unless the
|
|
** SQL is being compiled using sqlite3NestedParse() or
|
|
** the SQLITE_TESTCTRL_INTERNAL_FUNCTIONS test-control has be
|
|
** used to activate internal functions for testing purposes */
|
|
no_such_func = int32(1)
|
|
pDef = uintptr(0)
|
|
} else {
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_FUNC_DIRECT)|libc.Int32FromInt32(SQLITE_FUNC_UNSAFE)) != uint32(0) && !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= libc.Int32FromInt32(PARSE_MODE_RENAME)) {
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_FromDDL) != 0 {
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_FromDDL))
|
|
}
|
|
_sqlite3ExprFunctionUsable(tls, pParse, pExpr, pDef)
|
|
}
|
|
}
|
|
}
|
|
if 0 == libc.BoolInt32(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME)) {
|
|
if pDef != 0 && (*TFuncDef)(unsafe.Pointer(pDef)).FxValue == uintptr(0) && pWin != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7349, libc.VaList(bp+8, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
} else {
|
|
if is_agg != 0 && (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_AllowAgg) == 0 || is_agg != 0 && (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_WINDOW) != 0 && !(pWin != 0) || is_agg != 0 && pWin != 0 && (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_AllowWin) == 0 {
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_WINDOW) != 0 || pWin != 0 {
|
|
zType = __ccgo_ts + 7392
|
|
} else {
|
|
zType = __ccgo_ts + 7399
|
|
}
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7409, libc.VaList(bp+8, zType, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
is_agg = 0
|
|
} else {
|
|
if no_such_func != 0 && libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).Finit1.Fbusy) == 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7437, libc.VaList(bp+8, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
} else {
|
|
if wrong_num_args != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7459, libc.VaList(bp+8, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
} else {
|
|
if is_agg == 0 && (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_WinFunc)) != uint32(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+7503, libc.VaList(bp+8, pExpr))
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
} else {
|
|
if is_agg == 0 && (*TExpr)(unsafe.Pointer(pExpr)).FpLeft != 0 {
|
|
_sqlite3ExprOrderByAggregateError(tls, pParse, pExpr)
|
|
(*TNameContext)(unsafe.Pointer(pNC)).FnNcErr = (*TNameContext)(unsafe.Pointer(pNC)).FnNcErr + 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if is_agg != 0 {
|
|
/* Window functions may not be arguments of aggregate functions.
|
|
** Or arguments of other window functions. But aggregate functions
|
|
** may be arguments for window functions. */
|
|
if !(pWin != 0) {
|
|
v5 = int32(NC_AllowAgg)
|
|
} else {
|
|
v5 = 0
|
|
}
|
|
**(**int32)(__ccgo_up(pNC + 40)) &= ^(libc.Int32FromInt32(NC_AllowWin) | v5)
|
|
}
|
|
} else {
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_WinFunc)) != uint32(0) || (*TExpr)(unsafe.Pointer(pExpr)).FpLeft != 0 {
|
|
is_agg = int32(1)
|
|
}
|
|
}
|
|
_sqlite3WalkExprList(tls, pWalker, pList)
|
|
if is_agg != 0 {
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).FpLeft != 0 {
|
|
_sqlite3WalkExprList(tls, pWalker, *(*uintptr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpLeft + 32)))
|
|
}
|
|
if pWin != 0 && (*TParse)(unsafe.Pointer(pParse)).FnErr == 0 {
|
|
pSel = (*TNameContext)(unsafe.Pointer(pNC)).FpWinSelect
|
|
if libc.BoolInt32(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME)) == 0 {
|
|
if pSel != 0 {
|
|
v4 = (*TSelect)(unsafe.Pointer(pSel)).FpWinDefn
|
|
} else {
|
|
v4 = uintptr(0)
|
|
}
|
|
_sqlite3WindowUpdate(tls, pParse, v4, pWin, pDef)
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmallocFailed != 0 {
|
|
break
|
|
}
|
|
}
|
|
_sqlite3WalkExprList(tls, pWalker, (*TWindow)(unsafe.Pointer(pWin)).FpPartition)
|
|
_sqlite3WalkExprList(tls, pWalker, (*TWindow)(unsafe.Pointer(pWin)).FpOrderBy)
|
|
_sqlite3WalkExpr(tls, pWalker, (*TWindow)(unsafe.Pointer(pWin)).FpFilter)
|
|
_sqlite3WindowLink(tls, pSel, pWin)
|
|
**(**int32)(__ccgo_up(pNC + 40)) |= int32(NC_HasWin)
|
|
} else {
|
|
/* For looping up thru outer contexts */
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_AGG_FUNCTION)
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop2 = uint8(0)
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_WinFunc)) != uint32(0) {
|
|
_sqlite3WalkExpr(tls, pWalker, (*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 64)))).FpFilter)
|
|
}
|
|
pNC2 = pNC
|
|
for pNC2 != 0 && _sqlite3ReferencesSrcList(tls, pParse, pExpr, (*TNameContext)(unsafe.Pointer(pNC2)).FpSrcList) == 0 {
|
|
v4 = pExpr + 2
|
|
*(*Tu8)(unsafe.Pointer(v4)) = Tu8(uint32(*(*Tu8)(unsafe.Pointer(v4))) + (libc.Uint32FromInt32(1) + (*TNameContext)(unsafe.Pointer(pNC2)).FnNestedSelect))
|
|
pNC2 = (*TNameContext)(unsafe.Pointer(pNC2)).FpNext
|
|
}
|
|
if pNC2 != 0 && pDef != 0 {
|
|
v4 = pExpr + 2
|
|
*(*Tu8)(unsafe.Pointer(v4)) = Tu8(uint32(*(*Tu8)(unsafe.Pointer(v4))) + (*TNameContext)(unsafe.Pointer(pNC2)).FnNestedSelect)
|
|
v4 = pNC2 + 40
|
|
*(*int32)(unsafe.Pointer(v4)) = int32(uint32(*(*int32)(unsafe.Pointer(v4))) | (libc.Uint32FromInt32(NC_HasAgg) | ((*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags^libc.Uint32FromInt32(SQLITE_FUNC_ANYORDER))&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_FUNC_MINMAX)|libc.Int32FromInt32(SQLITE_FUNC_ANYORDER))))
|
|
}
|
|
}
|
|
**(**int32)(__ccgo_up(pNC + 40)) |= savedAllowFlags
|
|
}
|
|
/* FIX ME: Compute pExpr->affinity based on the expected return
|
|
** type of the function
|
|
*/
|
|
return int32(WRC_Prune)
|
|
case int32(TK_EXISTS):
|
|
fallthrough
|
|
case int32(TK_SELECT):
|
|
fallthrough
|
|
case int32(TK_IN):
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0) {
|
|
nRef = (*TNameContext)(unsafe.Pointer(pNC)).FnRef
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_EXISTS) {
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, libc.Uint32FromInt32(1), 4, 0x10)
|
|
}
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&int32(NC_SelfRef) != 0 {
|
|
_notValidImpl(tls, pParse, pNC, __ccgo_ts+7551, pExpr, pExpr)
|
|
} else {
|
|
_sqlite3WalkSelect(tls, pWalker, *(*uintptr)(unsafe.Pointer(pExpr + 32)))
|
|
}
|
|
if nRef != (*TNameContext)(unsafe.Pointer(pNC)).FnRef {
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_VarSelect))
|
|
**(**Tu32)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pExpr + 32)) + 4)) |= uint32(SF_Correlated)
|
|
}
|
|
**(**int32)(__ccgo_up(pNC + 40)) |= int32(NC_Subquery)
|
|
}
|
|
case int32(TK_VARIABLE):
|
|
if (*TNameContext)(unsafe.Pointer(pNC)).FncFlags&(libc.Int32FromInt32(NC_IsCheck)|libc.Int32FromInt32(NC_PartIdx)|libc.Int32FromInt32(NC_IdxExpr)|libc.Int32FromInt32(NC_GenCol)) != 0 {
|
|
_notValidImpl(tls, pParse, pNC, __ccgo_ts+7562, pExpr, pExpr)
|
|
}
|
|
case int32(TK_IS):
|
|
fallthrough
|
|
case int32(TK_ISNOT):
|
|
pRight1 = _sqlite3ExprSkipCollateAndLikely(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
/* Handle special cases of "x IS TRUE", "x IS FALSE", "x IS NOT TRUE",
|
|
** and "x IS NOT FALSE". */
|
|
if pRight1 != 0 && (libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pRight1)).Fop) == int32(TK_ID) || libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pRight1)).Fop) == int32(TK_TRUEFALSE)) {
|
|
rc = _resolveExprStep(tls, pWalker, pRight1)
|
|
if rc == int32(WRC_Abort) {
|
|
return int32(WRC_Abort)
|
|
}
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pRight1)).Fop) == int32(TK_TRUEFALSE) {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop2 = (*TExpr)(unsafe.Pointer(pExpr)).Fop
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_TRUTH)
|
|
return WRC_Continue
|
|
}
|
|
}
|
|
fallthrough
|
|
case int32(TK_BETWEEN):
|
|
fallthrough
|
|
case int32(TK_EQ):
|
|
fallthrough
|
|
case int32(TK_NE):
|
|
fallthrough
|
|
case int32(TK_LT):
|
|
fallthrough
|
|
case int32(TK_LE):
|
|
fallthrough
|
|
case int32(TK_GT):
|
|
fallthrough
|
|
case int32(TK_GE):
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmallocFailed != 0 {
|
|
break
|
|
}
|
|
nLeft = _sqlite3ExprVectorSize(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_BETWEEN) {
|
|
nRight = _sqlite3ExprVectorSize(tls, (*(*TExprList_item)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)) + 8))).FpExpr)
|
|
if nRight == nLeft {
|
|
nRight = _sqlite3ExprVectorSize(tls, (*(*TExprList_item)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)) + 8 + 1*32))).FpExpr)
|
|
}
|
|
} else {
|
|
nRight = _sqlite3ExprVectorSize(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
}
|
|
if nLeft != nRight {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+6912, 0)
|
|
_sqlite3RecordErrorOffsetOfExpr(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pExpr)
|
|
}
|
|
break
|
|
}
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
v5 = int32(WRC_Abort)
|
|
} else {
|
|
v5 = WRC_Continue
|
|
}
|
|
return v5
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is the implementation of both the xConnect and xCreate
|
|
// ** methods of the r-tree virtual table.
|
|
// **
|
|
// ** argv[0] -> module name
|
|
// ** argv[1] -> database name
|
|
// ** argv[2] -> table name
|
|
// ** argv[...] -> column names...
|
|
// */
|
|
func _rtreeInit(tls *libc.TLS, db uintptr, pAux uintptr, argc int32, argv uintptr, ppVtab uintptr, pzErr uintptr, isCreate int32) (r int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var aErrMsg [5]uintptr
|
|
var eCoordType, iErr, ii, nDb, nName, rc, v1 int32
|
|
var pRtree, pSql, zArg, zSql uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _ = aErrMsg, eCoordType, iErr, ii, nDb, nName, pRtree, pSql, rc, zArg, zSql, v1
|
|
rc = SQLITE_OK
|
|
if pAux != 0 {
|
|
v1 = int32(RTREE_COORD_INT32)
|
|
} else {
|
|
v1 = RTREE_COORD_REAL32
|
|
} /* Length of string argv[2] */
|
|
eCoordType = v1
|
|
ii = int32(4)
|
|
aErrMsg = [5]uintptr{
|
|
1: __ccgo_ts + 28801,
|
|
2: __ccgo_ts + 28844,
|
|
3: __ccgo_ts + 28879,
|
|
4: __ccgo_ts + 28915,
|
|
}
|
|
if argc < int32(6) || argc > libc.Int32FromInt32(RTREE_MAX_AUX_COLUMN)+libc.Int32FromInt32(3) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+8, aErrMsg[int32(2)+libc.BoolInt32(argc >= int32(6))]))
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
Xsqlite3_vtab_config(tls, db, int32(SQLITE_VTAB_CONSTRAINT_SUPPORT), libc.VaList(bp+8, int32(1)))
|
|
Xsqlite3_vtab_config(tls, db, int32(SQLITE_VTAB_INNOCUOUS), 0)
|
|
/* Allocate the sqlite3_vtab structure */
|
|
nDb = libc.Int32FromUint64(libc.Xstrlen(tls, **(**uintptr)(__ccgo_up(argv + 1*8))))
|
|
nName = libc.Int32FromUint64(libc.Xstrlen(tls, **(**uintptr)(__ccgo_up(argv + 2*8))))
|
|
pRtree = Xsqlite3_malloc64(tls, uint64(uint64(976)+libc.Uint64FromInt32(nDb)+libc.Uint64FromInt32(nName*int32(2))+uint64(8)))
|
|
if !(pRtree != 0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
libc.Xmemset(tls, pRtree, 0, uint64(976)+libc.Uint64FromInt32(nDb)+libc.Uint64FromInt32(nName*int32(2))+uint64(8))
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FnBusy = uint32(1)
|
|
(*TRtree)(unsafe.Pointer(pRtree)).Fbase.FpModule = uintptr(unsafe.Pointer(&_rtreeModule))
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FzDb = pRtree + 1*976
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FzName = (*TRtree)(unsafe.Pointer(pRtree)).FzDb + uintptr(nDb+int32(1))
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FzNodeName = (*TRtree)(unsafe.Pointer(pRtree)).FzName + uintptr(nName+int32(1))
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FeCoordType = libc.Uint8FromInt32(eCoordType)
|
|
libc.Xmemcpy(tls, (*TRtree)(unsafe.Pointer(pRtree)).FzDb, **(**uintptr)(__ccgo_up(argv + 1*8)), libc.Uint64FromInt32(nDb))
|
|
libc.Xmemcpy(tls, (*TRtree)(unsafe.Pointer(pRtree)).FzName, **(**uintptr)(__ccgo_up(argv + 2*8)), libc.Uint64FromInt32(nName))
|
|
libc.Xmemcpy(tls, (*TRtree)(unsafe.Pointer(pRtree)).FzNodeName, **(**uintptr)(__ccgo_up(argv + 2*8)), libc.Uint64FromInt32(nName))
|
|
libc.Xmemcpy(tls, (*TRtree)(unsafe.Pointer(pRtree)).FzNodeName+uintptr(nName), __ccgo_ts+28952, uint64(6))
|
|
/* Create/Connect to the underlying relational database schema. If
|
|
** that is successful, call sqlite3_declare_vtab() to configure
|
|
** the r-tree table schema.
|
|
*/
|
|
pSql = Xsqlite3_str_new(tls, db)
|
|
Xsqlite3_str_appendf(tls, pSql, __ccgo_ts+28958, libc.VaList(bp+8, _rtreeTokenLength(tls, **(**uintptr)(__ccgo_up(argv + 3*8))), **(**uintptr)(__ccgo_up(argv + 3*8))))
|
|
ii = int32(4)
|
|
for {
|
|
if !(ii < argc) {
|
|
break
|
|
}
|
|
zArg = **(**uintptr)(__ccgo_up(argv + uintptr(ii)*8))
|
|
if int32(**(**int8)(__ccgo_up(zArg))) == int32('+') {
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FnAux = (*TRtree)(unsafe.Pointer(pRtree)).FnAux + 1
|
|
Xsqlite3_str_appendf(tls, pSql, __ccgo_ts+28982, libc.VaList(bp+8, _rtreeTokenLength(tls, zArg+uintptr(1)), zArg+uintptr(1)))
|
|
} else {
|
|
if libc.Int32FromUint16((*TRtree)(unsafe.Pointer(pRtree)).FnAux) > 0 {
|
|
break
|
|
} else {
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FnDim2 = (*TRtree)(unsafe.Pointer(pRtree)).FnDim2 + 1
|
|
Xsqlite3_str_appendf(tls, pSql, _azFormat[eCoordType], libc.VaList(bp+8, _rtreeTokenLength(tls, zArg), zArg))
|
|
}
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
Xsqlite3_str_appendf(tls, pSql, __ccgo_ts+29009, 0)
|
|
zSql = Xsqlite3_str_finish(tls, pSql)
|
|
if !(zSql != 0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
if ii < argc {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+8, aErrMsg[int32(4)]))
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
v1 = Xsqlite3_declare_vtab(tls, db, zSql)
|
|
rc = v1
|
|
if SQLITE_OK != v1 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+8, Xsqlite3_errmsg(tls, db)))
|
|
}
|
|
}
|
|
}
|
|
Xsqlite3_free(tls, zSql)
|
|
if rc != 0 {
|
|
goto rtreeInit_fail
|
|
}
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FnDim = libc.Uint8FromInt32(libc.Int32FromUint8((*TRtree)(unsafe.Pointer(pRtree)).FnDim2) / int32(2))
|
|
if libc.Int32FromUint8((*TRtree)(unsafe.Pointer(pRtree)).FnDim) < int32(1) {
|
|
iErr = int32(2)
|
|
} else {
|
|
if libc.Int32FromUint8((*TRtree)(unsafe.Pointer(pRtree)).FnDim2) > libc.Int32FromInt32(RTREE_MAX_DIMENSIONS)*libc.Int32FromInt32(2) {
|
|
iErr = int32(3)
|
|
} else {
|
|
if libc.Int32FromUint8((*TRtree)(unsafe.Pointer(pRtree)).FnDim2)%int32(2) != 0 {
|
|
iErr = int32(1)
|
|
} else {
|
|
iErr = 0
|
|
}
|
|
}
|
|
}
|
|
if iErr != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+8, aErrMsg[iErr]))
|
|
goto rtreeInit_fail
|
|
}
|
|
(*TRtree)(unsafe.Pointer(pRtree)).FnBytesPerCell = libc.Uint8FromInt32(int32(8) + libc.Int32FromUint8((*TRtree)(unsafe.Pointer(pRtree)).FnDim2)*int32(4))
|
|
/* Figure out the node size to use. */
|
|
rc = _getNodeSize(tls, db, pRtree, isCreate, pzErr)
|
|
if rc != 0 {
|
|
goto rtreeInit_fail
|
|
}
|
|
rc = _rtreeSqlInit(tls, pRtree, db, **(**uintptr)(__ccgo_up(argv + 1*8)), **(**uintptr)(__ccgo_up(argv + 2*8)), isCreate)
|
|
if rc != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+8, Xsqlite3_errmsg(tls, db)))
|
|
goto rtreeInit_fail
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppVtab)) = pRtree
|
|
return SQLITE_OK
|
|
goto rtreeInit_fail
|
|
rtreeInit_fail:
|
|
;
|
|
if rc == SQLITE_OK {
|
|
rc = int32(SQLITE_ERROR)
|
|
}
|
|
_rtreeRelease(tls, pRtree)
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is a no-op if *pRc is other than SQLITE_OK when it is
|
|
// ** called. Otherwise, append the string representation of integer iVal
|
|
// ** to the buffer. No nul-terminator is written.
|
|
// **
|
|
// ** If an OOM condition is encountered, set *pRc to SQLITE_NOMEM before
|
|
// ** returning.
|
|
// */
|
|
func _sessionAppendInteger(tls *libc.TLS, p uintptr, iVal int32, pRc uintptr) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var _ /* aBuf at bp+0 */ [24]int8
|
|
Xsqlite3_snprintf(tls, libc.Int32FromUint64(libc.Uint64FromInt64(24)-libc.Uint64FromInt32(1)), bp, __ccgo_ts+5293, libc.VaList(bp+32, iVal))
|
|
_sessionAppendStr(tls, p, bp, pRc)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Add a new column to the table currently being constructed.
|
|
// **
|
|
// ** The parser calls this routine once for each column declaration
|
|
// ** in a CREATE TABLE statement. sqlite3StartTable() gets called
|
|
// ** first to get things going. Then this routine is called for each
|
|
// ** column.
|
|
// */
|
|
func _sqlite3AddColumn(tls *libc.TLS, pParse uintptr, _sName TToken, _sType TToken) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
*(*TToken)(unsafe.Pointer(bp)) = _sName
|
|
*(*TToken)(unsafe.Pointer(bp + 16)) = _sType
|
|
var aNew, db, p, pCol, z, zType, v1 uintptr
|
|
var affinity int8
|
|
var eType, h, szEst Tu8
|
|
var i int32
|
|
_, _, _, _, _, _, _, _, _, _, _, _ = aNew, affinity, db, eType, h, i, p, pCol, szEst, z, zType, v1
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
eType = uint8(COLTYPE_CUSTOM)
|
|
szEst = uint8(1)
|
|
affinity = int8(SQLITE_AFF_BLOB)
|
|
v1 = (*TParse)(unsafe.Pointer(pParse)).FpNewTable
|
|
p = v1
|
|
if v1 == uintptr(0) {
|
|
return
|
|
}
|
|
if int32((*TTable)(unsafe.Pointer(p)).FnCol)+int32(1) > **(**int32)(__ccgo_up(db + 136 + 2*4)) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+13960, libc.VaList(bp+40, (*TTable)(unsafe.Pointer(p)).FzName))
|
|
return
|
|
}
|
|
if !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= libc.Int32FromInt32(PARSE_MODE_RENAME)) {
|
|
_sqlite3DequoteToken(tls, bp)
|
|
}
|
|
/* Because keywords GENERATE ALWAYS can be converted into identifiers
|
|
** by the parser, we can sometimes end up with a typename that ends
|
|
** with "generated always". Check for this case and omit the surplus
|
|
** text. */
|
|
if (**(**TToken)(__ccgo_up(bp + 16))).Fn >= uint32(16) && Xsqlite3_strnicmp(tls, (**(**TToken)(__ccgo_up(bp + 16))).Fz+uintptr((**(**TToken)(__ccgo_up(bp + 16))).Fn-libc.Uint32FromInt32(6)), __ccgo_ts+13983, int32(6)) == 0 {
|
|
(**(**TToken)(__ccgo_up(bp + 16))).Fn -= uint32(6)
|
|
for (**(**TToken)(__ccgo_up(bp + 16))).Fn > uint32(0) && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up((**(**TToken)(__ccgo_up(bp + 16))).Fz + uintptr((**(**TToken)(__ccgo_up(bp + 16))).Fn-uint32(1)))))])&int32(0x01) != 0 {
|
|
(**(**TToken)(__ccgo_up(bp + 16))).Fn = (**(**TToken)(__ccgo_up(bp + 16))).Fn - 1
|
|
}
|
|
if (**(**TToken)(__ccgo_up(bp + 16))).Fn >= uint32(9) && Xsqlite3_strnicmp(tls, (**(**TToken)(__ccgo_up(bp + 16))).Fz+uintptr((**(**TToken)(__ccgo_up(bp + 16))).Fn-libc.Uint32FromInt32(9)), __ccgo_ts+13990, int32(9)) == 0 {
|
|
(**(**TToken)(__ccgo_up(bp + 16))).Fn -= uint32(9)
|
|
for (**(**TToken)(__ccgo_up(bp + 16))).Fn > uint32(0) && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up((**(**TToken)(__ccgo_up(bp + 16))).Fz + uintptr((**(**TToken)(__ccgo_up(bp + 16))).Fn-uint32(1)))))])&int32(0x01) != 0 {
|
|
(**(**TToken)(__ccgo_up(bp + 16))).Fn = (**(**TToken)(__ccgo_up(bp + 16))).Fn - 1
|
|
}
|
|
}
|
|
}
|
|
/* Check for standard typenames. For standard typenames we will
|
|
** set the Column.eType field rather than storing the typename after
|
|
** the column name, in order to save space. */
|
|
if (**(**TToken)(__ccgo_up(bp + 16))).Fn >= uint32(3) {
|
|
_sqlite3DequoteToken(tls, bp+16)
|
|
i = 0
|
|
for {
|
|
if !(i < int32(SQLITE_N_STDTYPE)) {
|
|
break
|
|
}
|
|
if (**(**TToken)(__ccgo_up(bp + 16))).Fn == uint32(_sqlite3StdTypeLen[i]) && Xsqlite3_strnicmp(tls, (**(**TToken)(__ccgo_up(bp + 16))).Fz, _sqlite3StdType[i], libc.Int32FromUint32((**(**TToken)(__ccgo_up(bp + 16))).Fn)) == 0 {
|
|
(**(**TToken)(__ccgo_up(bp + 16))).Fn = uint32(0)
|
|
eType = libc.Uint8FromInt32(i + int32(1))
|
|
affinity = _sqlite3StdTypeAffinity[i]
|
|
if int32(affinity) <= int32(SQLITE_AFF_TEXT) {
|
|
szEst = uint8(5)
|
|
}
|
|
break
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
z = _sqlite3DbMallocRaw(tls, db, libc.Uint64FromInt64(libc.Int64FromUint32((**(**TToken)(__ccgo_up(bp))).Fn)+int64(1)+libc.Int64FromUint32((**(**TToken)(__ccgo_up(bp + 16))).Fn)+libc.BoolInt64((**(**TToken)(__ccgo_up(bp + 16))).Fn > libc.Uint32FromInt32(0))))
|
|
if z == uintptr(0) {
|
|
return
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenMap(tls, pParse, z, bp)
|
|
}
|
|
libc.Xmemcpy(tls, z, (**(**TToken)(__ccgo_up(bp))).Fz, uint64((**(**TToken)(__ccgo_up(bp))).Fn))
|
|
**(**int8)(__ccgo_up(z + uintptr((**(**TToken)(__ccgo_up(bp))).Fn))) = 0
|
|
_sqlite3Dequote(tls, z)
|
|
if (*TTable)(unsafe.Pointer(p)).FnCol != 0 && _sqlite3ColumnIndex(tls, p, z) >= 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14000, libc.VaList(bp+40, z))
|
|
_sqlite3DbFree(tls, db, z)
|
|
return
|
|
}
|
|
aNew = _sqlite3DbRealloc(tls, db, (*TTable)(unsafe.Pointer(p)).FaCol, libc.Uint64FromInt64(int64((*TTable)(unsafe.Pointer(p)).FnCol)+libc.Int64FromInt32(1))*uint64(16))
|
|
if aNew == uintptr(0) {
|
|
_sqlite3DbFree(tls, db, z)
|
|
return
|
|
}
|
|
(*TTable)(unsafe.Pointer(p)).FaCol = aNew
|
|
pCol = (*TTable)(unsafe.Pointer(p)).FaCol + uintptr((*TTable)(unsafe.Pointer(p)).FnCol)*16
|
|
libc.Xmemset(tls, pCol, 0, uint64(16))
|
|
(*TColumn)(unsafe.Pointer(pCol)).FzCnName = z
|
|
(*TColumn)(unsafe.Pointer(pCol)).FhName = _sqlite3StrIHash(tls, z)
|
|
if (**(**TToken)(__ccgo_up(bp + 16))).Fn == uint32(0) {
|
|
/* If there is no type specified, columns have the default affinity
|
|
** 'BLOB' with a default size of 4 bytes. */
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = affinity
|
|
libc.SetBitFieldPtr8Uint32(pCol+8, uint32(eType), 4, 0xf0)
|
|
(*TColumn)(unsafe.Pointer(pCol)).FszEst = szEst
|
|
} else {
|
|
zType = z + uintptr(_sqlite3Strlen30(tls, z)) + uintptr(1)
|
|
libc.Xmemcpy(tls, zType, (**(**TToken)(__ccgo_up(bp + 16))).Fz, uint64((**(**TToken)(__ccgo_up(bp + 16))).Fn))
|
|
**(**int8)(__ccgo_up(zType + uintptr((**(**TToken)(__ccgo_up(bp + 16))).Fn))) = 0
|
|
_sqlite3Dequote(tls, zType)
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = _sqlite3AffinityType(tls, zType, pCol)
|
|
v1 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v1)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v1))) | libc.Int32FromInt32(COLFLAG_HASTYPE))
|
|
}
|
|
if int32((*TTable)(unsafe.Pointer(p)).FnCol) <= int32(0xff) {
|
|
h = uint8(uint64((*TColumn)(unsafe.Pointer(pCol)).FhName) % uint64(16))
|
|
**(**Tu8)(__ccgo_up(p + 104 + uintptr(h))) = libc.Uint8FromInt16((*TTable)(unsafe.Pointer(p)).FnCol)
|
|
}
|
|
(*TTable)(unsafe.Pointer(p)).FnCol = (*TTable)(unsafe.Pointer(p)).FnCol + 1
|
|
(*TTable)(unsafe.Pointer(p)).FnNVCol = (*TTable)(unsafe.Pointer(p)).FnNVCol + 1
|
|
(*(*struct {
|
|
FaddrCrTab int32
|
|
FregRowid int32
|
|
FregRoot int32
|
|
FconstraintName TToken
|
|
})(unsafe.Pointer(pParse + 256))).FconstraintName.Fn = uint32(0)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is called by the parser upon parsing an
|
|
// **
|
|
// ** ALTER TABLE pSrc DROP COLUMN pName
|
|
// **
|
|
// ** statement. Argument pSrc contains the possibly qualified name of the
|
|
// ** table being edited, and token pName the name of the column to drop.
|
|
// */
|
|
func _sqlite3AlterDropColumn(tls *libc.TLS, pParse uintptr, pSrc uintptr, pName uintptr) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var addr, i, iCol, iColPos, iCur, iDb, iPos, nField, reg, regOut, regRec, v2 int32
|
|
var aff int8
|
|
var db, pPk, pTab, v, zCol, zDb, v1 uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = addr, aff, db, i, iCol, iColPos, iCur, iDb, iPos, nField, pPk, pTab, reg, regOut, regRec, v, zCol, zDb, v1, v2
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Database containing pTab ("main" etc.) */
|
|
zCol = uintptr(0) /* Index of column zCol in pTab->aCol[] */
|
|
/* Look up the table being altered. */
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
goto exit_drop_column
|
|
}
|
|
pTab = _sqlite3LocateTableItem(tls, pParse, uint32(0), pSrc+8)
|
|
if !(pTab != 0) {
|
|
goto exit_drop_column
|
|
}
|
|
/* Make sure this is not an attempt to ALTER a view, virtual table or
|
|
** system table. */
|
|
if SQLITE_OK != _isAlterableTable(tls, pParse, pTab) {
|
|
goto exit_drop_column
|
|
}
|
|
if SQLITE_OK != _isRealTable(tls, pParse, pTab, int32(1)) {
|
|
goto exit_drop_column
|
|
}
|
|
/* Find the index of the column being dropped. */
|
|
zCol = _sqlite3NameFromToken(tls, db, pName)
|
|
if zCol == uintptr(0) {
|
|
goto exit_drop_column
|
|
}
|
|
iCol = _sqlite3ColumnIndex(tls, pTab, zCol)
|
|
if iCol < 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+11211, libc.VaList(bp+8, pName))
|
|
goto exit_drop_column
|
|
}
|
|
/* Do not allow the user to drop a PRIMARY KEY column or a column
|
|
** constrained by a UNIQUE constraint. */
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(iCol)*16))).FcolFlags)&(libc.Int32FromInt32(COLFLAG_PRIMKEY)|libc.Int32FromInt32(COLFLAG_UNIQUE)) != 0 {
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(iCol)*16))).FcolFlags)&int32(COLFLAG_PRIMKEY) != 0 {
|
|
v1 = __ccgo_ts + 11596
|
|
} else {
|
|
v1 = __ccgo_ts + 5835
|
|
}
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+11608, libc.VaList(bp+8, v1, zCol))
|
|
goto exit_drop_column
|
|
}
|
|
/* Do not allow the number of columns to go to zero */
|
|
if int32((*TTable)(unsafe.Pointer(pTab)).FnCol) <= int32(1) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+11636, libc.VaList(bp+8, zCol))
|
|
goto exit_drop_column
|
|
}
|
|
/* Edit the sqlite_schema table */
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab)).FpSchema)
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
/* Invoke the authorization callback. */
|
|
if _sqlite3AuthCheck(tls, pParse, int32(SQLITE_ALTER_TABLE), zDb, (*TTable)(unsafe.Pointer(pTab)).FzName, zCol) != 0 {
|
|
goto exit_drop_column
|
|
}
|
|
_renameTestSchema(tls, pParse, zDb, libc.BoolInt32(iDb == int32(1)), __ccgo_ts+1704, 0)
|
|
_renameFixQuotes(tls, pParse, zDb, libc.BoolInt32(iDb == int32(1)))
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+11684, libc.VaList(bp+8, zDb, iDb, iCol, (*TTable)(unsafe.Pointer(pTab)).FzName))
|
|
/* Drop and reload the database schema. */
|
|
_renameReloadSchema(tls, pParse, iDb, uint16(INITFLAG_AlterDrop))
|
|
_renameTestSchema(tls, pParse, zDb, libc.BoolInt32(iDb == int32(1)), __ccgo_ts+11805, int32(1))
|
|
/* Edit rows of table on disk */
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr == 0 && libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(iCol)*16))).FcolFlags)&int32(COLFLAG_VIRTUAL) == 0 {
|
|
pPk = uintptr(0)
|
|
nField = 0
|
|
v = _sqlite3GetVdbe(tls, pParse)
|
|
v1 = pParse + 56
|
|
v2 = *(*int32)(unsafe.Pointer(v1))
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
iCur = v2
|
|
_sqlite3OpenTable(tls, pParse, iCur, iDb, pTab, int32(OP_OpenWrite))
|
|
addr = _sqlite3VdbeAddOp1(tls, v, int32(OP_Rewind), iCur)
|
|
v1 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
v2 = *(*int32)(unsafe.Pointer(v1))
|
|
reg = v2
|
|
if (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Rowid), iCur, reg)
|
|
**(**int32)(__ccgo_up(pParse + 60)) += int32((*TTable)(unsafe.Pointer(pTab)).FnCol)
|
|
} else {
|
|
pPk = _sqlite3PrimaryKeyIndex(tls, pTab)
|
|
**(**int32)(__ccgo_up(pParse + 60)) += libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnColumn)
|
|
i = 0
|
|
for {
|
|
if !(i < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol)) {
|
|
break
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), iCur, i, reg+i+int32(1))
|
|
goto _6
|
|
_6:
|
|
;
|
|
i = i + 1
|
|
}
|
|
nField = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol)
|
|
}
|
|
v1 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
v2 = *(*int32)(unsafe.Pointer(v1))
|
|
regRec = v2
|
|
i = 0
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
if i != iCol && libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16))).FcolFlags)&int32(COLFLAG_VIRTUAL) == 0 {
|
|
if pPk != 0 {
|
|
iPos = _sqlite3TableColumnToIndex(tls, pPk, i)
|
|
iColPos = _sqlite3TableColumnToIndex(tls, pPk, iCol)
|
|
if iPos < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol) {
|
|
goto _9
|
|
}
|
|
regOut = reg + int32(1) + iPos - libc.BoolInt32(iPos > iColPos)
|
|
} else {
|
|
regOut = reg + int32(1) + nField
|
|
}
|
|
if i == int32((*TTable)(unsafe.Pointer(pTab)).FiPKey) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, regOut)
|
|
} else {
|
|
aff = (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16))).Faffinity
|
|
if int32(aff) == int32(SQLITE_AFF_REAL) {
|
|
(**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16))).Faffinity = int8(SQLITE_AFF_NUMERIC)
|
|
}
|
|
_sqlite3ExprCodeGetColumnOfTable(tls, v, pTab, iCur, i, regOut)
|
|
(**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16))).Faffinity = aff
|
|
}
|
|
nField = nField + 1
|
|
}
|
|
goto _9
|
|
_9:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if nField == 0 {
|
|
/* dbsqlfuzz 5f09e7bcc78b4954d06bf9f2400d7715f48d1fef */
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = (*TParse)(unsafe.Pointer(pParse)).FnMem + 1
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, reg+int32(1))
|
|
nField = int32(1)
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_MakeRecord), reg+int32(1), nField, regRec)
|
|
if pPk != 0 {
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IdxInsert), iCur, regRec, reg+int32(1), libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol))
|
|
} else {
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Insert), iCur, regRec, reg)
|
|
}
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(OPFLAG_SAVEPOSITION))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Next), iCur, addr+int32(1))
|
|
_sqlite3VdbeJumpHere(tls, v, addr)
|
|
}
|
|
goto exit_drop_column
|
|
exit_drop_column:
|
|
;
|
|
_sqlite3DbFree(tls, db, zCol)
|
|
_sqlite3SrcListDelete(tls, db, pSrc)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is called after an "ALTER TABLE ... ADD" statement
|
|
// ** has been parsed. Argument pColDef contains the text of the new
|
|
// ** column definition.
|
|
// **
|
|
// ** The Table structure pParse->pNewTable was extended to include
|
|
// ** the new column during parsing.
|
|
// */
|
|
func _sqlite3AlterFinishAddColumn(tls *libc.TLS, pParse uintptr, pColDef uintptr) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var db, pCol, pDflt, pNew, pTab, v, zCol, zDb, zEnd, zTab, v1 uintptr
|
|
var iDb, r1, rc int32
|
|
var _ /* pVal at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _ = db, iDb, pCol, pDflt, pNew, pTab, r1, rc, v, zCol, zDb, zEnd, zTab, v1 /* Temporary registers */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
return
|
|
}
|
|
pNew = (*TParse)(unsafe.Pointer(pParse)).FpNewTable
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pNew)).FpSchema)
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
zTab = (*TTable)(unsafe.Pointer(pNew)).FzName + 16 /* Skip the "sqlite_altertab_" prefix on the name */
|
|
pCol = (*TTable)(unsafe.Pointer(pNew)).FaCol + uintptr(int32((*TTable)(unsafe.Pointer(pNew)).FnCol)-int32(1))*16
|
|
pDflt = _sqlite3ColumnExpr(tls, pNew, pCol)
|
|
pTab = _sqlite3FindTable(tls, db, zTab, zDb)
|
|
/* Invoke the authorization callback. */
|
|
if _sqlite3AuthCheck(tls, pParse, int32(SQLITE_ALTER_TABLE), zDb, (*TTable)(unsafe.Pointer(pTab)).FzName, uintptr(0)) != 0 {
|
|
return
|
|
}
|
|
/* Check that the new column is not specified as PRIMARY KEY or UNIQUE.
|
|
** If there is a NOT NULL constraint, then the default value for the
|
|
** column must not be NULL.
|
|
*/
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_PRIMKEY) != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+10293, 0)
|
|
return
|
|
}
|
|
if (*TTable)(unsafe.Pointer(pNew)).FpIndex != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+10325, 0)
|
|
return
|
|
}
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_GENERATED) == 0 {
|
|
/* If the default value for the new column was specified with a
|
|
** literal NULL, then set pDflt to 0. This simplifies checking
|
|
** for an SQL NULL default below.
|
|
*/
|
|
if pDflt != 0 && libc.Int32FromUint8((*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pDflt)).FpLeft)).Fop) == int32(TK_NULL) {
|
|
pDflt = uintptr(0)
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_ForeignKeys) != 0 && (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pNew + 64))).FpFKey != 0 && pDflt != 0 {
|
|
_sqlite3ErrorIfNotEmpty(tls, pParse, zDb, zTab, __ccgo_ts+10352)
|
|
}
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(pCol + 8))&0xf>>0)) != 0 && !(pDflt != 0) {
|
|
_sqlite3ErrorIfNotEmpty(tls, pParse, zDb, zTab, __ccgo_ts+10411)
|
|
}
|
|
/* Ensure the default expression is something that sqlite3ValueFromExpr()
|
|
** can handle (i.e. not CURRENT_TIME etc.)
|
|
*/
|
|
if pDflt != 0 {
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
rc = _sqlite3ValueFromExpr(tls, db, pDflt, uint8(SQLITE_UTF8), uint8(SQLITE_AFF_BLOB), bp)
|
|
if rc != SQLITE_OK {
|
|
return
|
|
}
|
|
if !(**(**uintptr)(__ccgo_up(bp)) != 0) {
|
|
_sqlite3ErrorIfNotEmpty(tls, pParse, zDb, zTab, __ccgo_ts+10464)
|
|
}
|
|
_sqlite3ValueFree(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_STORED) != 0 {
|
|
_sqlite3ErrorIfNotEmpty(tls, pParse, zDb, zTab, __ccgo_ts+10510)
|
|
}
|
|
}
|
|
/* Modify the CREATE TABLE statement. */
|
|
zCol = _sqlite3DbStrNDup(tls, db, (*TToken)(unsafe.Pointer(pColDef)).Fz, uint64((*TToken)(unsafe.Pointer(pColDef)).Fn))
|
|
if zCol != 0 {
|
|
zEnd = zCol + uintptr((*TToken)(unsafe.Pointer(pColDef)).Fn-uint32(1))
|
|
for zEnd > zCol && (int32(**(**int8)(__ccgo_up(zEnd))) == int32(';') || libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zEnd)))])&int32(0x01) != 0) {
|
|
v1 = zEnd
|
|
zEnd = zEnd - 1
|
|
**(**int8)(__ccgo_up(v1)) = int8('\000')
|
|
}
|
|
/* substr() operations on characters, but addColOffset is in bytes. So we
|
|
** have to use printf() to translate between these units: */
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+10537, libc.VaList(bp+16, zDb, (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pNew + 64))).FaddColOffset, zCol, (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pNew + 64))).FaddColOffset, zTab))
|
|
_sqlite3DbFree(tls, db, zCol)
|
|
}
|
|
v = _sqlite3GetVdbe(tls, pParse)
|
|
if v != 0 {
|
|
/* Make sure the schema version is at least 3. But do not upgrade
|
|
** from less than 3 to 4, as that will corrupt any preexisting DESC
|
|
** index.
|
|
*/
|
|
r1 = _sqlite3GetTempReg(tls, pParse)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_ReadCookie), iDb, r1, int32(BTREE_FILE_FORMAT))
|
|
_sqlite3VdbeUsesBtree(tls, v, iDb)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_AddImm), r1, -int32(2))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IfPos), r1, _sqlite3VdbeCurrentAddr(tls, v)+int32(2))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_SetCookie), iDb, int32(BTREE_FILE_FORMAT), int32(3))
|
|
_sqlite3ReleaseTempReg(tls, pParse, r1)
|
|
/* Reload the table definition */
|
|
_renameReloadSchema(tls, pParse, iDb, uint16(INITFLAG_AlterAdd))
|
|
/* Verify that constraints are still satisfied */
|
|
if (*TTable)(unsafe.Pointer(pNew)).FpCheck != uintptr(0) || int32(uint32(*(*uint8)(unsafe.Pointer(pCol + 8))&0xf>>0)) != 0 && libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_GENERATED) != 0 || (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_Strict) != uint32(0) {
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+10683, libc.VaList(bp+16, zTab, zDb))
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Handles the following parser reduction:
|
|
// **
|
|
// ** cmd ::= ALTER TABLE pSrc RENAME COLUMN pOld TO pNew
|
|
// */
|
|
func _sqlite3AlterRenameColumn(tls *libc.TLS, pParse uintptr, pSrc uintptr, pOld uintptr, pNew uintptr) {
|
|
bp := tls.Alloc(80)
|
|
defer tls.Free(80)
|
|
var bQuote, iCol, iSchema int32
|
|
var db, pTab, zDb, zNew, zOld uintptr
|
|
_, _, _, _, _, _, _, _ = bQuote, db, iCol, iSchema, pTab, zDb, zNew, zOld
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Index of column being renamed */
|
|
zOld = uintptr(0) /* Old column name */
|
|
zNew = uintptr(0) /* True to quote the new name */
|
|
/* Locate the table to be altered */
|
|
pTab = _sqlite3LocateTableItem(tls, pParse, uint32(0), pSrc+8)
|
|
if !(pTab != 0) {
|
|
goto exit_rename_column
|
|
}
|
|
/* Cannot alter a system table */
|
|
if SQLITE_OK != _isAlterableTable(tls, pParse, pTab) {
|
|
goto exit_rename_column
|
|
}
|
|
if SQLITE_OK != _isRealTable(tls, pParse, pTab, 0) {
|
|
goto exit_rename_column
|
|
}
|
|
/* Which schema holds the table to be altered */
|
|
iSchema = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab)).FpSchema)
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iSchema)*32))).FzDbSName
|
|
/* Invoke the authorization callback. */
|
|
if _sqlite3AuthCheck(tls, pParse, int32(SQLITE_ALTER_TABLE), zDb, (*TTable)(unsafe.Pointer(pTab)).FzName, uintptr(0)) != 0 {
|
|
goto exit_rename_column
|
|
}
|
|
/* Make sure the old name really is a column name in the table to be
|
|
** altered. Set iCol to be the index of the column being renamed */
|
|
zOld = _sqlite3NameFromToken(tls, db, pOld)
|
|
if !(zOld != 0) {
|
|
goto exit_rename_column
|
|
}
|
|
iCol = _sqlite3ColumnIndex(tls, pTab, zOld)
|
|
if iCol < 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+11211, libc.VaList(bp+8, pOld))
|
|
goto exit_rename_column
|
|
}
|
|
/* Ensure the schema contains no double-quoted strings */
|
|
_renameTestSchema(tls, pParse, zDb, libc.BoolInt32(iSchema == int32(1)), __ccgo_ts+1704, 0)
|
|
_renameFixQuotes(tls, pParse, zDb, libc.BoolInt32(iSchema == int32(1)))
|
|
/* Do the rename operation using a recursive UPDATE statement that
|
|
** uses the sqlite_rename_column() SQL function to compute the new
|
|
** CREATE statement text for the sqlite_schema table.
|
|
*/
|
|
_sqlite3MayAbort(tls, pParse)
|
|
zNew = _sqlite3NameFromToken(tls, db, pNew)
|
|
if !(zNew != 0) {
|
|
goto exit_rename_column
|
|
}
|
|
bQuote = libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up((*TToken)(unsafe.Pointer(pNew)).Fz)))]) & int32(0x80)
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+11232, libc.VaList(bp+8, zDb, zDb, (*TTable)(unsafe.Pointer(pTab)).FzName, iCol, zNew, bQuote, libc.BoolInt32(iSchema == int32(1)), (*TTable)(unsafe.Pointer(pTab)).FzName))
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+11414, libc.VaList(bp+8, zDb, (*TTable)(unsafe.Pointer(pTab)).FzName, iCol, zNew, bQuote))
|
|
/* Drop and reload the database schema. */
|
|
_renameReloadSchema(tls, pParse, iSchema, uint16(INITFLAG_AlterRename))
|
|
_renameTestSchema(tls, pParse, zDb, libc.BoolInt32(iSchema == int32(1)), __ccgo_ts+10242, int32(1))
|
|
goto exit_rename_column
|
|
exit_rename_column:
|
|
;
|
|
_sqlite3SrcListDelete(tls, db, pSrc)
|
|
_sqlite3DbFree(tls, db, zOld)
|
|
_sqlite3DbFree(tls, db, zNew)
|
|
return
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This routine does a complete check of the given BTree file. aRoot[] is
|
|
// ** an array of pages numbers were each page number is the root page of
|
|
// ** a table. nRoot is the number of entries in aRoot.
|
|
// **
|
|
// ** A read-only or read-write transaction must be opened before calling
|
|
// ** this function.
|
|
// **
|
|
// ** Write the number of error seen in *pnErr. Except for some memory
|
|
// ** allocation errors, an error message held in memory obtained from
|
|
// ** malloc is returned if *pnErr is non-zero. If *pnErr==0 then NULL is
|
|
// ** returned. If a memory allocation error occurs, NULL is returned.
|
|
// **
|
|
// ** If the first entry in aRoot[] is 0, that indicates that the list of
|
|
// ** root pages is incomplete. This is a "partial integrity-check". This
|
|
// ** happens when performing an integrity check on a single table. The
|
|
// ** zero is skipped, of course. But in addition, the freelist checks
|
|
// ** and the checks to make sure every page is referenced are also skipped,
|
|
// ** since obviously it is not possible to know which pages are covered by
|
|
// ** the unverified btrees. Except, if aRoot[1] is 1, then the freelist
|
|
// ** checks are still performed.
|
|
// */
|
|
func _sqlite3BtreeIntegrityCheck(tls *libc.TLS, db uintptr, p uintptr, aRoot uintptr, aCnt uintptr, nRoot int32, mxErr int32, pnErr uintptr, pzOut uintptr) (r int32) {
|
|
bp := tls.Alloc(272)
|
|
defer tls.Free(272)
|
|
var bCkFreelist, bPartial int32
|
|
var i, mx, mxInHdr TPgno
|
|
var pBt uintptr
|
|
var savedDbFlags Tu64
|
|
var _ /* notUsed at bp+232 */ Ti64
|
|
var _ /* sCheck at bp+0 */ TIntegrityCk
|
|
var _ /* zErr at bp+128 */ [100]int8
|
|
_, _, _, _, _, _, _ = bCkFreelist, bPartial, i, mx, mxInHdr, pBt, savedDbFlags
|
|
pBt = (*TBtree)(unsafe.Pointer(p)).FpBt
|
|
savedDbFlags = (*Tsqlite3)(unsafe.Pointer((*TBtShared)(unsafe.Pointer(pBt)).Fdb)).Fflags
|
|
bPartial = 0 /* True if not checking all btrees */
|
|
bCkFreelist = int32(1) /* True to scan the freelist */
|
|
/* aRoot[0]==0 means this is a partial check */
|
|
if **(**TPgno)(__ccgo_up(aRoot)) == uint32(0) {
|
|
bPartial = int32(1)
|
|
if **(**TPgno)(__ccgo_up(aRoot + 1*4)) != uint32(1) {
|
|
bCkFreelist = 0
|
|
}
|
|
}
|
|
_sqlite3BtreeEnter(tls, p)
|
|
libc.Xmemset(tls, bp, 0, uint64(128))
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).Fdb = db
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FpBt = pBt
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FpPager = (*TBtShared)(unsafe.Pointer(pBt)).FpPager
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FnCkPage = _btreePagecount(tls, (**(**TIntegrityCk)(__ccgo_up(bp))).FpBt)
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FmxErr = mxErr
|
|
_sqlite3StrAccumInit(tls, bp+72, uintptr(0), bp+128, int32(100), int32(SQLITE_MAX_LENGTH))
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FerrMsg.FprintfFlags = uint8(SQLITE_PRINTF_INTERNAL)
|
|
if (**(**TIntegrityCk)(__ccgo_up(bp))).FnCkPage == uint32(0) {
|
|
goto integrity_ck_cleanup
|
|
}
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FaPgRef = _sqlite3MallocZero(tls, uint64((**(**TIntegrityCk)(__ccgo_up(bp))).FnCkPage/uint32(8)+uint32(1)))
|
|
if !((**(**TIntegrityCk)(__ccgo_up(bp))).FaPgRef != 0) {
|
|
_checkOom(tls, bp)
|
|
goto integrity_ck_cleanup
|
|
}
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).Fheap = _sqlite3PageMalloc(tls, libc.Int32FromUint32((*TBtShared)(unsafe.Pointer(pBt)).FpageSize))
|
|
if (**(**TIntegrityCk)(__ccgo_up(bp))).Fheap == uintptr(0) {
|
|
_checkOom(tls, bp)
|
|
goto integrity_ck_cleanup
|
|
}
|
|
i = libc.Uint32FromInt32(_sqlite3PendingByte)/(*TBtShared)(unsafe.Pointer(pBt)).FpageSize + libc.Uint32FromInt32(1)
|
|
if i <= (**(**TIntegrityCk)(__ccgo_up(bp))).FnCkPage {
|
|
_setPageReferenced(tls, bp, i)
|
|
}
|
|
/* Check the integrity of the freelist
|
|
*/
|
|
if bCkFreelist != 0 {
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FzPfx = __ccgo_ts + 4966
|
|
_checkList(tls, bp, int32(1), _sqlite3Get4byte(tls, (*TMemPage)(unsafe.Pointer((*TBtShared)(unsafe.Pointer(pBt)).FpPage1)).FaData+32), _sqlite3Get4byte(tls, (*TMemPage)(unsafe.Pointer((*TBtShared)(unsafe.Pointer(pBt)).FpPage1)).FaData+36))
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FzPfx = uintptr(0)
|
|
}
|
|
/* Check all the tables.
|
|
*/
|
|
if !(bPartial != 0) {
|
|
if (*TBtShared)(unsafe.Pointer(pBt)).FautoVacuum != 0 {
|
|
mx = uint32(0)
|
|
i = uint32(0)
|
|
for {
|
|
if !(libc.Int32FromUint32(i) < nRoot) {
|
|
break
|
|
}
|
|
if mx < **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4)) {
|
|
mx = **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4))
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
mxInHdr = _sqlite3Get4byte(tls, (*TMemPage)(unsafe.Pointer((*TBtShared)(unsafe.Pointer(pBt)).FpPage1)).FaData+52)
|
|
if mx != mxInHdr {
|
|
_checkAppendMsg(tls, bp, __ccgo_ts+4977, libc.VaList(bp+248, mx, mxInHdr))
|
|
}
|
|
} else {
|
|
if _sqlite3Get4byte(tls, (*TMemPage)(unsafe.Pointer((*TBtShared)(unsafe.Pointer(pBt)).FpPage1)).FaData+64) != uint32(0) {
|
|
_checkAppendMsg(tls, bp, __ccgo_ts+5022, 0)
|
|
}
|
|
}
|
|
}
|
|
**(**Tu64)(__ccgo_up((*TBtShared)(unsafe.Pointer(pBt)).Fdb + 48)) &= ^libc.Uint64FromInt32(SQLITE_CellSizeCk)
|
|
i = uint32(0)
|
|
for {
|
|
if !(libc.Int32FromUint32(i) < nRoot && (**(**TIntegrityCk)(__ccgo_up(bp))).FmxErr != 0) {
|
|
break
|
|
}
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).FnRow = 0
|
|
if **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4)) != 0 {
|
|
if (*TBtShared)(unsafe.Pointer(pBt)).FautoVacuum != 0 && **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4)) > uint32(1) && !(bPartial != 0) {
|
|
_checkPtrmap(tls, bp, **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4)), uint8(PTRMAP_ROOTPAGE), uint32(0))
|
|
}
|
|
(**(**TIntegrityCk)(__ccgo_up(bp))).Fv0 = **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4))
|
|
_checkTreePage(tls, bp, **(**TPgno)(__ccgo_up(aRoot + uintptr(i)*4)), bp+232, libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32))
|
|
}
|
|
_sqlite3MemSetArrayInt64(tls, aCnt, libc.Int32FromUint32(i), (**(**TIntegrityCk)(__ccgo_up(bp))).FnRow)
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer((*TBtShared)(unsafe.Pointer(pBt)).Fdb)).Fflags = savedDbFlags
|
|
/* Make sure every page in the file is referenced
|
|
*/
|
|
if !(bPartial != 0) {
|
|
i = uint32(1)
|
|
for {
|
|
if !(i <= (**(**TIntegrityCk)(__ccgo_up(bp))).FnCkPage && (**(**TIntegrityCk)(__ccgo_up(bp))).FmxErr != 0) {
|
|
break
|
|
}
|
|
/* If the database supports auto-vacuum, make sure no tables contain
|
|
** references to pointer-map pages.
|
|
*/
|
|
if _getPageReferenced(tls, bp, i) == 0 && (_ptrmapPageno(tls, pBt, i) != i || !((*TBtShared)(unsafe.Pointer(pBt)).FautoVacuum != 0)) {
|
|
_checkAppendMsg(tls, bp, __ccgo_ts+5077, libc.VaList(bp+248, i))
|
|
}
|
|
if _getPageReferenced(tls, bp, i) != 0 && (_ptrmapPageno(tls, pBt, i) == i && (*TBtShared)(unsafe.Pointer(pBt)).FautoVacuum != 0) {
|
|
_checkAppendMsg(tls, bp, __ccgo_ts+5097, libc.VaList(bp+248, i))
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
/* Clean up and report errors.
|
|
*/
|
|
goto integrity_ck_cleanup
|
|
integrity_ck_cleanup:
|
|
;
|
|
_sqlite3PageFree(tls, (**(**TIntegrityCk)(__ccgo_up(bp))).Fheap)
|
|
Xsqlite3_free(tls, (**(**TIntegrityCk)(__ccgo_up(bp))).FaPgRef)
|
|
**(**int32)(__ccgo_up(pnErr)) = (**(**TIntegrityCk)(__ccgo_up(bp))).FnErr
|
|
if (**(**TIntegrityCk)(__ccgo_up(bp))).FnErr == 0 {
|
|
Xsqlite3_str_reset(tls, bp+72)
|
|
**(**uintptr)(__ccgo_up(pzOut)) = uintptr(0)
|
|
} else {
|
|
**(**uintptr)(__ccgo_up(pzOut)) = _sqlite3StrAccumFinish(tls, bp+72)
|
|
}
|
|
/* Make sure this analysis did not leave any unref() pages. */
|
|
_sqlite3BtreeLeave(tls, p)
|
|
return (**(**TIntegrityCk)(__ccgo_up(bp))).Frc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Open a database file.
|
|
// **
|
|
// ** zFilename is the name of the database file. If zFilename is NULL
|
|
// ** then an ephemeral database is created. The ephemeral database might
|
|
// ** be exclusively in memory, or it might use a disk-based memory cache.
|
|
// ** Either way, the ephemeral database will be automatically deleted
|
|
// ** when sqlite3BtreeClose() is called.
|
|
// **
|
|
// ** If zFilename is ":memory:" then an in-memory database is created
|
|
// ** that is automatically destroyed when it is closed.
|
|
// **
|
|
// ** The "flags" parameter is a bitmask that might contain bits like
|
|
// ** BTREE_OMIT_JOURNAL and/or BTREE_MEMORY.
|
|
// **
|
|
// ** If the database is already opened in the same database connection
|
|
// ** and we are in shared cache mode, then the open will fail with an
|
|
// ** SQLITE_CONSTRAINT error. We cannot allow two or more BtShared
|
|
// ** objects in the same database connection since doing so will lead
|
|
// ** to problems with locking.
|
|
// */
|
|
func _sqlite3BtreeOpen(tls *libc.TLS, pVfs uintptr, zFilename uintptr, db uintptr, ppBtree uintptr, flags int32, vfsFlags int32) (r int32) {
|
|
bp := tls.Alloc(112)
|
|
defer tls.Free(112)
|
|
var i, iDb, isMemdb, isTempDb, nFilename, nFullPathname, rc, v1 int32
|
|
var mutexOpen, mutexShared, mutexShared1, p, pBt, pExisting, pFile, pSib, zFullPathname, v4 uintptr
|
|
var nReserve Tu8
|
|
var _ /* zDbHeader at bp+0 */ [100]uint8
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = i, iDb, isMemdb, isTempDb, mutexOpen, mutexShared, mutexShared1, nFilename, nFullPathname, nReserve, p, pBt, pExisting, pFile, pSib, rc, zFullPathname, v1, v4
|
|
pBt = uintptr(0) /* Handle to return */
|
|
mutexOpen = uintptr(0) /* Prevents a race condition. Ticket #3537 */
|
|
rc = SQLITE_OK /* Database header content */
|
|
/* True if opening an ephemeral, temporary database */
|
|
isTempDb = libc.BoolInt32(zFilename == uintptr(0) || int32(**(**int8)(__ccgo_up(zFilename))) == 0)
|
|
/* Set the variable isMemdb to true for an in-memory database, or
|
|
** false for a file-based database.
|
|
*/
|
|
isMemdb = libc.BoolInt32(zFilename != 0 && libc.Xstrcmp(tls, zFilename, __ccgo_ts+4343) == 0 || isTempDb != 0 && _sqlite3TempInMemory(tls, db) != 0 || vfsFlags&int32(SQLITE_OPEN_MEMORY) != 0)
|
|
/* flags fit in 8 bits */
|
|
/* Only a BTREE_SINGLE database can be BTREE_UNORDERED */
|
|
/* A BTREE_SINGLE database is always a temporary and/or ephemeral */
|
|
if isMemdb != 0 {
|
|
flags = flags | int32(BTREE_MEMORY)
|
|
}
|
|
if vfsFlags&int32(SQLITE_OPEN_MAIN_DB) != 0 && (isMemdb != 0 || isTempDb != 0) {
|
|
vfsFlags = vfsFlags & ^libc.Int32FromInt32(SQLITE_OPEN_MAIN_DB) | int32(SQLITE_OPEN_TEMP_DB)
|
|
}
|
|
p = _sqlite3MallocZero(tls, uint64(72))
|
|
if !(p != 0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
(*TBtree)(unsafe.Pointer(p)).FinTrans = uint8(TRANS_NONE)
|
|
(*TBtree)(unsafe.Pointer(p)).Fdb = db
|
|
(*TBtree)(unsafe.Pointer(p)).Flock.FpBtree = p
|
|
(*TBtree)(unsafe.Pointer(p)).Flock.FiTable = uint32(1)
|
|
/*
|
|
** If this Btree is a candidate for shared cache, try to find an
|
|
** existing BtShared object that we can share with
|
|
*/
|
|
if isTempDb == 0 && (isMemdb == 0 || vfsFlags&int32(SQLITE_OPEN_URI) != 0) {
|
|
if vfsFlags&int32(SQLITE_OPEN_SHAREDCACHE) != 0 {
|
|
nFilename = _sqlite3Strlen30(tls, zFilename) + int32(1)
|
|
nFullPathname = (*Tsqlite3_vfs)(unsafe.Pointer(pVfs)).FmxPathname + int32(1)
|
|
if nFullPathname > nFilename {
|
|
v1 = nFullPathname
|
|
} else {
|
|
v1 = nFilename
|
|
}
|
|
zFullPathname = _sqlite3Malloc(tls, libc.Uint64FromInt32(v1))
|
|
(*TBtree)(unsafe.Pointer(p)).Fsharable = uint8(1)
|
|
if !(zFullPathname != 0) {
|
|
Xsqlite3_free(tls, p)
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
if isMemdb != 0 {
|
|
libc.Xmemcpy(tls, zFullPathname, zFilename, libc.Uint64FromInt32(nFilename))
|
|
} else {
|
|
rc = _sqlite3OsFullPathname(tls, pVfs, zFilename, nFullPathname, zFullPathname)
|
|
if rc != 0 {
|
|
if rc == libc.Int32FromInt32(SQLITE_OK)|libc.Int32FromInt32(2)<<libc.Int32FromInt32(8) {
|
|
rc = SQLITE_OK
|
|
} else {
|
|
Xsqlite3_free(tls, zFullPathname)
|
|
Xsqlite3_free(tls, p)
|
|
return rc
|
|
}
|
|
}
|
|
}
|
|
mutexOpen = _sqlite3MutexAlloc(tls, int32(SQLITE_MUTEX_STATIC_OPEN))
|
|
Xsqlite3_mutex_enter(tls, mutexOpen)
|
|
mutexShared = _sqlite3MutexAlloc(tls, int32(SQLITE_MUTEX_STATIC_MAIN))
|
|
Xsqlite3_mutex_enter(tls, mutexShared)
|
|
pBt = _sqlite3SharedCacheList
|
|
for {
|
|
if !(pBt != 0) {
|
|
break
|
|
}
|
|
if 0 == libc.Xstrcmp(tls, zFullPathname, _sqlite3PagerFilename(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager, 0)) && _sqlite3PagerVfs(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager) == pVfs {
|
|
iDb = (*Tsqlite3)(unsafe.Pointer(db)).FnDb - int32(1)
|
|
for {
|
|
if !(iDb >= 0) {
|
|
break
|
|
}
|
|
pExisting = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpBt
|
|
if pExisting != 0 && (*TBtree)(unsafe.Pointer(pExisting)).FpBt == pBt {
|
|
Xsqlite3_mutex_leave(tls, mutexShared)
|
|
Xsqlite3_mutex_leave(tls, mutexOpen)
|
|
Xsqlite3_free(tls, zFullPathname)
|
|
Xsqlite3_free(tls, p)
|
|
return int32(SQLITE_CONSTRAINT)
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
iDb = iDb - 1
|
|
}
|
|
(*TBtree)(unsafe.Pointer(p)).FpBt = pBt
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FnRef = (*TBtShared)(unsafe.Pointer(pBt)).FnRef + 1
|
|
break
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
pBt = (*TBtShared)(unsafe.Pointer(pBt)).FpNext
|
|
}
|
|
Xsqlite3_mutex_leave(tls, mutexShared)
|
|
Xsqlite3_free(tls, zFullPathname)
|
|
}
|
|
}
|
|
if pBt == uintptr(0) {
|
|
/*
|
|
** The following asserts make sure that structures used by the btree are
|
|
** the right size. This is to guard against size changes that result
|
|
** when compiling on a different architecture.
|
|
*/
|
|
/* Suppress false-positive compiler warning from PVS-Studio */
|
|
libc.Xmemset(tls, bp+16, 0, uint64(8))
|
|
pBt = _sqlite3MallocZero(tls, uint64(152))
|
|
if pBt == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
goto btree_open_out
|
|
}
|
|
rc = _sqlite3PagerOpen(tls, pVfs, pBt, zFilename, int32(136), flags, vfsFlags, __ccgo_fp(_pageReinit))
|
|
if rc == SQLITE_OK {
|
|
_sqlite3PagerSetMmapLimit(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager, (*Tsqlite3)(unsafe.Pointer(db)).FszMmap)
|
|
rc = _sqlite3PagerReadFileheader(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager, int32(100), bp)
|
|
}
|
|
if rc != SQLITE_OK {
|
|
goto btree_open_out
|
|
}
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FopenFlags = libc.Uint8FromInt32(flags)
|
|
(*TBtShared)(unsafe.Pointer(pBt)).Fdb = db
|
|
_sqlite3PagerSetBusyHandler(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager, __ccgo_fp(_btreeInvokeBusyHandler), pBt)
|
|
(*TBtree)(unsafe.Pointer(p)).FpBt = pBt
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FpCursor = uintptr(0)
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FpPage1 = uintptr(0)
|
|
if _sqlite3PagerIsreadonly(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager) != 0 {
|
|
v4 = pBt + 40
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) | libc.Int32FromInt32(BTS_READ_ONLY))
|
|
}
|
|
/* EVIDENCE-OF: R-51873-39618 The page size for a database file is
|
|
** determined by the 2-byte integer located at an offset of 16 bytes from
|
|
** the beginning of the database file. */
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FpageSize = libc.Uint32FromInt32(libc.Int32FromUint8((**(**[100]uint8)(__ccgo_up(bp)))[int32(16)])<<int32(8) | libc.Int32FromUint8((**(**[100]uint8)(__ccgo_up(bp)))[int32(17)])<<int32(16))
|
|
if (*TBtShared)(unsafe.Pointer(pBt)).FpageSize < uint32(512) || (*TBtShared)(unsafe.Pointer(pBt)).FpageSize > uint32(SQLITE_MAX_PAGE_SIZE) || ((*TBtShared)(unsafe.Pointer(pBt)).FpageSize-uint32(1))&(*TBtShared)(unsafe.Pointer(pBt)).FpageSize != uint32(0) {
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FpageSize = uint32(0)
|
|
/* If the magic name ":memory:" will create an in-memory database, then
|
|
** leave the autoVacuum mode at 0 (do not auto-vacuum), even if
|
|
** SQLITE_DEFAULT_AUTOVACUUM is true. On the other hand, if
|
|
** SQLITE_OMIT_MEMORYDB has been defined, then ":memory:" is just a
|
|
** regular file-name. In this case the auto-vacuum applies as per normal.
|
|
*/
|
|
if zFilename != 0 && !(isMemdb != 0) {
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FautoVacuum = libc.Uint8FromInt32(libc.Int32FromInt32(0))
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FincrVacuum = libc.Uint8FromInt32(libc.Int32FromInt32(0))
|
|
}
|
|
nReserve = uint8(0)
|
|
} else {
|
|
/* EVIDENCE-OF: R-37497-42412 The size of the reserved region is
|
|
** determined by the one-byte unsigned integer found at an offset of 20
|
|
** into the database file header. */
|
|
nReserve = (**(**[100]uint8)(__ccgo_up(bp)))[int32(20)]
|
|
v4 = pBt + 40
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) | libc.Int32FromInt32(BTS_PAGESIZE_FIXED))
|
|
if _sqlite3Get4byte(tls, bp+uintptr(libc.Int32FromInt32(36)+libc.Int32FromInt32(4)*libc.Int32FromInt32(4))) != 0 {
|
|
v1 = int32(1)
|
|
} else {
|
|
v1 = 0
|
|
}
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FautoVacuum = libc.Uint8FromInt32(v1)
|
|
if _sqlite3Get4byte(tls, bp+uintptr(libc.Int32FromInt32(36)+libc.Int32FromInt32(7)*libc.Int32FromInt32(4))) != 0 {
|
|
v1 = int32(1)
|
|
} else {
|
|
v1 = 0
|
|
}
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FincrVacuum = libc.Uint8FromInt32(v1)
|
|
}
|
|
rc = _sqlite3PagerSetPagesize(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager, pBt+52, libc.Int32FromUint8(nReserve))
|
|
if rc != 0 {
|
|
goto btree_open_out
|
|
}
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FusableSize = (*TBtShared)(unsafe.Pointer(pBt)).FpageSize - uint32(nReserve)
|
|
/* 8-byte alignment of pageSize */
|
|
/* Add the new BtShared object to the linked list sharable BtShareds.
|
|
*/
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FnRef = int32(1)
|
|
if (*TBtree)(unsafe.Pointer(p)).Fsharable != 0 {
|
|
mutexShared1 = _sqlite3MutexAlloc(tls, int32(SQLITE_MUTEX_STATIC_MAIN))
|
|
if libc.Bool(int32(SQLITE_THREADSAFE) != 0) && _sqlite3Config.FbCoreMutex != 0 {
|
|
(*TBtShared)(unsafe.Pointer(pBt)).Fmutex = _sqlite3MutexAlloc(tls, SQLITE_MUTEX_FAST)
|
|
if (*TBtShared)(unsafe.Pointer(pBt)).Fmutex == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
goto btree_open_out
|
|
}
|
|
}
|
|
Xsqlite3_mutex_enter(tls, mutexShared1)
|
|
(*TBtShared)(unsafe.Pointer(pBt)).FpNext = _sqlite3SharedCacheList
|
|
_sqlite3SharedCacheList = pBt
|
|
Xsqlite3_mutex_leave(tls, mutexShared1)
|
|
}
|
|
}
|
|
/* If the new Btree uses a sharable pBtShared, then link the new
|
|
** Btree into the list of all sharable Btrees for the same connection.
|
|
** The list is kept in ascending order by pBt address.
|
|
*/
|
|
if (*TBtree)(unsafe.Pointer(p)).Fsharable != 0 {
|
|
i = 0
|
|
for {
|
|
if !(i < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
v4 = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i)*32))).FpBt
|
|
pSib = v4
|
|
if v4 != uintptr(0) && (*TBtree)(unsafe.Pointer(pSib)).Fsharable != 0 {
|
|
for (*TBtree)(unsafe.Pointer(pSib)).FpPrev != 0 {
|
|
pSib = (*TBtree)(unsafe.Pointer(pSib)).FpPrev
|
|
}
|
|
if uint64((*TBtree)(unsafe.Pointer(p)).FpBt) < uint64((*TBtree)(unsafe.Pointer(pSib)).FpBt) {
|
|
(*TBtree)(unsafe.Pointer(p)).FpNext = pSib
|
|
(*TBtree)(unsafe.Pointer(p)).FpPrev = uintptr(0)
|
|
(*TBtree)(unsafe.Pointer(pSib)).FpPrev = p
|
|
} else {
|
|
for (*TBtree)(unsafe.Pointer(pSib)).FpNext != 0 && uint64((*TBtree)(unsafe.Pointer((*TBtree)(unsafe.Pointer(pSib)).FpNext)).FpBt) < uint64((*TBtree)(unsafe.Pointer(p)).FpBt) {
|
|
pSib = (*TBtree)(unsafe.Pointer(pSib)).FpNext
|
|
}
|
|
(*TBtree)(unsafe.Pointer(p)).FpNext = (*TBtree)(unsafe.Pointer(pSib)).FpNext
|
|
(*TBtree)(unsafe.Pointer(p)).FpPrev = pSib
|
|
if (*TBtree)(unsafe.Pointer(p)).FpNext != 0 {
|
|
(*TBtree)(unsafe.Pointer((*TBtree)(unsafe.Pointer(p)).FpNext)).FpPrev = p
|
|
}
|
|
(*TBtree)(unsafe.Pointer(pSib)).FpNext = p
|
|
}
|
|
break
|
|
}
|
|
goto _8
|
|
_8:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppBtree)) = p
|
|
goto btree_open_out
|
|
btree_open_out:
|
|
;
|
|
if rc != SQLITE_OK {
|
|
if pBt != 0 && (*TBtShared)(unsafe.Pointer(pBt)).FpPager != 0 {
|
|
_sqlite3PagerClose(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager, uintptr(0))
|
|
}
|
|
Xsqlite3_free(tls, pBt)
|
|
Xsqlite3_free(tls, p)
|
|
**(**uintptr)(__ccgo_up(ppBtree)) = uintptr(0)
|
|
} else {
|
|
/* If the B-Tree was successfully opened, set the pager-cache size to the
|
|
** default value. Except, when opening on an existing shared pager-cache,
|
|
** do not change the pager-cache size.
|
|
*/
|
|
if _sqlite3BtreeSchema(tls, p, 0, uintptr(0)) == uintptr(0) {
|
|
_sqlite3BtreeSetCacheSize(tls, p, -int32(2000))
|
|
}
|
|
pFile = _sqlite3PagerFile(tls, (*TBtShared)(unsafe.Pointer(pBt)).FpPager)
|
|
if (*Tsqlite3_file)(unsafe.Pointer(pFile)).FpMethods != 0 {
|
|
_sqlite3OsFileControlHint(tls, pFile, int32(SQLITE_FCNTL_PDB), pBt+8)
|
|
}
|
|
}
|
|
if mutexOpen != 0 {
|
|
Xsqlite3_mutex_leave(tls, mutexOpen)
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Remove entries from the sqlite_statN tables (for N in (1,2,3))
|
|
// ** after a DROP INDEX or DROP TABLE command.
|
|
// */
|
|
func _sqlite3ClearStatTables(tls *libc.TLS, pParse uintptr, iDb int32, zType uintptr, zName uintptr) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var i int32
|
|
var zDbName uintptr
|
|
var _ /* zTab at bp+0 */ [24]int8
|
|
_, _ = i, zDbName
|
|
zDbName = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
i = int32(1)
|
|
for {
|
|
if !(i <= int32(4)) {
|
|
break
|
|
}
|
|
Xsqlite3_snprintf(tls, int32(24), bp, __ccgo_ts+14955, libc.VaList(bp+32, i))
|
|
if _sqlite3FindTable(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, bp, zDbName) != 0 {
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+12940, libc.VaList(bp+32, zDbName, bp, zType, zName))
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate code that will construct an ephemeral table containing all terms
|
|
// ** in the RHS of an IN operator. The IN operator can be in either of two
|
|
// ** forms:
|
|
// **
|
|
// ** x IN (4,5,11) -- IN operator with list on right-hand side
|
|
// ** x IN (SELECT a FROM b) -- IN operator with subquery on the right
|
|
// **
|
|
// ** The pExpr parameter is the IN operator. The cursor number for the
|
|
// ** constructed ephemeral table is returned. The first time the ephemeral
|
|
// ** table is computed, the cursor number is also stored in pExpr->iTable,
|
|
// ** however the cursor number returned might not be the same, as it might
|
|
// ** have been duplicated using OP_OpenDup.
|
|
// **
|
|
// ** If the LHS expression ("x" in the examples) is a column value, or
|
|
// ** the SELECT statement returns a column value, then the affinity of that
|
|
// ** column is used to build the index keys. If both 'x' and the
|
|
// ** SELECT... statement are columns, then numeric affinity is used
|
|
// ** if either column has NUMERIC or INTEGER affinity. If neither
|
|
// ** 'x' nor the SELECT... statement are columns, then numeric affinity
|
|
// ** is used.
|
|
// */
|
|
func _sqlite3CodeRhsOfIN(tls *libc.TLS, pParse uintptr, pExpr uintptr, iTab int32, allowBloom int32) {
|
|
bp := tls.Alloc(80)
|
|
defer tls.Free(80)
|
|
var addr, addrBloom, addrOnce, i, i1, nVal, r1, r2, rc, regBloom, v1 int32
|
|
var p, pCopy, pE2, pEList, pItem, pKeyInfo, pLeft, pList, pSelect, pSig, v, v2 uintptr
|
|
var _ /* affinity at bp+40 */ int8
|
|
var _ /* dest at bp+0 */ TSelectDest
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = addr, addrBloom, addrOnce, i, i1, nVal, p, pCopy, pE2, pEList, pItem, pKeyInfo, pLeft, pList, pSelect, pSig, r1, r2, rc, regBloom, v, v1, v2
|
|
addrOnce = 0 /* the LHS of the IN operator */
|
|
pKeyInfo = uintptr(0) /* The prepared statement under construction */
|
|
pSig = uintptr(0) /* Signature for this subroutine */
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe
|
|
/* The evaluation of the IN must be repeated every time it
|
|
** is encountered if any of the following is true:
|
|
**
|
|
** * The right-hand side is a correlated subquery
|
|
** * The right-hand side is an expression list containing variables
|
|
** * We are inside a trigger
|
|
**
|
|
** If all of the above are false, then we can compute the RHS just once
|
|
** and reuse it many names.
|
|
*/
|
|
if !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_VarSelect)) != libc.Uint32FromInt32(0)) && (*TParse)(unsafe.Pointer(pParse)).FiSelfTab == 0 {
|
|
/* Reuse of the RHS is allowed
|
|
**
|
|
** Compute a signature for the RHS of the IN operator to facility
|
|
** finding and reusing prior instances of the same IN operator.
|
|
*/
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0) && (*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FselFlags&uint32(SF_All) == uint32(0) {
|
|
pSig = _sqlite3DbMallocRawNN(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, uint64(32))
|
|
if pSig != 0 {
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FselId = libc.Int32FromUint32((*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FselId)
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FzAff = _exprINAffinity(tls, pParse, pExpr)
|
|
}
|
|
}
|
|
/* Check to see if there is a prior materialization of the RHS of
|
|
** this IN operator. If there is, then make use of that prior
|
|
** materialization rather than recomputing it.
|
|
*/
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subrtn)) != uint32(0) || _findCompatibleInRhsSubrtn(tls, pParse, pExpr, pSig) != 0 {
|
|
addrOnce = _sqlite3VdbeAddOp0(tls, v, int32(OP_Once))
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0) {
|
|
_sqlite3VdbeExplain(tls, pParse, uint8(0), __ccgo_ts+8333, libc.VaList(bp+56, (*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FselId))
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Gosub), (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn, (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_OpenDup), iTab, (*TExpr)(unsafe.Pointer(pExpr)).FiTable)
|
|
_sqlite3VdbeJumpHere(tls, v, addrOnce)
|
|
if pSig != 0 {
|
|
_sqlite3DbFree(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, (*TSubrtnSig)(unsafe.Pointer(pSig)).FzAff)
|
|
_sqlite3DbFree(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pSig)
|
|
}
|
|
return
|
|
}
|
|
/* Begin coding the subroutine */
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subrtn))
|
|
v2 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
(*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn = v1
|
|
(*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr = _sqlite3VdbeAddOp2(tls, v, int32(OP_BeginSubrtn), 0, (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn) + int32(1)
|
|
if pSig != 0 {
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FbComplete = uint8(0)
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FiAddr = (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FregReturn = (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FiTable = iTab
|
|
(*TParse)(unsafe.Pointer(pParse)).FmSubrtnSig = libc.Uint8FromInt32(int32(1) << ((*TSubrtnSig)(unsafe.Pointer(pSig)).FselId & int32(7)))
|
|
_sqlite3VdbeChangeP4(tls, v, -int32(1), pSig, -int32(18))
|
|
}
|
|
addrOnce = _sqlite3VdbeAddOp0(tls, v, int32(OP_Once))
|
|
}
|
|
/* Check to see if this is a vector IN operator */
|
|
pLeft = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
nVal = _sqlite3ExprVectorSize(tls, pLeft)
|
|
/* Construct the ephemeral table that will contain the content of
|
|
** RHS of the IN operator.
|
|
*/
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = iTab
|
|
addr = _sqlite3VdbeAddOp2(tls, v, int32(OP_OpenEphemeral), (*TExpr)(unsafe.Pointer(pExpr)).FiTable, nVal)
|
|
pKeyInfo = _sqlite3KeyInfoAlloc(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, nVal, int32(1))
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0) {
|
|
/* Case 1: expr IN (SELECT ...)
|
|
**
|
|
** Generate code to write the results of the select into the temporary
|
|
** table allocated and opened above.
|
|
*/
|
|
pSelect = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
pEList = (*TSelect)(unsafe.Pointer(pSelect)).FpEList
|
|
if addrOnce != 0 {
|
|
v2 = __ccgo_ts + 1704
|
|
} else {
|
|
v2 = __ccgo_ts + 8356
|
|
}
|
|
_sqlite3VdbeExplain(tls, pParse, uint8(1), __ccgo_ts+8368, libc.VaList(bp+56, v2, (*TSelect)(unsafe.Pointer(pSelect)).FselId))
|
|
/* If the LHS and RHS of the IN operator do not match, that
|
|
** error will have been caught long before we reach this point. */
|
|
if (*TExprList)(unsafe.Pointer(pEList)).FnExpr == nVal {
|
|
addrBloom = 0
|
|
_sqlite3SelectDestInit(tls, bp, int32(SRT_Set), iTab)
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FzAffSdst = _exprINAffinity(tls, pParse, pExpr)
|
|
(*TSelect)(unsafe.Pointer(pSelect)).FiLimit = 0
|
|
if addrOnce != 0 && allowBloom != 0 && (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FdbOptFlags&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_BloomFilter)) == uint32(0) {
|
|
v2 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
regBloom = v1
|
|
addrBloom = _sqlite3VdbeAddOp2(tls, v, int32(OP_Blob), int32(10000), regBloom)
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FiSDParm2 = regBloom
|
|
}
|
|
/* Caused by OOM in sqlite3KeyInfoAlloc() */
|
|
pCopy = _sqlite3SelectDup(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pSelect, 0)
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmallocFailed != 0 {
|
|
v1 = int32(1)
|
|
} else {
|
|
v1 = _sqlite3Select(tls, pParse, pCopy, bp)
|
|
}
|
|
rc = v1
|
|
_sqlite3SelectDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pCopy)
|
|
_sqlite3DbFree(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, (**(**TSelectDest)(__ccgo_up(bp))).FzAffSdst)
|
|
if addrBloom != 0 {
|
|
/* Remember that location of the Bloom filter in the P3 operand
|
|
** of the OP_Once that began this subroutine. tag-202407032019 */
|
|
(*TVdbeOp)(unsafe.Pointer(_sqlite3VdbeGetOp(tls, v, addrOnce))).Fp3 = (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm2
|
|
if (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm2 == 0 {
|
|
/* If the Bloom filter won't actually be used, keep it small */
|
|
(*TVdbeOp)(unsafe.Pointer(_sqlite3VdbeGetOp(tls, v, addrBloom))).Fp1 = int32(10)
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
_sqlite3KeyInfoUnref(tls, pKeyInfo)
|
|
return
|
|
}
|
|
/* OOM will cause exit after sqlite3Select() */
|
|
i = 0
|
|
for {
|
|
if !(i < nVal) {
|
|
break
|
|
}
|
|
p = _sqlite3VectorFieldSubexpr(tls, pLeft, i)
|
|
*(*uintptr)(unsafe.Pointer(pKeyInfo + 32 + uintptr(i)*8)) = _sqlite3BinaryCompareCollSeq(tls, pParse, p, (*(*TExprList_item)(unsafe.Pointer(pEList + 8 + uintptr(i)*32))).FpExpr)
|
|
goto _7
|
|
_7:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
} else {
|
|
if *(*uintptr)(unsafe.Pointer(pExpr + 32)) != uintptr(0) {
|
|
pList = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
**(**int8)(__ccgo_up(bp + 40)) = _sqlite3ExprAffinity(tls, pLeft)
|
|
if int32(**(**int8)(__ccgo_up(bp + 40))) <= int32(SQLITE_AFF_NONE) {
|
|
**(**int8)(__ccgo_up(bp + 40)) = int8(SQLITE_AFF_BLOB)
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(bp + 40))) == int32(SQLITE_AFF_REAL) {
|
|
**(**int8)(__ccgo_up(bp + 40)) = int8(SQLITE_AFF_NUMERIC)
|
|
}
|
|
}
|
|
if pKeyInfo != 0 {
|
|
*(*uintptr)(unsafe.Pointer(pKeyInfo + 32)) = _sqlite3ExprCollSeq(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft)
|
|
}
|
|
/* Loop through each expression in <exprlist>. */
|
|
r1 = _sqlite3GetTempReg(tls, pParse)
|
|
r2 = _sqlite3GetTempReg(tls, pParse)
|
|
i1 = (*TExprList)(unsafe.Pointer(pList)).FnExpr
|
|
pItem = pList + 8
|
|
for {
|
|
if !(i1 > 0) {
|
|
break
|
|
}
|
|
pE2 = (*TExprList_item)(unsafe.Pointer(pItem)).FpExpr
|
|
/* If the expression is not constant then we will need to
|
|
** disable the test that was generated above that makes sure
|
|
** this code only executes once. Because for a non-constant
|
|
** expression we need to rerun this code each time.
|
|
*/
|
|
if addrOnce != 0 && !(_sqlite3ExprIsConstant(tls, pParse, pE2) != 0) {
|
|
_sqlite3VdbeChangeToNoop(tls, v, addrOnce-int32(1))
|
|
_sqlite3VdbeChangeToNoop(tls, v, addrOnce)
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) &= ^libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subrtn))
|
|
addrOnce = 0
|
|
}
|
|
/* Evaluate the expression and insert it into the temp table */
|
|
_sqlite3ExprCode(tls, pParse, pE2, r1)
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_MakeRecord), r1, int32(1), r2, bp+40, int32(1))
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IdxInsert), iTab, r2, r1, int32(1))
|
|
goto _8
|
|
_8:
|
|
;
|
|
i1 = i1 - 1
|
|
pItem += 32
|
|
}
|
|
_sqlite3ReleaseTempReg(tls, pParse, r1)
|
|
_sqlite3ReleaseTempReg(tls, pParse, r2)
|
|
}
|
|
}
|
|
if pSig != 0 {
|
|
(*TSubrtnSig)(unsafe.Pointer(pSig)).FbComplete = uint8(1)
|
|
}
|
|
if pKeyInfo != 0 {
|
|
_sqlite3VdbeChangeP4(tls, v, addr, pKeyInfo, -int32(9))
|
|
}
|
|
if addrOnce != 0 {
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_NullRow), iTab)
|
|
_sqlite3VdbeJumpHere(tls, v, addrOnce)
|
|
/* Subroutine return */
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Return), (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn, (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr, int32(1))
|
|
_sqlite3ClearTempRegCache(tls, pParse)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate code for scalar subqueries used as a subquery expression
|
|
// ** or EXISTS operator:
|
|
// **
|
|
// ** (SELECT a FROM b) -- subquery
|
|
// ** EXISTS (SELECT a FROM b) -- EXISTS subquery
|
|
// **
|
|
// ** The pExpr parameter is the SELECT or EXISTS operator to be coded.
|
|
// **
|
|
// ** Return the register that holds the result. For a multi-column SELECT,
|
|
// ** the result is stored in a contiguous array of registers and the
|
|
// ** return value is the register of the left-most result column.
|
|
// ** Return 0 if an error occurs.
|
|
// */
|
|
func _sqlite3CodeSubselect(tls *libc.TLS, pParse uintptr, pExpr uintptr) (r int32) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var addrOnce, nReg, rReg, v1 int32
|
|
var db, pLeft, pLimit, pSel, v, v2 uintptr
|
|
var _ /* dest at bp+0 */ TSelectDest
|
|
_, _, _, _, _, _, _, _, _, _ = addrOnce, db, nReg, pLeft, pLimit, pSel, rReg, v, v1, v2
|
|
addrOnce = 0 /* Address of OP_Once at top of subroutine */
|
|
rReg = 0 /* New limit expression */
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
return 0
|
|
}
|
|
pSel = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
/* If this routine has already been coded, then invoke it as a
|
|
** subroutine. */
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subrtn)) != uint32(0) {
|
|
_sqlite3VdbeExplain(tls, pParse, uint8(0), __ccgo_ts+8387, libc.VaList(bp+48, (*TSelect)(unsafe.Pointer(pSel)).FselId))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Gosub), (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn, (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr)
|
|
return (*TExpr)(unsafe.Pointer(pExpr)).FiTable
|
|
}
|
|
/* Begin coding the subroutine */
|
|
**(**Tu32)(__ccgo_up(pExpr + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subrtn))
|
|
v2 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
(*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn = v1
|
|
(*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr = _sqlite3VdbeAddOp2(tls, v, int32(OP_BeginSubrtn), 0, (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn) + int32(1)
|
|
/* The evaluation of the EXISTS/SELECT must be repeated every time it
|
|
** is encountered if any of the following is true:
|
|
**
|
|
** * The right-hand side is a correlated subquery
|
|
** * The right-hand side is an expression list containing variables
|
|
** * We are inside a trigger
|
|
**
|
|
** If all of the above are false, then we can run this code just once
|
|
** save the results, and reuse the same result on subsequent invocations.
|
|
*/
|
|
if !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_VarSelect)) != libc.Uint32FromInt32(0)) {
|
|
addrOnce = _sqlite3VdbeAddOp0(tls, v, int32(OP_Once))
|
|
}
|
|
/* For a SELECT, generate code to put the values for all columns of
|
|
** the first row into an array of registers and return the index of
|
|
** the first register.
|
|
**
|
|
** If this is an EXISTS, write an integer 0 (not exists) or 1 (exists)
|
|
** into a register and return that register number.
|
|
**
|
|
** In both cases, the query is augmented with "LIMIT 1". Any
|
|
** preexisting limit is discarded in place of the new LIMIT 1.
|
|
*/
|
|
if addrOnce != 0 {
|
|
v2 = __ccgo_ts + 1704
|
|
} else {
|
|
v2 = __ccgo_ts + 8356
|
|
}
|
|
_sqlite3VdbeExplain(tls, pParse, uint8(1), __ccgo_ts+8405, libc.VaList(bp+48, v2, (*TSelect)(unsafe.Pointer(pSel)).FselId))
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_SELECT) {
|
|
v1 = (*TExprList)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pSel)).FpEList)).FnExpr
|
|
} else {
|
|
v1 = int32(1)
|
|
}
|
|
nReg = v1
|
|
_sqlite3SelectDestInit(tls, bp, 0, (*TParse)(unsafe.Pointer(pParse)).FnMem+int32(1))
|
|
**(**int32)(__ccgo_up(pParse + 60)) += nReg
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_SELECT) {
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FeDest = uint8(SRT_Mem)
|
|
if (*TSelect)(unsafe.Pointer(pSel)).FselFlags&uint32(SF_Distinct) != 0 && (*TSelect)(unsafe.Pointer(pSel)).FpLimit != 0 && (*TExpr)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pSel)).FpLimit)).FpRight != 0 {
|
|
/* If there is both a DISTINCT and an OFFSET clause, then allocate
|
|
** a separate dest.iSdst array for sqlite3Select() and other
|
|
** routines to populate. In this case results will be copied over
|
|
** into the dest.iSDParm array only after OFFSET processing. This
|
|
** ensures that in the case where OFFSET excludes all rows, the
|
|
** dest.iSDParm array is not left populated with the contents of the
|
|
** last row visited - it should be all NULLs if all rows were
|
|
** excluded by OFFSET. */
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FiSdst = (*TParse)(unsafe.Pointer(pParse)).FnMem + int32(1)
|
|
**(**int32)(__ccgo_up(pParse + 60)) += nReg
|
|
} else {
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FiSdst = (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm
|
|
}
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FnSdst = nReg
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Null), 0, (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm, (*TParse)(unsafe.Pointer(pParse)).FnMem)
|
|
} else {
|
|
(**(**TSelectDest)(__ccgo_up(bp))).FeDest = uint8(SRT_Exists)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), 0, (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm)
|
|
}
|
|
if (*TSelect)(unsafe.Pointer(pSel)).FpLimit != 0 {
|
|
/* The subquery already has a limit. If the pre-existing limit X is
|
|
** not already integer value 1 or 0, then make the new limit X<>0 so that
|
|
** the new limit is either 1 or 0 */
|
|
pLeft = (*TExpr)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pSel)).FpLimit)).FpLeft
|
|
if libc.BoolInt32((*TExpr)(unsafe.Pointer(pLeft)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_IntValue)) != uint32(0)) == 0 || *(*int32)(unsafe.Pointer(&(*TExpr)(unsafe.Pointer(pLeft)).Fu)) != int32(1) && *(*int32)(unsafe.Pointer(&(*TExpr)(unsafe.Pointer(pLeft)).Fu)) != 0 {
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
pLimit = _sqlite3ExprInt32(tls, db, 0)
|
|
if pLimit != 0 {
|
|
(*TExpr)(unsafe.Pointer(pLimit)).FaffExpr = int8(SQLITE_AFF_NUMERIC)
|
|
pLimit = _sqlite3PExpr(tls, pParse, int32(TK_NE), _sqlite3ExprDup(tls, db, pLeft, 0), pLimit)
|
|
}
|
|
_sqlite3ExprDeferredDelete(tls, pParse, pLeft)
|
|
(*TExpr)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pSel)).FpLimit)).FpLeft = pLimit
|
|
}
|
|
} else {
|
|
/* If there is no pre-existing limit add a limit of 1 */
|
|
pLimit = _sqlite3ExprInt32(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, int32(1))
|
|
(*TSelect)(unsafe.Pointer(pSel)).FpLimit = _sqlite3PExpr(tls, pParse, int32(TK_LIMIT), pLimit, uintptr(0))
|
|
}
|
|
(*TSelect)(unsafe.Pointer(pSel)).FiLimit = 0
|
|
if _sqlite3Select(tls, pParse, pSel, bp) != 0 {
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop2 = (*TExpr)(unsafe.Pointer(pExpr)).Fop
|
|
(*TExpr)(unsafe.Pointer(pExpr)).Fop = uint8(TK_ERROR)
|
|
return 0
|
|
}
|
|
v1 = (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm
|
|
rReg = v1
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiTable = v1
|
|
if addrOnce != 0 {
|
|
_sqlite3VdbeJumpHere(tls, v, addrOnce)
|
|
}
|
|
/* Subroutine return */
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Return), (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FregReturn, (*(*struct {
|
|
FiAddr int32
|
|
FregReturn int32
|
|
})(unsafe.Pointer(pExpr + 64))).FiAddr, int32(1))
|
|
_sqlite3ClearTempRegCache(tls, pParse)
|
|
return rReg
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Given an expression list (which is really the list of expressions
|
|
// ** that form the result set of a SELECT statement) compute appropriate
|
|
// ** column names for a table that would hold the expression list.
|
|
// **
|
|
// ** All column names will be unique.
|
|
// **
|
|
// ** Only the column names are computed. Column.zType, Column.zColl,
|
|
// ** and other fields of Column are zeroed.
|
|
// **
|
|
// ** Return SQLITE_OK on success. If a memory allocation error occurs,
|
|
// ** store NULL in *paCol and 0 in *pnCol and return SQLITE_NOMEM.
|
|
// **
|
|
// ** The only guarantee that SQLite makes about column names is that if the
|
|
// ** column has an AS clause assigning it a name, that will be the name used.
|
|
// ** That is the only documented guarantee. However, countless applications
|
|
// ** developed over the years have made baseless assumptions about column names
|
|
// ** and will break if those assumptions changes. Hence, use extreme caution
|
|
// ** when modifying this routine to avoid breaking legacy.
|
|
// **
|
|
// ** See Also: sqlite3GenerateColumnNames()
|
|
// */
|
|
func _sqlite3ColumnsFromExprList(tls *libc.TLS, pParse uintptr, pEList uintptr, pnCol uintptr, paCol uintptr) (r int32) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var aCol, db, pCol, pColExpr, pCollide, pTab, pX, zName, v2, v3 uintptr
|
|
var i, iCol, j, nCol, nName int32
|
|
var v5 bool
|
|
var v8 Tu32
|
|
var _ /* cnt at bp+0 */ Tu32
|
|
var _ /* ht at bp+8 */ THash
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = aCol, db, i, iCol, j, nCol, nName, pCol, pColExpr, pCollide, pTab, pX, zName, v2, v3, v5, v8
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
_sqlite3HashInit(tls, bp+8)
|
|
if pEList != 0 {
|
|
nCol = (*TExprList)(unsafe.Pointer(pEList)).FnExpr
|
|
aCol = _sqlite3DbMallocZero(tls, db, uint64(uint64(16)*libc.Uint64FromInt32(nCol)))
|
|
if nCol > int32(32767) {
|
|
nCol = int32(32767)
|
|
}
|
|
} else {
|
|
nCol = 0
|
|
aCol = uintptr(0)
|
|
}
|
|
**(**Ti16)(__ccgo_up(pnCol)) = int16(nCol)
|
|
**(**uintptr)(__ccgo_up(paCol)) = aCol
|
|
i = 0
|
|
pCol = aCol
|
|
for {
|
|
if !(i < nCol && !((*TParse)(unsafe.Pointer(pParse)).FnErr != 0)) {
|
|
break
|
|
}
|
|
pX = pEList + 8 + uintptr(i)*32
|
|
/* Get an appropriate name for the column
|
|
*/
|
|
v2 = (*TExprList_item)(unsafe.Pointer(pX)).FzEName
|
|
zName = v2
|
|
if v2 != uintptr(0) && int32(uint32(*(*uint16)(unsafe.Pointer(pX + 16 + 4))&0x3>>0)) == ENAME_NAME {
|
|
/* If the column contains an "AS <name>" phrase, use <name> as the name */
|
|
} else {
|
|
pColExpr = _sqlite3ExprSkipCollateAndLikely(tls, (*TExprList_item)(unsafe.Pointer(pX)).FpExpr)
|
|
for pColExpr != uintptr(0) && libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pColExpr)).Fop) == int32(TK_DOT) {
|
|
pColExpr = (*TExpr)(unsafe.Pointer(pColExpr)).FpRight
|
|
}
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pColExpr)).Fop) == int32(TK_COLUMN) && (*TExpr)(unsafe.Pointer(pColExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_WinFunc)|libc.Int32FromInt32(EP_Subrtn)) == uint32(0) && *(*uintptr)(unsafe.Pointer(pColExpr + 64)) != uintptr(0) {
|
|
/* For columns use the column name name */
|
|
iCol = int32((*TExpr)(unsafe.Pointer(pColExpr)).FiColumn)
|
|
pTab = *(*uintptr)(unsafe.Pointer(pColExpr + 64))
|
|
if iCol < 0 {
|
|
iCol = int32((*TTable)(unsafe.Pointer(pTab)).FiPKey)
|
|
}
|
|
if iCol >= 0 {
|
|
v2 = (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(iCol)*16))).FzCnName
|
|
} else {
|
|
v2 = __ccgo_ts + 17967
|
|
}
|
|
zName = v2
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pColExpr)).Fop) == int32(TK_ID) {
|
|
zName = *(*uintptr)(unsafe.Pointer(pColExpr + 8))
|
|
} else {
|
|
/* Use the original text of the column expression as its name */
|
|
/* pointer comparison intended */
|
|
}
|
|
}
|
|
}
|
|
if zName != 0 && !(_sqlite3IsTrueOrFalse(tls, zName) != 0) {
|
|
zName = _sqlite3DbStrDup(tls, db, zName)
|
|
} else {
|
|
zName = _sqlite3MPrintf(tls, db, __ccgo_ts+20636, libc.VaList(bp+40, i+int32(1)))
|
|
}
|
|
/* Make sure the column name is unique. If the name is not unique,
|
|
** append an integer to the name so that it becomes unique.
|
|
*/
|
|
**(**Tu32)(__ccgo_up(bp)) = uint32(0)
|
|
for {
|
|
if v5 = zName != 0; v5 {
|
|
v2 = _sqlite3HashFind(tls, bp+8, zName)
|
|
pCollide = v2
|
|
}
|
|
if !(v5 && v2 != uintptr(0)) {
|
|
break
|
|
}
|
|
if int32(uint32(*(*uint16)(unsafe.Pointer(pCollide + 16 + 4))&0x80>>7)) != 0 {
|
|
v3 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v3)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v3))) | libc.Int32FromInt32(COLFLAG_NOEXPAND))
|
|
}
|
|
nName = _sqlite3Strlen30(tls, zName)
|
|
if nName > 0 {
|
|
j = nName - int32(1)
|
|
for {
|
|
if !(j > 0 && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zName + uintptr(j))))])&int32(0x04) != 0) {
|
|
break
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
j = j - 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zName + uintptr(j)))) == int32(':') {
|
|
nName = j
|
|
}
|
|
}
|
|
**(**Tu32)(__ccgo_up(bp)) = **(**Tu32)(__ccgo_up(bp)) + 1
|
|
v8 = **(**Tu32)(__ccgo_up(bp))
|
|
zName = _sqlite3MPrintf(tls, db, __ccgo_ts+20645, libc.VaList(bp+40, nName, zName, v8))
|
|
_sqlite3ProgressCheck(tls, pParse)
|
|
if **(**Tu32)(__ccgo_up(bp)) > uint32(3) {
|
|
Xsqlite3_randomness(tls, int32(4), bp)
|
|
}
|
|
}
|
|
(*TColumn)(unsafe.Pointer(pCol)).FzCnName = zName
|
|
(*TColumn)(unsafe.Pointer(pCol)).FhName = _sqlite3StrIHash(tls, zName)
|
|
if int32(uint32(*(*uint16)(unsafe.Pointer(pX + 16 + 4))&0x100>>8)) != 0 {
|
|
v2 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v2)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v2))) | libc.Int32FromInt32(COLFLAG_NOEXPAND))
|
|
}
|
|
if zName != 0 && _sqlite3HashInsert(tls, bp+8, zName, pX) == pX {
|
|
_sqlite3OomFault(tls, db)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
pCol += 16
|
|
}
|
|
_sqlite3HashClear(tls, bp+8)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
j = 0
|
|
for {
|
|
if !(j < i) {
|
|
break
|
|
}
|
|
_sqlite3DbFree(tls, db, (**(**TColumn)(__ccgo_up(aCol + uintptr(j)*16))).FzCnName)
|
|
goto _10
|
|
_10:
|
|
;
|
|
j = j + 1
|
|
}
|
|
_sqlite3DbFree(tls, db, aCol)
|
|
**(**uintptr)(__ccgo_up(paCol)) = uintptr(0)
|
|
**(**Ti16)(__ccgo_up(pnCol)) = 0
|
|
return (*TParse)(unsafe.Pointer(pParse)).Frc
|
|
}
|
|
return SQLITE_OK
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** All regular columns for table pTab have been puts into registers
|
|
// ** starting with iRegStore. The registers that correspond to STORED
|
|
// ** or VIRTUAL columns have not yet been initialized. This routine goes
|
|
// ** back and computes the values for those columns based on the previously
|
|
// ** computed normal columns.
|
|
// */
|
|
func _sqlite3ComputeGeneratedColumns(tls *libc.TLS, pParse uintptr, iRegStore int32, pTab uintptr) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var eProgress, i, ii, jj, x, v2 int32
|
|
var pCol, pOp, pRedo, zP4, v4 uintptr
|
|
var _ /* w at bp+0 */ TWalker
|
|
_, _, _, _, _, _, _, _, _, _, _ = eProgress, i, ii, jj, pCol, pOp, pRedo, x, zP4, v2, v4
|
|
/* Before computing generated columns, first go through and make sure
|
|
** that appropriate affinity has been applied to the regular columns
|
|
*/
|
|
_sqlite3TableAffinity(tls, (*TParse)(unsafe.Pointer(pParse)).FpVdbe, pTab, iRegStore)
|
|
if (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_HasStored) != uint32(0) {
|
|
pOp = _sqlite3VdbeGetLastOp(tls, (*TParse)(unsafe.Pointer(pParse)).FpVdbe)
|
|
if libc.Int32FromUint8((*TVdbeOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_Affinity) {
|
|
zP4 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
v2 = libc.Int32FromInt32(0)
|
|
jj = v2
|
|
ii = v2
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zP4 + uintptr(jj))) != 0) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(ii)*16))).FcolFlags)&int32(COLFLAG_VIRTUAL) != 0 {
|
|
goto _1
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(ii)*16))).FcolFlags)&int32(COLFLAG_STORED) != 0 {
|
|
**(**int8)(__ccgo_up(zP4 + uintptr(jj))) = int8(SQLITE_AFF_NONE)
|
|
}
|
|
jj = jj + 1
|
|
goto _1
|
|
_1:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint8((*TVdbeOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_TypeCheck) {
|
|
/* If an OP_TypeCheck was generated because the table is STRICT,
|
|
** then set the P3 operand to indicate that generated columns should
|
|
** not be checked */
|
|
(*TVdbeOp)(unsafe.Pointer(pOp)).Fp3 = int32(1)
|
|
}
|
|
}
|
|
}
|
|
/* Because there can be multiple generated columns that refer to one another,
|
|
** this is a two-pass algorithm. On the first pass, mark all generated
|
|
** columns as "not available".
|
|
*/
|
|
i = 0
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16))).FcolFlags)&int32(COLFLAG_GENERATED) != 0 {
|
|
v4 = (*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16 + 14
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) | libc.Int32FromInt32(COLFLAG_NOTAVAIL))
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(bp + 40)) = pTab
|
|
(**(**TWalker)(__ccgo_up(bp))).FxExprCallback = __ccgo_fp(_exprColumnFlagUnion)
|
|
(**(**TWalker)(__ccgo_up(bp))).FxSelectCallback = uintptr(0)
|
|
(**(**TWalker)(__ccgo_up(bp))).FxSelectCallback2 = uintptr(0)
|
|
/* On the second pass, compute the value of each NOT-AVAILABLE column.
|
|
** Companion code in the TK_COLUMN case of sqlite3ExprCodeTarget() will
|
|
** compute dependencies and mark remove the COLSPAN_NOTAVAIL mark, as
|
|
** they are needed.
|
|
*/
|
|
(*TParse)(unsafe.Pointer(pParse)).FiSelfTab = -iRegStore
|
|
for cond := true; cond; cond = pRedo != 0 && eProgress != 0 {
|
|
eProgress = 0
|
|
pRedo = uintptr(0)
|
|
i = 0
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
pCol = (*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_NOTAVAIL) != 0 {
|
|
v4 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) | libc.Int32FromInt32(COLFLAG_BUSY))
|
|
(**(**TWalker)(__ccgo_up(bp))).FeCode = uint16(0)
|
|
_sqlite3WalkExpr(tls, bp, _sqlite3ColumnExpr(tls, pTab, pCol))
|
|
v4 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) & ^libc.Int32FromInt32(COLFLAG_BUSY))
|
|
if libc.Int32FromUint16((**(**TWalker)(__ccgo_up(bp))).FeCode)&int32(COLFLAG_NOTAVAIL) != 0 {
|
|
pRedo = pCol
|
|
goto _5
|
|
}
|
|
eProgress = int32(1)
|
|
x = int32(_sqlite3TableColumnToStorage(tls, pTab, int16(i))) + iRegStore
|
|
_sqlite3ExprCodeGeneratedColumn(tls, pParse, pTab, pCol, x)
|
|
v4 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) & ^libc.Int32FromInt32(COLFLAG_NOTAVAIL))
|
|
}
|
|
goto _5
|
|
_5:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if pRedo != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8456, libc.VaList(bp+56, (*TColumn)(unsafe.Pointer(pRedo)).FzCnName))
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FiSelfTab = 0
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This routine is called to create a new foreign key on the table
|
|
// ** currently under construction. pFromCol determines which columns
|
|
// ** in the current table point to the foreign key. If pFromCol==0 then
|
|
// ** connect the key to the last column inserted. pTo is the name of
|
|
// ** the table referred to (a.k.a the "parent" table). pToCol is a list
|
|
// ** of tables in the parent pTo table. flags contains all
|
|
// ** information about the conflict resolution algorithms specified
|
|
// ** in the ON DELETE, ON UPDATE and ON INSERT clauses.
|
|
// **
|
|
// ** An FKey structure is created and added to the table currently
|
|
// ** under construction in the pParse->pNewTable field.
|
|
// **
|
|
// ** The foreign key is set for IMMEDIATE processing. A subsequent call
|
|
// ** to sqlite3DeferForeignKey() might change this to DEFERRED.
|
|
// */
|
|
func _sqlite3CreateForeignKey(tls *libc.TLS, pParse uintptr, pFromCol uintptr, pTo uintptr, pToCol uintptr, flags int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var db, p, pFKey, pNextTo, z uintptr
|
|
var i, iCol, j, n, nCol int32
|
|
var nByte Ti64
|
|
_, _, _, _, _, _, _, _, _, _, _ = db, i, iCol, j, n, nByte, nCol, p, pFKey, pNextTo, z
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
pFKey = uintptr(0)
|
|
p = (*TParse)(unsafe.Pointer(pParse)).FpNewTable
|
|
if p == uintptr(0) || libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) == int32(PARSE_MODE_DECLARE_VTAB) {
|
|
goto fk_end
|
|
}
|
|
if pFromCol == uintptr(0) {
|
|
iCol = int32((*TTable)(unsafe.Pointer(p)).FnCol) - int32(1)
|
|
if iCol < 0 {
|
|
goto fk_end
|
|
}
|
|
if pToCol != 0 && (*TExprList)(unsafe.Pointer(pToCol)).FnExpr != int32(1) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15175, libc.VaList(bp+8, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(p)).FaCol + uintptr(iCol)*16))).FzCnName, pTo))
|
|
goto fk_end
|
|
}
|
|
nCol = int32(1)
|
|
} else {
|
|
if pToCol != 0 && (*TExprList)(unsafe.Pointer(pToCol)).FnExpr != (*TExprList)(unsafe.Pointer(pFromCol)).FnExpr {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15238, 0)
|
|
goto fk_end
|
|
} else {
|
|
nCol = (*TExprList)(unsafe.Pointer(pFromCol)).FnExpr
|
|
}
|
|
}
|
|
nByte = libc.Int64FromUint64(uint64(libc.UintptrFromInt32(0)+64) + libc.Uint64FromInt32(nCol)*uint64(16) + uint64((*TToken)(unsafe.Pointer(pTo)).Fn) + uint64(1))
|
|
if pToCol != 0 {
|
|
i = 0
|
|
for {
|
|
if !(i < (*TExprList)(unsafe.Pointer(pToCol)).FnExpr) {
|
|
break
|
|
}
|
|
nByte = nByte + int64(_sqlite3Strlen30(tls, (*(*TExprList_item)(unsafe.Pointer(pToCol + 8 + uintptr(i)*32))).FzEName)+int32(1))
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
pFKey = _sqlite3DbMallocZero(tls, db, libc.Uint64FromInt64(nByte))
|
|
if pFKey == uintptr(0) {
|
|
goto fk_end
|
|
}
|
|
(*TFKey)(unsafe.Pointer(pFKey)).FpFrom = p
|
|
(*TFKey)(unsafe.Pointer(pFKey)).FpNextFrom = (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(p + 64))).FpFKey
|
|
z = pFKey + 64 + uintptr(nCol)*16
|
|
(*TFKey)(unsafe.Pointer(pFKey)).FzTo = z
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenMap(tls, pParse, z, pTo)
|
|
}
|
|
libc.Xmemcpy(tls, z, (*TToken)(unsafe.Pointer(pTo)).Fz, uint64((*TToken)(unsafe.Pointer(pTo)).Fn))
|
|
**(**int8)(__ccgo_up(z + uintptr((*TToken)(unsafe.Pointer(pTo)).Fn))) = 0
|
|
_sqlite3Dequote(tls, z)
|
|
z = z + uintptr((*TToken)(unsafe.Pointer(pTo)).Fn+uint32(1))
|
|
(*TFKey)(unsafe.Pointer(pFKey)).FnCol = nCol
|
|
if pFromCol == uintptr(0) {
|
|
(*(*TsColMap)(unsafe.Pointer(pFKey + 64))).FiFrom = int32((*TTable)(unsafe.Pointer(p)).FnCol) - int32(1)
|
|
} else {
|
|
i = 0
|
|
for {
|
|
if !(i < nCol) {
|
|
break
|
|
}
|
|
j = 0
|
|
for {
|
|
if !(j < int32((*TTable)(unsafe.Pointer(p)).FnCol)) {
|
|
break
|
|
}
|
|
if _sqlite3StrICmp(tls, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(p)).FaCol + uintptr(j)*16))).FzCnName, (*(*TExprList_item)(unsafe.Pointer(pFromCol + 8 + uintptr(i)*32))).FzEName) == 0 {
|
|
(*(*TsColMap)(unsafe.Pointer(pFKey + 64 + uintptr(i)*16))).FiFrom = j
|
|
break
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
j = j + 1
|
|
}
|
|
if j >= int32((*TTable)(unsafe.Pointer(p)).FnCol) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15332, libc.VaList(bp+8, (*(*TExprList_item)(unsafe.Pointer(pFromCol + 8 + uintptr(i)*32))).FzEName))
|
|
goto fk_end
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenRemap(tls, pParse, pFKey+64+uintptr(i)*16, (*(*TExprList_item)(unsafe.Pointer(pFromCol + 8 + uintptr(i)*32))).FzEName)
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if pToCol != 0 {
|
|
i = 0
|
|
for {
|
|
if !(i < nCol) {
|
|
break
|
|
}
|
|
n = _sqlite3Strlen30(tls, (*(*TExprList_item)(unsafe.Pointer(pToCol + 8 + uintptr(i)*32))).FzEName)
|
|
(*(*TsColMap)(unsafe.Pointer(pFKey + 64 + uintptr(i)*16))).FzCol = z
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenRemap(tls, pParse, z, (*(*TExprList_item)(unsafe.Pointer(pToCol + 8 + uintptr(i)*32))).FzEName)
|
|
}
|
|
libc.Xmemcpy(tls, z, (*(*TExprList_item)(unsafe.Pointer(pToCol + 8 + uintptr(i)*32))).FzEName, libc.Uint64FromInt32(n))
|
|
**(**int8)(__ccgo_up(z + uintptr(n))) = 0
|
|
z = z + uintptr(n+int32(1))
|
|
goto _4
|
|
_4:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
(*TFKey)(unsafe.Pointer(pFKey)).FisDeferred = uint8(0)
|
|
**(**Tu8)(__ccgo_up(pFKey + 45)) = libc.Uint8FromInt32(flags & libc.Int32FromInt32(0xff)) /* ON DELETE action */
|
|
**(**Tu8)(__ccgo_up(pFKey + 45 + 1)) = libc.Uint8FromInt32(flags >> libc.Int32FromInt32(8) & libc.Int32FromInt32(0xff)) /* ON UPDATE action */
|
|
pNextTo = _sqlite3HashInsert(tls, (*TTable)(unsafe.Pointer(p)).FpSchema+80, (*TFKey)(unsafe.Pointer(pFKey)).FzTo, pFKey)
|
|
if pNextTo == pFKey {
|
|
_sqlite3OomFault(tls, db)
|
|
goto fk_end
|
|
}
|
|
if pNextTo != 0 {
|
|
(*TFKey)(unsafe.Pointer(pFKey)).FpNextTo = pNextTo
|
|
(*TFKey)(unsafe.Pointer(pNextTo)).FpPrevTo = pFKey
|
|
}
|
|
/* Link the foreign key to the table as the last step.
|
|
*/
|
|
(*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(p + 64))).FpFKey = pFKey
|
|
pFKey = uintptr(0)
|
|
goto fk_end
|
|
fk_end:
|
|
;
|
|
_sqlite3DbFree(tls, db, pFKey)
|
|
_sqlite3ExprListDelete(tls, db, pFromCol)
|
|
_sqlite3ExprListDelete(tls, db, pToCol)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Create a new index for an SQL table. pName1.pName2 is the name of the index
|
|
// ** and pTblList is the name of the table that is to be indexed. Both will
|
|
// ** be NULL for a primary key or an index that is created to satisfy a
|
|
// ** UNIQUE constraint. If pTable and pIndex are NULL, use pParse->pNewTable
|
|
// ** as the table to be indexed. pParse->pNewTable is a table that is
|
|
// ** currently being constructed by a CREATE TABLE statement.
|
|
// **
|
|
// ** pList is a list of columns to be indexed. pList will be NULL if this
|
|
// ** is a primary key or unique-constraint on the most recent column added
|
|
// ** to the table currently under construction.
|
|
// */
|
|
func _sqlite3CreateIndex(tls *libc.TLS, pParse uintptr, pName1 uintptr, pName2 uintptr, pTblName uintptr, pList uintptr, onError int32, pStart uintptr, pPIWhere uintptr, sortOrder int32, ifNotExist int32, idxType Tu8) {
|
|
bp := tls.Alloc(176)
|
|
defer tls.Free(176)
|
|
var db, p, pCExpr, pCol, pDb, pExpr, pIdx, pIndex, pListItem, pLoop, pNext, pPk, pTab, pThis, ppFrom, v, z1, z2, zColl, zDb, zName, zStmt, v2 uintptr
|
|
var i, iDb, iMem, j, k, n, n1, nColl, nExtra, nExtraCol, nName, requestedSortOrder, sortOrderMask, x, v5 int32
|
|
var _ /* pName at bp+96 */ uintptr
|
|
var _ /* prevCol at bp+112 */ TToken
|
|
var _ /* sFix at bp+0 */ TDbFixer
|
|
var _ /* zExtra at bp+104 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = db, i, iDb, iMem, j, k, n, n1, nColl, nExtra, nExtraCol, nName, p, pCExpr, pCol, pDb, pExpr, pIdx, pIndex, pListItem, pLoop, pNext, pPk, pTab, pThis, ppFrom, requestedSortOrder, sortOrderMask, v, x, z1, z2, zColl, zDb, zName, zStmt, v2, v5
|
|
pTab = uintptr(0) /* Table to be indexed */
|
|
pIndex = uintptr(0) /* The index to be created */
|
|
zName = uintptr(0) /* 1 to honor DESC in index. 0 to ignore. */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Index of the database that is being written */
|
|
**(**uintptr)(__ccgo_up(bp + 96)) = uintptr(0) /* For looping over pList */
|
|
nExtra = 0 /* Number of extra columns needed */
|
|
**(**uintptr)(__ccgo_up(bp + 104)) = uintptr(0) /* Extra space after the Index object */
|
|
pPk = uintptr(0) /* PRIMARY KEY index for WITHOUT ROWID tables */
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
goto exit_create_index
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) == int32(PARSE_MODE_DECLARE_VTAB) && libc.Int32FromUint8(idxType) != int32(SQLITE_IDXTYPE_PRIMARYKEY) {
|
|
goto exit_create_index
|
|
}
|
|
if SQLITE_OK != _sqlite3ReadSchema(tls, pParse) {
|
|
goto exit_create_index
|
|
}
|
|
if _sqlite3HasExplicitNulls(tls, pParse, pList) != 0 {
|
|
goto exit_create_index
|
|
}
|
|
/*
|
|
** Find the table that is to be indexed. Return early if not found.
|
|
*/
|
|
if pTblName != uintptr(0) {
|
|
/* Use the two-part index name to determine the database
|
|
** to search for the table. 'Fix' the table name to this db
|
|
** before looking up the table.
|
|
*/
|
|
iDb = _sqlite3TwoPartName(tls, pParse, pName1, pName2, bp+96)
|
|
if iDb < 0 {
|
|
goto exit_create_index
|
|
}
|
|
/* If the index name was unqualified, check if the table
|
|
** is a temp table. If so, set the database to 1. Do not do this
|
|
** if initializing a database schema.
|
|
*/
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0) {
|
|
pTab = _sqlite3SrcListLookup(tls, pParse, pTblName)
|
|
if (*TToken)(unsafe.Pointer(pName2)).Fn == uint32(0) && pTab != 0 && (*TTable)(unsafe.Pointer(pTab)).FpSchema == (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + 1*32))).FpSchema {
|
|
iDb = int32(1)
|
|
}
|
|
}
|
|
_sqlite3FixInit(tls, bp, pParse, iDb, __ccgo_ts+15417, **(**uintptr)(__ccgo_up(bp + 96)))
|
|
if _sqlite3FixSrcList(tls, bp, pTblName) != 0 {
|
|
/* Because the parser constructs pTblName from a single identifier,
|
|
** sqlite3FixSrcList can never fail. */
|
|
}
|
|
pTab = _sqlite3LocateTableItem(tls, pParse, uint32(0), pTblName+8)
|
|
if pTab == uintptr(0) {
|
|
goto exit_create_index
|
|
}
|
|
if iDb == int32(1) && (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpSchema != (*TTable)(unsafe.Pointer(pTab)).FpSchema {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15423, libc.VaList(bp+136, (*TTable)(unsafe.Pointer(pTab)).FzName))
|
|
goto exit_create_index
|
|
}
|
|
if !((*TTable)(unsafe.Pointer(pTab)).FtabFlags&libc.Uint32FromInt32(TF_WithoutRowid) == libc.Uint32FromInt32(0)) {
|
|
pPk = _sqlite3PrimaryKeyIndex(tls, pTab)
|
|
}
|
|
} else {
|
|
pTab = (*TParse)(unsafe.Pointer(pParse)).FpNewTable
|
|
if !(pTab != 0) {
|
|
goto exit_create_index
|
|
}
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab)).FpSchema)
|
|
}
|
|
pDb = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32
|
|
if Xsqlite3_strnicmp(tls, (*TTable)(unsafe.Pointer(pTab)).FzName, __ccgo_ts+6760, int32(7)) == 0 && libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy) == 0 && pTblName != uintptr(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15473, libc.VaList(bp+136, (*TTable)(unsafe.Pointer(pTab)).FzName))
|
|
goto exit_create_index
|
|
}
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab)).FeTabType) == int32(TABTYP_VIEW) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15501, 0)
|
|
goto exit_create_index
|
|
}
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab)).FeTabType) == int32(TABTYP_VTAB) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15526, 0)
|
|
goto exit_create_index
|
|
}
|
|
/*
|
|
** Find the name of the index. Make sure there is not already another
|
|
** index or table with the same name.
|
|
**
|
|
** Exception: If we are reading the names of permanent indices from the
|
|
** sqlite_schema table (because some other process changed the schema) and
|
|
** one of the index names collides with the name of a temporary table or
|
|
** index, then we will continue to process this index.
|
|
**
|
|
** If pName==0 it means that we are
|
|
** dealing with a primary key or UNIQUE constraint. We have to invent our
|
|
** own name.
|
|
*/
|
|
if **(**uintptr)(__ccgo_up(bp + 96)) != 0 {
|
|
zName = _sqlite3NameFromToken(tls, db, **(**uintptr)(__ccgo_up(bp + 96)))
|
|
if zName == uintptr(0) {
|
|
goto exit_create_index
|
|
}
|
|
if SQLITE_OK != _sqlite3CheckObjectName(tls, pParse, zName, __ccgo_ts+15417, (*TTable)(unsafe.Pointer(pTab)).FzName) {
|
|
goto exit_create_index
|
|
}
|
|
if !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= libc.Int32FromInt32(PARSE_MODE_RENAME)) {
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0) {
|
|
if _sqlite3FindTable(tls, db, zName, (*TDb)(unsafe.Pointer(pDb)).FzDbSName) != uintptr(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15560, libc.VaList(bp+136, zName))
|
|
goto exit_create_index
|
|
}
|
|
}
|
|
if _sqlite3FindIndex(tls, db, zName, (*TDb)(unsafe.Pointer(pDb)).FzDbSName) != uintptr(0) {
|
|
if !(ifNotExist != 0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15594, libc.VaList(bp+136, zName))
|
|
} else {
|
|
_sqlite3CodeVerifySchema(tls, pParse, iDb)
|
|
_sqlite3ForceNotReadOnly(tls, pParse)
|
|
}
|
|
goto exit_create_index
|
|
}
|
|
}
|
|
} else {
|
|
pLoop = (*TTable)(unsafe.Pointer(pTab)).FpIndex
|
|
n = libc.Int32FromInt32(1)
|
|
for {
|
|
if !(pLoop != 0) {
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
pLoop = (*TIndex)(unsafe.Pointer(pLoop)).FpNext
|
|
n = n + 1
|
|
}
|
|
zName = _sqlite3MPrintf(tls, db, __ccgo_ts+15618, libc.VaList(bp+136, (*TTable)(unsafe.Pointer(pTab)).FzName, n))
|
|
if zName == uintptr(0) {
|
|
goto exit_create_index
|
|
}
|
|
/* Automatic index names generated from within sqlite3_declare_vtab()
|
|
** must have names that are distinct from normal automatic index names.
|
|
** The following statement converts "sqlite3_autoindex..." into
|
|
** "sqlite3_butoindex..." in order to make the names distinct.
|
|
** The "vtab_err.test" test demonstrates the need of this statement. */
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) != PARSE_MODE_NORMAL {
|
|
**(**int8)(__ccgo_up(zName + 7)) = **(**int8)(__ccgo_up(zName + 7)) + 1
|
|
}
|
|
}
|
|
/* Check for authorization to create an index.
|
|
*/
|
|
if !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= libc.Int32FromInt32(PARSE_MODE_RENAME)) {
|
|
zDb = (*TDb)(unsafe.Pointer(pDb)).FzDbSName
|
|
if libc.Bool(!(libc.Int32FromInt32(OMIT_TEMPDB) != 0)) && iDb == int32(1) {
|
|
v2 = __ccgo_ts + 6768
|
|
} else {
|
|
v2 = __ccgo_ts + 6288
|
|
}
|
|
if _sqlite3AuthCheck(tls, pParse, int32(SQLITE_INSERT), v2, uintptr(0), zDb) != 0 {
|
|
goto exit_create_index
|
|
}
|
|
i = int32(SQLITE_CREATE_INDEX)
|
|
if libc.Bool(!(libc.Int32FromInt32(OMIT_TEMPDB) != 0)) && iDb == int32(1) {
|
|
i = int32(SQLITE_CREATE_TEMP_INDEX)
|
|
}
|
|
if _sqlite3AuthCheck(tls, pParse, i, zName, (*TTable)(unsafe.Pointer(pTab)).FzName, zDb) != 0 {
|
|
goto exit_create_index
|
|
}
|
|
}
|
|
/* If pList==0, it means this routine was called to make a primary
|
|
** key out of the last column added to the table under construction.
|
|
** So create a fake list to simulate this.
|
|
*/
|
|
if pList == uintptr(0) {
|
|
pCol = (*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(int32((*TTable)(unsafe.Pointer(pTab)).FnCol)-int32(1))*16
|
|
v2 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v2)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v2))) | libc.Int32FromInt32(COLFLAG_UNIQUE))
|
|
_sqlite3TokenInit(tls, bp+112, (*TColumn)(unsafe.Pointer(pCol)).FzCnName)
|
|
pList = _sqlite3ExprListAppend(tls, pParse, uintptr(0), _sqlite3ExprAlloc(tls, db, int32(TK_ID), bp+112, 0))
|
|
if pList == uintptr(0) {
|
|
goto exit_create_index
|
|
}
|
|
_sqlite3ExprListSetSortOrder(tls, pList, sortOrder, -int32(1))
|
|
} else {
|
|
_sqlite3ExprListCheckLength(tls, pParse, pList, __ccgo_ts+15417)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
goto exit_create_index
|
|
}
|
|
}
|
|
/* Figure out how many bytes of space are required to store explicitly
|
|
** specified collation sequence names.
|
|
*/
|
|
i = 0
|
|
for {
|
|
if !(i < (*TExprList)(unsafe.Pointer(pList)).FnExpr) {
|
|
break
|
|
}
|
|
pExpr = (*(*TExprList_item)(unsafe.Pointer(pList + 8 + uintptr(i)*32))).FpExpr
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) == int32(TK_COLLATE) {
|
|
nExtra = nExtra + (int32(1) + _sqlite3Strlen30(tls, *(*uintptr)(unsafe.Pointer(pExpr + 8))))
|
|
}
|
|
goto _4
|
|
_4:
|
|
;
|
|
i = i + 1
|
|
}
|
|
/*
|
|
** Allocate the index structure.
|
|
*/
|
|
nName = _sqlite3Strlen30(tls, zName)
|
|
if pPk != 0 {
|
|
v5 = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol)
|
|
} else {
|
|
v5 = int32(1)
|
|
}
|
|
nExtraCol = v5
|
|
pIndex = _sqlite3AllocateIndexObject(tls, db, (*TExprList)(unsafe.Pointer(pList)).FnExpr+nExtraCol, nName+nExtra+int32(1), bp+104)
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
goto exit_create_index
|
|
}
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FzName = **(**uintptr)(__ccgo_up(bp + 104))
|
|
**(**uintptr)(__ccgo_up(bp + 104)) = **(**uintptr)(__ccgo_up(bp + 104)) + uintptr(nName+int32(1))
|
|
libc.Xmemcpy(tls, (*TIndex)(unsafe.Pointer(pIndex)).FzName, zName, libc.Uint64FromInt32(nName+int32(1)))
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FpTable = pTab
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FonError = libc.Uint8FromInt32(onError)
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.BoolUint32(onError != libc.Int32FromInt32(OE_None)), 3, 0x8)
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, uint32(idxType), 0, 0x3)
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FpSchema = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpSchema
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FnKeyCol = libc.Uint16FromInt32((*TExprList)(unsafe.Pointer(pList)).FnExpr)
|
|
if pPIWhere != 0 {
|
|
_sqlite3ResolveSelfReference(tls, pParse, pTab, int32(NC_PartIdx), pPIWhere, uintptr(0))
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FpPartIdxWhere = pPIWhere
|
|
pPIWhere = uintptr(0)
|
|
}
|
|
/* Check to see if we should honor DESC requests on index columns
|
|
*/
|
|
if libc.Int32FromUint8((*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).Ffile_format) >= int32(4) {
|
|
sortOrderMask = -int32(1) /* Honor DESC */
|
|
} else {
|
|
sortOrderMask = 0 /* Ignore DESC */
|
|
}
|
|
/* Analyze the list of expressions that form the terms of the index and
|
|
** report any errors. In the common case where the expression is exactly
|
|
** a table column, store that column in aiColumn[]. For general expressions,
|
|
** populate pIndex->aColExpr and store XN_EXPR (-2) in aiColumn[].
|
|
**
|
|
** TODO: Issue a warning if two or more columns of the index are identical.
|
|
** TODO: Issue a warning if the table primary key is used as part of the
|
|
** index key.
|
|
*/
|
|
pListItem = pList + 8
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FaColExpr = pList
|
|
pList = uintptr(0)
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(i < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIndex)).FnKeyCol)) {
|
|
break
|
|
} /* Collation sequence name */
|
|
_sqlite3StringToId(tls, (*TExprList_item)(unsafe.Pointer(pListItem)).FpExpr)
|
|
_sqlite3ResolveSelfReference(tls, pParse, pTab, int32(NC_IdxExpr), (*TExprList_item)(unsafe.Pointer(pListItem)).FpExpr, uintptr(0))
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
goto exit_create_index
|
|
}
|
|
pCExpr = _sqlite3ExprSkipCollate(tls, (*TExprList_item)(unsafe.Pointer(pListItem)).FpExpr)
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pCExpr)).Fop) != int32(TK_COLUMN) {
|
|
if pTab == (*TParse)(unsafe.Pointer(pParse)).FpNewTable {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15641, 0)
|
|
goto exit_create_index
|
|
}
|
|
if (*TIndex)(unsafe.Pointer(pIndex)).FaColExpr == uintptr(0) {
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FaColExpr = pList
|
|
pList = uintptr(0)
|
|
}
|
|
j = -int32(2)
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaiColumn + uintptr(i)*2)) = int16(-libc.Int32FromInt32(2))
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(0), 3, 0x8)
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(1), 11, 0x800)
|
|
} else {
|
|
j = int32((*TExpr)(unsafe.Pointer(pCExpr)).FiColumn)
|
|
if j < 0 {
|
|
j = int32((*TTable)(unsafe.Pointer(pTab)).FiPKey)
|
|
} else {
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(j)*16 + 8))&0xf>>0)) == 0 {
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(0), 3, 0x8)
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(j)*16))).FcolFlags)&int32(COLFLAG_VIRTUAL) != 0 {
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(1), 10, 0x400)
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(1), 11, 0x800)
|
|
}
|
|
}
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaiColumn + uintptr(i)*2)) = int16(j)
|
|
}
|
|
zColl = uintptr(0)
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer((*TExprList_item)(unsafe.Pointer(pListItem)).FpExpr)).Fop) == int32(TK_COLLATE) {
|
|
zColl = *(*uintptr)(unsafe.Pointer((*TExprList_item)(unsafe.Pointer(pListItem)).FpExpr + 8))
|
|
nColl = _sqlite3Strlen30(tls, zColl) + int32(1)
|
|
libc.Xmemcpy(tls, **(**uintptr)(__ccgo_up(bp + 104)), zColl, libc.Uint64FromInt32(nColl))
|
|
zColl = **(**uintptr)(__ccgo_up(bp + 104))
|
|
**(**uintptr)(__ccgo_up(bp + 104)) = **(**uintptr)(__ccgo_up(bp + 104)) + uintptr(nColl)
|
|
nExtra = nExtra - nColl
|
|
} else {
|
|
if j >= 0 {
|
|
zColl = _sqlite3ColumnColl(tls, (*TTable)(unsafe.Pointer(pTab)).FaCol+uintptr(j)*16)
|
|
}
|
|
}
|
|
if !(zColl != 0) {
|
|
zColl = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
}
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0) && !(_sqlite3LocateCollSeq(tls, pParse, zColl) != 0) {
|
|
goto exit_create_index
|
|
}
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FazColl + uintptr(i)*8)) = zColl
|
|
requestedSortOrder = libc.Int32FromUint8((*TExprList_item)(unsafe.Pointer(pListItem)).Ffg.FsortFlags) & sortOrderMask
|
|
**(**Tu8)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaSortOrder + uintptr(i))) = libc.Uint8FromInt32(requestedSortOrder)
|
|
goto _6
|
|
_6:
|
|
;
|
|
i = i + 1
|
|
pListItem += 32
|
|
}
|
|
/* Append the table key to the end of the index. For WITHOUT ROWID
|
|
** tables (when pPk!=0) this will be the declared PRIMARY KEY. For
|
|
** normal tables (when pPk==0) this will be the rowid.
|
|
*/
|
|
if pPk != 0 {
|
|
j = 0
|
|
for {
|
|
if !(j < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol)) {
|
|
break
|
|
}
|
|
x = int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pPk)).FaiColumn + uintptr(j)*2)))
|
|
if _isDupColumn(tls, pIndex, libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIndex)).FnKeyCol), pPk, j) != 0 {
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FnColumn = (*TIndex)(unsafe.Pointer(pIndex)).FnColumn - 1
|
|
} else {
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaiColumn + uintptr(i)*2)) = int16(x)
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FazColl + uintptr(i)*8)) = **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pPk)).FazColl + uintptr(j)*8))
|
|
**(**Tu8)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaSortOrder + uintptr(i))) = **(**Tu8)(__ccgo_up((*TIndex)(unsafe.Pointer(pPk)).FaSortOrder + uintptr(j)))
|
|
i = i + 1
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
j = j + 1
|
|
}
|
|
} else {
|
|
**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaiColumn + uintptr(i)*2)) = int16(-libc.Int32FromInt32(1))
|
|
**(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FazColl + uintptr(i)*8)) = uintptr(unsafe.Pointer(&_sqlite3StrBINARY))
|
|
}
|
|
_sqlite3DefaultRowEst(tls, pIndex)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpNewTable == uintptr(0) {
|
|
_estimateIndexWidth(tls, pIndex)
|
|
}
|
|
/* If this index contains every column of its table, then mark
|
|
** it as a covering index */
|
|
_recomputeColumnsNotIndexed(tls, pIndex)
|
|
if pTblName != uintptr(0) && libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIndex)).FnColumn) >= int32((*TTable)(unsafe.Pointer(pTab)).FnCol) {
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(1), 5, 0x20)
|
|
j = 0
|
|
for {
|
|
if !(j < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
if j == int32((*TTable)(unsafe.Pointer(pTab)).FiPKey) {
|
|
goto _8
|
|
}
|
|
if _sqlite3TableColumnToIndex(tls, pIndex, j) >= 0 {
|
|
goto _8
|
|
}
|
|
libc.SetBitFieldPtr16Uint32(pIndex+100, libc.Uint32FromInt32(0), 5, 0x20)
|
|
break
|
|
goto _8
|
|
_8:
|
|
;
|
|
j = j + 1
|
|
}
|
|
}
|
|
if pTab == (*TParse)(unsafe.Pointer(pParse)).FpNewTable {
|
|
pIdx = (*TTable)(unsafe.Pointer(pTab)).FpIndex
|
|
for {
|
|
if !(pIdx != 0) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol) != libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIndex)).FnKeyCol) {
|
|
goto _9
|
|
}
|
|
k = 0
|
|
for {
|
|
if !(k < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol)) {
|
|
break
|
|
}
|
|
if int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(k)*2))) != int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FaiColumn + uintptr(k)*2))) {
|
|
break
|
|
}
|
|
z1 = **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(k)*8))
|
|
z2 = **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIndex)).FazColl + uintptr(k)*8))
|
|
if _sqlite3StrICmp(tls, z1, z2) != 0 {
|
|
break
|
|
}
|
|
goto _10
|
|
_10:
|
|
;
|
|
k = k + 1
|
|
}
|
|
if k == libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol) {
|
|
if libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx)).FonError) != libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIndex)).FonError) {
|
|
/* This constraint creates the same index as a previous
|
|
** constraint specified somewhere in the CREATE TABLE statement.
|
|
** However the ON CONFLICT clauses are different. If both this
|
|
** constraint and the previous equivalent constraint have explicit
|
|
** ON CONFLICT clauses this is an error. Otherwise, use the
|
|
** explicitly specified behavior for the index.
|
|
*/
|
|
if !(libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx)).FonError) == int32(OE_Default) || libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIndex)).FonError) == int32(OE_Default)) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15702, libc.VaList(bp+136, 0))
|
|
}
|
|
if libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx)).FonError) == int32(OE_Default) {
|
|
(*TIndex)(unsafe.Pointer(pIdx)).FonError = (*TIndex)(unsafe.Pointer(pIndex)).FonError
|
|
}
|
|
}
|
|
if libc.Int32FromUint8(idxType) == int32(SQLITE_IDXTYPE_PRIMARYKEY) {
|
|
libc.SetBitFieldPtr16Uint32(pIdx+100, uint32(idxType), 0, 0x3)
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FpNext = (*TParse)(unsafe.Pointer(pParse)).FpNewIndex
|
|
(*TParse)(unsafe.Pointer(pParse)).FpNewIndex = pIndex
|
|
pIndex = uintptr(0)
|
|
}
|
|
goto exit_create_index
|
|
}
|
|
goto _9
|
|
_9:
|
|
;
|
|
pIdx = (*TIndex)(unsafe.Pointer(pIdx)).FpNext
|
|
}
|
|
}
|
|
if !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= libc.Int32FromInt32(PARSE_MODE_RENAME)) {
|
|
/* Link the new Index structure to its table and to the other
|
|
** in-memory database structures.
|
|
*/
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0 {
|
|
if pTblName != uintptr(0) {
|
|
(*TIndex)(unsafe.Pointer(pIndex)).Ftnum = (*Tsqlite3)(unsafe.Pointer(db)).Finit1.FnewTnum
|
|
if _sqlite3IndexHasDuplicateRootPage(tls, pIndex) != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+15744, 0)
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = _sqlite3CorruptError(tls, int32(130930))
|
|
goto exit_create_index
|
|
}
|
|
}
|
|
p = _sqlite3HashInsert(tls, (*TIndex)(unsafe.Pointer(pIndex)).FpSchema+32, (*TIndex)(unsafe.Pointer(pIndex)).FzName, pIndex)
|
|
if p != 0 {
|
|
/* Malloc must have failed */
|
|
_sqlite3OomFault(tls, db)
|
|
goto exit_create_index
|
|
}
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_SchemaChange)
|
|
} else {
|
|
if (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) || pTblName != uintptr(0) {
|
|
v2 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
v5 = *(*int32)(unsafe.Pointer(v2))
|
|
iMem = v5
|
|
v = _sqlite3GetVdbe(tls, pParse)
|
|
if v == uintptr(0) {
|
|
goto exit_create_index
|
|
}
|
|
_sqlite3BeginWriteOperation(tls, pParse, int32(1), iDb)
|
|
/* Create the rootpage for the index using CreateIndex. But before
|
|
** doing so, code a Noop instruction and store its address in
|
|
** Index.tnum. This is required in case this index is actually a
|
|
** PRIMARY KEY and the table is actually a WITHOUT ROWID table. In
|
|
** that case the convertToWithoutRowidTable() routine will replace
|
|
** the Noop with a Goto to jump over the VDBE code generated below. */
|
|
(*TIndex)(unsafe.Pointer(pIndex)).Ftnum = libc.Uint32FromInt32(_sqlite3VdbeAddOp0(tls, v, int32(OP_Noop)))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_CreateBtree), iDb, iMem, int32(BTREE_BLOBKEY))
|
|
/* Gather the complete text of the CREATE INDEX statement into
|
|
** the zStmt variable
|
|
*/
|
|
if pStart != 0 {
|
|
n1 = libc.Int32FromUint32(libc.Uint32FromInt32(int32(int64((*TParse)(unsafe.Pointer(pParse)).FsLastToken.Fz)-int64((*TToken)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 96)))).Fz))) + (*TParse)(unsafe.Pointer(pParse)).FsLastToken.Fn)
|
|
if int32(**(**int8)(__ccgo_up((*TToken)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 96)))).Fz + uintptr(n1-int32(1))))) == int32(';') {
|
|
n1 = n1 - 1
|
|
}
|
|
/* A named index with an explicit CREATE INDEX statement */
|
|
if onError == OE_None {
|
|
v2 = __ccgo_ts + 1704
|
|
} else {
|
|
v2 = __ccgo_ts + 15761
|
|
}
|
|
zStmt = _sqlite3MPrintf(tls, db, __ccgo_ts+15769, libc.VaList(bp+136, v2, n1, (*TToken)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 96)))).Fz))
|
|
} else {
|
|
/* An automatic index created by a PRIMARY KEY or UNIQUE constraint */
|
|
/* zStmt = sqlite3MPrintf(""); */
|
|
zStmt = uintptr(0)
|
|
}
|
|
/* Add an entry in sqlite_schema for this index
|
|
*/
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+15789, libc.VaList(bp+136, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName, (*TIndex)(unsafe.Pointer(pIndex)).FzName, (*TTable)(unsafe.Pointer(pTab)).FzName, iMem, zStmt))
|
|
_sqlite3DbFree(tls, db, zStmt)
|
|
/* Fill the index with data and reparse the schema. Code an OP_Expire
|
|
** to invalidate all pre-compiled statements.
|
|
*/
|
|
if pTblName != 0 {
|
|
_sqlite3RefillIndex(tls, pParse, pIndex, iMem)
|
|
_sqlite3ChangeCookie(tls, pParse, iDb)
|
|
_sqlite3VdbeAddParseSchemaOp(tls, v, iDb, _sqlite3MPrintf(tls, db, __ccgo_ts+15848, libc.VaList(bp+136, (*TIndex)(unsafe.Pointer(pIndex)).FzName)), uint16(0))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Expire), 0, int32(1))
|
|
}
|
|
_sqlite3VdbeJumpHere(tls, v, libc.Int32FromUint32((*TIndex)(unsafe.Pointer(pIndex)).Ftnum))
|
|
}
|
|
}
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0 || pTblName == uintptr(0) {
|
|
(*TIndex)(unsafe.Pointer(pIndex)).FpNext = (*TTable)(unsafe.Pointer(pTab)).FpIndex
|
|
(*TTable)(unsafe.Pointer(pTab)).FpIndex = pIndex
|
|
pIndex = uintptr(0)
|
|
} else {
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
(*TParse)(unsafe.Pointer(pParse)).FpNewIndex = pIndex
|
|
pIndex = uintptr(0)
|
|
}
|
|
}
|
|
/* Clean up before exiting */
|
|
goto exit_create_index
|
|
exit_create_index:
|
|
;
|
|
if pIndex != 0 {
|
|
_sqlite3FreeIndex(tls, db, pIndex)
|
|
}
|
|
if pTab != 0 {
|
|
ppFrom = pTab + 16
|
|
for {
|
|
v2 = **(**uintptr)(__ccgo_up(ppFrom))
|
|
pThis = v2
|
|
if !(v2 != uintptr(0)) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pThis)).FonError) != int32(OE_Replace) {
|
|
goto _14
|
|
}
|
|
for {
|
|
v2 = (*TIndex)(unsafe.Pointer(pThis)).FpNext
|
|
pNext = v2
|
|
if !(v2 != uintptr(0) && libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pNext)).FonError) != int32(OE_Replace)) {
|
|
break
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppFrom)) = pNext
|
|
(*TIndex)(unsafe.Pointer(pThis)).FpNext = (*TIndex)(unsafe.Pointer(pNext)).FpNext
|
|
(*TIndex)(unsafe.Pointer(pNext)).FpNext = pThis
|
|
ppFrom = pNext + 40
|
|
}
|
|
break
|
|
goto _14
|
|
_14:
|
|
;
|
|
ppFrom = pThis + 40
|
|
}
|
|
}
|
|
_sqlite3ExprDelete(tls, db, pPIWhere)
|
|
_sqlite3ExprListDelete(tls, db, pList)
|
|
_sqlite3SrcListDelete(tls, db, pTblName)
|
|
_sqlite3DbFree(tls, db, zName)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** The parser calls this routine in order to create a new VIEW
|
|
// */
|
|
func _sqlite3CreateView(tls *libc.TLS, pParse uintptr, pBegin uintptr, pName1 uintptr, pName2 uintptr, pCNames uintptr, pSelect uintptr, isTemp int32, noErr int32) {
|
|
bp := tls.Alloc(128)
|
|
defer tls.Free(128)
|
|
var db, p, z uintptr
|
|
var iDb, n int32
|
|
var _ /* pName at bp+112 */ uintptr
|
|
var _ /* sEnd at bp+0 */ TToken
|
|
var _ /* sFix at bp+16 */ TDbFixer
|
|
_, _, _, _, _ = db, iDb, n, p, z
|
|
**(**uintptr)(__ccgo_up(bp + 112)) = uintptr(0)
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
if int32((*TParse)(unsafe.Pointer(pParse)).FnVar) > 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14807, 0)
|
|
goto create_view_fail
|
|
}
|
|
_sqlite3StartTable(tls, pParse, pName1, pName2, isTemp, int32(1), 0, noErr)
|
|
p = (*TParse)(unsafe.Pointer(pParse)).FpNewTable
|
|
if p == uintptr(0) || (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
goto create_view_fail
|
|
}
|
|
/* Legacy versions of SQLite allowed the use of the magic "rowid" column
|
|
** on a view, even though views do not have rowids. The following flag
|
|
** setting fixes this problem. But the fix can be disabled by compiling
|
|
** with -DSQLITE_ALLOW_ROWID_IN_VIEW in case there are legacy apps that
|
|
** depend upon the old buggy behavior. The ability can also be toggled
|
|
** using sqlite3_config(SQLITE_CONFIG_ROWID_IN_VIEW,...) */
|
|
**(**Tu32)(__ccgo_up(p + 48)) |= uint32(TF_NoVisibleRowid) /* Never allow rowid in view */
|
|
_sqlite3TwoPartName(tls, pParse, pName1, pName2, bp+112)
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(p)).FpSchema)
|
|
_sqlite3FixInit(tls, bp+16, pParse, iDb, __ccgo_ts+11119, **(**uintptr)(__ccgo_up(bp + 112)))
|
|
if _sqlite3FixSelect(tls, bp+16, pSelect) != 0 {
|
|
goto create_view_fail
|
|
}
|
|
/* Make a copy of the entire SELECT statement that defines the view.
|
|
** This will force all the Expr.token.z values to be dynamically
|
|
** allocated rather than point to the input string - which means that
|
|
** they will persist after the current sqlite3_exec() call returns.
|
|
*/
|
|
**(**Tu32)(__ccgo_up(pSelect + 4)) |= uint32(SF_View)
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
(*(*struct {
|
|
FpSelect uintptr
|
|
})(unsafe.Pointer(&(*TTable)(unsafe.Pointer(p)).Fu))).FpSelect = pSelect
|
|
pSelect = uintptr(0)
|
|
} else {
|
|
(*(*struct {
|
|
FpSelect uintptr
|
|
})(unsafe.Pointer(&(*TTable)(unsafe.Pointer(p)).Fu))).FpSelect = _sqlite3SelectDup(tls, db, pSelect, int32(EXPRDUP_REDUCE))
|
|
}
|
|
(*TTable)(unsafe.Pointer(p)).FpCheck = _sqlite3ExprListDup(tls, db, pCNames, int32(EXPRDUP_REDUCE))
|
|
(*TTable)(unsafe.Pointer(p)).FeTabType = uint8(TABTYP_VIEW)
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
goto create_view_fail
|
|
}
|
|
/* Locate the end of the CREATE VIEW statement. Make sEnd point to
|
|
** the end.
|
|
*/
|
|
**(**TToken)(__ccgo_up(bp)) = (*TParse)(unsafe.Pointer(pParse)).FsLastToken
|
|
if int32(**(**int8)(__ccgo_up((**(**TToken)(__ccgo_up(bp))).Fz))) != int32(';') {
|
|
(**(**TToken)(__ccgo_up(bp))).Fz += uintptr((**(**TToken)(__ccgo_up(bp))).Fn)
|
|
}
|
|
(**(**TToken)(__ccgo_up(bp))).Fn = uint32(0)
|
|
n = int32(int64((**(**TToken)(__ccgo_up(bp))).Fz) - int64((*TToken)(unsafe.Pointer(pBegin)).Fz))
|
|
z = (*TToken)(unsafe.Pointer(pBegin)).Fz
|
|
for libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(n-int32(1)))))])&int32(0x01) != 0 {
|
|
n = n - 1
|
|
}
|
|
(**(**TToken)(__ccgo_up(bp))).Fz = z + uintptr(n-int32(1))
|
|
(**(**TToken)(__ccgo_up(bp))).Fn = uint32(1)
|
|
/* Use sqlite3EndTable() to add the view to the schema table */
|
|
_sqlite3EndTable(tls, pParse, uintptr(0), bp, uint32(0), uintptr(0))
|
|
goto create_view_fail
|
|
create_view_fail:
|
|
;
|
|
_sqlite3SelectDelete(tls, db, pSelect)
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameExprlistUnmap(tls, pParse, pCNames)
|
|
}
|
|
_sqlite3ExprListDelete(tls, db, pCNames)
|
|
return
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Transform a UTF-8 integer literal, in either decimal or hexadecimal,
|
|
// ** into a 64-bit signed integer. This routine accepts hexadecimal literals,
|
|
// ** whereas sqlite3Atoi64() does not.
|
|
// **
|
|
// ** Returns:
|
|
// **
|
|
// ** 0 Successful transformation. Fits in a 64-bit signed integer.
|
|
// ** 1 Excess text after the integer value
|
|
// ** 2 Integer too large for a 64-bit signed integer or is malformed
|
|
// ** 3 Special case of 9223372036854775808
|
|
// */
|
|
func _sqlite3DecOrHexToI64(tls *libc.TLS, z uintptr, pOut uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var i, k, n int32
|
|
var _ /* u at bp+0 */ Tu64
|
|
_, _, _ = i, k, n
|
|
if int32(**(**int8)(__ccgo_up(z))) == int32('0') && (int32(**(**int8)(__ccgo_up(z + 1))) == int32('x') || int32(**(**int8)(__ccgo_up(z + 1))) == int32('X')) {
|
|
**(**Tu64)(__ccgo_up(bp)) = uint64(0)
|
|
i = int32(2)
|
|
for {
|
|
if !(int32(**(**int8)(__ccgo_up(z + uintptr(i)))) == int32('0')) {
|
|
break
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
k = i
|
|
for {
|
|
if !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(z + uintptr(k))))])&int32(0x08) != 0) {
|
|
break
|
|
}
|
|
**(**Tu64)(__ccgo_up(bp)) = **(**Tu64)(__ccgo_up(bp))*uint64(16) + uint64(_sqlite3HexToInt(tls, int32(**(**int8)(__ccgo_up(z + uintptr(k))))))
|
|
goto _2
|
|
_2:
|
|
;
|
|
k = k + 1
|
|
}
|
|
libc.Xmemcpy(tls, pOut, bp, uint64(8))
|
|
if k-i > int32(16) {
|
|
return int32(2)
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(k)))) != 0 {
|
|
return int32(1)
|
|
}
|
|
return 0
|
|
} else {
|
|
n = libc.Int32FromUint64(libc.Uint64FromInt32(0x3fffffff) & libc.Xstrspn(tls, z, __ccgo_ts+1834))
|
|
if **(**int8)(__ccgo_up(z + uintptr(n))) != 0 {
|
|
n = n + 1
|
|
}
|
|
return _sqlite3Atoi64(tls, z, pOut, n, uint8(SQLITE_UTF8))
|
|
}
|
|
return r
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Expression p is a QNUMBER (quoted number). Dequote the value in p->u.zToken
|
|
// ** and set the type to INTEGER or FLOAT. "Quoted" integers or floats are those
|
|
// ** that contain '_' characters that must be removed before further processing.
|
|
// */
|
|
func _sqlite3DequoteNumber(tls *libc.TLS, pParse uintptr, p uintptr) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var bHex int32
|
|
var pIn, pOut, v1, v3 uintptr
|
|
var _ /* iValue at bp+0 */ int32
|
|
_, _, _, _, _ = bHex, pIn, pOut, v1, v3
|
|
if p != 0 {
|
|
pIn = *(*uintptr)(unsafe.Pointer(p + 8))
|
|
pOut = *(*uintptr)(unsafe.Pointer(p + 8))
|
|
bHex = libc.BoolInt32(int32(**(**int8)(__ccgo_up(pIn))) == int32('0') && (int32(**(**int8)(__ccgo_up(pIn + 1))) == int32('x') || int32(**(**int8)(__ccgo_up(pIn + 1))) == int32('X')))
|
|
(*TExpr)(unsafe.Pointer(p)).Fop = uint8(TK_INTEGER)
|
|
for {
|
|
if int32(**(**int8)(__ccgo_up(pIn))) != int32('_') {
|
|
v3 = pOut
|
|
pOut = pOut + 1
|
|
**(**int8)(__ccgo_up(v3)) = **(**int8)(__ccgo_up(pIn))
|
|
if int32(**(**int8)(__ccgo_up(pIn))) == int32('e') || int32(**(**int8)(__ccgo_up(pIn))) == int32('E') || int32(**(**int8)(__ccgo_up(pIn))) == int32('.') {
|
|
(*TExpr)(unsafe.Pointer(p)).Fop = uint8(TK_FLOAT)
|
|
}
|
|
} else {
|
|
if bHex == 0 && (!(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(pIn + uintptr(-libc.Int32FromInt32(1)))))])&libc.Int32FromInt32(0x04) != 0) || !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(pIn + 1)))])&libc.Int32FromInt32(0x04) != 0)) || bHex == int32(1) && (!(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(pIn + uintptr(-libc.Int32FromInt32(1)))))])&libc.Int32FromInt32(0x08) != 0) || !(libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(pIn + 1)))])&libc.Int32FromInt32(0x08) != 0)) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+1790, libc.VaList(bp+16, *(*uintptr)(unsafe.Pointer(p + 8))))
|
|
}
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
v1 = pIn
|
|
pIn = pIn + 1
|
|
if !(**(**int8)(__ccgo_up(v1)) != 0) {
|
|
break
|
|
}
|
|
}
|
|
if bHex != 0 {
|
|
(*TExpr)(unsafe.Pointer(p)).Fop = uint8(TK_INTEGER)
|
|
}
|
|
/* tag-20240227-a: If after dequoting, the number is an integer that
|
|
** fits in 32 bits, then it must be converted into EP_IntValue. Other
|
|
** parts of the code expect this. See also tag-20240227-b. */
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(p)).Fop) == int32(TK_INTEGER) && _sqlite3GetInt32(tls, *(*uintptr)(unsafe.Pointer(p + 8)), bp) != 0 {
|
|
*(*int32)(unsafe.Pointer(&(*TExpr)(unsafe.Pointer(p)).Fu)) = **(**int32)(__ccgo_up(bp))
|
|
**(**Tu32)(__ccgo_up(p + 4)) |= uint32(EP_IntValue)
|
|
}
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** 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
|
|
// ** occurred.
|
|
// **
|
|
// ** An entry for the table is made in the schema table on disk, unless
|
|
// ** this is a temporary table or db->init.busy==1. When db->init.busy==1
|
|
// ** it means we are reading the sqlite_schema table because we just
|
|
// ** connected to the database or because the sqlite_schema table has
|
|
// ** recently changed, so the entry for this table already exists in
|
|
// ** the sqlite_schema table. We do not want to create it again.
|
|
// **
|
|
// ** If the pSelect argument is not NULL, it means that this routine
|
|
// ** was called to create a table generated from a
|
|
// ** "CREATE TABLE ... AS SELECT ..." statement. The column names of
|
|
// ** the new table will match the result set of the SELECT.
|
|
// */
|
|
func _sqlite3EndTable(tls *libc.TLS, pParse uintptr, pCons uintptr, pEnd uintptr, tabOpts Tu32, pSelect uintptr) {
|
|
bp := tls.Alloc(112)
|
|
defer tls.Free(112)
|
|
var addrInsLoop, addrTop, iCsr, iDb, ii, ii1, n, nNG, regRec, regRowid, regYield, v4 int32
|
|
var colFlags Tu32
|
|
var db, p, pCol, pDb, pEnd2, pIdx, pOld, pSchema, pSelTab, pX, v, zStmt, zType, zType2, v5 uintptr
|
|
var v12 Ti16
|
|
var _ /* dest at bp+0 */ TSelectDest
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = addrInsLoop, addrTop, colFlags, db, iCsr, iDb, ii, ii1, n, nNG, p, pCol, pDb, pEnd2, pIdx, pOld, pSchema, pSelTab, pX, regRec, regRowid, regYield, v, zStmt, zType, zType2, v12, v4, v5 /* The new table */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* An implied index of the table */
|
|
if pEnd == uintptr(0) && pSelect == uintptr(0) {
|
|
return
|
|
}
|
|
p = (*TParse)(unsafe.Pointer(pParse)).FpNewTable
|
|
if p == uintptr(0) {
|
|
return
|
|
}
|
|
if pSelect == uintptr(0) && _sqlite3ShadowTableName(tls, db, (*TTable)(unsafe.Pointer(p)).FzName) != 0 {
|
|
**(**Tu32)(__ccgo_up(p + 48)) |= uint32(TF_Shadow)
|
|
}
|
|
/* If the db->init.busy is 1 it means we are reading the SQL off the
|
|
** "sqlite_schema" or "sqlite_temp_schema" table on the disk.
|
|
** So do not write to the disk again. Extract the root page number
|
|
** for the table from the db->init.newTnum field. (The page number
|
|
** should have been put there by the sqliteOpenCb routine.)
|
|
**
|
|
** If the root page number is 1, that means this is the sqlite_schema
|
|
** table itself. So mark it read-only.
|
|
*/
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0 {
|
|
if pSelect != 0 || !(libc.Int32FromUint8((*TTable)(unsafe.Pointer(p)).FeTabType) == libc.Int32FromInt32(TABTYP_NORM)) && (*Tsqlite3)(unsafe.Pointer(db)).Finit1.FnewTnum != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+1704, 0)
|
|
return
|
|
}
|
|
(*TTable)(unsafe.Pointer(p)).Ftnum = (*Tsqlite3)(unsafe.Pointer(db)).Finit1.FnewTnum
|
|
if (*TTable)(unsafe.Pointer(p)).Ftnum == uint32(1) {
|
|
**(**Tu32)(__ccgo_up(p + 48)) |= uint32(TF_Readonly)
|
|
}
|
|
}
|
|
/* Special processing for tables that include the STRICT keyword:
|
|
**
|
|
** * Do not allow custom column datatypes. Every column must have
|
|
** a datatype that is one of INT, INTEGER, REAL, TEXT, or BLOB.
|
|
**
|
|
** * If a PRIMARY KEY is defined, other than the INTEGER PRIMARY KEY,
|
|
** then all columns of the PRIMARY KEY must have a NOT NULL
|
|
** constraint.
|
|
*/
|
|
if tabOpts&uint32(TF_Strict) != 0 {
|
|
**(**Tu32)(__ccgo_up(p + 48)) |= uint32(TF_Strict)
|
|
ii = 0
|
|
for {
|
|
if !(ii < int32((*TTable)(unsafe.Pointer(p)).FnCol)) {
|
|
break
|
|
}
|
|
pCol = (*TTable)(unsafe.Pointer(p)).FaCol + uintptr(ii)*16
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(pCol + 8))&0xf0>>4)) == COLTYPE_CUSTOM {
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_HASTYPE) != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14400, libc.VaList(bp+48, (*TTable)(unsafe.Pointer(p)).FzName, (*TColumn)(unsafe.Pointer(pCol)).FzCnName, _sqlite3ColumnType(tls, pCol, __ccgo_ts+1704)))
|
|
} else {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14433, libc.VaList(bp+48, (*TTable)(unsafe.Pointer(p)).FzName, (*TColumn)(unsafe.Pointer(pCol)).FzCnName))
|
|
}
|
|
return
|
|
} else {
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(pCol + 8))&0xf0>>4)) == int32(COLTYPE_ANY) {
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = int8(SQLITE_AFF_BLOB)
|
|
}
|
|
}
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_PRIMKEY) != 0 && int32((*TTable)(unsafe.Pointer(p)).FiPKey) != ii && int32(uint32(*(*uint8)(unsafe.Pointer(pCol + 8))&0xf>>0)) == OE_None {
|
|
libc.SetBitFieldPtr8Uint32(pCol+8, libc.Uint32FromInt32(OE_Abort), 0, 0xf)
|
|
**(**Tu32)(__ccgo_up(p + 48)) |= uint32(TF_HasNotNull)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
}
|
|
/* Special processing for WITHOUT ROWID Tables */
|
|
if tabOpts&uint32(TF_WithoutRowid) != 0 {
|
|
if (*TTable)(unsafe.Pointer(p)).FtabFlags&uint32(TF_Autoincrement) != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14460, 0)
|
|
return
|
|
}
|
|
if (*TTable)(unsafe.Pointer(p)).FtabFlags&uint32(TF_HasPrimaryKey) == uint32(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14510, libc.VaList(bp+48, (*TTable)(unsafe.Pointer(p)).FzName))
|
|
return
|
|
}
|
|
**(**Tu32)(__ccgo_up(p + 48)) |= libc.Uint32FromInt32(libc.Int32FromInt32(TF_WithoutRowid) | libc.Int32FromInt32(TF_NoVisibleRowid))
|
|
_convertToWithoutRowidTable(tls, pParse, p)
|
|
}
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(p)).FpSchema)
|
|
/* Resolve names in all CHECK constraint expressions.
|
|
*/
|
|
if (*TTable)(unsafe.Pointer(p)).FpCheck != 0 {
|
|
_sqlite3ResolveSelfReference(tls, pParse, p, int32(NC_IsCheck), uintptr(0), (*TTable)(unsafe.Pointer(p)).FpCheck)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
/* If errors are seen, delete the CHECK constraints now, else they might
|
|
** actually be used if PRAGMA writable_schema=ON is set. */
|
|
_sqlite3ExprListDelete(tls, db, (*TTable)(unsafe.Pointer(p)).FpCheck)
|
|
(*TTable)(unsafe.Pointer(p)).FpCheck = uintptr(0)
|
|
} else {
|
|
}
|
|
}
|
|
if (*TTable)(unsafe.Pointer(p)).FtabFlags&uint32(TF_HasGenerated) != 0 {
|
|
nNG = 0
|
|
ii1 = 0
|
|
for {
|
|
if !(ii1 < int32((*TTable)(unsafe.Pointer(p)).FnCol)) {
|
|
break
|
|
}
|
|
colFlags = uint32((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(p)).FaCol + uintptr(ii1)*16))).FcolFlags)
|
|
if colFlags&uint32(COLFLAG_GENERATED) != uint32(0) {
|
|
pX = _sqlite3ColumnExpr(tls, p, (*TTable)(unsafe.Pointer(p)).FaCol+uintptr(ii1)*16)
|
|
if _sqlite3ResolveSelfReference(tls, pParse, p, int32(NC_GenCol), pX, uintptr(0)) != 0 {
|
|
/* If there are errors in resolving the expression, change the
|
|
** expression to a NULL. This prevents code generators that operate
|
|
** on the expression from inserting extra parts into the expression
|
|
** tree that have been allocated from lookaside memory, which is
|
|
** illegal in a schema and will lead to errors or heap corruption
|
|
** when the database connection closes. */
|
|
_sqlite3ColumnSetExpr(tls, pParse, p, (*TTable)(unsafe.Pointer(p)).FaCol+uintptr(ii1)*16, _sqlite3ExprAlloc(tls, db, int32(TK_NULL), uintptr(0), 0))
|
|
}
|
|
} else {
|
|
nNG = nNG + 1
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
ii1 = ii1 + 1
|
|
}
|
|
if nNG == 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14542, 0)
|
|
return
|
|
}
|
|
}
|
|
/* Estimate the average row size for the table and for all implied indices */
|
|
_estimateTableWidth(tls, p)
|
|
pIdx = (*TTable)(unsafe.Pointer(p)).FpIndex
|
|
for {
|
|
if !(pIdx != 0) {
|
|
break
|
|
}
|
|
_estimateIndexWidth(tls, pIdx)
|
|
goto _3
|
|
_3:
|
|
;
|
|
pIdx = (*TIndex)(unsafe.Pointer(pIdx)).FpNext
|
|
}
|
|
/* If not initializing, then create a record for the new table
|
|
** in the schema table of the database.
|
|
**
|
|
** If this is a TEMPORARY table, write the entry into the auxiliary
|
|
** file instead of into the main database file.
|
|
*/
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0) { /* Text of the CREATE TABLE or CREATE VIEW statement */
|
|
v = _sqlite3GetVdbe(tls, pParse)
|
|
if v == uintptr(0) {
|
|
return
|
|
}
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_Close), 0)
|
|
/*
|
|
** Initialize zType for the new view or table.
|
|
*/
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(p)).FeTabType) == TABTYP_NORM {
|
|
/* A regular table */
|
|
zType = __ccgo_ts + 9381
|
|
zType2 = __ccgo_ts + 14586
|
|
} else {
|
|
/* A view */
|
|
zType = __ccgo_ts + 11119
|
|
zType2 = __ccgo_ts + 14592
|
|
}
|
|
/* If this is a CREATE TABLE xx AS SELECT ..., execute the SELECT
|
|
** statement to populate the new table. The root-page number for the
|
|
** new table is in register pParse->u1.cr.regRoot.
|
|
**
|
|
** Once the SELECT has been coded by sqlite3Select(), it is in a
|
|
** suitable state to query for the column names and types to be used
|
|
** by the new table.
|
|
**
|
|
** A shared-cache write-lock is not required to write to the new table,
|
|
** as a schema-lock must have already been obtained to create it. Since
|
|
** a schema-lock excludes all other database users, the write-lock would
|
|
** be redundant.
|
|
*/
|
|
if pSelect != 0 { /* Write cursor on the new table */
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) != PARSE_MODE_NORMAL {
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = int32(SQLITE_ERROR)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnErr = (*TParse)(unsafe.Pointer(pParse)).FnErr + 1
|
|
return
|
|
}
|
|
v5 = pParse + 56
|
|
v4 = *(*int32)(unsafe.Pointer(v5))
|
|
*(*int32)(unsafe.Pointer(v5)) = *(*int32)(unsafe.Pointer(v5)) + 1
|
|
iCsr = v4
|
|
v5 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v5)) = *(*int32)(unsafe.Pointer(v5)) + 1
|
|
v4 = *(*int32)(unsafe.Pointer(v5))
|
|
regYield = v4
|
|
v5 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v5)) = *(*int32)(unsafe.Pointer(v5)) + 1
|
|
v4 = *(*int32)(unsafe.Pointer(v5))
|
|
regRec = v4
|
|
v5 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v5)) = *(*int32)(unsafe.Pointer(v5)) + 1
|
|
v4 = *(*int32)(unsafe.Pointer(v5))
|
|
regRowid = v4
|
|
_sqlite3MayAbort(tls, pParse)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_OpenWrite), iCsr, (*(*struct {
|
|
FaddrCrTab int32
|
|
FregRowid int32
|
|
FregRoot int32
|
|
FconstraintName TToken
|
|
})(unsafe.Pointer(pParse + 256))).FregRoot, iDb)
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(OPFLAG_P2ISREG))
|
|
addrTop = _sqlite3VdbeCurrentAddr(tls, v) + int32(1)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_InitCoroutine), regYield, 0, addrTop)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
return
|
|
}
|
|
pSelTab = _sqlite3ResultSetOfSelect(tls, pParse, pSelect, int8(SQLITE_AFF_BLOB))
|
|
if pSelTab == uintptr(0) {
|
|
return
|
|
}
|
|
v12 = (*TTable)(unsafe.Pointer(pSelTab)).FnCol
|
|
(*TTable)(unsafe.Pointer(p)).FnNVCol = v12
|
|
(*TTable)(unsafe.Pointer(p)).FnCol = v12
|
|
(*TTable)(unsafe.Pointer(p)).FaCol = (*TTable)(unsafe.Pointer(pSelTab)).FaCol
|
|
(*TTable)(unsafe.Pointer(pSelTab)).FnCol = 0
|
|
(*TTable)(unsafe.Pointer(pSelTab)).FaCol = uintptr(0)
|
|
_sqlite3DeleteTable(tls, db, pSelTab)
|
|
_sqlite3SelectDestInit(tls, bp, int32(SRT_Coroutine), regYield)
|
|
_sqlite3Select(tls, pParse, pSelect, bp)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
return
|
|
}
|
|
_sqlite3VdbeEndCoroutine(tls, v, regYield)
|
|
_sqlite3VdbeJumpHere(tls, v, addrTop-int32(1))
|
|
addrInsLoop = _sqlite3VdbeAddOp1(tls, v, int32(OP_Yield), (**(**TSelectDest)(__ccgo_up(bp))).FiSDParm)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_MakeRecord), (**(**TSelectDest)(__ccgo_up(bp))).FiSdst, (**(**TSelectDest)(__ccgo_up(bp))).FnSdst, regRec)
|
|
_sqlite3TableAffinity(tls, v, p, 0)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_NewRowid), iCsr, regRowid)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Insert), iCsr, regRec, regRowid)
|
|
_sqlite3VdbeGoto(tls, v, addrInsLoop)
|
|
_sqlite3VdbeJumpHere(tls, v, addrInsLoop)
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_Close), iCsr)
|
|
}
|
|
/* Compute the complete text of the CREATE statement */
|
|
if pSelect != 0 {
|
|
zStmt = _createTableStmt(tls, db, p)
|
|
} else {
|
|
if tabOpts != 0 {
|
|
v5 = pParse + 288
|
|
} else {
|
|
v5 = pEnd
|
|
}
|
|
pEnd2 = v5
|
|
n = int32(int64((*TToken)(unsafe.Pointer(pEnd2)).Fz) - int64((*TParse)(unsafe.Pointer(pParse)).FsNameToken.Fz))
|
|
if int32(**(**int8)(__ccgo_up((*TToken)(unsafe.Pointer(pEnd2)).Fz))) != int32(';') {
|
|
n = libc.Int32FromUint32(uint32(n) + (*TToken)(unsafe.Pointer(pEnd2)).Fn)
|
|
}
|
|
zStmt = _sqlite3MPrintf(tls, db, __ccgo_ts+14597, libc.VaList(bp+48, zType2, n, (*TParse)(unsafe.Pointer(pParse)).FsNameToken.Fz))
|
|
}
|
|
/* A slot for the record has already been allocated in the
|
|
** schema table. We just need to update that slot with all
|
|
** the information we've collected.
|
|
*/
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+14612, libc.VaList(bp+48, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName, zType, (*TTable)(unsafe.Pointer(p)).FzName, (*TTable)(unsafe.Pointer(p)).FzName, (*(*struct {
|
|
FaddrCrTab int32
|
|
FregRowid int32
|
|
FregRoot int32
|
|
FconstraintName TToken
|
|
})(unsafe.Pointer(pParse + 256))).FregRoot, zStmt, (*(*struct {
|
|
FaddrCrTab int32
|
|
FregRowid int32
|
|
FregRoot int32
|
|
FconstraintName TToken
|
|
})(unsafe.Pointer(pParse + 256))).FregRowid))
|
|
_sqlite3DbFree(tls, db, zStmt)
|
|
_sqlite3ChangeCookie(tls, pParse, iDb)
|
|
/* Check to see if we need to create an sqlite_sequence table for
|
|
** keeping track of autoincrement keys.
|
|
*/
|
|
if (*TTable)(unsafe.Pointer(p)).FtabFlags&uint32(TF_Autoincrement) != uint32(0) && !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) != libc.Int32FromInt32(PARSE_MODE_NORMAL)) {
|
|
pDb = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32
|
|
if (*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).FpSeqTab == uintptr(0) {
|
|
_sqlite3NestedParse(tls, pParse, __ccgo_ts+14710, libc.VaList(bp+48, (*TDb)(unsafe.Pointer(pDb)).FzDbSName))
|
|
}
|
|
}
|
|
/* Reparse everything to update our internal data structures */
|
|
_sqlite3VdbeAddParseSchemaOp(tls, v, iDb, _sqlite3MPrintf(tls, db, __ccgo_ts+14752, libc.VaList(bp+48, (*TTable)(unsafe.Pointer(p)).FzName)), uint16(0))
|
|
/* Test for cycles in generated columns and illegal expressions
|
|
** in CHECK constraints and in DEFAULT clauses. */
|
|
if (*TTable)(unsafe.Pointer(p)).FtabFlags&uint32(TF_HasGenerated) != 0 {
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_SqlExec), int32(0x0001), 0, 0, _sqlite3MPrintf(tls, db, __ccgo_ts+14786, libc.VaList(bp+48, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName, (*TTable)(unsafe.Pointer(p)).FzName)), -int32(7))
|
|
}
|
|
}
|
|
/* Add the table to the in-memory representation of the database.
|
|
*/
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0 {
|
|
pSchema = (*TTable)(unsafe.Pointer(p)).FpSchema
|
|
pOld = _sqlite3HashInsert(tls, pSchema+8, (*TTable)(unsafe.Pointer(p)).FzName, p)
|
|
if pOld != 0 {
|
|
/* Malloc must have failed inside HashInsert() */
|
|
_sqlite3OomFault(tls, db)
|
|
return
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FpNewTable = uintptr(0)
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_SchemaChange)
|
|
/* If this is the magic sqlite_sequence table used by autoincrement,
|
|
** then record a pointer to this table in the main database structure
|
|
** so that INSERT can find the table easily. */
|
|
if libc.Xstrcmp(tls, (*TTable)(unsafe.Pointer(p)).FzName, __ccgo_ts+9903) == 0 {
|
|
(*TSchema)(unsafe.Pointer((*TTable)(unsafe.Pointer(p)).FpSchema)).FpSeqTab = p
|
|
}
|
|
}
|
|
if !(pSelect != 0) && libc.Int32FromUint8((*TTable)(unsafe.Pointer(p)).FeTabType) == TABTYP_NORM {
|
|
if (*TToken)(unsafe.Pointer(pCons)).Fz == uintptr(0) {
|
|
pCons = pEnd
|
|
}
|
|
(*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(p + 64))).FaddColOffset = int32(13) + int32(int64((*TToken)(unsafe.Pointer(pCons)).Fz)-int64((*TParse)(unsafe.Pointer(pParse)).FsNameToken.Fz))
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Assign a variable number to an expression that encodes a wildcard
|
|
// ** in the original SQL statement.
|
|
// **
|
|
// ** Wildcards consisting of a single "?" are assigned the next sequential
|
|
// ** variable number.
|
|
// **
|
|
// ** Wildcards of the form "?nnn" are assigned the number "nnn". We make
|
|
// ** sure "nnn" is not too big to avoid a denial of service attack when
|
|
// ** the SQL statement comes from an external source.
|
|
// **
|
|
// ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number
|
|
// ** as the previous instance of the same wildcard. Or if this is the first
|
|
// ** instance of the wildcard, the next sequential variable number is
|
|
// ** assigned.
|
|
// */
|
|
func _sqlite3ExprAssignVarNumber(tls *libc.TLS, pParse uintptr, pExpr uintptr, n Tu32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var bOk, doAdd int32
|
|
var db, z, v2 uintptr
|
|
var x, v1 TynVar
|
|
var _ /* i at bp+0 */ Ti64
|
|
_, _, _, _, _, _, _ = bOk, db, doAdd, x, z, v1, v2
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
if pExpr == uintptr(0) {
|
|
return
|
|
}
|
|
z = *(*uintptr)(unsafe.Pointer(pExpr + 8))
|
|
if int32(**(**int8)(__ccgo_up(z + 1))) == 0 {
|
|
/* Wildcard of the form "?". Assign the next variable number */
|
|
v2 = pParse + 304
|
|
*(*TynVar)(unsafe.Pointer(v2)) = *(*TynVar)(unsafe.Pointer(v2)) + 1
|
|
v1 = *(*TynVar)(unsafe.Pointer(v2))
|
|
x = v1
|
|
} else {
|
|
doAdd = 0
|
|
if int32(**(**int8)(__ccgo_up(z))) == int32('?') {
|
|
if n == uint32(2) { /*OPTIMIZATION-IF-TRUE*/
|
|
**(**Ti64)(__ccgo_up(bp)) = int64(int32(**(**int8)(__ccgo_up(z + 1))) - int32('0')) /* The common case of ?N for a single digit N */
|
|
bOk = int32(1)
|
|
} else {
|
|
bOk = libc.BoolInt32(0 == _sqlite3Atoi64(tls, z+1, bp, libc.Int32FromUint32(n-uint32(1)), uint8(SQLITE_UTF8)))
|
|
}
|
|
if bOk == 0 || **(**Ti64)(__ccgo_up(bp)) < int64(1) || **(**Ti64)(__ccgo_up(bp)) > int64(**(**int32)(__ccgo_up(db + 136 + 9*4))) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8063, libc.VaList(bp+16, **(**int32)(__ccgo_up(db + 136 + 9*4))))
|
|
_sqlite3RecordErrorOffsetOfExpr(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pExpr)
|
|
return
|
|
}
|
|
x = int16(**(**Ti64)(__ccgo_up(bp)))
|
|
if int32(x) > int32((*TParse)(unsafe.Pointer(pParse)).FnVar) {
|
|
(*TParse)(unsafe.Pointer(pParse)).FnVar = int16(int32(x))
|
|
doAdd = int32(1)
|
|
} else {
|
|
if _sqlite3VListNumToName(tls, (*TParse)(unsafe.Pointer(pParse)).FpVList, int32(x)) == uintptr(0) {
|
|
doAdd = int32(1)
|
|
}
|
|
}
|
|
} else {
|
|
/* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable
|
|
** number as the prior appearance of the same name, or if the name
|
|
** has never appeared before, reuse the same variable number
|
|
*/
|
|
x = int16(_sqlite3VListNameToNum(tls, (*TParse)(unsafe.Pointer(pParse)).FpVList, z, libc.Int32FromUint32(n)))
|
|
if int32(x) == 0 {
|
|
v2 = pParse + 304
|
|
*(*TynVar)(unsafe.Pointer(v2)) = *(*TynVar)(unsafe.Pointer(v2)) + 1
|
|
v1 = *(*TynVar)(unsafe.Pointer(v2))
|
|
x = v1
|
|
doAdd = int32(1)
|
|
}
|
|
}
|
|
if doAdd != 0 {
|
|
(*TParse)(unsafe.Pointer(pParse)).FpVList = _sqlite3VListAdd(tls, db, (*TParse)(unsafe.Pointer(pParse)).FpVList, z, libc.Int32FromUint32(n), int32(x))
|
|
}
|
|
}
|
|
(*TExpr)(unsafe.Pointer(pExpr)).FiColumn = x
|
|
if int32(x) > **(**int32)(__ccgo_up(db + 136 + 9*4)) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8106, 0)
|
|
_sqlite3RecordErrorOffsetOfExpr(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pExpr)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate code into the current Vdbe to evaluate the given
|
|
// ** expression. Attempt to store the results in register "target".
|
|
// ** Return the register where results are stored.
|
|
// **
|
|
// ** With this routine, there is no guarantee that results will
|
|
// ** be stored in target. The result might be stored in some other
|
|
// ** register if it is convenient to do so. The calling function
|
|
// ** must check the return code and move the results to the desired
|
|
// ** register.
|
|
// */
|
|
func _sqlite3ExprCodeTarget(tls *libc.TLS, pParse uintptr, pExpr uintptr, target int32) (r int32) {
|
|
bp := tls.Alloc(192)
|
|
defer tls.Free(192)
|
|
var aListelem, db, db1, pAggInfo, pAggInfo1, pCol, pCol1, pColl, pDef, pDel, pEList, pFarg, pInfo, pLeft, pLeft1, pLeft2, pTab, pTab1, pTab2, pTest, pX, v, z, zBlob, zId, v3 uintptr
|
|
var addr, addrINR, addrIsNull, addrIsNull1, aff, bNormal, destIfFalse, destIfNull, endLabel, i, i1, iCol, iCol1, iReg, iSrc, iTab, inReg, isTrue, n, n1, nCol, nExpr, nFarg, nextCase, op, p1, p5, v1 int32
|
|
var constMask Tu32
|
|
var enc, exprOp, okConstFactor Tu8
|
|
var v2 bool
|
|
var _ /* opCompare at bp+88 */ TExpr
|
|
var _ /* r1 at bp+8 */ int32
|
|
var _ /* r2 at bp+12 */ int32
|
|
var _ /* regFree1 at bp+0 */ int32
|
|
var _ /* regFree2 at bp+4 */ int32
|
|
var _ /* tempX at bp+16 */ TExpr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = aListelem, addr, addrINR, addrIsNull, addrIsNull1, aff, bNormal, constMask, db, db1, destIfFalse, destIfNull, enc, endLabel, exprOp, i, i1, iCol, iCol1, iReg, iSrc, iTab, inReg, isTrue, n, n1, nCol, nExpr, nFarg, nextCase, okConstFactor, op, p1, p5, pAggInfo, pAggInfo1, pCol, pCol1, pColl, pDef, pDel, pEList, pFarg, pInfo, pLeft, pLeft1, pLeft2, pTab, pTab1, pTab2, pTest, pX, v, z, zBlob, zId, v1, v2, v3
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe /* The opcode being coded */
|
|
inReg = target /* Results stored in register inReg */
|
|
**(**int32)(__ccgo_up(bp)) = 0 /* If non-zero free this temporary register */
|
|
**(**int32)(__ccgo_up(bp + 4)) = 0 /* Temporary expression node */
|
|
p5 = 0
|
|
goto expr_code_doover
|
|
expr_code_doover:
|
|
;
|
|
if pExpr == uintptr(0) {
|
|
op = int32(TK_NULL)
|
|
} else {
|
|
if v2 = (*TParse)(unsafe.Pointer(pParse)).FpIdxEpr != uintptr(0) && !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Leaf)) != libc.Uint32FromInt32(0)); v2 {
|
|
v1 = _sqlite3IndexedExprLookup(tls, pParse, pExpr, target)
|
|
**(**int32)(__ccgo_up(bp + 8)) = v1
|
|
}
|
|
if v2 && v1 >= 0 {
|
|
return **(**int32)(__ccgo_up(bp + 8))
|
|
} else {
|
|
op = libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop)
|
|
}
|
|
}
|
|
switch op {
|
|
case int32(TK_AGG_COLUMN):
|
|
pAggInfo = (*TExpr)(unsafe.Pointer(pExpr)).FpAggInfo
|
|
if int32((*TExpr)(unsafe.Pointer(pExpr)).FiAgg) >= (*TAggInfo)(unsafe.Pointer(pAggInfo)).FnColumn {
|
|
/* Happens when the left table of a RIGHT JOIN is null and
|
|
** is using an expression index */
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
break
|
|
}
|
|
pCol = (*TAggInfo)(unsafe.Pointer(pAggInfo)).FaCol + uintptr((*TExpr)(unsafe.Pointer(pExpr)).FiAgg)*32
|
|
if !((*TAggInfo)(unsafe.Pointer(pAggInfo)).FdirectMode != 0) {
|
|
return (*TAggInfo)(unsafe.Pointer(pAggInfo)).FiFirstReg + int32((*TExpr)(unsafe.Pointer(pExpr)).FiAgg)
|
|
} else {
|
|
if (*TAggInfo)(unsafe.Pointer(pAggInfo)).FuseSortingIdx != 0 {
|
|
pTab = (*TAggInfo_col)(unsafe.Pointer(pCol)).FpTab
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), (*TAggInfo)(unsafe.Pointer(pAggInfo)).FsortingIdxPTab, (*TAggInfo_col)(unsafe.Pointer(pCol)).FiSorterColumn, target)
|
|
if pTab == uintptr(0) {
|
|
/* No comment added */
|
|
} else {
|
|
if (*TAggInfo_col)(unsafe.Pointer(pCol)).FiColumn < 0 {
|
|
} else {
|
|
if int32((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr((*TAggInfo_col)(unsafe.Pointer(pCol)).FiColumn)*16))).Faffinity) == int32(SQLITE_AFF_REAL) {
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_RealAffinity), target)
|
|
}
|
|
}
|
|
}
|
|
return target
|
|
} else {
|
|
if *(*uintptr)(unsafe.Pointer(pExpr + 64)) == uintptr(0) {
|
|
/* This case happens when the argument to an aggregate function
|
|
** is rewritten by aggregateConvertIndexedExprRefToColumn() */
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), (*TExpr)(unsafe.Pointer(pExpr)).FiTable, int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn), target)
|
|
return target
|
|
}
|
|
}
|
|
}
|
|
/* Otherwise, fall thru into the TK_COLUMN case */
|
|
fallthrough
|
|
case int32(TK_COLUMN):
|
|
iTab = (*TExpr)(unsafe.Pointer(pExpr)).FiTable
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_FixedCol)) != uint32(0) {
|
|
iReg = _sqlite3ExprCodeTarget(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, target)
|
|
aff = int32(_sqlite3TableColumnAffinity(tls, *(*uintptr)(unsafe.Pointer(pExpr + 64)), int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn)))
|
|
if aff > int32(SQLITE_AFF_BLOB) {
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_Affinity), iReg, int32(1), 0, uintptr(unsafe.Pointer(&_zAff))+uintptr((aff-int32('B'))*int32(2)), -int32(1))
|
|
}
|
|
return iReg
|
|
}
|
|
if iTab < 0 {
|
|
if (*TParse)(unsafe.Pointer(pParse)).FiSelfTab < 0 {
|
|
iCol = int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn)
|
|
pTab1 = *(*uintptr)(unsafe.Pointer(pExpr + 64))
|
|
if iCol < 0 {
|
|
return -int32(1) - (*TParse)(unsafe.Pointer(pParse)).FiSelfTab
|
|
}
|
|
pCol1 = (*TTable)(unsafe.Pointer(pTab1)).FaCol + uintptr(iCol)*16
|
|
iSrc = int32(_sqlite3TableColumnToStorage(tls, pTab1, int16(iCol))) - (*TParse)(unsafe.Pointer(pParse)).FiSelfTab
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol1)).FcolFlags)&int32(COLFLAG_GENERATED) != 0 {
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol1)).FcolFlags)&int32(COLFLAG_BUSY) != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8456, libc.VaList(bp+168, (*TColumn)(unsafe.Pointer(pCol1)).FzCnName))
|
|
return 0
|
|
}
|
|
v3 = pCol1 + 14
|
|
*(*Tu16)(unsafe.Pointer(v3)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v3))) | libc.Int32FromInt32(COLFLAG_BUSY))
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol1)).FcolFlags)&int32(COLFLAG_NOTAVAIL) != 0 {
|
|
_sqlite3ExprCodeGeneratedColumn(tls, pParse, pTab1, pCol1, iSrc)
|
|
}
|
|
v3 = pCol1 + 14
|
|
*(*Tu16)(unsafe.Pointer(v3)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v3))) & ^(libc.Int32FromInt32(COLFLAG_BUSY) | libc.Int32FromInt32(COLFLAG_NOTAVAIL)))
|
|
return iSrc
|
|
} else {
|
|
if int32((*TColumn)(unsafe.Pointer(pCol1)).Faffinity) == int32(SQLITE_AFF_REAL) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_SCopy), iSrc, target)
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_RealAffinity), target)
|
|
return target
|
|
} else {
|
|
return iSrc
|
|
}
|
|
}
|
|
} else {
|
|
/* Coding an expression that is part of an index where column names
|
|
** in the index refer to the table to which the index belongs */
|
|
iTab = (*TParse)(unsafe.Pointer(pParse)).FiSelfTab - int32(1)
|
|
}
|
|
} else {
|
|
if v2 = (*TParse)(unsafe.Pointer(pParse)).FpIdxPartExpr != 0; v2 {
|
|
v1 = _exprPartidxExprLookup(tls, pParse, pExpr, target)
|
|
**(**int32)(__ccgo_up(bp + 8)) = v1
|
|
}
|
|
if v2 && 0 != v1 {
|
|
return **(**int32)(__ccgo_up(bp + 8))
|
|
}
|
|
}
|
|
iReg = _sqlite3ExprCodeGetColumn(tls, pParse, *(*uintptr)(unsafe.Pointer(pExpr + 64)), int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn), iTab, target, (*TExpr)(unsafe.Pointer(pExpr)).Fop2)
|
|
return iReg
|
|
case int32(TK_INTEGER):
|
|
_codeInteger(tls, pParse, pExpr, 0, target)
|
|
return target
|
|
case int32(TK_TRUEFALSE):
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), _sqlite3ExprTruthValue(tls, pExpr), target)
|
|
return target
|
|
case int32(TK_FLOAT):
|
|
_codeReal(tls, v, *(*uintptr)(unsafe.Pointer(pExpr + 8)), 0, target)
|
|
return target
|
|
case int32(TK_STRING):
|
|
_sqlite3VdbeLoadString(tls, v, target, *(*uintptr)(unsafe.Pointer(pExpr + 8)))
|
|
return target
|
|
case int32(TK_NULLS):
|
|
/* Set a range of registers to NULL. pExpr->y.nReg registers starting
|
|
** with target */
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Null), 0, target, target+*(*int32)(unsafe.Pointer(&(*TExpr)(unsafe.Pointer(pExpr)).Fy))-int32(1))
|
|
return target
|
|
default:
|
|
/* Make NULL the default case so that if a bug causes an illegal
|
|
** Expr node to be passed into this function, it will be handled
|
|
** sanely and not crash. But keep the assert() to bring the problem
|
|
** to the attention of the developers. */
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
return target
|
|
case int32(TK_BLOB):
|
|
z = *(*uintptr)(unsafe.Pointer(pExpr + 8)) + 2
|
|
n = _sqlite3Strlen30(tls, z) - int32(1)
|
|
zBlob = _sqlite3HexToBlob(tls, _sqlite3VdbeDb(tls, v), z, n)
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_Blob), n/int32(2), target, 0, zBlob, -int32(7))
|
|
return target
|
|
case int32(TK_VARIABLE):
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Variable), int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn), target)
|
|
return target
|
|
case int32(TK_REGISTER):
|
|
return (*TExpr)(unsafe.Pointer(pExpr)).FiTable
|
|
case int32(TK_CAST):
|
|
/* Expressions of the form: CAST(pLeft AS token) */
|
|
_sqlite3ExprCode(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, target)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Cast), target, int32(_sqlite3AffinityType(tls, *(*uintptr)(unsafe.Pointer(pExpr + 8)), uintptr(0))))
|
|
return inReg
|
|
case int32(TK_IS):
|
|
fallthrough
|
|
case int32(TK_ISNOT):
|
|
if op == int32(TK_IS) {
|
|
v1 = int32(TK_EQ)
|
|
} else {
|
|
v1 = int32(TK_NE)
|
|
}
|
|
op = v1
|
|
p5 = int32(SQLITE_NULLEQ)
|
|
fallthrough
|
|
case int32(TK_LT):
|
|
fallthrough
|
|
case int32(TK_LE):
|
|
fallthrough
|
|
case int32(TK_GT):
|
|
fallthrough
|
|
case int32(TK_GE):
|
|
fallthrough
|
|
case int32(TK_NE):
|
|
fallthrough
|
|
case int32(TK_EQ):
|
|
pLeft = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
addrIsNull = 0
|
|
if _sqlite3ExprIsVector(tls, pLeft) != 0 {
|
|
_codeVectorCompare(tls, pParse, pExpr, target, libc.Uint8FromInt32(op), libc.Uint8FromInt32(p5))
|
|
} else {
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subquery)) != uint32(0) && p5 != int32(SQLITE_NULLEQ) {
|
|
addrIsNull = _exprComputeOperands(tls, pParse, pExpr, bp+8, bp+12, bp, bp+4)
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp)
|
|
**(**int32)(__ccgo_up(bp + 12)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpRight, bp+4)
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), int32(1), inReg)
|
|
_codeCompare(tls, pParse, pLeft, (*TExpr)(unsafe.Pointer(pExpr)).FpRight, op, **(**int32)(__ccgo_up(bp + 8)), **(**int32)(__ccgo_up(bp + 12)), _sqlite3VdbeCurrentAddr(tls, v)+int32(2), p5, libc.BoolInt32((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Commuted)) != uint32(0)))
|
|
if p5 == int32(SQLITE_NULLEQ) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), 0, inReg)
|
|
} else {
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_ZeroOrNull), **(**int32)(__ccgo_up(bp + 8)), inReg, **(**int32)(__ccgo_up(bp + 12)))
|
|
if addrIsNull != 0 {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Goto), 0, _sqlite3VdbeCurrentAddr(tls, v)+int32(2))
|
|
_sqlite3VdbeJumpHere(tls, v, addrIsNull)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, inReg)
|
|
}
|
|
}
|
|
}
|
|
case int32(TK_AND):
|
|
fallthrough
|
|
case int32(TK_OR):
|
|
inReg = _exprCodeTargetAndOr(tls, pParse, pExpr, target, bp)
|
|
case int32(TK_PLUS):
|
|
fallthrough
|
|
case int32(TK_STAR):
|
|
fallthrough
|
|
case int32(TK_MINUS):
|
|
fallthrough
|
|
case int32(TK_REM):
|
|
fallthrough
|
|
case int32(TK_BITAND):
|
|
fallthrough
|
|
case int32(TK_BITOR):
|
|
fallthrough
|
|
case int32(TK_SLASH):
|
|
fallthrough
|
|
case int32(TK_LSHIFT):
|
|
fallthrough
|
|
case int32(TK_RSHIFT):
|
|
fallthrough
|
|
case int32(TK_CONCAT):
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Subquery)) != uint32(0) {
|
|
addrIsNull1 = _exprComputeOperands(tls, pParse, pExpr, bp+8, bp+12, bp, bp+4)
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp)
|
|
**(**int32)(__ccgo_up(bp + 12)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpRight, bp+4)
|
|
addrIsNull1 = 0
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, op, **(**int32)(__ccgo_up(bp + 12)), **(**int32)(__ccgo_up(bp + 8)), target)
|
|
if addrIsNull1 != 0 {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Goto), 0, _sqlite3VdbeCurrentAddr(tls, v)+int32(2))
|
|
_sqlite3VdbeJumpHere(tls, v, addrIsNull1)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
}
|
|
case int32(TK_UMINUS):
|
|
pLeft1 = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pLeft1)).Fop) == int32(TK_INTEGER) {
|
|
_codeInteger(tls, pParse, pLeft1, int32(1), target)
|
|
return target
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pLeft1)).Fop) == int32(TK_FLOAT) {
|
|
_codeReal(tls, v, *(*uintptr)(unsafe.Pointer(pLeft1 + 8)), int32(1), target)
|
|
return target
|
|
} else {
|
|
(**(**TExpr)(__ccgo_up(bp + 16))).Fop = uint8(TK_INTEGER)
|
|
(**(**TExpr)(__ccgo_up(bp + 16))).Fflags = libc.Uint32FromInt32(libc.Int32FromInt32(EP_IntValue) | libc.Int32FromInt32(EP_TokenOnly))
|
|
*(*int32)(unsafe.Pointer(bp + 16 + 8)) = 0
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, bp+16, bp)
|
|
**(**int32)(__ccgo_up(bp + 12)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp+4)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Subtract), **(**int32)(__ccgo_up(bp + 12)), **(**int32)(__ccgo_up(bp + 8)), target)
|
|
}
|
|
}
|
|
case int32(TK_BITNOT):
|
|
fallthrough
|
|
case int32(TK_NOT):
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp)
|
|
_sqlite3VdbeAddOp2(tls, v, op, **(**int32)(__ccgo_up(bp + 8)), inReg)
|
|
case int32(TK_TRUTH): /* IS TRUE or IS FALSE */
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp)
|
|
isTrue = _sqlite3ExprTruthValue(tls, (*TExpr)(unsafe.Pointer(pExpr)).FpRight)
|
|
bNormal = libc.BoolInt32(libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop2) == int32(TK_IS))
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IsTrue), **(**int32)(__ccgo_up(bp + 8)), inReg, libc.BoolInt32(!(isTrue != 0)), isTrue^bNormal)
|
|
case int32(TK_ISNULL):
|
|
fallthrough
|
|
case int32(TK_NOTNULL):
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), int32(1), target)
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp)
|
|
addr = _sqlite3VdbeAddOp1(tls, v, op, **(**int32)(__ccgo_up(bp + 8)))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), 0, target)
|
|
_sqlite3VdbeJumpHere(tls, v, addr)
|
|
case int32(TK_AGG_FUNCTION):
|
|
pInfo = (*TExpr)(unsafe.Pointer(pExpr)).FpAggInfo
|
|
if pInfo == uintptr(0) || int32((*TExpr)(unsafe.Pointer(pExpr)).FiAgg) < 0 || int32((*TExpr)(unsafe.Pointer(pExpr)).FiAgg) >= (*TAggInfo)(unsafe.Pointer(pInfo)).FnFunc {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8517, libc.VaList(bp+168, pExpr))
|
|
} else {
|
|
return (*TAggInfo)(unsafe.Pointer(pInfo)).FiFirstReg + (*TAggInfo)(unsafe.Pointer(pInfo)).FnColumn + int32((*TExpr)(unsafe.Pointer(pExpr)).FiAgg)
|
|
}
|
|
case int32(TK_FUNCTION): /* The function name */
|
|
constMask = uint32(0) /* Loop counter */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* The database connection */
|
|
enc = (*Tsqlite3)(unsafe.Pointer(db)).Fenc /* The text encoding used by this database */
|
|
pColl = uintptr(0) /* A collating sequence */
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_WinFunc)) != uint32(0) {
|
|
return (*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 64)))).FregResult
|
|
}
|
|
if int32(Tbft(*(*uint16)(unsafe.Pointer(pParse + 40))&0x80>>7)) != 0 && _sqlite3ExprIsConstantNotJoin(tls, pParse, pExpr) != 0 {
|
|
/* SQL functions can be expensive. So try to avoid running them
|
|
** multiple times if we know they always give the same result */
|
|
return _sqlite3ExprCodeRunJustOnce(tls, pParse, pExpr, -int32(1))
|
|
}
|
|
pFarg = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
if pFarg != 0 {
|
|
v1 = (*TExprList)(unsafe.Pointer(pFarg)).FnExpr
|
|
} else {
|
|
v1 = 0
|
|
}
|
|
nFarg = v1
|
|
zId = *(*uintptr)(unsafe.Pointer(pExpr + 8))
|
|
pDef = _sqlite3FindFunction(tls, db, zId, nFarg, enc, uint8(0))
|
|
if pDef == uintptr(0) || (*TFuncDef)(unsafe.Pointer(pDef)).FxFinalize != uintptr(0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8544, libc.VaList(bp+168, pExpr))
|
|
break
|
|
}
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_INLINE) != uint32(0) && pFarg != uintptr(0) {
|
|
return _exprCodeInlineFunction(tls, pParse, pFarg, int32(int64((*TFuncDef)(unsafe.Pointer(pDef)).FpUserData)), target)
|
|
} else {
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_FUNC_DIRECT)|libc.Int32FromInt32(SQLITE_FUNC_UNSAFE)) != 0 {
|
|
_sqlite3ExprFunctionUsable(tls, pParse, pExpr, pDef)
|
|
}
|
|
}
|
|
i = 0
|
|
for {
|
|
if !(i < nFarg) {
|
|
break
|
|
}
|
|
if i < int32(32) && _sqlite3ExprIsConstant(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + uintptr(i)*32))).FpExpr) != 0 {
|
|
constMask = constMask | libc.Uint32FromInt32(1)<<i
|
|
}
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_NEEDCOLL) != uint32(0) && !(pColl != 0) {
|
|
pColl = _sqlite3ExprCollSeq(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + uintptr(i)*32))).FpExpr)
|
|
}
|
|
goto _9
|
|
_9:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if pFarg != 0 {
|
|
if constMask != 0 {
|
|
**(**int32)(__ccgo_up(bp + 8)) = (*TParse)(unsafe.Pointer(pParse)).FnMem + int32(1)
|
|
**(**int32)(__ccgo_up(pParse + 60)) += nFarg
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3GetTempRange(tls, pParse, nFarg)
|
|
}
|
|
/* For length() and typeof() and octet_length() functions,
|
|
** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG
|
|
** or OPFLAG_TYPEOFARG or OPFLAG_BYTELENARG respectively, to avoid
|
|
** unnecessary data loading.
|
|
*/
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_FUNC_LENGTH)|libc.Int32FromInt32(SQLITE_FUNC_TYPEOF)) != uint32(0) {
|
|
exprOp = (*TExpr)(unsafe.Pointer((*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr)).Fop
|
|
if libc.Int32FromUint8(exprOp) == int32(TK_COLUMN) || libc.Int32FromUint8(exprOp) == int32(TK_AGG_COLUMN) {
|
|
(*TExpr)(unsafe.Pointer((*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr)).Fop2 = uint8((*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags & uint32(OPFLAG_BYTELENARG))
|
|
}
|
|
}
|
|
_sqlite3ExprCodeExprList(tls, pParse, pFarg, **(**int32)(__ccgo_up(bp + 8)), 0, uint8(SQLITE_ECEL_FACTOR))
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 8)) = 0
|
|
}
|
|
/* Possibly overload the function if the first argument is
|
|
** a virtual table column.
|
|
**
|
|
** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
|
|
** second argument, not the first, as the argument to test to
|
|
** see if it is a column in a virtual table. This is done because
|
|
** the left operand of infix functions (the operand we want to
|
|
** control overloading) ends up as the second argument to the
|
|
** function. The expression "A glob B" is equivalent to
|
|
** "glob(B,A). We want to use the A in "A glob B" to test
|
|
** for function overloading. But we use the B term in "glob(B,A)".
|
|
*/
|
|
if nFarg >= int32(2) && (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_InfixFunc)) != uint32(0) {
|
|
pDef = _sqlite3VtabOverloadFunction(tls, db, pDef, nFarg, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8 + 1*32))).FpExpr)
|
|
} else {
|
|
if nFarg > 0 {
|
|
pDef = _sqlite3VtabOverloadFunction(tls, db, pDef, nFarg, (*(*TExprList_item)(unsafe.Pointer(pFarg + 8))).FpExpr)
|
|
}
|
|
}
|
|
if (*TFuncDef)(unsafe.Pointer(pDef)).FfuncFlags&uint32(SQLITE_FUNC_NEEDCOLL) != 0 {
|
|
if !(pColl != 0) {
|
|
pColl = (*Tsqlite3)(unsafe.Pointer(db)).FpDfltColl
|
|
}
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_CollSeq), 0, 0, 0, pColl, -int32(2))
|
|
}
|
|
_sqlite3VdbeAddFunctionCall(tls, pParse, libc.Int32FromUint32(constMask), **(**int32)(__ccgo_up(bp + 8)), target, nFarg, pDef, libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop2))
|
|
if nFarg != 0 {
|
|
if constMask == uint32(0) {
|
|
_sqlite3ReleaseTempRange(tls, pParse, **(**int32)(__ccgo_up(bp + 8)), nFarg)
|
|
} else {
|
|
}
|
|
}
|
|
return target
|
|
case int32(TK_EXISTS):
|
|
fallthrough
|
|
case int32(TK_SELECT):
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmallocFailed != 0 {
|
|
return 0
|
|
} else {
|
|
if v2 = op == int32(TK_SELECT) && (*TExpr)(unsafe.Pointer(pExpr)).Fflags&uint32(EP_xIsSelect) != uint32(0); v2 {
|
|
v1 = (*TExprList)(unsafe.Pointer((*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pExpr + 32)))).FpEList)).FnExpr
|
|
nCol = v1
|
|
}
|
|
if v2 && v1 != int32(1) {
|
|
_sqlite3SubselectError(tls, pParse, nCol, int32(1))
|
|
} else {
|
|
return _sqlite3CodeSubselect(tls, pParse, pExpr)
|
|
}
|
|
}
|
|
case int32(TK_SELECT_COLUMN):
|
|
pLeft2 = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
if (*TExpr)(unsafe.Pointer(pLeft2)).FiTable == 0 || libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FwithinRJSubrtn) > libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pLeft2)).Fop2) {
|
|
(*TExpr)(unsafe.Pointer(pLeft2)).FiTable = _sqlite3CodeSubselect(tls, pParse, pLeft2)
|
|
(*TExpr)(unsafe.Pointer(pLeft2)).Fop2 = (*TParse)(unsafe.Pointer(pParse)).FwithinRJSubrtn
|
|
}
|
|
n1 = _sqlite3ExprVectorSize(tls, pLeft2)
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).FiTable != n1 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8129, libc.VaList(bp+168, (*TExpr)(unsafe.Pointer(pExpr)).FiTable, n1))
|
|
}
|
|
return (*TExpr)(unsafe.Pointer(pLeft2)).FiTable + int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn)
|
|
case int32(TK_IN):
|
|
destIfFalse = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
destIfNull = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
_sqlite3ExprCodeIN(tls, pParse, pExpr, destIfFalse, destIfNull)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), int32(1), target)
|
|
_sqlite3VdbeResolveLabel(tls, v, destIfFalse)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_AddImm), target, 0)
|
|
_sqlite3VdbeResolveLabel(tls, v, destIfNull)
|
|
return target
|
|
/*
|
|
** x BETWEEN y AND z
|
|
**
|
|
** This is equivalent to
|
|
**
|
|
** x>=y AND x<=z
|
|
**
|
|
** X is stored in pExpr->pLeft.
|
|
** Y is stored in pExpr->pList->a[0].pExpr.
|
|
** Z is stored in pExpr->pList->a[1].pExpr.
|
|
*/
|
|
fallthrough
|
|
case int32(TK_BETWEEN):
|
|
_exprCodeBetween(tls, pParse, pExpr, target, uintptr(0), 0)
|
|
return target
|
|
case int32(TK_COLLATE):
|
|
if !((*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_Collate)) != libc.Uint32FromInt32(0)) {
|
|
/* A TK_COLLATE Expr node without the EP_Collate tag is a so-called
|
|
** "SOFT-COLLATE" that is added to constraints that are pushed down
|
|
** from outer queries into sub-queries by the WHERE-clause push-down
|
|
** optimization. Clear subtypes as subtypes may not cross a subquery
|
|
** boundary.
|
|
*/
|
|
_sqlite3ExprCode(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, target)
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_ClrSubtype), target)
|
|
return target
|
|
} else {
|
|
pExpr = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
goto expr_code_doover /* 2018-04-28: Prevent deep recursion. */
|
|
}
|
|
fallthrough
|
|
case int32(TK_SPAN):
|
|
fallthrough
|
|
case int32(TK_UPLUS):
|
|
pExpr = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
goto expr_code_doover /* 2018-04-28: Prevent deep recursion. OSSFuzz. */
|
|
case int32(TK_TRIGGER):
|
|
pTab2 = *(*uintptr)(unsafe.Pointer(pExpr + 64))
|
|
iCol1 = int32((*TExpr)(unsafe.Pointer(pExpr)).FiColumn)
|
|
p1 = (*TExpr)(unsafe.Pointer(pExpr)).FiTable*(int32((*TTable)(unsafe.Pointer(pTab2)).FnCol)+int32(1)) + int32(1) + int32(_sqlite3TableColumnToStorage(tls, pTab2, int16(iCol1)))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Param), p1, target)
|
|
/* If the column has REAL affinity, it may currently be stored as an
|
|
** integer. Use OP_RealAffinity to make sure it is really real.
|
|
**
|
|
** EVIDENCE-OF: R-60985-57662 SQLite will convert the value back to
|
|
** floating point when extracting it from the record. */
|
|
if iCol1 >= 0 && int32((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab2)).FaCol + uintptr(iCol1)*16))).Faffinity) == int32(SQLITE_AFF_REAL) {
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_RealAffinity), target)
|
|
}
|
|
case int32(TK_VECTOR):
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+6912, 0)
|
|
break
|
|
/* TK_IF_NULL_ROW Expr nodes are inserted ahead of expressions
|
|
** that derive from the right-hand table of a LEFT JOIN. The
|
|
** Expr.iTable value is the table number for the right-hand table.
|
|
** The expression is only evaluated if that table is not currently
|
|
** on a LEFT JOIN NULL row.
|
|
*/
|
|
fallthrough
|
|
case int32(TK_IF_NULL_ROW):
|
|
okConstFactor = libc.Uint8FromInt32(int32(Tbft(*(*uint16)(unsafe.Pointer(pParse + 40)) & 0x80 >> 7)))
|
|
pAggInfo1 = (*TExpr)(unsafe.Pointer(pExpr)).FpAggInfo
|
|
if pAggInfo1 != 0 {
|
|
if !((*TAggInfo)(unsafe.Pointer(pAggInfo1)).FdirectMode != 0) {
|
|
inReg = (*TAggInfo)(unsafe.Pointer(pAggInfo1)).FiFirstReg + int32((*TExpr)(unsafe.Pointer(pExpr)).FiAgg)
|
|
break
|
|
}
|
|
if (*TAggInfo)(unsafe.Pointer((*TExpr)(unsafe.Pointer(pExpr)).FpAggInfo)).FuseSortingIdx != 0 {
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), (*TAggInfo)(unsafe.Pointer(pAggInfo1)).FsortingIdxPTab, (**(**TAggInfo_col)(__ccgo_up((*TAggInfo)(unsafe.Pointer(pAggInfo1)).FaCol + uintptr((*TExpr)(unsafe.Pointer(pExpr)).FiAgg)*32))).FiSorterColumn, target)
|
|
inReg = target
|
|
break
|
|
}
|
|
}
|
|
addrINR = _sqlite3VdbeAddOp3(tls, v, int32(OP_IfNullRow), (*TExpr)(unsafe.Pointer(pExpr)).FiTable, 0, target)
|
|
/* The OP_IfNullRow opcode above can overwrite the result register with
|
|
** NULL. So we have to ensure that the result register is not a value
|
|
** that is suppose to be a constant. Two defenses are needed:
|
|
** (1) Temporarily disable factoring of constant expressions
|
|
** (2) Make sure the computed value really is stored in register
|
|
** "target" and not someplace else.
|
|
*/
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, libc.Uint32FromInt32(0), 7, 0x80) /* note (1) above */
|
|
_sqlite3ExprCode(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, target)
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, uint32(okConstFactor), 7, 0x80)
|
|
_sqlite3VdbeJumpHere(tls, v, addrINR)
|
|
break
|
|
/*
|
|
** Form A:
|
|
** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
|
|
**
|
|
** Form B:
|
|
** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
|
|
**
|
|
** Form A is can be transformed into the equivalent form B as follows:
|
|
** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
|
|
** WHEN x=eN THEN rN ELSE y END
|
|
**
|
|
** X (if it exists) is in pExpr->pLeft.
|
|
** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is
|
|
** odd. The Y is also optional. If the number of elements in x.pList
|
|
** is even, then Y is omitted and the "otherwise" result is NULL.
|
|
** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1].
|
|
**
|
|
** The result of the expression is the Ri for the first matching Ei,
|
|
** or if there is no matching Ei, the ELSE term Y, or if there is
|
|
** no ELSE term, NULL.
|
|
*/
|
|
fallthrough
|
|
case int32(TK_CASE): /* The X expression */
|
|
pTest = uintptr(0) /* X==Ei (form A) or just Ei (form B) */
|
|
pDel = uintptr(0)
|
|
db1 = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
pEList = *(*uintptr)(unsafe.Pointer(pExpr + 32))
|
|
aListelem = pEList + 8
|
|
nExpr = (*TExprList)(unsafe.Pointer(pEList)).FnExpr
|
|
endLabel = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
v3 = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
pX = v3
|
|
if v3 != uintptr(0) {
|
|
pDel = _sqlite3ExprDup(tls, db1, pX, 0)
|
|
if (*Tsqlite3)(unsafe.Pointer(db1)).FmallocFailed != 0 {
|
|
_sqlite3ExprDelete(tls, db1, pDel)
|
|
break
|
|
}
|
|
_sqlite3ExprToRegister(tls, pDel, _exprCodeVector(tls, pParse, pDel, bp))
|
|
libc.Xmemset(tls, bp+88, 0, uint64(72))
|
|
(**(**TExpr)(__ccgo_up(bp + 88))).Fop = uint8(TK_EQ)
|
|
(**(**TExpr)(__ccgo_up(bp + 88))).FpLeft = pDel
|
|
pTest = bp + 88
|
|
/* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001:
|
|
** The value in regFree1 might get SCopy-ed into the file result.
|
|
** So make sure that the regFree1 register is not reused for other
|
|
** purposes and possibly overwritten. */
|
|
**(**int32)(__ccgo_up(bp)) = 0
|
|
}
|
|
i1 = 0
|
|
for {
|
|
if !(i1 < nExpr-int32(1)) {
|
|
break
|
|
}
|
|
if pX != 0 {
|
|
(**(**TExpr)(__ccgo_up(bp + 88))).FpRight = (**(**TExprList_item)(__ccgo_up(aListelem + uintptr(i1)*32))).FpExpr
|
|
} else {
|
|
pTest = (**(**TExprList_item)(__ccgo_up(aListelem + uintptr(i1)*32))).FpExpr
|
|
}
|
|
nextCase = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
_sqlite3ExprIfFalse(tls, pParse, pTest, nextCase, int32(SQLITE_JUMPIFNULL))
|
|
_sqlite3ExprCode(tls, pParse, (**(**TExprList_item)(__ccgo_up(aListelem + uintptr(i1+int32(1))*32))).FpExpr, target)
|
|
_sqlite3VdbeGoto(tls, v, endLabel)
|
|
_sqlite3VdbeResolveLabel(tls, v, nextCase)
|
|
goto _13
|
|
_13:
|
|
;
|
|
i1 = i1 + int32(2)
|
|
}
|
|
if nExpr&int32(1) != 0 {
|
|
_sqlite3ExprCode(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pEList + 8 + uintptr(nExpr-int32(1))*32))).FpExpr, target)
|
|
} else {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, target)
|
|
}
|
|
_sqlite3ExprDelete(tls, db1, pDel)
|
|
_setDoNotMergeFlagOnCopy(tls, v)
|
|
_sqlite3VdbeResolveLabel(tls, v, endLabel)
|
|
case int32(TK_RAISE):
|
|
if !((*TParse)(unsafe.Pointer(pParse)).FpTriggerTab != 0) && !((*TParse)(unsafe.Pointer(pParse)).Fnested != 0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+8568, 0)
|
|
return 0
|
|
}
|
|
if int32((*TExpr)(unsafe.Pointer(pExpr)).FaffExpr) == int32(OE_Abort) {
|
|
_sqlite3MayAbort(tls, pParse)
|
|
}
|
|
if int32((*TExpr)(unsafe.Pointer(pExpr)).FaffExpr) == int32(OE_Ignore) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Halt), SQLITE_OK, int32(OE_Ignore))
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 8)) = _sqlite3ExprCodeTemp(tls, pParse, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, bp)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpTriggerTab != 0 {
|
|
v1 = libc.Int32FromInt32(SQLITE_CONSTRAINT) | libc.Int32FromInt32(7)<<libc.Int32FromInt32(8)
|
|
} else {
|
|
v1 = int32(SQLITE_ERROR)
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Halt), v1, int32((*TExpr)(unsafe.Pointer(pExpr)).FaffExpr), **(**int32)(__ccgo_up(bp + 8)))
|
|
}
|
|
break
|
|
}
|
|
_sqlite3ReleaseTempReg(tls, pParse, **(**int32)(__ccgo_up(bp)))
|
|
_sqlite3ReleaseTempReg(tls, pParse, **(**int32)(__ccgo_up(bp + 4)))
|
|
return inReg
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is used by the implementation of the IN (...) operator.
|
|
// ** The pX parameter is the expression on the RHS of the IN operator, which
|
|
// ** might be either a list of expressions or a subquery.
|
|
// **
|
|
// ** The job of this routine is to find or create a b-tree object that can
|
|
// ** be used either to test for membership in the RHS set or to iterate through
|
|
// ** all members of the RHS set, skipping duplicates.
|
|
// **
|
|
// ** A cursor is opened on the b-tree object that is the RHS of the IN operator
|
|
// ** and the *piTab parameter is set to the index of that cursor.
|
|
// **
|
|
// ** The returned value of this function indicates the b-tree type, as follows:
|
|
// **
|
|
// ** IN_INDEX_ROWID - The cursor was opened on a database table.
|
|
// ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index.
|
|
// ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index.
|
|
// ** IN_INDEX_EPH - The cursor was opened on a specially created and
|
|
// ** populated ephemeral table.
|
|
// ** IN_INDEX_NOOP - No cursor was allocated. The IN operator must be
|
|
// ** implemented as a sequence of comparisons.
|
|
// **
|
|
// ** An existing b-tree might be used if the RHS expression pX is a simple
|
|
// ** subquery such as:
|
|
// **
|
|
// ** SELECT <column1>, <column2>... FROM <table>
|
|
// **
|
|
// ** If the RHS of the IN operator is a list or a more complex subquery, then
|
|
// ** an ephemeral table might need to be generated from the RHS and then
|
|
// ** pX->iTable made to point to the ephemeral table instead of an
|
|
// ** existing table. In this case, the creation and initialization of the
|
|
// ** ephemeral table might be put inside of a subroutine, the EP_Subrtn flag
|
|
// ** will be set on pX and the pX->y.sub fields will be set to show where
|
|
// ** the subroutine is coded.
|
|
// **
|
|
// ** The inFlags parameter must contain, at a minimum, one of the bits
|
|
// ** IN_INDEX_MEMBERSHIP or IN_INDEX_LOOP but not both. If inFlags contains
|
|
// ** IN_INDEX_MEMBERSHIP, then the generated table will be used for a fast
|
|
// ** membership test. When the IN_INDEX_LOOP bit is set, the IN index will
|
|
// ** be used to loop over all values of the RHS of the IN operator.
|
|
// **
|
|
// ** When IN_INDEX_LOOP is used (and the b-tree will be used to iterate
|
|
// ** through the set members) then the b-tree must not contain duplicates.
|
|
// ** An ephemeral table will be created unless the selected columns are guaranteed
|
|
// ** to be unique - either because it is an INTEGER PRIMARY KEY or due to
|
|
// ** a UNIQUE constraint or index.
|
|
// **
|
|
// ** When IN_INDEX_MEMBERSHIP is used (and the b-tree will be used
|
|
// ** for fast set membership tests) then an ephemeral table must
|
|
// ** be used unless <columns> is a single INTEGER PRIMARY KEY column or an
|
|
// ** index can be found with the specified <columns> as its left-most.
|
|
// **
|
|
// ** If the IN_INDEX_NOOP_OK and IN_INDEX_MEMBERSHIP are both set and
|
|
// ** if the RHS of the IN operator is a list (not a subquery) then this
|
|
// ** routine might decide that creating an ephemeral b-tree for membership
|
|
// ** testing is too expensive and return IN_INDEX_NOOP. In that case, the
|
|
// ** calling routine should implement the IN operator using a sequence
|
|
// ** of Eq or Ne comparison operations.
|
|
// **
|
|
// ** When the b-tree is being used for membership tests, the calling function
|
|
// ** might need to know whether or not the RHS side of the IN operator
|
|
// ** contains a NULL. If prRhsHasNull is not a NULL pointer and
|
|
// ** if there is any chance that the (...) might contain a NULL value at
|
|
// ** runtime, then a register is allocated and the register number written
|
|
// ** to *prRhsHasNull. If there is no chance that the (...) contains a
|
|
// ** NULL value, then *prRhsHasNull is left unchanged.
|
|
// **
|
|
// ** If a register is allocated and its location stored in *prRhsHasNull, then
|
|
// ** the value in that register will be NULL if the b-tree contains one or more
|
|
// ** NULL values, and it will be some non-NULL value if the b-tree contains no
|
|
// ** NULL values.
|
|
// **
|
|
// ** If the aiMap parameter is not NULL, it must point to an array containing
|
|
// ** one element for each column returned by the SELECT statement on the RHS
|
|
// ** of the IN(...) operator. The i'th entry of the array is populated with the
|
|
// ** offset of the index column that matches the i'th column returned by the
|
|
// ** SELECT. For example, if the expression and selected index are:
|
|
// **
|
|
// ** (?,?,?) IN (SELECT a, b, c FROM t1)
|
|
// ** CREATE INDEX i1 ON t1(b, c, a);
|
|
// **
|
|
// ** then aiMap[] is populated with {2, 0, 1}.
|
|
// */
|
|
func _sqlite3FindInIndex(tls *libc.TLS, pParse uintptr, pX uintptr, inFlags Tu32, prRhsHasNull uintptr, aiMap uintptr, piTab uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var affinity_ok, bloomOk, eType, i, i1, i2, iAddr, iAddr1, iCol, iDb, iTab, j, mustBeUnique, n, nExpr, rMayHaveNull, v1, v10 int32
|
|
var cmpaff, idxaff int8
|
|
var colUsed, mCol TBitmask
|
|
var db, p, pEList, pEList1, pIdx, pLhs, pLhs1, pReq, pRhs, pTab, v, v2 uintptr
|
|
var savedNQueryLoop Tu32
|
|
var v5 bool
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = affinity_ok, bloomOk, cmpaff, colUsed, db, eType, i, i1, i2, iAddr, iAddr1, iCol, iDb, iTab, idxaff, j, mCol, mustBeUnique, n, nExpr, p, pEList, pEList1, pIdx, pLhs, pLhs1, pReq, pRhs, pTab, rMayHaveNull, savedNQueryLoop, v, v1, v10, v2, v5 /* SELECT to the right of IN operator */
|
|
eType = 0 /* True if RHS must be unique */
|
|
v = _sqlite3GetVdbe(tls, pParse) /* Virtual machine being coded */
|
|
mustBeUnique = libc.BoolInt32(inFlags&uint32(IN_INDEX_LOOP) != uint32(0))
|
|
v2 = pParse + 56
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
iTab = v1
|
|
/* If the RHS of this IN(...) operator is a SELECT, and if it matters
|
|
** whether or not the SELECT result contains NULL values, check whether
|
|
** or not NULL is actually possible (it may not be, for example, due
|
|
** to NOT NULL constraints in the schema). If no NULL values are possible,
|
|
** set prRhsHasNull to 0 before continuing. */
|
|
if prRhsHasNull != 0 && (*TExpr)(unsafe.Pointer(pX)).Fflags&uint32(EP_xIsSelect) != uint32(0) {
|
|
pEList = (*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pX + 32)))).FpEList
|
|
i = 0
|
|
for {
|
|
if !(i < (*TExprList)(unsafe.Pointer(pEList)).FnExpr) {
|
|
break
|
|
}
|
|
if _sqlite3ExprCanBeNull(tls, (*(*TExprList_item)(unsafe.Pointer(pEList + 8 + uintptr(i)*32))).FpExpr) != 0 {
|
|
break
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if i == (*TExprList)(unsafe.Pointer(pEList)).FnExpr {
|
|
prRhsHasNull = uintptr(0)
|
|
}
|
|
}
|
|
/* Check to see if an existing table or index can be used to
|
|
** satisfy the query. This is preferable to generating a new
|
|
** ephemeral table. */
|
|
if v5 = (*TParse)(unsafe.Pointer(pParse)).FnErr == 0; v5 {
|
|
v2 = _isCandidateForInOpt(tls, pX)
|
|
p = v2
|
|
}
|
|
if v5 && v2 != uintptr(0) {
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Database idx for pTab */
|
|
pEList1 = (*TSelect)(unsafe.Pointer(p)).FpEList
|
|
nExpr = (*TExprList)(unsafe.Pointer(pEList1)).FnExpr
|
|
/* Because of isCandidateForInOpt(p) */
|
|
/* Because of isCandidateForInOpt(p) */
|
|
/* Because of isCandidateForInOpt(p) */
|
|
pTab = (*(*TSrcItem)(unsafe.Pointer((*TSelect)(unsafe.Pointer(p)).FpSrc + 8))).FpSTab
|
|
/* Code an OP_Transaction and OP_TableLock for <table>. */
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab)).FpSchema)
|
|
_sqlite3CodeVerifySchema(tls, pParse, iDb)
|
|
_sqlite3TableLock(tls, pParse, iDb, (*TTable)(unsafe.Pointer(pTab)).Ftnum, uint8(0), (*TTable)(unsafe.Pointer(pTab)).FzName)
|
|
/* sqlite3GetVdbe() has always been previously called */
|
|
if nExpr == int32(1) && int32((*TExpr)(unsafe.Pointer((*(*TExprList_item)(unsafe.Pointer(pEList1 + 8))).FpExpr)).FiColumn) < 0 {
|
|
/* The "x IN (SELECT rowid FROM table)" case */
|
|
iAddr = _sqlite3VdbeAddOp0(tls, v, int32(OP_Once))
|
|
_sqlite3OpenTable(tls, pParse, iTab, iDb, pTab, int32(OP_OpenRead))
|
|
eType = int32(IN_INDEX_ROWID)
|
|
_sqlite3VdbeExplain(tls, pParse, uint8(0), __ccgo_ts+8211, libc.VaList(bp+8, (*TTable)(unsafe.Pointer(pTab)).FzName))
|
|
_sqlite3VdbeJumpHere(tls, v, iAddr)
|
|
} else { /* Iterator variable */
|
|
affinity_ok = int32(1)
|
|
/* Check that the affinity that will be used to perform each
|
|
** comparison is the same as the affinity of each column in table
|
|
** on the RHS of the IN operator. If it not, it is not possible to
|
|
** use any index of the RHS table. */
|
|
i1 = 0
|
|
for {
|
|
if !(i1 < nExpr && affinity_ok != 0) {
|
|
break
|
|
}
|
|
pLhs = _sqlite3VectorFieldSubexpr(tls, (*TExpr)(unsafe.Pointer(pX)).FpLeft, i1)
|
|
iCol = int32((*TExpr)(unsafe.Pointer((*(*TExprList_item)(unsafe.Pointer(pEList1 + 8 + uintptr(i1)*32))).FpExpr)).FiColumn)
|
|
idxaff = _sqlite3TableColumnAffinity(tls, pTab, iCol) /* RHS table */
|
|
cmpaff = _sqlite3CompareAffinity(tls, pLhs, idxaff)
|
|
switch int32(cmpaff) {
|
|
case int32(SQLITE_AFF_BLOB):
|
|
case int32(SQLITE_AFF_TEXT):
|
|
/* sqlite3CompareAffinity() only returns TEXT if one side or the
|
|
** other has no affinity and the other side is TEXT. Hence,
|
|
** the only way for cmpaff to be TEXT is for idxaff to be TEXT
|
|
** and for the term on the LHS of the IN to have no affinity. */
|
|
default:
|
|
affinity_ok = libc.BoolInt32(int32(idxaff) >= int32(SQLITE_AFF_NUMERIC))
|
|
}
|
|
goto _6
|
|
_6:
|
|
;
|
|
i1 = i1 + 1
|
|
}
|
|
if affinity_ok != 0 {
|
|
/* Search for an existing index that will work for this IN operator */
|
|
pIdx = (*TTable)(unsafe.Pointer(pTab)).FpIndex
|
|
for {
|
|
if !(pIdx != 0 && eType == 0) {
|
|
break
|
|
} /* Mask for the current column */
|
|
if libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnColumn) < nExpr {
|
|
goto _7
|
|
}
|
|
if (*TIndex)(unsafe.Pointer(pIdx)).FpPartIdxWhere != uintptr(0) {
|
|
goto _7
|
|
}
|
|
/* Maximum nColumn is BMS-2, not BMS-1, so that we can compute
|
|
** BITMASK(nExpr) without overflowing */
|
|
if libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnColumn) >= libc.Int32FromUint64(libc.Uint64FromInt64(8)*libc.Uint64FromInt32(8))-libc.Int32FromInt32(1) {
|
|
goto _7
|
|
}
|
|
if mustBeUnique != 0 {
|
|
if libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol) > nExpr || libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnColumn) > nExpr && !(libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx)).FonError) != libc.Int32FromInt32(OE_None)) {
|
|
goto _7 /* This index is not unique over the IN RHS columns */
|
|
}
|
|
}
|
|
colUsed = uint64(0) /* Columns of index used so far */
|
|
i1 = 0
|
|
for {
|
|
if !(i1 < nExpr) {
|
|
break
|
|
}
|
|
pLhs1 = _sqlite3VectorFieldSubexpr(tls, (*TExpr)(unsafe.Pointer(pX)).FpLeft, i1)
|
|
pRhs = (*(*TExprList_item)(unsafe.Pointer(pEList1 + 8 + uintptr(i1)*32))).FpExpr
|
|
pReq = _sqlite3BinaryCompareCollSeq(tls, pParse, pLhs1, pRhs)
|
|
j = 0
|
|
for {
|
|
if !(j < nExpr) {
|
|
break
|
|
}
|
|
if int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(j)*2))) != int32((*TExpr)(unsafe.Pointer(pRhs)).FiColumn) {
|
|
goto _9
|
|
}
|
|
if pReq != uintptr(0) && _sqlite3StrICmp(tls, (*TCollSeq)(unsafe.Pointer(pReq)).FzName, **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(j)*8))) != 0 {
|
|
goto _9
|
|
}
|
|
break
|
|
goto _9
|
|
_9:
|
|
;
|
|
j = j + 1
|
|
}
|
|
if j == nExpr {
|
|
break
|
|
}
|
|
mCol = libc.Uint64FromInt32(1) << j
|
|
if mCol&colUsed != 0 {
|
|
break
|
|
} /* Each column used only once */
|
|
colUsed = colUsed | mCol
|
|
if aiMap != 0 {
|
|
**(**int32)(__ccgo_up(aiMap + uintptr(i1)*4)) = j
|
|
}
|
|
goto _8
|
|
_8:
|
|
;
|
|
i1 = i1 + 1
|
|
}
|
|
if colUsed == libc.Uint64FromInt32(1)<<nExpr-uint64(1) {
|
|
/* If we reach this point, that means the index pIdx is usable */
|
|
iAddr1 = _sqlite3VdbeAddOp0(tls, v, int32(OP_Once))
|
|
_sqlite3VdbeExplain(tls, pParse, uint8(0), __ccgo_ts+8258, libc.VaList(bp+8, (*TIndex)(unsafe.Pointer(pIdx)).FzName))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_OpenRead), iTab, libc.Int32FromUint32((*TIndex)(unsafe.Pointer(pIdx)).Ftnum), iDb)
|
|
_sqlite3VdbeSetP4KeyInfo(tls, pParse, pIdx)
|
|
eType = int32(IN_INDEX_INDEX_ASC) + libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaSortOrder)))
|
|
if prRhsHasNull != 0 {
|
|
v2 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
v1 = *(*int32)(unsafe.Pointer(v2))
|
|
**(**int32)(__ccgo_up(prRhsHasNull)) = v1
|
|
if nExpr == int32(1) {
|
|
_sqlite3SetHasNullFlag(tls, v, iTab, **(**int32)(__ccgo_up(prRhsHasNull)))
|
|
}
|
|
}
|
|
_sqlite3VdbeJumpHere(tls, v, iAddr1)
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
pIdx = (*TIndex)(unsafe.Pointer(pIdx)).FpNext
|
|
} /* End loop over indexes */
|
|
} /* End if( affinity_ok ) */
|
|
} /* End if not an rowid index */
|
|
} /* End attempt to optimize using an index */
|
|
/* If no preexisting index is available for the IN clause
|
|
** and IN_INDEX_NOOP is an allowed reply
|
|
** and the RHS of the IN operator is a list, not a subquery
|
|
** and the RHS is not constant or has two or fewer terms,
|
|
** then it is not worth creating an ephemeral table to evaluate
|
|
** the IN operator so return IN_INDEX_NOOP.
|
|
*/
|
|
if eType == 0 && inFlags&uint32(IN_INDEX_NOOP_OK) != 0 && (*TExpr)(unsafe.Pointer(pX)).Fflags&uint32(EP_xIsSelect) == uint32(0) && (!(_sqlite3InRhsIsConstant(tls, pParse, pX) != 0) || (*TExprList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pX + 32)))).FnExpr <= int32(2)) {
|
|
(*TParse)(unsafe.Pointer(pParse)).FnTab = (*TParse)(unsafe.Pointer(pParse)).FnTab - 1 /* Back out the allocation of the unused cursor */
|
|
iTab = -int32(1) /* Cursor is not allocated */
|
|
eType = int32(IN_INDEX_NOOP)
|
|
}
|
|
if eType == 0 {
|
|
/* Could not find an existing table or index to use as the RHS b-tree.
|
|
** We will have to generate an ephemeral table to do the job.
|
|
*/
|
|
savedNQueryLoop = libc.Uint32FromInt16((*TParse)(unsafe.Pointer(pParse)).FnQueryLoop)
|
|
rMayHaveNull = 0
|
|
bloomOk = libc.BoolInt32(inFlags&uint32(IN_INDEX_MEMBERSHIP) != uint32(0))
|
|
eType = int32(IN_INDEX_EPH)
|
|
if inFlags&uint32(IN_INDEX_LOOP) != 0 {
|
|
(*TParse)(unsafe.Pointer(pParse)).FnQueryLoop = 0
|
|
} else {
|
|
if prRhsHasNull != 0 {
|
|
v2 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v2)) = *(*int32)(unsafe.Pointer(v2)) + 1
|
|
v10 = *(*int32)(unsafe.Pointer(v2))
|
|
v1 = v10
|
|
rMayHaveNull = v1
|
|
**(**int32)(__ccgo_up(prRhsHasNull)) = v1
|
|
}
|
|
}
|
|
if !(bloomOk != 0) && (*TExpr)(unsafe.Pointer(pX)).Fflags&uint32(EP_xIsSelect) != uint32(0) && (*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pX + 32)))).FselFlags&uint32(SF_ClonedRhsIn) != uint32(0) {
|
|
bloomOk = int32(1)
|
|
}
|
|
_sqlite3CodeRhsOfIN(tls, pParse, pX, iTab, bloomOk)
|
|
if rMayHaveNull != 0 {
|
|
_sqlite3SetHasNullFlag(tls, v, iTab, rMayHaveNull)
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FnQueryLoop = libc.Int16FromUint32(savedNQueryLoop)
|
|
}
|
|
if aiMap != 0 && eType != int32(IN_INDEX_INDEX_ASC) && eType != int32(IN_INDEX_INDEX_DESC) {
|
|
n = _sqlite3ExprVectorSize(tls, (*TExpr)(unsafe.Pointer(pX)).FpLeft)
|
|
i2 = 0
|
|
for {
|
|
if !(i2 < n) {
|
|
break
|
|
}
|
|
**(**int32)(__ccgo_up(aiMap + uintptr(i2)*4)) = i2
|
|
goto _15
|
|
_15:
|
|
;
|
|
i2 = i2 + 1
|
|
}
|
|
}
|
|
**(**int32)(__ccgo_up(piTab)) = iTab
|
|
return eType
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Decode a floating-point value into an approximate decimal
|
|
// ** representation.
|
|
// **
|
|
// ** If iRound<=0 then round to -iRound significant digits to the
|
|
// ** the right of the decimal point, or to a maximum of mxRound total
|
|
// ** significant digits.
|
|
// **
|
|
// ** If iRound>0 round to min(iRound,mxRound) significant digits total.
|
|
// **
|
|
// ** mxRound must be positive.
|
|
// **
|
|
// ** The significant digits of the decimal representation are
|
|
// ** stored in p->z[] which is a often (but not always) a pointer
|
|
// ** into the middle of p->zBuf[]. There are p->n significant digits.
|
|
// ** The p->z[] array is *not* zero-terminated.
|
|
// */
|
|
func _sqlite3FpDecode(tls *libc.TLS, p uintptr, _r float64, iRound int32, mxRound int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
*(*float64)(unsafe.Pointer(bp)) = _r
|
|
var e, i, j, jj, jj1, kk, kk1, kk2, n, nn, v1 int32
|
|
var v2, v21 Tu64
|
|
var z, zBuf uintptr
|
|
var _ /* exp at bp+16 */ int32
|
|
var _ /* v at bp+8 */ Tu64
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = e, i, j, jj, jj1, kk, kk1, kk2, n, nn, v2, v21, z, zBuf, v1
|
|
**(**int32)(__ccgo_up(bp + 16)) = 0 /* Local alias for p->z */
|
|
(*TFpDecode)(unsafe.Pointer(p)).FisSpecial = 0
|
|
/* Convert negative numbers to positive. Deal with Infinity, 0.0, and
|
|
** NaN. */
|
|
if **(**float64)(__ccgo_up(bp)) < float64(0) {
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fsign = int8('-')
|
|
**(**float64)(__ccgo_up(bp)) = -**(**float64)(__ccgo_up(bp))
|
|
} else {
|
|
if **(**float64)(__ccgo_up(bp)) == float64(0) {
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fsign = int8('+')
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fn = int32(1)
|
|
(*TFpDecode)(unsafe.Pointer(p)).FiDP = int32(1)
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fz = __ccgo_ts + 1850
|
|
return
|
|
} else {
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fsign = int8('+')
|
|
}
|
|
}
|
|
libc.Xmemcpy(tls, bp+8, bp, uint64(8))
|
|
e = libc.Int32FromUint64(**(**Tu64)(__ccgo_up(bp + 8)) >> libc.Int32FromInt32(52) & uint64(0x7ff))
|
|
if e == int32(0x7ff) {
|
|
(*TFpDecode)(unsafe.Pointer(p)).FisSpecial = int8(int32(1) + libc.BoolInt32(**(**Tu64)(__ccgo_up(bp + 8)) != uint64(0x7ff0000000000000)))
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fn = 0
|
|
(*TFpDecode)(unsafe.Pointer(p)).FiDP = 0
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fz = p + 16
|
|
return
|
|
}
|
|
**(**Tu64)(__ccgo_up(bp + 8)) = **(**Tu64)(__ccgo_up(bp + 8)) & uint64(0x000fffffffffffff)
|
|
if e == 0 {
|
|
nn = _countLeadingZeros(tls, **(**Tu64)(__ccgo_up(bp + 8)))
|
|
**(**Tu64)(__ccgo_up(bp + 8)) = **(**Tu64)(__ccgo_up(bp + 8)) << libc.Uint64FromInt32(nn)
|
|
e = -int32(1074) - nn
|
|
} else {
|
|
**(**Tu64)(__ccgo_up(bp + 8)) = **(**Tu64)(__ccgo_up(bp + 8))<<libc.Int32FromInt32(11) | libc.Uint64FromInt32(1)<<libc.Int32FromInt32(63)
|
|
e = e - int32(1086)
|
|
}
|
|
if iRound <= 0 || iRound >= int32(18) {
|
|
v1 = int32(18)
|
|
} else {
|
|
v1 = iRound + int32(1)
|
|
}
|
|
_sqlite3Fp2Convert10(tls, **(**Tu64)(__ccgo_up(bp + 8)), e, v1, bp+8, bp+16)
|
|
/* Extract significant digits, start at the right-most slot in p->zBuf
|
|
** and working back to the right. "i" keeps track of the next slot in
|
|
** which to store a digit. */
|
|
zBuf = p + 16
|
|
i = int32(SQLITE_U64_DIGITS)
|
|
for **(**Tu64)(__ccgo_up(bp + 8)) >= uint64(10) {
|
|
kk = libc.Int32FromUint64(**(**Tu64)(__ccgo_up(bp + 8)) % uint64(100) * uint64(2))
|
|
**(**Tu16)(__ccgo_up(zBuf + uintptr(i-int32(2)))) = **(**Tu16)(__ccgo_up(uintptr(unsafe.Pointer(&_sqlite3DigitPairs)) + uintptr(kk)))
|
|
i = i - int32(2)
|
|
**(**Tu64)(__ccgo_up(bp + 8)) = **(**Tu64)(__ccgo_up(bp + 8)) / uint64(100)
|
|
}
|
|
if **(**Tu64)(__ccgo_up(bp + 8)) != 0 {
|
|
i = i - 1
|
|
v1 = i
|
|
**(**int8)(__ccgo_up(zBuf + uintptr(v1))) = libc.Int8FromUint64(**(**Tu64)(__ccgo_up(bp + 8)) + uint64('0'))
|
|
}
|
|
n = int32(SQLITE_U64_DIGITS) - i /* Total number of digits extracted */
|
|
(*TFpDecode)(unsafe.Pointer(p)).FiDP = n + **(**int32)(__ccgo_up(bp + 16))
|
|
if iRound <= 0 {
|
|
iRound = (*TFpDecode)(unsafe.Pointer(p)).FiDP - iRound
|
|
if iRound == 0 && int32(**(**int8)(__ccgo_up(zBuf + uintptr(i)))) >= int32('5') {
|
|
iRound = int32(1)
|
|
i = i - 1
|
|
v1 = i
|
|
**(**int8)(__ccgo_up(zBuf + uintptr(v1))) = int8('0')
|
|
n = n + 1
|
|
(*TFpDecode)(unsafe.Pointer(p)).FiDP = (*TFpDecode)(unsafe.Pointer(p)).FiDP + 1
|
|
}
|
|
}
|
|
z = zBuf + uintptr(i) /* z points to the first digit */
|
|
if iRound > 0 && (iRound < n || n > mxRound) {
|
|
if iRound > mxRound {
|
|
iRound = mxRound
|
|
}
|
|
if iRound == int32(17) {
|
|
/* If the precision is exactly 17, which only happens with the "!"
|
|
** flag (ex: "%!.17g") then try to reduce the precision if that
|
|
** yields text that will round-trip to the original floating-point.
|
|
** value. Thus, for exaple, 49.47 will render as 49.47, rather than
|
|
** as 49.469999999999999. */
|
|
if int32(**(**int8)(__ccgo_up(z + 15))) == int32('9') && int32(**(**int8)(__ccgo_up(z + 14))) == int32('9') {
|
|
jj = int32(14)
|
|
for {
|
|
if !(jj > 0 && int32(**(**int8)(__ccgo_up(z + uintptr(jj-int32(1))))) == int32('9')) {
|
|
break
|
|
}
|
|
goto _4
|
|
_4:
|
|
;
|
|
jj = jj - 1
|
|
}
|
|
if jj == 0 {
|
|
v2 = uint64(1)
|
|
} else {
|
|
v2 = libc.Uint64FromInt32(int32(**(**int8)(__ccgo_up(z))) - int32('0'))
|
|
kk1 = int32(1)
|
|
for {
|
|
if !(kk1 < jj) {
|
|
break
|
|
}
|
|
v2 = v2*uint64(10) + libc.Uint64FromInt8(**(**int8)(__ccgo_up(z + uintptr(kk1)))) - uint64('0')
|
|
goto _5
|
|
_5:
|
|
;
|
|
kk1 = kk1 + 1
|
|
}
|
|
v2 = v2 + 1
|
|
}
|
|
if **(**float64)(__ccgo_up(bp)) == _sqlite3Fp10Convert2(tls, v2, **(**int32)(__ccgo_up(bp + 16))+n-jj) {
|
|
iRound = jj + int32(1)
|
|
}
|
|
} else {
|
|
if (*TFpDecode)(unsafe.Pointer(p)).FiDP >= n || int32(**(**int8)(__ccgo_up(z + 15))) == int32('0') && int32(**(**int8)(__ccgo_up(z + 14))) == int32('0') && int32(**(**int8)(__ccgo_up(z + 13))) == int32('0') {
|
|
jj1 = int32(13)
|
|
for {
|
|
if !(int32(**(**int8)(__ccgo_up(z + uintptr(jj1-int32(1))))) == int32('0')) {
|
|
break
|
|
}
|
|
goto _6
|
|
_6:
|
|
;
|
|
jj1 = jj1 - 1
|
|
}
|
|
v21 = libc.Uint64FromInt32(int32(**(**int8)(__ccgo_up(z))) - int32('0'))
|
|
kk2 = int32(1)
|
|
for {
|
|
if !(kk2 < jj1) {
|
|
break
|
|
}
|
|
v21 = v21*uint64(10) + libc.Uint64FromInt8(**(**int8)(__ccgo_up(z + uintptr(kk2)))) - uint64('0')
|
|
goto _7
|
|
_7:
|
|
;
|
|
kk2 = kk2 + 1
|
|
}
|
|
if **(**float64)(__ccgo_up(bp)) == _sqlite3Fp10Convert2(tls, v21, **(**int32)(__ccgo_up(bp + 16))+n-jj1) {
|
|
iRound = jj1 + int32(1)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
n = iRound
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(iRound)))) >= int32('5') {
|
|
j = iRound - int32(1)
|
|
for int32(1) != 0 {
|
|
**(**int8)(__ccgo_up(z + uintptr(j))) = **(**int8)(__ccgo_up(z + uintptr(j))) + 1
|
|
if int32(**(**int8)(__ccgo_up(z + uintptr(j)))) <= int32('9') {
|
|
break
|
|
}
|
|
**(**int8)(__ccgo_up(z + uintptr(j))) = int8('0')
|
|
if j == 0 {
|
|
z = z - 1
|
|
**(**int8)(__ccgo_up(z)) = int8('1')
|
|
n = n + 1
|
|
(*TFpDecode)(unsafe.Pointer(p)).FiDP = (*TFpDecode)(unsafe.Pointer(p)).FiDP + 1
|
|
break
|
|
} else {
|
|
j = j - 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for int32(**(**int8)(__ccgo_up(z + uintptr(n-int32(1))))) == int32('0') {
|
|
n = n - 1
|
|
}
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fn = n
|
|
(*TFpDecode)(unsafe.Pointer(p)).Fz = z
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Arguments nArg/azArg contain the string arguments passed to the xCreate
|
|
// ** or xConnect method of the virtual table. This function attempts to
|
|
// ** allocate an instance of Fts5Config containing the results of parsing
|
|
// ** those arguments.
|
|
// **
|
|
// ** If successful, SQLITE_OK is returned and *ppOut is set to point to the
|
|
// ** new Fts5Config object. If an error occurs, an SQLite error code is
|
|
// ** returned, *ppOut is set to NULL and an error message may be left in
|
|
// ** *pzErr. It is the responsibility of the caller to eventually free any
|
|
// ** such error message using sqlite3_free().
|
|
// */
|
|
func _sqlite3Fts5ConfigParse(tls *libc.TLS, pGlobal uintptr, db uintptr, nArg int32, azArg uintptr, ppOut uintptr, pzErr uintptr) (r int32) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var bOption, i int32
|
|
var nByte Tsqlite3_int64
|
|
var pRet, z, zOrig, zTail, v1, v2 uintptr
|
|
var _ /* bDummy at bp+28 */ int32
|
|
var _ /* bMustBeCol at bp+24 */ int32
|
|
var _ /* bUnindexed at bp+4 */ int32
|
|
var _ /* rc at bp+0 */ int32
|
|
var _ /* zOne at bp+8 */ uintptr
|
|
var _ /* zTwo at bp+16 */ uintptr
|
|
_, _, _, _, _, _, _, _, _ = bOption, i, nByte, pRet, z, zOrig, zTail, v1, v2
|
|
**(**int32)(__ccgo_up(bp)) = SQLITE_OK
|
|
**(**int32)(__ccgo_up(bp + 4)) = 0 /* True if there are one or more UNINDEXED */
|
|
v1 = Xsqlite3_malloc64(tls, uint64(256))
|
|
pRet = v1
|
|
**(**uintptr)(__ccgo_up(ppOut)) = v1
|
|
if pRet == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
libc.Xmemset(tls, pRet, 0, uint64(256))
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FpGlobal = pGlobal
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).Fdb = db
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FiCookie = -int32(1)
|
|
nByte = libc.Int64FromUint64(libc.Uint64FromInt32(nArg) * (libc.Uint64FromInt64(8) + libc.Uint64FromInt64(1)))
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FazCol = _sqlite3Fts5MallocZero(tls, bp, nByte)
|
|
if (*TFts5Config)(unsafe.Pointer(pRet)).FazCol != 0 {
|
|
v1 = (*TFts5Config)(unsafe.Pointer(pRet)).FazCol + uintptr(nArg)*8
|
|
} else {
|
|
v1 = uintptr(0)
|
|
}
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FabUnindexed = v1
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FzDb = _sqlite3Fts5Strndup(tls, bp, **(**uintptr)(__ccgo_up(azArg + 1*8)), -int32(1))
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FzName = _sqlite3Fts5Strndup(tls, bp, **(**uintptr)(__ccgo_up(azArg + 2*8)), -int32(1))
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FbColumnsize = int32(1)
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FeDetail = FTS5_DETAIL_FULL
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK && Xsqlite3_stricmp(tls, (*TFts5Config)(unsafe.Pointer(pRet)).FzName, __ccgo_ts+37968) == 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+38079, libc.VaList(bp+40, (*TFts5Config)(unsafe.Pointer(pRet)).FzName))
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
}
|
|
i = int32(3)
|
|
for {
|
|
if !(**(**int32)(__ccgo_up(bp)) == SQLITE_OK && i < nArg) {
|
|
break
|
|
}
|
|
zOrig = **(**uintptr)(__ccgo_up(azArg + uintptr(i)*8))
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
**(**uintptr)(__ccgo_up(bp + 16)) = uintptr(0)
|
|
bOption = 0
|
|
**(**int32)(__ccgo_up(bp + 24)) = 0
|
|
z = _fts5ConfigGobbleWord(tls, bp, zOrig, bp+8, bp+24)
|
|
z = _fts5ConfigSkipWhitespace(tls, z)
|
|
if z != 0 && int32(**(**int8)(__ccgo_up(z))) == int32('=') {
|
|
bOption = int32(1)
|
|
z = z + 1
|
|
if **(**int32)(__ccgo_up(bp + 24)) != 0 {
|
|
z = uintptr(0)
|
|
}
|
|
}
|
|
z = _fts5ConfigSkipWhitespace(tls, z)
|
|
if z != 0 && **(**int8)(__ccgo_up(z)) != 0 {
|
|
z = _fts5ConfigGobbleWord(tls, bp, z, bp+16, bp+28)
|
|
if z != 0 && **(**int8)(__ccgo_up(z)) != 0 {
|
|
z = uintptr(0)
|
|
}
|
|
}
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK {
|
|
if z == uintptr(0) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+38108, libc.VaList(bp+40, zOrig))
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
} else {
|
|
if bOption != 0 {
|
|
if **(**uintptr)(__ccgo_up(bp + 8)) != 0 {
|
|
v1 = **(**uintptr)(__ccgo_up(bp + 8))
|
|
} else {
|
|
v1 = __ccgo_ts + 1704
|
|
}
|
|
if **(**uintptr)(__ccgo_up(bp + 16)) != 0 {
|
|
v2 = **(**uintptr)(__ccgo_up(bp + 16))
|
|
} else {
|
|
v2 = __ccgo_ts + 1704
|
|
}
|
|
**(**int32)(__ccgo_up(bp)) = _fts5ConfigParseSpecial(tls, pRet, v1, v2, pzErr)
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp)) = _fts5ConfigParseColumn(tls, pRet, **(**uintptr)(__ccgo_up(bp + 8)), **(**uintptr)(__ccgo_up(bp + 16)), pzErr, bp+4)
|
|
**(**uintptr)(__ccgo_up(bp + 8)) = uintptr(0)
|
|
}
|
|
}
|
|
}
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 8)))
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 16)))
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
}
|
|
/* We only allow contentless_delete=1 if the table is indeed contentless. */
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK && (*TFts5Config)(unsafe.Pointer(pRet)).FbContentlessDelete != 0 && (*TFts5Config)(unsafe.Pointer(pRet)).FeContent != int32(FTS5_CONTENT_NONE) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+38128, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
}
|
|
/* We only allow contentless_delete=1 if columnsize=0 is not present.
|
|
**
|
|
** This restriction may be removed at some point.
|
|
*/
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK && (*TFts5Config)(unsafe.Pointer(pRet)).FbContentlessDelete != 0 && (*TFts5Config)(unsafe.Pointer(pRet)).FbColumnsize == 0 {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+38178, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
}
|
|
/* We only allow contentless_unindexed=1 if the table is actually a
|
|
** contentless one.
|
|
*/
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK && (*TFts5Config)(unsafe.Pointer(pRet)).FbContentlessUnindexed != 0 && (*TFts5Config)(unsafe.Pointer(pRet)).FeContent != int32(FTS5_CONTENT_NONE) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = Xsqlite3_mprintf(tls, __ccgo_ts+38233, 0)
|
|
**(**int32)(__ccgo_up(bp)) = int32(SQLITE_ERROR)
|
|
}
|
|
/* If no zContent option was specified, fill in the default values. */
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK && (*TFts5Config)(unsafe.Pointer(pRet)).FzContent == uintptr(0) {
|
|
zTail = uintptr(0)
|
|
if (*TFts5Config)(unsafe.Pointer(pRet)).FeContent == FTS5_CONTENT_NORMAL {
|
|
zTail = __ccgo_ts + 37591
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp + 4)) != 0 && (*TFts5Config)(unsafe.Pointer(pRet)).FbContentlessUnindexed != 0 {
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FeContent = int32(FTS5_CONTENT_UNINDEXED)
|
|
zTail = __ccgo_ts + 37591
|
|
} else {
|
|
if (*TFts5Config)(unsafe.Pointer(pRet)).FbColumnsize != 0 {
|
|
zTail = __ccgo_ts + 38286
|
|
}
|
|
}
|
|
}
|
|
if zTail != 0 {
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FzContent = _sqlite3Fts5Mprintf(tls, bp, __ccgo_ts+38294, libc.VaList(bp+40, (*TFts5Config)(unsafe.Pointer(pRet)).FzDb, (*TFts5Config)(unsafe.Pointer(pRet)).FzName, zTail))
|
|
}
|
|
}
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK && (*TFts5Config)(unsafe.Pointer(pRet)).FzContentRowid == uintptr(0) {
|
|
(*TFts5Config)(unsafe.Pointer(pRet)).FzContentRowid = _sqlite3Fts5Strndup(tls, bp, __ccgo_ts+17967, -int32(1))
|
|
}
|
|
/* Formulate the zContentExprlist text */
|
|
if **(**int32)(__ccgo_up(bp)) == SQLITE_OK {
|
|
**(**int32)(__ccgo_up(bp)) = _fts5ConfigMakeExprlist(tls, pRet)
|
|
}
|
|
if **(**int32)(__ccgo_up(bp)) != SQLITE_OK {
|
|
_sqlite3Fts5ConfigFree(tls, pRet)
|
|
**(**uintptr)(__ccgo_up(ppOut)) = uintptr(0)
|
|
}
|
|
return **(**int32)(__ccgo_up(bp))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This is the callback routine for the code that initializes the
|
|
// ** database. See sqlite3Init() below for additional information.
|
|
// ** This routine is also called from the OP_ParseSchema opcode of the VDBE.
|
|
// **
|
|
// ** Each callback contains the following information:
|
|
// **
|
|
// ** argv[0] = type of object: "table", "index", "trigger", or "view".
|
|
// ** argv[1] = name of thing being created
|
|
// ** argv[2] = associated table if an index or trigger
|
|
// ** argv[3] = root page number for table or index. 0 for trigger or view.
|
|
// ** argv[4] = SQL text for the CREATE statement.
|
|
// **
|
|
// */
|
|
func _sqlite3InitCallback(tls *libc.TLS, pInit uintptr, argc int32, argv uintptr, NotUsed uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var db, pData, pIndex uintptr
|
|
var iDb, rc int32
|
|
var saved_iDb Tu8
|
|
var _ /* pStmt at bp+0 */ uintptr
|
|
_, _, _, _, _, _ = db, iDb, pData, pIndex, rc, saved_iDb
|
|
pData = pInit
|
|
db = (*TInitData)(unsafe.Pointer(pData)).Fdb
|
|
iDb = (*TInitData)(unsafe.Pointer(pData)).FiDb
|
|
_ = NotUsed
|
|
_ = argc
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_EncodingFixed)
|
|
if argv == uintptr(0) {
|
|
return 0
|
|
} /* Might happen if EMPTY_RESULT_CALLBACKS are on */
|
|
(*TInitData)(unsafe.Pointer(pData)).FnInitRow = (*TInitData)(unsafe.Pointer(pData)).FnInitRow + 1
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
_corruptSchema(tls, pData, argv, uintptr(0))
|
|
return int32(1)
|
|
}
|
|
if **(**uintptr)(__ccgo_up(argv + 3*8)) == uintptr(0) {
|
|
_corruptSchema(tls, pData, argv, uintptr(0))
|
|
} else {
|
|
if **(**uintptr)(__ccgo_up(argv + 4*8)) != 0 && int32('c') == libc.Int32FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(argv + 4*8)))))]) && int32('r') == libc.Int32FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(argv + 4*8)) + 1)))]) {
|
|
saved_iDb = (*Tsqlite3)(unsafe.Pointer(db)).Finit1.FiDb
|
|
/* Return code from sqlite3_prepare() */
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FiDb = libc.Uint8FromInt32(iDb)
|
|
if _sqlite3GetUInt32(tls, **(**uintptr)(__ccgo_up(argv + 3*8)), db+192) == 0 || (*Tsqlite3)(unsafe.Pointer(db)).Finit1.FnewTnum > (*TInitData)(unsafe.Pointer(pData)).FmxPage && (*TInitData)(unsafe.Pointer(pData)).FmxPage > uint32(0) {
|
|
if _sqlite3Config.FbExtraSchemaChecks != 0 {
|
|
_corruptSchema(tls, pData, argv, __ccgo_ts+15744)
|
|
}
|
|
}
|
|
libc.SetBitFieldPtr8Uint32(db+192+8, libc.Uint32FromInt32(0), 0, 0x1)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FazInit = argv
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
_sqlite3Prepare(tls, db, **(**uintptr)(__ccgo_up(argv + 4*8)), -int32(1), uint32(0), uintptr(0), bp, uintptr(0))
|
|
rc = (*Tsqlite3)(unsafe.Pointer(db)).FerrCode
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FiDb = saved_iDb
|
|
/* assert( saved_iDb==0 || (db->mDbFlags & DBFLAG_Vacuum)!=0 ); */
|
|
if SQLITE_OK != rc {
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(db + 192 + 8))&0x1>>0)) != 0 {
|
|
} else {
|
|
if rc > (*TInitData)(unsafe.Pointer(pData)).Frc {
|
|
(*TInitData)(unsafe.Pointer(pData)).Frc = rc
|
|
}
|
|
if rc == int32(SQLITE_NOMEM) {
|
|
_sqlite3OomFault(tls, db)
|
|
} else {
|
|
if rc != int32(SQLITE_INTERRUPT) && rc&int32(0xFF) != int32(SQLITE_LOCKED) {
|
|
_corruptSchema(tls, pData, argv, Xsqlite3_errmsg(tls, db))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FazInit = uintptr(unsafe.Pointer(&_sqlite3StdType)) /* Any array of string ptrs will do */
|
|
Xsqlite3_finalize(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
} else {
|
|
if **(**uintptr)(__ccgo_up(argv + 1*8)) == uintptr(0) || **(**uintptr)(__ccgo_up(argv + 4*8)) != uintptr(0) && int32(**(**int8)(__ccgo_up(**(**uintptr)(__ccgo_up(argv + 4*8))))) != 0 {
|
|
_corruptSchema(tls, pData, argv, uintptr(0))
|
|
} else {
|
|
pIndex = _sqlite3FindIndex(tls, db, **(**uintptr)(__ccgo_up(argv + 1*8)), (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName)
|
|
if pIndex == uintptr(0) {
|
|
_corruptSchema(tls, pData, argv, __ccgo_ts+20094)
|
|
} else {
|
|
if _sqlite3GetUInt32(tls, **(**uintptr)(__ccgo_up(argv + 3*8)), pIndex+88) == 0 || (*TIndex)(unsafe.Pointer(pIndex)).Ftnum < uint32(2) || (*TIndex)(unsafe.Pointer(pIndex)).Ftnum > (*TInitData)(unsafe.Pointer(pData)).FmxPage || _sqlite3IndexHasDuplicateRootPage(tls, pIndex) != 0 {
|
|
if _sqlite3Config.FbExtraSchemaChecks != 0 {
|
|
_corruptSchema(tls, pData, argv, __ccgo_ts+15744)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Attempt to load an SQLite extension library contained in the file
|
|
// ** zFile. The entry point is zProc. zProc may be 0 in which case a
|
|
// ** default entry point name (sqlite3_extension_init) is used. Use
|
|
// ** of the default name is recommended.
|
|
// **
|
|
// ** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong.
|
|
// **
|
|
// ** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with
|
|
// ** error message text. The calling function should free this memory
|
|
// ** by calling sqlite3DbFree(db, ).
|
|
// */
|
|
func _sqlite3LoadExtension(tls *libc.TLS, db uintptr, zFile uintptr, zProc uintptr, pzErrMsg uintptr) (r int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var aHandle, handle, pVfs, zAltEntry, zAltFile, zEntry, v1 uintptr
|
|
var c, cnt, iEntry, iFile, ii, ncFile, rc, v3, v8 int32
|
|
var nMsg Tu64
|
|
var xInit Tsqlite3_loadext_entry
|
|
var v4 bool
|
|
var _ /* zErrmsg at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = aHandle, c, cnt, handle, iEntry, iFile, ii, nMsg, ncFile, pVfs, rc, xInit, zAltEntry, zAltFile, zEntry, v1, v3, v4, v8
|
|
pVfs = (*Tsqlite3)(unsafe.Pointer(db)).FpVfs
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
zAltEntry = uintptr(0)
|
|
nMsg = uint64(libc.Xstrlen(tls, zFile))
|
|
if pzErrMsg != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = uintptr(0)
|
|
}
|
|
/* Ticket #1863. To avoid a creating security problems for older
|
|
** applications that relink against newer versions of SQLite, the
|
|
** ability to run load_extension is turned off by default. One
|
|
** must call either sqlite3_enable_load_extension(db) or
|
|
** sqlite3_db_config(db, SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, 1, 0)
|
|
** to turn on extension loading.
|
|
*/
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_LoadExtension) == uint64(0) {
|
|
if pzErrMsg != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = Xsqlite3_mprintf(tls, __ccgo_ts+13675, 0)
|
|
}
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
if zProc != 0 {
|
|
v1 = zProc
|
|
} else {
|
|
v1 = __ccgo_ts + 17591
|
|
}
|
|
zEntry = v1
|
|
/* tag-20210611-1. Some dlopen() implementations will segfault if given
|
|
** an oversize filename. Most filesystems have a pathname limit of 4K,
|
|
** so limit the extension filename length to about twice that.
|
|
** https://sqlite.org/forum/forumpost/08a0d6d9bf
|
|
**
|
|
** Later (2023-03-25): Save an extra 6 bytes for the filename suffix.
|
|
** See https://sqlite.org/forum/forumpost/24083b579d.
|
|
*/
|
|
if nMsg > uint64(FILENAME_MAX) {
|
|
goto extension_not_found
|
|
}
|
|
/* Do not allow sqlite3_load_extension() to link to a copy of the
|
|
** running application, by passing in an empty filename. */
|
|
if nMsg == uint64(0) {
|
|
goto extension_not_found
|
|
}
|
|
handle = _sqlite3OsDlOpen(tls, pVfs, zFile)
|
|
ii = 0
|
|
for {
|
|
if !(ii < libc.Int32FromUint64(libc.Uint64FromInt64(8)/libc.Uint64FromInt64(8)) && handle == uintptr(0)) {
|
|
break
|
|
}
|
|
zAltFile = Xsqlite3_mprintf(tls, __ccgo_ts+13636, libc.VaList(bp+16, zFile, _azEndings[ii]))
|
|
if zAltFile == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
if nMsg+uint64(libc.Xstrlen(tls, _azEndings[ii]))+uint64(1) <= uint64(FILENAME_MAX) {
|
|
handle = _sqlite3OsDlOpen(tls, pVfs, zAltFile)
|
|
}
|
|
Xsqlite3_free(tls, zAltFile)
|
|
goto _2
|
|
_2:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
if handle == uintptr(0) {
|
|
goto extension_not_found
|
|
}
|
|
xInit = _sqlite3OsDlSym(tls, pVfs, handle, zEntry)
|
|
/* If no entry point was specified and the default legacy
|
|
** entry point name "sqlite3_extension_init" was not found, then
|
|
** construct an entry point name "sqlite3_X_init" where the X is
|
|
** replaced by the lowercase value of every ASCII alphabetic
|
|
** character in the filename after the last "/" up to the first ".",
|
|
** and skipping the first three characters if they are "lib".
|
|
** Examples:
|
|
**
|
|
** /usr/local/lib/libExample5.4.3.so ==> sqlite3_example_init
|
|
** C:/lib/mathfuncs.dll ==> sqlite3_mathfuncs_init
|
|
**
|
|
** If that still finds no entry point, repeat a second time but this
|
|
** time include both alphabetic and numeric characters up to the first
|
|
** ".". Example:
|
|
**
|
|
** /usr/local/lib/libExample5.4.3.so ==> sqlite3_example5_init
|
|
*/
|
|
if xInit == uintptr(0) && zProc == uintptr(0) {
|
|
ncFile = _sqlite3Strlen30(tls, zFile)
|
|
cnt = 0
|
|
zAltEntry = Xsqlite3_malloc64(tls, libc.Uint64FromInt32(ncFile+int32(30)))
|
|
if zAltEntry == uintptr(0) {
|
|
_sqlite3OsDlClose(tls, pVfs, handle)
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
for {
|
|
libc.Xmemcpy(tls, zAltEntry, __ccgo_ts+17614, uint64(8))
|
|
iFile = ncFile - int32(1)
|
|
for {
|
|
if !(iFile >= 0 && !(int32(**(**int8)(__ccgo_up(zFile + uintptr(iFile)))) == libc.Int32FromUint8('/'))) {
|
|
break
|
|
}
|
|
goto _6
|
|
_6:
|
|
;
|
|
iFile = iFile - 1
|
|
}
|
|
iFile = iFile + 1
|
|
if Xsqlite3_strnicmp(tls, zFile+uintptr(iFile), __ccgo_ts+17623, int32(3)) == 0 {
|
|
iFile = iFile + int32(3)
|
|
}
|
|
iEntry = int32(8)
|
|
for {
|
|
v3 = int32(**(**int8)(__ccgo_up(zFile + uintptr(iFile))))
|
|
c = v3
|
|
if !(v3 != 0 && c != int32('.')) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt32(c)])&int32(0x02) != 0 || cnt != 0 && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt32(c)])&int32(0x04) != 0 {
|
|
v8 = iEntry
|
|
iEntry = iEntry + 1
|
|
**(**int8)(__ccgo_up(zAltEntry + uintptr(v8))) = libc.Int8FromUint8(_sqlite3UpperToLower[libc.Uint32FromInt32(c)])
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
iFile = iFile + 1
|
|
}
|
|
libc.Xmemcpy(tls, zAltEntry+uintptr(iEntry), __ccgo_ts+17627, uint64(6))
|
|
zEntry = zAltEntry
|
|
xInit = _sqlite3OsDlSym(tls, pVfs, handle, zEntry)
|
|
goto _5
|
|
_5:
|
|
;
|
|
if v4 = xInit == uintptr(0); v4 {
|
|
cnt = cnt + 1
|
|
v3 = cnt
|
|
}
|
|
if !(v4 && v3 < int32(2)) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if xInit == uintptr(0) {
|
|
if pzErrMsg != 0 {
|
|
nMsg = nMsg + uint64(libc.Xstrlen(tls, zEntry)+uint64(300))
|
|
v1 = Xsqlite3_malloc64(tls, nMsg)
|
|
**(**uintptr)(__ccgo_up(bp)) = v1
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = v1
|
|
if **(**uintptr)(__ccgo_up(bp)) != 0 {
|
|
/* zErrmsg would be NULL if not so */
|
|
Xsqlite3_snprintf(tls, libc.Int32FromUint64(nMsg), **(**uintptr)(__ccgo_up(bp)), __ccgo_ts+17633, libc.VaList(bp+16, zEntry, zFile))
|
|
_sqlite3OsDlError(tls, pVfs, libc.Int32FromUint64(nMsg-uint64(1)), **(**uintptr)(__ccgo_up(bp)))
|
|
}
|
|
}
|
|
_sqlite3OsDlClose(tls, pVfs, handle)
|
|
Xsqlite3_free(tls, zAltEntry)
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
Xsqlite3_free(tls, zAltEntry)
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{xInit})))(tls, db, bp, uintptr(unsafe.Pointer(&_sqlite3Apis)))
|
|
if rc != 0 {
|
|
if rc == libc.Int32FromInt32(SQLITE_OK)|libc.Int32FromInt32(1)<<libc.Int32FromInt32(8) {
|
|
return SQLITE_OK
|
|
}
|
|
if pzErrMsg != 0 {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = Xsqlite3_mprintf(tls, __ccgo_ts+17676, libc.VaList(bp+16, **(**uintptr)(__ccgo_up(bp))))
|
|
}
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
_sqlite3OsDlClose(tls, pVfs, handle)
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
/* Append the new shared library handle to the db->aExtension array. */
|
|
aHandle = _sqlite3DbMallocZero(tls, db, uint64(uint64(8)*libc.Uint64FromInt32((*Tsqlite3)(unsafe.Pointer(db)).FnExtension+libc.Int32FromInt32(1))))
|
|
if aHandle == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnExtension > 0 {
|
|
libc.Xmemcpy(tls, aHandle, (*Tsqlite3)(unsafe.Pointer(db)).FaExtension, uint64(8)*libc.Uint64FromInt32((*Tsqlite3)(unsafe.Pointer(db)).FnExtension))
|
|
}
|
|
_sqlite3DbFree(tls, db, (*Tsqlite3)(unsafe.Pointer(db)).FaExtension)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FaExtension = aHandle
|
|
v1 = db + 236
|
|
v3 = *(*int32)(unsafe.Pointer(v1))
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
**(**uintptr)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaExtension + uintptr(v3)*8)) = handle
|
|
return SQLITE_OK
|
|
goto extension_not_found
|
|
extension_not_found:
|
|
;
|
|
if pzErrMsg != 0 {
|
|
nMsg = nMsg + uint64(300)
|
|
v1 = Xsqlite3_malloc64(tls, nMsg)
|
|
**(**uintptr)(__ccgo_up(bp)) = v1
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = v1
|
|
if **(**uintptr)(__ccgo_up(bp)) != 0 {
|
|
/* zErrmsg would be NULL if not so */
|
|
Xsqlite3_snprintf(tls, libc.Int32FromUint64(nMsg), **(**uintptr)(__ccgo_up(bp)), __ccgo_ts+17708, libc.VaList(bp+16, int32(FILENAME_MAX), zFile))
|
|
_sqlite3OsDlError(tls, pVfs, libc.Int32FromUint64(nMsg-uint64(1)), **(**uintptr)(__ccgo_up(bp)))
|
|
}
|
|
}
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Allocate and initialize a new Pager object and put a pointer to it
|
|
// ** in *ppPager. The pager should eventually be freed by passing it
|
|
// ** to sqlite3PagerClose().
|
|
// **
|
|
// ** The zFilename argument is the path to the database file to open.
|
|
// ** If zFilename is NULL then a randomly-named temporary file is created
|
|
// ** and used as the file to be cached. Temporary files are be deleted
|
|
// ** automatically when they are closed. If zFilename is ":memory:" then
|
|
// ** all information is held in cache. It is never written to disk.
|
|
// ** This can be used to implement an in-memory database.
|
|
// **
|
|
// ** The nExtra parameter specifies the number of bytes of space allocated
|
|
// ** along with each page reference. This space is available to the user
|
|
// ** via the sqlite3PagerGetExtra() API. When a new page is allocated, the
|
|
// ** first 8 bytes of this space are zeroed but the remainder is uninitialized.
|
|
// ** (The extra space is used by btree as the MemPage object.)
|
|
// **
|
|
// ** The flags argument is used to specify properties that affect the
|
|
// ** operation of the pager. It should be passed some bitwise combination
|
|
// ** of the PAGER_* flags.
|
|
// **
|
|
// ** The vfsFlags parameter is a bitmask to pass to the flags parameter
|
|
// ** of the xOpen() method of the supplied VFS when opening files.
|
|
// **
|
|
// ** If the pager object is allocated and the specified file opened
|
|
// ** successfully, SQLITE_OK is returned and *ppPager set to point to
|
|
// ** the new pager object. If an error occurs, *ppPager is set to NULL
|
|
// ** and error code returned. This function may return SQLITE_NOMEM
|
|
// ** (sqlite3Malloc() is used to allocate memory), SQLITE_CANTOPEN or
|
|
// ** various SQLITE_IO_XXX errors.
|
|
// */
|
|
func _sqlite3PagerOpen(tls *libc.TLS, pVfs uintptr, ppPager uintptr, zFilename uintptr, nExtra int32, flags int32, vfsFlags int32, __ccgo_fp_xReinit uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var iDc, journalFileSize, memDb, memJM, nPathname, nUriByte, pcacheSize, rc, readOnly, tempFile, useJournal, v4 int32
|
|
var pPtr, z, zPathname, zUri, v1 uintptr
|
|
var _ /* fout at bp+12 */ int32
|
|
var _ /* pPager at bp+0 */ uintptr
|
|
var _ /* szPageDflt at bp+8 */ Tu32
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = iDc, journalFileSize, memDb, memJM, nPathname, nUriByte, pPtr, pcacheSize, rc, readOnly, tempFile, useJournal, z, zPathname, zUri, v1, v4
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0) /* Pager object to allocate and return */
|
|
rc = SQLITE_OK /* Return code */
|
|
tempFile = 0 /* True for temp files (incl. in-memory files) */
|
|
memDb = 0 /* True if this is an in-memory file */
|
|
memJM = 0 /* Memory journal mode */
|
|
readOnly = 0 /* Bytes to allocate for each journal fd */
|
|
zPathname = uintptr(0) /* Full path to database file */
|
|
nPathname = 0 /* Number of bytes in zPathname */
|
|
useJournal = libc.BoolInt32(flags&int32(PAGER_OMIT_JOURNAL) == 0) /* False to omit journal */
|
|
pcacheSize = _sqlite3PcacheSize(tls) /* Bytes to allocate for PCache */
|
|
**(**Tu32)(__ccgo_up(bp + 8)) = uint32(SQLITE_DEFAULT_PAGE_SIZE) /* Default page size */
|
|
zUri = uintptr(0) /* URI args to copy */
|
|
nUriByte = int32(1) /* Number of bytes of URI args at *zUri */
|
|
/* Figure out how much space is required for each journal file-handle
|
|
** (there are two of them, the main journal and the sub-journal). */
|
|
journalFileSize = (_sqlite3JournalSize(tls, pVfs) + int32(7)) & ^libc.Int32FromInt32(7)
|
|
/* Set the output variable to NULL in case an error occurs. */
|
|
**(**uintptr)(__ccgo_up(ppPager)) = uintptr(0)
|
|
if flags&int32(PAGER_MEMORY) != 0 {
|
|
memDb = int32(1)
|
|
if zFilename != 0 && **(**int8)(__ccgo_up(zFilename)) != 0 {
|
|
zPathname = _sqlite3DbStrDup(tls, uintptr(0), zFilename)
|
|
if zPathname == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
nPathname = _sqlite3Strlen30(tls, zPathname)
|
|
zFilename = uintptr(0)
|
|
}
|
|
}
|
|
/* Compute and store the full pathname in an allocated buffer pointed
|
|
** to by zPathname, length nPathname. Or, if this is a temporary file,
|
|
** leave both nPathname and zPathname set to 0.
|
|
*/
|
|
if zFilename != 0 && **(**int8)(__ccgo_up(zFilename)) != 0 {
|
|
nPathname = (*Tsqlite3_vfs)(unsafe.Pointer(pVfs)).FmxPathname + int32(1)
|
|
zPathname = _sqlite3DbMallocRaw(tls, uintptr(0), libc.Uint64FromInt64(int64(2)*int64(nPathname)))
|
|
if zPathname == uintptr(0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
**(**int8)(__ccgo_up(zPathname)) = 0 /* Make sure initialized even if FullPathname() fails */
|
|
rc = _sqlite3OsFullPathname(tls, pVfs, zFilename, nPathname, zPathname)
|
|
if rc != SQLITE_OK {
|
|
if rc == libc.Int32FromInt32(SQLITE_OK)|libc.Int32FromInt32(2)<<libc.Int32FromInt32(8) {
|
|
if vfsFlags&int32(SQLITE_OPEN_NOFOLLOW) != 0 {
|
|
rc = libc.Int32FromInt32(SQLITE_CANTOPEN) | libc.Int32FromInt32(6)<<libc.Int32FromInt32(8)
|
|
} else {
|
|
rc = SQLITE_OK
|
|
}
|
|
}
|
|
}
|
|
nPathname = _sqlite3Strlen30(tls, zPathname)
|
|
v1 = zFilename + uintptr(_sqlite3Strlen30(tls, zFilename)+int32(1))
|
|
zUri = v1
|
|
z = v1
|
|
for **(**int8)(__ccgo_up(z)) != 0 {
|
|
z = z + uintptr(libc.Xstrlen(tls, z)+uint64(1))
|
|
z = z + uintptr(libc.Xstrlen(tls, z)+uint64(1))
|
|
}
|
|
nUriByte = int32(t__predefined_ptrdiff_t(z+1) - int64(zUri))
|
|
if rc == SQLITE_OK && nPathname+int32(8) > (*Tsqlite3_vfs)(unsafe.Pointer(pVfs)).FmxPathname {
|
|
/* This branch is taken when the journal path required by
|
|
** the database being opened will be more than pVfs->mxPathname
|
|
** bytes in length. This means the database cannot be opened,
|
|
** as it will not be possible to open the journal file or even
|
|
** check for a hot-journal before reading.
|
|
*/
|
|
rc = _sqlite3CantopenError(tls, int32(64499))
|
|
}
|
|
if rc != SQLITE_OK {
|
|
_sqlite3DbFree(tls, uintptr(0), zPathname)
|
|
return rc
|
|
}
|
|
}
|
|
/* Allocate memory for the Pager structure, PCache object, the
|
|
** three file descriptors, the database file name and the journal
|
|
** file name. The layout in memory is as follows:
|
|
**
|
|
** Pager object (sizeof(Pager) bytes)
|
|
** PCache object (sqlite3PcacheSize() bytes)
|
|
** Database file handle (pVfs->szOsFile bytes)
|
|
** Sub-journal file handle (journalFileSize bytes)
|
|
** Main journal file handle (journalFileSize bytes)
|
|
** Ptr back to the Pager (sizeof(Pager*) bytes)
|
|
** \0\0\0\0 database prefix (4 bytes)
|
|
** Database file name (nPathname+1 bytes)
|
|
** URI query parameters (nUriByte bytes)
|
|
** Journal filename (nPathname+8+1 bytes)
|
|
** WAL filename (nPathname+4+1 bytes)
|
|
** \0\0\0 terminator (3 bytes)
|
|
**
|
|
** Some 3rd-party software, over which we have no control, depends on
|
|
** the specific order of the filenames and the \0 separators between them
|
|
** so that it can (for example) find the database filename given the WAL
|
|
** filename without using the sqlite3_filename_database() API. This is a
|
|
** misuse of SQLite and a bug in the 3rd-party software, but the 3rd-party
|
|
** software is in widespread use, so we try to avoid changing the filename
|
|
** order and formatting if possible. In particular, the details of the
|
|
** filename format expected by 3rd-party software should be as follows:
|
|
**
|
|
** - Main Database Path
|
|
** - \0
|
|
** - Multiple URI components consisting of:
|
|
** - Key
|
|
** - \0
|
|
** - Value
|
|
** - \0
|
|
** - \0
|
|
** - Journal Path
|
|
** - \0
|
|
** - WAL Path (zWALName)
|
|
** - \0
|
|
**
|
|
** The sqlite3_create_filename() interface and the databaseFilename() utility
|
|
** that is used by sqlite3_filename_database() and kin also depend on the
|
|
** specific formatting and order of the various filenames, so if the format
|
|
** changes here, be sure to change it there as well.
|
|
*/
|
|
pPtr = _sqlite3MallocZero(tls, uint64((libc.Uint64FromInt64(312)+libc.Uint64FromInt32(7))&libc.Uint64FromInt32(^libc.Int32FromInt32(7))+libc.Uint64FromInt32((pcacheSize+libc.Int32FromInt32(7)) & ^libc.Int32FromInt32(7))+libc.Uint64FromInt32(((*Tsqlite3_vfs)(unsafe.Pointer(pVfs)).FszOsFile+libc.Int32FromInt32(7)) & ^libc.Int32FromInt32(7)))+libc.Uint64FromInt32(journalFileSize)*uint64(2)+uint64(__SIZEOF_POINTER__)+uint64(4)+libc.Uint64FromInt32(nPathname)+uint64(1)+libc.Uint64FromInt32(nUriByte)+libc.Uint64FromInt32(nPathname)+uint64(8)+uint64(1)+libc.Uint64FromInt32(nPathname)+uint64(4)+uint64(1)+uint64(3))
|
|
if !(pPtr != 0) {
|
|
_sqlite3DbFree(tls, uintptr(0), zPathname)
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
**(**uintptr)(__ccgo_up(bp)) = pPtr
|
|
pPtr = pPtr + uintptr((libc.Uint64FromInt64(312)+libc.Uint64FromInt32(7))&libc.Uint64FromInt32(^libc.Int32FromInt32(7)))
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FpPCache = pPtr
|
|
pPtr = pPtr + uintptr((pcacheSize+libc.Int32FromInt32(7)) & ^libc.Int32FromInt32(7))
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Ffd = pPtr
|
|
pPtr = pPtr + uintptr(((*Tsqlite3_vfs)(unsafe.Pointer(pVfs)).FszOsFile+libc.Int32FromInt32(7)) & ^libc.Int32FromInt32(7))
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fsjfd = pPtr
|
|
pPtr = pPtr + uintptr(journalFileSize)
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fjfd = pPtr
|
|
pPtr = pPtr + uintptr(journalFileSize)
|
|
libc.Xmemcpy(tls, pPtr, bp, uint64(__SIZEOF_POINTER__))
|
|
pPtr = pPtr + uintptr(__SIZEOF_POINTER__)
|
|
/* Fill in the Pager.zFilename and pPager.zQueryParam fields */
|
|
pPtr = pPtr + uintptr(4) /* Skip zero prefix */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzFilename = pPtr
|
|
if nPathname > 0 {
|
|
libc.Xmemcpy(tls, pPtr, zPathname, libc.Uint64FromInt32(nPathname))
|
|
pPtr = pPtr + uintptr(nPathname+int32(1))
|
|
if zUri != 0 {
|
|
libc.Xmemcpy(tls, pPtr, zUri, libc.Uint64FromInt32(nUriByte))
|
|
pPtr = pPtr + uintptr(nUriByte)
|
|
} else {
|
|
pPtr = pPtr + 1
|
|
}
|
|
}
|
|
/* Fill in Pager.zJournal */
|
|
if nPathname > 0 {
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzJournal = pPtr
|
|
libc.Xmemcpy(tls, pPtr, zPathname, libc.Uint64FromInt32(nPathname))
|
|
pPtr = pPtr + uintptr(nPathname)
|
|
libc.Xmemcpy(tls, pPtr, __ccgo_ts+4231, uint64(8))
|
|
pPtr = pPtr + uintptr(libc.Int32FromInt32(8)+libc.Int32FromInt32(1))
|
|
} else {
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzJournal = uintptr(0)
|
|
}
|
|
/* Fill in Pager.zWal */
|
|
if nPathname > 0 {
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzWal = pPtr
|
|
libc.Xmemcpy(tls, pPtr, zPathname, libc.Uint64FromInt32(nPathname))
|
|
pPtr = pPtr + uintptr(nPathname)
|
|
libc.Xmemcpy(tls, pPtr, __ccgo_ts+4240, uint64(4))
|
|
pPtr = pPtr + uintptr(libc.Int32FromInt32(4)+libc.Int32FromInt32(1))
|
|
} else {
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzWal = uintptr(0)
|
|
}
|
|
_ = pPtr /* Suppress warning about unused pPtr value */
|
|
if nPathname != 0 {
|
|
_sqlite3DbFree(tls, uintptr(0), zPathname)
|
|
}
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FpVfs = pVfs
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FvfsFlags = libc.Uint32FromInt32(vfsFlags)
|
|
/* Open the pager file.
|
|
*/
|
|
if !(zFilename != 0 && **(**int8)(__ccgo_up(zFilename)) != 0) {
|
|
goto _2
|
|
}
|
|
**(**int32)(__ccgo_up(bp + 12)) = 0 /* VFS flags returned by xOpen() */
|
|
rc = _sqlite3OsOpen(tls, pVfs, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzFilename, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Ffd, vfsFlags, bp+12)
|
|
v4 = libc.BoolInt32(**(**int32)(__ccgo_up(bp + 12))&libc.Int32FromInt32(SQLITE_OPEN_MEMORY) != libc.Int32FromInt32(0))
|
|
memJM = v4
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FmemVfs = libc.Uint8FromInt32(v4)
|
|
readOnly = libc.BoolInt32(**(**int32)(__ccgo_up(bp + 12))&int32(SQLITE_OPEN_READONLY) != 0)
|
|
/* If the file was successfully opened for read/write access,
|
|
** choose a default page size in case we have to create the
|
|
** database file. The default page size is the maximum of:
|
|
**
|
|
** + SQLITE_DEFAULT_PAGE_SIZE,
|
|
** + The value returned by sqlite3OsSectorSize()
|
|
** + The largest page size that can be written atomically.
|
|
*/
|
|
if rc == SQLITE_OK {
|
|
iDc = _sqlite3OsDeviceCharacteristics(tls, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Ffd)
|
|
if !(readOnly != 0) {
|
|
_setSectorSize(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
if **(**Tu32)(__ccgo_up(bp + 8)) < (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FsectorSize {
|
|
if (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FsectorSize > uint32(SQLITE_MAX_DEFAULT_PAGE_SIZE) {
|
|
**(**Tu32)(__ccgo_up(bp + 8)) = uint32(SQLITE_MAX_DEFAULT_PAGE_SIZE)
|
|
} else {
|
|
**(**Tu32)(__ccgo_up(bp + 8)) = (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FsectorSize
|
|
}
|
|
}
|
|
}
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FnoLock = libc.Uint8FromInt32(Xsqlite3_uri_boolean(tls, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzFilename, __ccgo_ts+4245, 0))
|
|
if iDc&int32(SQLITE_IOCAP_IMMUTABLE) != 0 || Xsqlite3_uri_boolean(tls, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FzFilename, __ccgo_ts+4252, 0) != 0 {
|
|
vfsFlags = vfsFlags | int32(SQLITE_OPEN_READONLY)
|
|
goto act_like_temp_file
|
|
}
|
|
}
|
|
goto _3
|
|
_2:
|
|
;
|
|
/* If a temporary file is requested, it is not opened immediately.
|
|
** In this case we accept the default page size and delay actually
|
|
** opening the file until the first call to OsWrite().
|
|
**
|
|
** This branch is also run for an in-memory database. An in-memory
|
|
** database is the same as a temp-file that is never written out to
|
|
** disk and uses an in-memory rollback journal.
|
|
**
|
|
** This branch also runs for files marked as immutable.
|
|
*/
|
|
goto act_like_temp_file
|
|
act_like_temp_file:
|
|
;
|
|
tempFile = int32(1)
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FeState = uint8(PAGER_READER) /* Pretend we already have a lock */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FeLock = uint8(EXCLUSIVE_LOCK) /* Pretend we are in EXCLUSIVE mode */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FnoLock = uint8(1) /* Do no locking */
|
|
readOnly = vfsFlags & int32(SQLITE_OPEN_READONLY)
|
|
_3:
|
|
;
|
|
/* The following call to PagerSetPagesize() serves to set the value of
|
|
** Pager.pageSize and to allocate the Pager.pTmpSpace buffer.
|
|
*/
|
|
if rc == SQLITE_OK {
|
|
rc = _sqlite3PagerSetPagesize(tls, **(**uintptr)(__ccgo_up(bp)), bp+8, -int32(1))
|
|
}
|
|
/* Initialize the PCache object. */
|
|
if rc == SQLITE_OK {
|
|
nExtra = (nExtra + int32(7)) & ^libc.Int32FromInt32(7)
|
|
if !(memDb != 0) {
|
|
v1 = __ccgo_fp(_pagerStress)
|
|
} else {
|
|
v1 = uintptr(0)
|
|
}
|
|
rc = _sqlite3PcacheOpen(tls, libc.Int32FromUint32(**(**Tu32)(__ccgo_up(bp + 8))), nExtra, libc.BoolInt32(!(memDb != 0)), v1, **(**uintptr)(__ccgo_up(bp)), (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FpPCache)
|
|
}
|
|
/* If an error occurred above, free the Pager structure and close the file.
|
|
*/
|
|
if rc != SQLITE_OK {
|
|
_sqlite3OsClose(tls, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Ffd)
|
|
_sqlite3PageFree(tls, (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FpTmpSpace)
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
return rc
|
|
}
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FuseJournal = libc.Uint8FromInt32(useJournal)
|
|
/* pPager->stmtOpen = 0; */
|
|
/* pPager->stmtInUse = 0; */
|
|
/* pPager->nRef = 0; */
|
|
/* pPager->stmtSize = 0; */
|
|
/* pPager->stmtJSize = 0; */
|
|
/* pPager->nPage = 0; */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FmxPgno = uint32(SQLITE_MAX_PAGE_COUNT)
|
|
/* pPager->state = PAGER_UNLOCK; */
|
|
/* pPager->errMask = 0; */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FtempFile = libc.Uint8FromInt32(tempFile)
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FexclusiveMode = libc.Uint8FromInt32(tempFile)
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FchangeCountDone = (*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FtempFile
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FmemDb = libc.Uint8FromInt32(memDb)
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FreadOnly = libc.Uint8FromInt32(readOnly)
|
|
_sqlite3PagerSetFlags(tls, **(**uintptr)(__ccgo_up(bp)), libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_DEFAULT_SYNCHRONOUS)+libc.Int32FromInt32(1)|libc.Int32FromInt32(PAGER_CACHESPILL)))
|
|
/* pPager->pFirst = 0; */
|
|
/* pPager->pFirstSynced = 0; */
|
|
/* pPager->pLast = 0; */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FnExtra = libc.Uint16FromInt32(nExtra)
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FjournalSizeLimit = int64(-int32(1))
|
|
_setSectorSize(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
if !(useJournal != 0) {
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FjournalMode = uint8(PAGER_JOURNALMODE_OFF)
|
|
} else {
|
|
if memDb != 0 || memJM != 0 {
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FjournalMode = uint8(PAGER_JOURNALMODE_MEMORY)
|
|
}
|
|
}
|
|
/* pPager->xBusyHandler = 0; */
|
|
/* pPager->pBusyHandlerArg = 0; */
|
|
(*TPager)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).FxReiniter = __ccgo_fp_xReinit
|
|
_setGetterMethod(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
/* memset(pPager->aHash, 0, sizeof(pPager->aHash)); */
|
|
/* pPager->szMmap = SQLITE_DEFAULT_MMAP_SIZE // will be set by btree.c */
|
|
**(**uintptr)(__ccgo_up(ppPager)) = **(**uintptr)(__ccgo_up(bp))
|
|
return SQLITE_OK
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function is used to parse both URIs and non-URI filenames passed by the
|
|
// ** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database
|
|
// ** URIs specified as part of ATTACH statements.
|
|
// **
|
|
// ** The first argument to this function is the name of the VFS to use (or
|
|
// ** a NULL to signify the default VFS) if the URI does not contain a "vfs=xxx"
|
|
// ** query parameter. The second argument contains the URI (or non-URI filename)
|
|
// ** itself. When this function is called the *pFlags variable should contain
|
|
// ** the default flags to open the database handle with. The value stored in
|
|
// ** *pFlags may be updated before returning if the URI filename contains
|
|
// ** "cache=xxx" or "mode=xxx" query parameters.
|
|
// **
|
|
// ** If successful, SQLITE_OK is returned. In this case *ppVfs is set to point to
|
|
// ** the VFS that should be used to open the database file. *pzFile is set to
|
|
// ** point to a buffer containing the name of the file to open. The value
|
|
// ** stored in *pzFile is a database name acceptable to sqlite3_uri_parameter()
|
|
// ** and is in the same format as names created using sqlite3_create_filename().
|
|
// ** The caller must invoke sqlite3_free_filename() (not sqlite3_free()!) on
|
|
// ** the value returned in *pzFile to avoid a memory leak.
|
|
// **
|
|
// ** If an error occurs, then an SQLite error code is returned and *pzErrMsg
|
|
// ** may be set to point to a buffer containing an English language error
|
|
// ** message. It is the responsibility of the caller to eventually release
|
|
// ** this buffer by calling sqlite3_free().
|
|
// */
|
|
func _sqlite3ParseUri(tls *libc.TLS, zDefaultVfs uintptr, zUri uintptr, pFlags uintptr, ppVfs uintptr, pzFile uintptr, pzErrMsg uintptr) (r int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var aMode, z, zFile, zModeType, zOpt, zVal, zVfs uintptr
|
|
var c, v2 int8
|
|
var eState, i, limit, mask, mode, octet, rc int32
|
|
var flags uint32
|
|
var iIn, iOut, nOpt, nUri, nVal, v3, v4 Ti64
|
|
var nByte Tu64
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = aMode, c, eState, flags, i, iIn, iOut, limit, mask, mode, nByte, nOpt, nUri, nVal, octet, rc, z, zFile, zModeType, zOpt, zVal, zVfs, v2, v3, v4
|
|
rc = SQLITE_OK
|
|
flags = **(**uint32)(__ccgo_up(pFlags))
|
|
zVfs = zDefaultVfs
|
|
nUri = libc.Int64FromUint64(libc.Xstrlen(tls, zUri))
|
|
if (flags&uint32(SQLITE_OPEN_URI) != 0 || libc.AtomicLoadNUint8(uintptr(unsafe.Pointer(&_sqlite3Config))+6, libc.Int32FromInt32(__ATOMIC_RELAXED)) != 0) && nUri >= int64(5) && libc.Xmemcmp(tls, zUri, __ccgo_ts+26118, uint64(5)) == 0 { /* Input character index */
|
|
iOut = 0 /* Output character index */
|
|
nByte = libc.Uint64FromInt64(nUri + int64(8)) /* Bytes of space to allocate */
|
|
/* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen
|
|
** method that there may be extra parameters following the file-name. */
|
|
flags = flags | uint32(SQLITE_OPEN_URI)
|
|
iIn = 0
|
|
for {
|
|
if !(iIn < nUri) {
|
|
break
|
|
}
|
|
nByte = nByte + libc.BoolUint64(int32(**(**int8)(__ccgo_up(zUri + uintptr(iIn)))) == libc.Int32FromUint8('&'))
|
|
goto _1
|
|
_1:
|
|
;
|
|
iIn = iIn + 1
|
|
}
|
|
zFile = Xsqlite3_malloc64(tls, nByte)
|
|
if !(zFile != 0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
libc.Xmemset(tls, zFile, 0, uint64(4)) /* 4-byte of 0x00 is the start of DB name marker */
|
|
zFile = zFile + uintptr(4)
|
|
iIn = int64(5)
|
|
/* Discard the scheme and authority segments of the URI. */
|
|
if int32(**(**int8)(__ccgo_up(zUri + 5))) == int32('/') && int32(**(**int8)(__ccgo_up(zUri + 6))) == int32('/') {
|
|
iIn = int64(7)
|
|
for **(**int8)(__ccgo_up(zUri + uintptr(iIn))) != 0 && int32(**(**int8)(__ccgo_up(zUri + uintptr(iIn)))) != int32('/') {
|
|
iIn = iIn + 1
|
|
}
|
|
if iIn != int64(7) && (iIn != int64(16) || libc.Xmemcmp(tls, __ccgo_ts+26124, zUri+7, uint64(9)) != 0) {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = Xsqlite3_mprintf(tls, __ccgo_ts+26134, libc.VaList(bp+8, int32(iIn-libc.Int64FromInt32(7)), zUri+7))
|
|
rc = int32(SQLITE_ERROR)
|
|
goto parse_uri_out
|
|
}
|
|
}
|
|
/* Copy the filename and any query parameters into the zFile buffer.
|
|
** Decode %HH escape codes along the way.
|
|
**
|
|
** Within this loop, variable eState may be set to 0, 1 or 2, depending
|
|
** on the parsing context. As follows:
|
|
**
|
|
** 0: Parsing file-name.
|
|
** 1: Parsing name section of a name=value query parameter.
|
|
** 2: Parsing value section of a name=value query parameter.
|
|
*/
|
|
eState = 0
|
|
for {
|
|
v2 = **(**int8)(__ccgo_up(zUri + uintptr(iIn)))
|
|
c = v2
|
|
if !(int32(v2) != 0 && int32(c) != int32('#')) {
|
|
break
|
|
}
|
|
iIn = iIn + 1
|
|
if int32(c) == int32('%') && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zUri + uintptr(iIn))))])&int32(0x08) != 0 && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zUri + uintptr(iIn+int64(1)))))])&int32(0x08) != 0 {
|
|
v3 = iIn
|
|
iIn = iIn + 1
|
|
octet = libc.Int32FromUint8(_sqlite3HexToInt(tls, int32(**(**int8)(__ccgo_up(zUri + uintptr(v3)))))) << int32(4)
|
|
v4 = iIn
|
|
iIn = iIn + 1
|
|
octet = octet + libc.Int32FromUint8(_sqlite3HexToInt(tls, int32(**(**int8)(__ccgo_up(zUri + uintptr(v4))))))
|
|
if octet == 0 {
|
|
/* This branch is taken when "%00" appears within the URI. In this
|
|
** case we ignore all text in the remainder of the path, name or
|
|
** value currently being parsed. So ignore the current character
|
|
** and skip to the next "?", "=" or "&", as appropriate. */
|
|
for {
|
|
v2 = **(**int8)(__ccgo_up(zUri + uintptr(iIn)))
|
|
c = v2
|
|
if !(int32(v2) != 0 && int32(c) != int32('#') && (eState != 0 || int32(c) != int32('?')) && (eState != int32(1) || int32(c) != int32('=') && int32(c) != int32('&')) && (eState != int32(2) || int32(c) != int32('&'))) {
|
|
break
|
|
}
|
|
iIn = iIn + 1
|
|
}
|
|
continue
|
|
}
|
|
c = int8(octet)
|
|
} else {
|
|
if eState == int32(1) && (int32(c) == int32('&') || int32(c) == int32('=')) {
|
|
if int32(**(**int8)(__ccgo_up(zFile + uintptr(iOut-int64(1))))) == 0 {
|
|
/* An empty option name. Ignore this option altogether. */
|
|
for **(**int8)(__ccgo_up(zUri + uintptr(iIn))) != 0 && int32(**(**int8)(__ccgo_up(zUri + uintptr(iIn)))) != int32('#') && int32(**(**int8)(__ccgo_up(zUri + uintptr(iIn-int64(1))))) != int32('&') {
|
|
iIn = iIn + 1
|
|
}
|
|
continue
|
|
}
|
|
if int32(c) == int32('&') {
|
|
v3 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zFile + uintptr(v3))) = int8('\000')
|
|
} else {
|
|
eState = int32(2)
|
|
}
|
|
c = 0
|
|
} else {
|
|
if eState == 0 && int32(c) == int32('?') || eState == int32(2) && int32(c) == int32('&') {
|
|
c = 0
|
|
eState = int32(1)
|
|
}
|
|
}
|
|
}
|
|
v3 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zFile + uintptr(v3))) = c
|
|
}
|
|
if eState == int32(1) {
|
|
v3 = iOut
|
|
iOut = iOut + 1
|
|
**(**int8)(__ccgo_up(zFile + uintptr(v3))) = int8('\000')
|
|
}
|
|
libc.Xmemset(tls, zFile+uintptr(iOut), 0, uint64(4)) /* end-of-options + empty journal filenames */
|
|
/* Check if there were any options specified that should be interpreted
|
|
** here. Options that are interpreted here include "vfs" and those that
|
|
** correspond to flags that may be passed to the sqlite3_open_v2()
|
|
** method. */
|
|
zOpt = zFile + uintptr(libc.Xstrlen(tls, zFile)+uint64(1))
|
|
for **(**int8)(__ccgo_up(zOpt)) != 0 {
|
|
nOpt = libc.Int64FromUint64(libc.Xstrlen(tls, zOpt))
|
|
zVal = zOpt + uintptr(nOpt+int64(1))
|
|
nVal = libc.Int64FromUint64(libc.Xstrlen(tls, zVal))
|
|
if nOpt == int64(3) && libc.Xmemcmp(tls, __ccgo_ts+26162, zOpt, uint64(3)) == 0 {
|
|
zVfs = zVal
|
|
} else {
|
|
aMode = uintptr(0)
|
|
zModeType = uintptr(0)
|
|
mask = 0
|
|
limit = 0
|
|
if nOpt == int64(5) && libc.Xmemcmp(tls, __ccgo_ts+26166, zOpt, uint64(5)) == 0 {
|
|
mask = libc.Int32FromInt32(SQLITE_OPEN_SHAREDCACHE) | libc.Int32FromInt32(SQLITE_OPEN_PRIVATECACHE)
|
|
aMode = uintptr(unsafe.Pointer(&_aCacheMode))
|
|
limit = mask
|
|
zModeType = __ccgo_ts + 26166
|
|
}
|
|
if nOpt == int64(4) && libc.Xmemcmp(tls, __ccgo_ts+26187, zOpt, uint64(4)) == 0 {
|
|
mask = libc.Int32FromInt32(SQLITE_OPEN_READONLY) | libc.Int32FromInt32(SQLITE_OPEN_READWRITE) | libc.Int32FromInt32(SQLITE_OPEN_CREATE) | libc.Int32FromInt32(SQLITE_OPEN_MEMORY)
|
|
aMode = uintptr(unsafe.Pointer(&_aOpenMode))
|
|
limit = libc.Int32FromUint32(libc.Uint32FromInt32(mask) & flags)
|
|
zModeType = __ccgo_ts + 3553
|
|
}
|
|
if aMode != 0 {
|
|
mode = 0
|
|
i = 0
|
|
for {
|
|
if !((**(**struct {
|
|
Fz uintptr
|
|
Fmode int32
|
|
})(__ccgo_up(aMode + uintptr(i)*16))).Fz != 0) {
|
|
break
|
|
}
|
|
z = (**(**struct {
|
|
Fz uintptr
|
|
Fmode int32
|
|
})(__ccgo_up(aMode + uintptr(i)*16))).Fz
|
|
if nVal == libc.Int64FromUint64(libc.Xstrlen(tls, z)) && 0 == libc.Xmemcmp(tls, zVal, z, libc.Uint64FromInt64(nVal)) {
|
|
mode = (**(**struct {
|
|
Fz uintptr
|
|
Fmode int32
|
|
})(__ccgo_up(aMode + uintptr(i)*16))).Fmode
|
|
break
|
|
}
|
|
goto _9
|
|
_9:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if mode == 0 {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = Xsqlite3_mprintf(tls, __ccgo_ts+26202, libc.VaList(bp+8, zModeType, zVal))
|
|
rc = int32(SQLITE_ERROR)
|
|
goto parse_uri_out
|
|
}
|
|
if mode & ^libc.Int32FromInt32(SQLITE_OPEN_MEMORY) > limit {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = Xsqlite3_mprintf(tls, __ccgo_ts+26222, libc.VaList(bp+8, zModeType, zVal))
|
|
rc = int32(SQLITE_PERM)
|
|
goto parse_uri_out
|
|
}
|
|
flags = flags&libc.Uint32FromInt32(^mask) | libc.Uint32FromInt32(mode)
|
|
}
|
|
}
|
|
zOpt = zVal + uintptr(nVal+int64(1))
|
|
}
|
|
} else {
|
|
zFile = Xsqlite3_malloc64(tls, libc.Uint64FromInt64(nUri+int64(8)))
|
|
if !(zFile != 0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
libc.Xmemset(tls, zFile, 0, uint64(4))
|
|
zFile = zFile + uintptr(4)
|
|
if nUri != 0 {
|
|
libc.Xmemcpy(tls, zFile, zUri, libc.Uint64FromInt64(nUri))
|
|
}
|
|
libc.Xmemset(tls, zFile+uintptr(nUri), 0, uint64(4))
|
|
flags = flags & libc.Uint32FromInt32(^libc.Int32FromInt32(SQLITE_OPEN_URI))
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppVfs)) = Xsqlite3_vfs_find(tls, zVfs)
|
|
if **(**uintptr)(__ccgo_up(ppVfs)) == uintptr(0) {
|
|
**(**uintptr)(__ccgo_up(pzErrMsg)) = Xsqlite3_mprintf(tls, __ccgo_ts+26246, libc.VaList(bp+8, zVfs))
|
|
rc = int32(SQLITE_ERROR)
|
|
}
|
|
goto parse_uri_out
|
|
parse_uri_out:
|
|
;
|
|
if rc != SQLITE_OK {
|
|
Xsqlite3_free_filename(tls, zFile)
|
|
zFile = uintptr(0)
|
|
}
|
|
**(**uint32)(__ccgo_up(pFlags)) = flags
|
|
**(**uintptr)(__ccgo_up(pzFile)) = zFile
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Process a pragma statement.
|
|
// **
|
|
// ** Pragmas are of this form:
|
|
// **
|
|
// ** PRAGMA [schema.]id [= value]
|
|
// **
|
|
// ** The identifier might also be a string. The value is a string, and
|
|
// ** identifier, or a number. If minusFlag is true, then the value is
|
|
// ** a number that was preceded by a minus sign.
|
|
// **
|
|
// ** If the left side is "database.id" then pId1 is the database name
|
|
// ** and pId2 is the id. If the left side is just "id" then pId1 is the
|
|
// ** id and pId2 is any empty string.
|
|
// */
|
|
func _sqlite3Pragma(tls *libc.TLS, pParse uintptr, pId1 uintptr, pId2 uintptr, pValue uintptr, minusFlag int32) {
|
|
bp := tls.Alloc(240)
|
|
defer tls.Free(240)
|
|
var a1, a11, addr, addr1, addrCkFault, addrCkOk, addrOk, addrTop, b, bStrict, ckUniq, cnt, doTypeCheck, eAuto, eMode, eMode1, eMode2, i, i1, i10, i2, i3, i4, i5, i6, i7, i8, i9, iAddr, iAddr1, iBt, iCol, iCol1, iCookie, iDb, iDbLast, iEnd, iIdxDb, iLevel, iReg, iTab, iTabCur, iTabDb, iTabDb1, ii, ii1, ii2, ii3, ii4, initNCol, isHidden, isQuick, j2, j3, j4, jmp, jmp2, jmp21, jmp3, jmp4, jmp5, jmp6, jmp61, jmp7, k, k3, kk, label6, labelError, labelOk, loopTop, mx, mxCol, n, nBtree, nCheck, nHidden, nIdx, nIndex, nLimit, p11, p3, p4, r1, r11, r2, rc, regResult, regRow, showInternFunc, size, size1, size2, uniqOk, x1, v2 int32
|
|
var aOp, aOp1, aOp2, aOp3, aOp4, aOp5, aRoot, db, j, j1, k1, k2, k4, p, p1, pBt, pBt1, pBt2, pCheck, pCol, pCol1, pColExpr, pColl, pDb, pEnc, pFK, pFK1, pHash, pIdx, pIdx1, pIdx3, pIdx4, pIdx5, pIdx6, pIdx7, pMod, pObjTab, pPager, pPager1, pParent, pPk, pPk1, pPragma, pPrior, pSchema, pTab, pTab1, pTab10, pTab11, pTab12, pTab2, pTab3, pTab4, pTab5, pTab6, pTab7, pTab8, pTab9, pTbls, pVTab, v, x2, zDb, zErr, zErr1, zErr2, zLeft, zMod, zMode, zOpt, zRet, zRight, zSql, zSubSql, zType, v1, v5 uintptr
|
|
var azOrigin [3]uintptr
|
|
var cnum Ti16
|
|
var enc Tu8
|
|
var iPrior Tsqlite3_int64
|
|
var iRange, szThreshold TLogEst
|
|
var mask Tu64
|
|
var opMask Tu32
|
|
var _ /* N at bp+136 */ Tsqlite3_int64
|
|
var _ /* N at bp+144 */ Tsqlite3_int64
|
|
var _ /* N at bp+152 */ Tsqlite3_int64
|
|
var _ /* N at bp+160 */ Tsqlite3_int64
|
|
var _ /* aFcntl at bp+8 */ [4]uintptr
|
|
var _ /* aiCols at bp+96 */ uintptr
|
|
var _ /* iDataCur at bp+108 */ int32
|
|
var _ /* iIdxCur at bp+112 */ int32
|
|
var _ /* iLimit at bp+48 */ Ti64
|
|
var _ /* iLimit at bp+56 */ int32
|
|
var _ /* jmp3 at bp+128 */ int32
|
|
var _ /* mxErr at bp+104 */ int32
|
|
var _ /* pDfltValue at bp+120 */ uintptr
|
|
var _ /* pDummy at bp+80 */ uintptr
|
|
var _ /* pId at bp+0 */ uintptr
|
|
var _ /* pIdx at bp+88 */ uintptr
|
|
var _ /* res at bp+72 */ int32
|
|
var _ /* size at bp+60 */ int32
|
|
var _ /* sz at bp+64 */ Tsqlite3_int64
|
|
var _ /* x at bp+40 */ Ti64
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = a1, a11, aOp, aOp1, aOp2, aOp3, aOp4, aOp5, aRoot, addr, addr1, addrCkFault, addrCkOk, addrOk, addrTop, azOrigin, b, bStrict, ckUniq, cnt, cnum, db, doTypeCheck, eAuto, eMode, eMode1, eMode2, enc, i, i1, i10, i2, i3, i4, i5, i6, i7, i8, i9, iAddr, iAddr1, iBt, iCol, iCol1, iCookie, iDb, iDbLast, iEnd, iIdxDb, iLevel, iPrior, iRange, iReg, iTab, iTabCur, iTabDb, iTabDb1, ii, ii1, ii2, ii3, ii4, initNCol, isHidden, isQuick, j, j1, j2, j3, j4, jmp, jmp2, jmp21, jmp3, jmp4, jmp5, jmp6, jmp61, jmp7, k, k1, k2, k3, k4, kk, label6, labelError, labelOk, loopTop, mask, mx, mxCol, n, nBtree, nCheck, nHidden, nIdx, nIndex, nLimit, opMask, p, p1, p11, p3, p4, pBt, pBt1, pBt2, pCheck, pCol, pCol1, pColExpr, pColl, pDb, pEnc, pFK, pFK1, pHash, pIdx, pIdx1, pIdx3, pIdx4, pIdx5, pIdx6, pIdx7, pMod, pObjTab, pPager, pPager1, pParent, pPk, pPk1, pPragma, pPrior, pSchema, pTab, pTab1, pTab10, pTab11, pTab12, pTab2, pTab3, pTab4, pTab5, pTab6, pTab7, pTab8, pTab9, pTbls, pVTab, r1, r11, r2, rc, regResult, regRow, showInternFunc, size, size1, size2, szThreshold, uniqOk, v, x1, x2, zDb, zErr, zErr1, zErr2, zLeft, zMod, zMode, zOpt, zRet, zRight, zSql, zSubSql, zType, v1, v2, v5
|
|
zLeft = uintptr(0) /* Nul-terminated UTF-8 string <id> */
|
|
zRight = uintptr(0) /* Nul-terminated UTF-8 string <value>, or NULL */
|
|
zDb = uintptr(0) /* return value form SQLITE_FCNTL_PRAGMA */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* The specific database being pragmaed */
|
|
v = _sqlite3GetVdbe(tls, pParse) /* The pragma */
|
|
if v == uintptr(0) {
|
|
return
|
|
}
|
|
_sqlite3VdbeRunOnlyOnce(tls, v)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(2)
|
|
/* Interpret the [schema.] part of the pragma statement. iDb is the
|
|
** index of the database this pragma is being applied to in db.aDb[]. */
|
|
iDb = _sqlite3TwoPartName(tls, pParse, pId1, pId2, bp)
|
|
if iDb < 0 {
|
|
return
|
|
}
|
|
pDb = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32
|
|
/* If the temp database has been explicitly named as part of the
|
|
** pragma, make sure it is open.
|
|
*/
|
|
if iDb == int32(1) && _sqlite3OpenTempDatabase(tls, pParse) != 0 {
|
|
return
|
|
}
|
|
zLeft = _sqlite3NameFromToken(tls, db, **(**uintptr)(__ccgo_up(bp)))
|
|
if !(zLeft != 0) {
|
|
return
|
|
}
|
|
if minusFlag != 0 {
|
|
zRight = _sqlite3MPrintf(tls, db, __ccgo_ts+19218, libc.VaList(bp+176, pValue))
|
|
} else {
|
|
zRight = _sqlite3NameFromToken(tls, db, pValue)
|
|
}
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fn > uint32(0) {
|
|
v1 = (*TDb)(unsafe.Pointer(pDb)).FzDbSName
|
|
} else {
|
|
v1 = uintptr(0)
|
|
}
|
|
zDb = v1
|
|
if _sqlite3AuthCheck(tls, pParse, int32(SQLITE_PRAGMA), zLeft, zRight, zDb) != 0 {
|
|
goto pragma_out
|
|
}
|
|
/* Send an SQLITE_FCNTL_PRAGMA file-control to the underlying VFS
|
|
** connection. If it returns SQLITE_OK, then assume that the VFS
|
|
** handled the pragma and generate a no-op prepared statement.
|
|
**
|
|
** IMPLEMENTATION-OF: R-12238-55120 Whenever a PRAGMA statement is parsed,
|
|
** an SQLITE_FCNTL_PRAGMA file control is sent to the open sqlite3_file
|
|
** object corresponding to the database file to which the pragma
|
|
** statement refers.
|
|
**
|
|
** IMPLEMENTATION-OF: R-29875-31678 The argument to the SQLITE_FCNTL_PRAGMA
|
|
** file control is an array of pointers to strings (char**) in which the
|
|
** second element of the array is the name of the pragma and the third
|
|
** element is the argument to the pragma or NULL if the pragma has no
|
|
** argument.
|
|
*/
|
|
(**(**[4]uintptr)(__ccgo_up(bp + 8)))[0] = uintptr(0)
|
|
(**(**[4]uintptr)(__ccgo_up(bp + 8)))[int32(1)] = zLeft
|
|
(**(**[4]uintptr)(__ccgo_up(bp + 8)))[int32(2)] = zRight
|
|
(**(**[4]uintptr)(__ccgo_up(bp + 8)))[int32(3)] = uintptr(0)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FbusyHandler.FnBusy = 0
|
|
rc = Xsqlite3_file_control(tls, db, zDb, int32(SQLITE_FCNTL_PRAGMA), bp+8)
|
|
if rc == SQLITE_OK {
|
|
_sqlite3VdbeSetNumCols(tls, v, int32(1))
|
|
_sqlite3VdbeSetColName(tls, v, 0, COLNAME_NAME, (**(**[4]uintptr)(__ccgo_up(bp + 8)))[0], uintptr(-libc.Int32FromInt32(1)))
|
|
_returnSingleText(tls, v, (**(**[4]uintptr)(__ccgo_up(bp + 8)))[0])
|
|
Xsqlite3_free(tls, (**(**[4]uintptr)(__ccgo_up(bp + 8)))[0])
|
|
goto pragma_out
|
|
}
|
|
if rc != int32(SQLITE_NOTFOUND) {
|
|
if (**(**[4]uintptr)(__ccgo_up(bp + 8)))[0] != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+3944, libc.VaList(bp+176, (**(**[4]uintptr)(__ccgo_up(bp + 8)))[0]))
|
|
Xsqlite3_free(tls, (**(**[4]uintptr)(__ccgo_up(bp + 8)))[0])
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FnErr = (*TParse)(unsafe.Pointer(pParse)).FnErr + 1
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = rc
|
|
goto pragma_out
|
|
}
|
|
/* Locate the pragma in the lookup table */
|
|
pPragma = _pragmaLocate(tls, zLeft)
|
|
if pPragma == uintptr(0) {
|
|
/* IMP: R-43042-22504 No error messages are generated if an
|
|
** unknown pragma is issued. */
|
|
goto pragma_out
|
|
}
|
|
/* Make sure the database schema is loaded if the pragma requires that */
|
|
if libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&int32(PragFlg_NeedSchema) != 0 {
|
|
if _sqlite3ReadSchema(tls, pParse) != 0 {
|
|
goto pragma_out
|
|
}
|
|
}
|
|
/* Register the result column names for pragmas that return results */
|
|
if libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&int32(PragFlg_NoColumns) == 0 && (libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&int32(PragFlg_NoColumns1) == 0 || zRight == uintptr(0)) {
|
|
_setPragmaResultColumnNames(tls, v, pPragma)
|
|
}
|
|
/* Jump to the appropriate pragma handler */
|
|
switch libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FePragTyp) {
|
|
/*
|
|
** PRAGMA [schema.]default_cache_size
|
|
** PRAGMA [schema.]default_cache_size=N
|
|
**
|
|
** The first form reports the current persistent setting for the
|
|
** page cache size. The value returned is the maximum number of
|
|
** pages in the page cache. The second form sets both the current
|
|
** page cache size value and the persistent page cache size value
|
|
** stored in the database file.
|
|
**
|
|
** Older versions of SQLite would set the default cache size to a
|
|
** negative number to indicate synchronous=OFF. These days, synchronous
|
|
** is always on by default regardless of the sign of the default cache
|
|
** size. But continue to take the absolute value of the default cache
|
|
** size of historical compatibility.
|
|
*/
|
|
case int32(PragTyp_DEFAULT_CACHE_SIZE):
|
|
_sqlite3VdbeUsesBtree(tls, v, iDb)
|
|
if !(zRight != 0) {
|
|
**(**int32)(__ccgo_up(pParse + 60)) += int32(2)
|
|
aOp = _sqlite3VdbeAddOpList(tls, v, libc.Int32FromUint64(libc.Uint64FromInt64(36)/libc.Uint64FromInt64(4)), uintptr(unsafe.Pointer(&_getCacheSize)), _iLn3)
|
|
if 0 != 0 {
|
|
break
|
|
}
|
|
(**(**TVdbeOp)(__ccgo_up(aOp))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp + 1*24))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp + 6*24))).Fp1 = -int32(2000)
|
|
} else {
|
|
size = _sqlite3AbsInt32(tls, _sqlite3Atoi(tls, zRight))
|
|
_sqlite3BeginWriteOperation(tls, pParse, 0, iDb)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_SetCookie), iDb, int32(BTREE_DEFAULT_CACHE_SIZE), size)
|
|
(*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).Fcache_size = size
|
|
_sqlite3BtreeSetCacheSize(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt, (*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).Fcache_size)
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]page_size
|
|
** PRAGMA [schema.]page_size=N
|
|
**
|
|
** The first form reports the current setting for the
|
|
** database page size in bytes. The second form sets the
|
|
** database page size value. The value can only be set if
|
|
** the database has not yet been created.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_PAGE_SIZE):
|
|
pBt = (*TDb)(unsafe.Pointer(pDb)).FpBt
|
|
if !(zRight != 0) {
|
|
if pBt != 0 {
|
|
v2 = _sqlite3BtreeGetPageSize(tls, pBt)
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
size1 = v2
|
|
_returnSingleInt(tls, v, int64(size1))
|
|
} else {
|
|
/* Malloc may fail when setting the page-size, as there is an internal
|
|
** buffer that the pager module resizes using sqlite3_realloc().
|
|
*/
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnextPagesize = _sqlite3Atoi(tls, zRight)
|
|
if int32(SQLITE_NOMEM) == _sqlite3BtreeSetPageSize(tls, pBt, (*Tsqlite3)(unsafe.Pointer(db)).FnextPagesize, 0, 0) {
|
|
_sqlite3OomFault(tls, db)
|
|
}
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]secure_delete
|
|
** PRAGMA [schema.]secure_delete=ON/OFF/FAST
|
|
**
|
|
** The first form reports the current setting for the
|
|
** secure_delete flag. The second form changes the secure_delete
|
|
** flag setting and reports the new value.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_SECURE_DELETE):
|
|
pBt1 = (*TDb)(unsafe.Pointer(pDb)).FpBt
|
|
b = -int32(1)
|
|
if zRight != 0 {
|
|
if Xsqlite3_stricmp(tls, zRight, __ccgo_ts+19222) == 0 {
|
|
b = int32(2)
|
|
} else {
|
|
b = libc.Int32FromUint8(_sqlite3GetBoolean(tls, zRight, uint8(0)))
|
|
}
|
|
}
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0) && b >= 0 {
|
|
ii = 0
|
|
for {
|
|
if !(ii < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
_sqlite3BtreeSecureDelete(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii)*32))).FpBt, b)
|
|
goto _3
|
|
_3:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
}
|
|
b = _sqlite3BtreeSecureDelete(tls, pBt1, b)
|
|
_returnSingleInt(tls, v, int64(b))
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]max_page_count
|
|
** PRAGMA [schema.]max_page_count=N
|
|
**
|
|
** The first form reports the current setting for the
|
|
** maximum number of pages in the database file. The
|
|
** second form attempts to change this setting. Both
|
|
** forms return the current setting.
|
|
**
|
|
** The absolute value of N is used. This is undocumented and might
|
|
** change. The only purpose is to provide an easy way to test
|
|
** the sqlite3AbsInt32() function.
|
|
**
|
|
** PRAGMA [schema.]page_count
|
|
**
|
|
** Return the number of pages in the specified database.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_PAGE_COUNT):
|
|
**(**Ti64)(__ccgo_up(bp + 40)) = 0
|
|
_sqlite3CodeVerifySchema(tls, pParse, iDb)
|
|
v1 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
v2 = *(*int32)(unsafe.Pointer(v1))
|
|
iReg = v2
|
|
if libc.Int32FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zLeft)))]) == int32('p') {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Pagecount), iDb, iReg)
|
|
} else {
|
|
if zRight != 0 && _sqlite3DecOrHexToI64(tls, zRight, bp+40) == 0 {
|
|
if **(**Ti64)(__ccgo_up(bp + 40)) < 0 {
|
|
**(**Ti64)(__ccgo_up(bp + 40)) = 0
|
|
} else {
|
|
if **(**Ti64)(__ccgo_up(bp + 40)) > libc.Int64FromUint32(0xfffffffe) {
|
|
**(**Ti64)(__ccgo_up(bp + 40)) = libc.Int64FromUint32(0xfffffffe)
|
|
}
|
|
}
|
|
} else {
|
|
**(**Ti64)(__ccgo_up(bp + 40)) = 0
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_MaxPgcnt), iDb, iReg, int32(**(**Ti64)(__ccgo_up(bp + 40))))
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), iReg, int32(1))
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]locking_mode
|
|
** PRAGMA [schema.]locking_mode = (normal|exclusive)
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_LOCKING_MODE):
|
|
zRet = __ccgo_ts + 19013
|
|
eMode = _getLockingMode(tls, zRight)
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0) && eMode == -int32(1) {
|
|
/* Simple "PRAGMA locking_mode;" statement. This is a query for
|
|
** the current default locking mode (which may be different to
|
|
** the locking-mode of the main database).
|
|
*/
|
|
eMode = libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FdfltLockMode)
|
|
} else {
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0) {
|
|
ii1 = int32(2)
|
|
for {
|
|
if !(ii1 < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
pPager = _sqlite3BtreePager(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii1)*32))).FpBt)
|
|
_sqlite3PagerLockingMode(tls, pPager, eMode)
|
|
goto _6
|
|
_6:
|
|
;
|
|
ii1 = ii1 + 1
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FdfltLockMode = libc.Uint8FromInt32(eMode)
|
|
}
|
|
pPager = _sqlite3BtreePager(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt)
|
|
eMode = _sqlite3PagerLockingMode(tls, pPager, eMode)
|
|
}
|
|
if eMode == int32(PAGER_LOCKINGMODE_EXCLUSIVE) {
|
|
zRet = __ccgo_ts + 19003
|
|
}
|
|
_returnSingleText(tls, v, zRet)
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]journal_mode
|
|
** PRAGMA [schema.]journal_mode =
|
|
** (delete|persist|off|truncate|memory|wal|off)
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_JOURNAL_MODE): /* Loop counter */
|
|
if zRight == uintptr(0) {
|
|
/* If there is no "=MODE" part of the pragma, do a query for the
|
|
** current mode */
|
|
eMode1 = -int32(1)
|
|
} else {
|
|
n = _sqlite3Strlen30(tls, zRight)
|
|
eMode1 = 0
|
|
for {
|
|
v1 = _sqlite3JournalModename(tls, eMode1)
|
|
zMode = v1
|
|
if !(v1 != uintptr(0)) {
|
|
break
|
|
}
|
|
if Xsqlite3_strnicmp(tls, zRight, zMode, n) == 0 {
|
|
break
|
|
}
|
|
goto _7
|
|
_7:
|
|
;
|
|
eMode1 = eMode1 + 1
|
|
}
|
|
if !(zMode != 0) {
|
|
/* If the "=MODE" part does not match any known journal mode,
|
|
** then do a query */
|
|
eMode1 = -int32(1)
|
|
}
|
|
if eMode1 == int32(PAGER_JOURNALMODE_OFF) && (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_Defensive) != uint64(0) {
|
|
/* Do not allow journal-mode "OFF" in defensive since the database
|
|
** can become corrupted using ordinary SQL when the journal is off */
|
|
eMode1 = -int32(1)
|
|
}
|
|
}
|
|
if eMode1 == -int32(1) && (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0) {
|
|
/* Convert "PRAGMA journal_mode" into "PRAGMA main.journal_mode" */
|
|
iDb = 0
|
|
(*TToken)(unsafe.Pointer(pId2)).Fn = uint32(1)
|
|
}
|
|
ii2 = (*Tsqlite3)(unsafe.Pointer(db)).FnDb - int32(1)
|
|
for {
|
|
if !(ii2 >= 0) {
|
|
break
|
|
}
|
|
if (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii2)*32))).FpBt != 0 && (ii2 == iDb || (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0)) {
|
|
_sqlite3VdbeUsesBtree(tls, v, ii2)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_JournalMode), ii2, int32(1), eMode1)
|
|
}
|
|
goto _9
|
|
_9:
|
|
;
|
|
ii2 = ii2 - 1
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), int32(1), int32(1))
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]journal_size_limit
|
|
** PRAGMA [schema.]journal_size_limit=N
|
|
**
|
|
** Get or set the size limit on rollback journal files.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_JOURNAL_SIZE_LIMIT):
|
|
pPager1 = _sqlite3BtreePager(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt)
|
|
**(**Ti64)(__ccgo_up(bp + 48)) = int64(-int32(2))
|
|
if zRight != 0 {
|
|
_sqlite3DecOrHexToI64(tls, zRight, bp+48)
|
|
if **(**Ti64)(__ccgo_up(bp + 48)) < int64(-int32(1)) {
|
|
**(**Ti64)(__ccgo_up(bp + 48)) = int64(-int32(1))
|
|
}
|
|
}
|
|
**(**Ti64)(__ccgo_up(bp + 48)) = _sqlite3PagerJournalSizeLimit(tls, pPager1, **(**Ti64)(__ccgo_up(bp + 48)))
|
|
_returnSingleInt(tls, v, **(**Ti64)(__ccgo_up(bp + 48)))
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]auto_vacuum
|
|
** PRAGMA [schema.]auto_vacuum=N
|
|
**
|
|
** Get or set the value of the database 'auto-vacuum' parameter.
|
|
** The value is one of: 0 NONE 1 FULL 2 INCREMENTAL
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_AUTO_VACUUM):
|
|
pBt2 = (*TDb)(unsafe.Pointer(pDb)).FpBt
|
|
if !(zRight != 0) {
|
|
_returnSingleInt(tls, v, int64(_sqlite3BtreeGetAutoVacuum(tls, pBt2)))
|
|
} else {
|
|
eAuto = _getAutoVacuum(tls, zRight)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnextAutovac = libc.Int8FromUint8(libc.Uint8FromInt32(eAuto))
|
|
/* Call SetAutoVacuum() to set initialize the internal auto and
|
|
** incr-vacuum flags. This is required in case this connection
|
|
** creates the database file. It is important that it is created
|
|
** as an auto-vacuum capable db.
|
|
*/
|
|
rc = _sqlite3BtreeSetAutoVacuum(tls, pBt2, eAuto)
|
|
if rc == SQLITE_OK && (eAuto == int32(1) || eAuto == int32(2)) {
|
|
iAddr = _sqlite3VdbeCurrentAddr(tls, v)
|
|
aOp1 = _sqlite3VdbeAddOpList(tls, v, libc.Int32FromUint64(libc.Uint64FromInt64(20)/libc.Uint64FromInt64(4)), uintptr(unsafe.Pointer(&_setMeta6)), _iLn11)
|
|
if 0 != 0 {
|
|
break
|
|
}
|
|
(**(**TVdbeOp)(__ccgo_up(aOp1))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp1 + 1*24))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp1 + 2*24))).Fp2 = iAddr + int32(4)
|
|
(**(**TVdbeOp)(__ccgo_up(aOp1 + 4*24))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp1 + 4*24))).Fp3 = eAuto - int32(1)
|
|
_sqlite3VdbeUsesBtree(tls, v, iDb)
|
|
}
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]incremental_vacuum(N)
|
|
**
|
|
** Do N steps of incremental vacuuming on a database.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_INCREMENTAL_VACUUM):
|
|
**(**int32)(__ccgo_up(bp + 56)) = 0
|
|
if zRight == uintptr(0) || !(_sqlite3GetInt32(tls, zRight, bp+56) != 0) || **(**int32)(__ccgo_up(bp + 56)) <= 0 {
|
|
**(**int32)(__ccgo_up(bp + 56)) = int32(0x7fffffff)
|
|
}
|
|
_sqlite3BeginWriteOperation(tls, pParse, 0, iDb)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), **(**int32)(__ccgo_up(bp + 56)), int32(1))
|
|
addr = _sqlite3VdbeAddOp1(tls, v, int32(OP_IncrVacuum), iDb)
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_ResultRow), int32(1))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_AddImm), int32(1), -int32(1))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IfPos), int32(1), addr)
|
|
_sqlite3VdbeJumpHere(tls, v, addr)
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]cache_size
|
|
** PRAGMA [schema.]cache_size=N
|
|
**
|
|
** The first form reports the current local setting for the
|
|
** page cache size. The second form sets the local
|
|
** page cache size value. If N is positive then that is the
|
|
** number of pages in the cache. If N is negative, then the
|
|
** number of pages is adjusted so that the cache uses -N kibibytes
|
|
** of memory.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_CACHE_SIZE):
|
|
if !(zRight != 0) {
|
|
_returnSingleInt(tls, v, int64((*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).Fcache_size))
|
|
} else {
|
|
size2 = _sqlite3Atoi(tls, zRight)
|
|
(*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).Fcache_size = size2
|
|
_sqlite3BtreeSetCacheSize(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt, (*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).Fcache_size)
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]cache_spill
|
|
** PRAGMA cache_spill=BOOLEAN
|
|
** PRAGMA [schema.]cache_spill=N
|
|
**
|
|
** The first form reports the current local setting for the
|
|
** page cache spill size. The second form turns cache spill on
|
|
** or off. When turning cache spill on, the size is set to the
|
|
** current cache_size. The third form sets a spill size that
|
|
** may be different form the cache size.
|
|
** If N is positive then that is the
|
|
** number of pages in the cache. If N is negative, then the
|
|
** number of pages is adjusted so that the cache uses -N kibibytes
|
|
** of memory.
|
|
**
|
|
** If the number of cache_spill pages is less then the number of
|
|
** cache_size pages, no spilling occurs until the page count exceeds
|
|
** the number of cache_size pages.
|
|
**
|
|
** The cache_spill=BOOLEAN setting applies to all attached schemas,
|
|
** not just the schema specified.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_CACHE_SPILL):
|
|
if !(zRight != 0) {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_CacheSpill) == uint64(0) {
|
|
v2 = 0
|
|
} else {
|
|
v2 = _sqlite3BtreeSetSpillSize(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt, 0)
|
|
}
|
|
_returnSingleInt(tls, v, int64(v2))
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 60)) = int32(1)
|
|
if _sqlite3GetInt32(tls, zRight, bp+60) != 0 {
|
|
_sqlite3BtreeSetSpillSize(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt, **(**int32)(__ccgo_up(bp + 60)))
|
|
}
|
|
if _sqlite3GetBoolean(tls, zRight, libc.BoolUint8(**(**int32)(__ccgo_up(bp + 60)) != 0)) != 0 {
|
|
**(**Tu64)(__ccgo_up(db + 48)) |= uint64(SQLITE_CacheSpill)
|
|
} else {
|
|
**(**Tu64)(__ccgo_up(db + 48)) &= ^libc.Uint64FromInt32(SQLITE_CacheSpill)
|
|
}
|
|
_setAllPagerFlags(tls, db)
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]mmap_size(N)
|
|
**
|
|
** Used to set mapping size limit. The mapping size limit is
|
|
** used to limit the aggregate size of all memory mapped regions of the
|
|
** database file. If this parameter is set to zero, then memory mapping
|
|
** is not used at all. If N is negative, then the default memory map
|
|
** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set.
|
|
** The parameter N is measured in bytes.
|
|
**
|
|
** This value is advisory. The underlying VFS is free to memory map
|
|
** as little or as much as it wants. Except, if N is set to 0 then the
|
|
** upper layers will never invoke the xFetch interfaces to the VFS.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_MMAP_SIZE):
|
|
if zRight != 0 {
|
|
_sqlite3DecOrHexToI64(tls, zRight, bp+64)
|
|
if **(**Tsqlite3_int64)(__ccgo_up(bp + 64)) < 0 {
|
|
**(**Tsqlite3_int64)(__ccgo_up(bp + 64)) = _sqlite3Config.FszMmap
|
|
}
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0) {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FszMmap = **(**Tsqlite3_int64)(__ccgo_up(bp + 64))
|
|
}
|
|
ii3 = (*Tsqlite3)(unsafe.Pointer(db)).FnDb - int32(1)
|
|
for {
|
|
if !(ii3 >= 0) {
|
|
break
|
|
}
|
|
if (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii3)*32))).FpBt != 0 && (ii3 == iDb || (*TToken)(unsafe.Pointer(pId2)).Fn == uint32(0)) {
|
|
_sqlite3BtreeSetMmapLimit(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii3)*32))).FpBt, **(**Tsqlite3_int64)(__ccgo_up(bp + 64)))
|
|
}
|
|
goto _11
|
|
_11:
|
|
;
|
|
ii3 = ii3 - 1
|
|
}
|
|
}
|
|
**(**Tsqlite3_int64)(__ccgo_up(bp + 64)) = int64(-int32(1))
|
|
rc = Xsqlite3_file_control(tls, db, zDb, int32(SQLITE_FCNTL_MMAP_SIZE), bp+64)
|
|
if rc == SQLITE_OK {
|
|
_returnSingleInt(tls, v, **(**Tsqlite3_int64)(__ccgo_up(bp + 64)))
|
|
} else {
|
|
if rc != int32(SQLITE_NOTFOUND) {
|
|
(*TParse)(unsafe.Pointer(pParse)).FnErr = (*TParse)(unsafe.Pointer(pParse)).FnErr + 1
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = rc
|
|
}
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA temp_store
|
|
** PRAGMA temp_store = "default"|"memory"|"file"
|
|
**
|
|
** Return or set the local value of the temp_store flag. Changing
|
|
** the local value does not make changes to the disk file and the default
|
|
** value will be restored the next time the database is opened.
|
|
**
|
|
** Note that it is possible for the library compile-time options to
|
|
** override this setting
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_TEMP_STORE):
|
|
if !(zRight != 0) {
|
|
_returnSingleInt(tls, v, libc.Int64FromUint8((*Tsqlite3)(unsafe.Pointer(db)).Ftemp_store))
|
|
} else {
|
|
_changeTempStorage(tls, pParse, zRight)
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA temp_store_directory
|
|
** PRAGMA temp_store_directory = ""|"directory_name"
|
|
**
|
|
** Return or set the local value of the temp_store_directory flag. Changing
|
|
** the value sets a specific directory to be used for temporary files.
|
|
** Setting to a null string reverts to the default temporary directory search.
|
|
** If temporary directory is changed, then invalidateTempStorage.
|
|
**
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_TEMP_STORE_DIRECTORY):
|
|
Xsqlite3_mutex_enter(tls, _sqlite3MutexAlloc(tls, int32(SQLITE_MUTEX_STATIC_VFS1)))
|
|
if !(zRight != 0) {
|
|
_returnSingleText(tls, v, Xsqlite3_temp_directory)
|
|
} else {
|
|
if **(**int8)(__ccgo_up(zRight)) != 0 {
|
|
rc = _sqlite3OsAccess(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpVfs, zRight, int32(SQLITE_ACCESS_READWRITE), bp+72)
|
|
if rc != SQLITE_OK || **(**int32)(__ccgo_up(bp + 72)) == 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+19227, 0)
|
|
Xsqlite3_mutex_leave(tls, _sqlite3MutexAlloc(tls, int32(SQLITE_MUTEX_STATIC_VFS1)))
|
|
goto pragma_out
|
|
}
|
|
}
|
|
if libc.Bool(false) || libc.Bool(true) && libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).Ftemp_store) <= int32(1) || libc.Bool(libc.Bool(false) && libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).Ftemp_store) == int32(1)) {
|
|
_invalidateTempStorage(tls, pParse)
|
|
}
|
|
Xsqlite3_free(tls, Xsqlite3_temp_directory)
|
|
if **(**int8)(__ccgo_up(zRight)) != 0 {
|
|
Xsqlite3_temp_directory = Xsqlite3_mprintf(tls, __ccgo_ts+3944, libc.VaList(bp+176, zRight))
|
|
} else {
|
|
Xsqlite3_temp_directory = uintptr(0)
|
|
}
|
|
}
|
|
Xsqlite3_mutex_leave(tls, _sqlite3MutexAlloc(tls, int32(SQLITE_MUTEX_STATIC_VFS1)))
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]synchronous
|
|
** PRAGMA [schema.]synchronous=OFF|ON|NORMAL|FULL|EXTRA
|
|
**
|
|
** Return or set the local value of the synchronous flag. Changing
|
|
** the local value does not make changes to the disk file and the
|
|
** default value will be restored the next time the database is
|
|
** opened.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_SYNCHRONOUS):
|
|
if !(zRight != 0) {
|
|
_returnSingleInt(tls, v, int64(libc.Int32FromUint8((*TDb)(unsafe.Pointer(pDb)).Fsafety_level)-int32(1)))
|
|
} else {
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit != 0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+19252, 0)
|
|
} else {
|
|
if iDb != int32(1) {
|
|
iLevel = (libc.Int32FromUint8(_getSafetyLevel(tls, zRight, 0, uint8(1))) + int32(1)) & int32(PAGER_SYNCHRONOUS_MASK)
|
|
if iLevel == 0 {
|
|
iLevel = int32(1)
|
|
}
|
|
(*TDb)(unsafe.Pointer(pDb)).Fsafety_level = libc.Uint8FromInt32(iLevel)
|
|
(*TDb)(unsafe.Pointer(pDb)).FbSyncSet = uint8(1)
|
|
_setAllPagerFlags(tls, db)
|
|
}
|
|
}
|
|
}
|
|
case int32(PragTyp_FLAG):
|
|
if zRight == uintptr(0) {
|
|
_setPragmaResultColumnNames(tls, v, pPragma)
|
|
_returnSingleInt(tls, v, libc.BoolInt64((*Tsqlite3)(unsafe.Pointer(db)).Fflags&(*TPragmaName)(unsafe.Pointer(pPragma)).FiArg != uint64(0)))
|
|
} else {
|
|
mask = (*TPragmaName)(unsafe.Pointer(pPragma)).FiArg /* Mask of bits to set or clear. */
|
|
if libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit) == 0 {
|
|
/* Foreign key support may not be enabled or disabled while not
|
|
** in auto-commit mode. */
|
|
mask = mask & libc.Uint64FromInt32(^libc.Int32FromInt32(SQLITE_ForeignKeys))
|
|
}
|
|
if _sqlite3GetBoolean(tls, zRight, uint8(0)) != 0 {
|
|
if mask&uint64(SQLITE_WriteSchema) == uint64(0) || (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_Defensive) == uint64(0) {
|
|
**(**Tu64)(__ccgo_up(db + 48)) |= mask
|
|
}
|
|
} else {
|
|
**(**Tu64)(__ccgo_up(db + 48)) &= ^mask
|
|
if mask == uint64(SQLITE_DeferFKs) {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnDeferredImmCons = 0
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnDeferredCons = 0
|
|
}
|
|
if mask&uint64(SQLITE_WriteSchema) != uint64(0) && Xsqlite3_stricmp(tls, zRight, __ccgo_ts+19305) == 0 {
|
|
/* IMP: R-60817-01178 If the argument is "RESET" then schema
|
|
** writing is disabled (as with "PRAGMA writable_schema=OFF") and,
|
|
** in addition, the schema is reloaded. */
|
|
_sqlite3ResetAllSchemasOfConnection(tls, db)
|
|
}
|
|
}
|
|
/* Many of the flag-pragmas modify the code generated by the SQL
|
|
** compiler (eg. count_changes). So add an opcode to expire all
|
|
** compiled SQL statements after modifying a pragma value.
|
|
*/
|
|
_sqlite3VdbeAddOp0(tls, v, int32(OP_Expire))
|
|
_setAllPagerFlags(tls, db)
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA table_info(<table>)
|
|
**
|
|
** Return a single row for each column of the named table. The columns of
|
|
** the returned data set are:
|
|
**
|
|
** cid: Column id (numbered from left to right, starting at 0)
|
|
** name: Column name
|
|
** type: Column declaration type.
|
|
** notnull: True if 'NOT NULL' is part of column declaration
|
|
** dflt_value: The default value for the column, if any.
|
|
** pk: Non-zero for PK fields.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_TABLE_INFO):
|
|
if zRight != 0 {
|
|
_sqlite3CodeVerifyNamedSchema(tls, pParse, zDb)
|
|
pTab = _sqlite3LocateTable(tls, pParse, uint32(LOCATE_NOERR), zRight, zDb)
|
|
if pTab != 0 {
|
|
nHidden = 0
|
|
pPk = _sqlite3PrimaryKeyIndex(tls, pTab)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(7)
|
|
_sqlite3ViewGetColumnNames(tls, pParse, pTab)
|
|
i = 0
|
|
pCol = (*TTable)(unsafe.Pointer(pTab)).FaCol
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
isHidden = 0
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_NOINSERT) != 0 {
|
|
if (*TPragmaName)(unsafe.Pointer(pPragma)).FiArg == uint64(0) {
|
|
nHidden = nHidden + 1
|
|
goto _12
|
|
}
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_VIRTUAL) != 0 {
|
|
isHidden = int32(2) /* GENERATED ALWAYS AS ... VIRTUAL */
|
|
} else {
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_STORED) != 0 {
|
|
isHidden = int32(3) /* GENERATED ALWAYS AS ... STORED */
|
|
} else {
|
|
isHidden = int32(1) /* HIDDEN */
|
|
}
|
|
}
|
|
}
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags)&int32(COLFLAG_PRIMKEY) == 0 {
|
|
k = 0
|
|
} else {
|
|
if pPk == uintptr(0) {
|
|
k = int32(1)
|
|
} else {
|
|
k = int32(1)
|
|
for {
|
|
if !(k <= int32((*TTable)(unsafe.Pointer(pTab)).FnCol) && int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pPk)).FaiColumn + uintptr(k-int32(1))*2))) != i) {
|
|
break
|
|
}
|
|
goto _13
|
|
_13:
|
|
;
|
|
k = k + 1
|
|
}
|
|
}
|
|
}
|
|
pColExpr = _sqlite3ColumnExpr(tls, pTab, pCol)
|
|
if (*TPragmaName)(unsafe.Pointer(pPragma)).FiArg != 0 {
|
|
v1 = __ccgo_ts + 19311
|
|
} else {
|
|
v1 = __ccgo_ts + 19319
|
|
}
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(pCol + 8))&0xf>>0)) != 0 {
|
|
v2 = int32(1)
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
if isHidden >= int32(2) || pColExpr == uintptr(0) {
|
|
v5 = uintptr(0)
|
|
} else {
|
|
v5 = *(*uintptr)(unsafe.Pointer(pColExpr + 8))
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), v1, libc.VaList(bp+176, i-nHidden, (*TColumn)(unsafe.Pointer(pCol)).FzCnName, _sqlite3ColumnType(tls, pCol, __ccgo_ts+1704), v2, v5, k, isHidden))
|
|
goto _12
|
|
_12:
|
|
;
|
|
i = i + 1
|
|
pCol += 16
|
|
}
|
|
}
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA table_list
|
|
**
|
|
** Return a single row for each table, virtual table, or view in the
|
|
** entire schema.
|
|
**
|
|
** schema: Name of attached database hold this table
|
|
** name: Name of the table itself
|
|
** type: "table", "view", "virtual", "shadow"
|
|
** ncol: Number of columns
|
|
** wr: True for a WITHOUT ROWID table
|
|
** strict: True for a STRICT table
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_TABLE_LIST):
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(6)
|
|
_sqlite3CodeVerifyNamedSchema(tls, pParse, zDb)
|
|
ii4 = 0
|
|
for {
|
|
if !(ii4 < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
if zDb != 0 && Xsqlite3_stricmp(tls, zDb, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii4)*32))).FzDbSName) != 0 {
|
|
goto _17
|
|
}
|
|
/* Ensure that the Table.nCol field is initialized for all views
|
|
** and virtual tables. Each time we initialize a Table.nCol value
|
|
** for a table, that can potentially disrupt the hash table, so restart
|
|
** the initialization scan.
|
|
*/
|
|
pHash = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii4)*32))).FpSchema + 8
|
|
initNCol = libc.Int32FromUint32((*THash)(unsafe.Pointer(pHash)).Fcount)
|
|
for {
|
|
v2 = initNCol
|
|
initNCol = initNCol - 1
|
|
if !(v2 != 0) {
|
|
break
|
|
}
|
|
k1 = (*THash)(unsafe.Pointer(pHash)).Ffirst
|
|
for {
|
|
if !(int32(1) != 0) {
|
|
break
|
|
}
|
|
if k1 == uintptr(0) {
|
|
initNCol = 0
|
|
break
|
|
}
|
|
pTab1 = (*THashElem)(unsafe.Pointer(k1)).Fdata
|
|
if int32((*TTable)(unsafe.Pointer(pTab1)).FnCol) == 0 {
|
|
zSql = _sqlite3MPrintf(tls, db, __ccgo_ts+19326, libc.VaList(bp+176, (*TTable)(unsafe.Pointer(pTab1)).FzName))
|
|
if zSql != 0 {
|
|
**(**uintptr)(__ccgo_up(bp + 80)) = uintptr(0)
|
|
Xsqlite3_prepare_v3(tls, db, zSql, -int32(1), uint32(SQLITE_PREPARE_DONT_LOG), bp+80, uintptr(0))
|
|
Xsqlite3_finalize(tls, **(**uintptr)(__ccgo_up(bp + 80)))
|
|
_sqlite3DbFree(tls, db, zSql)
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
_sqlite3ErrorMsg(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpParse, __ccgo_ts+1674, 0)
|
|
(*TParse)(unsafe.Pointer((*Tsqlite3)(unsafe.Pointer(db)).FpParse)).Frc = int32(SQLITE_NOMEM)
|
|
}
|
|
pHash = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii4)*32))).FpSchema + 8
|
|
break
|
|
}
|
|
goto _19
|
|
_19:
|
|
;
|
|
k1 = (*THashElem)(unsafe.Pointer(k1)).Fnext
|
|
}
|
|
}
|
|
k1 = (*THash)(unsafe.Pointer(pHash)).Ffirst
|
|
for {
|
|
if !(k1 != 0) {
|
|
break
|
|
}
|
|
pTab2 = (*THashElem)(unsafe.Pointer(k1)).Fdata
|
|
if zRight != 0 && Xsqlite3_stricmp(tls, zRight, (*TTable)(unsafe.Pointer(pTab2)).FzName) != 0 {
|
|
goto _20
|
|
}
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab2)).FeTabType) == int32(TABTYP_VIEW) {
|
|
zType = __ccgo_ts + 11119
|
|
} else {
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab2)).FeTabType) == int32(TABTYP_VTAB) {
|
|
zType = __ccgo_ts + 14304
|
|
} else {
|
|
if (*TTable)(unsafe.Pointer(pTab2)).FtabFlags&uint32(TF_Shadow) != 0 {
|
|
zType = __ccgo_ts + 19342
|
|
} else {
|
|
zType = __ccgo_ts + 9381
|
|
}
|
|
}
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+19349, libc.VaList(bp+176, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii4)*32))).FzDbSName, _sqlite3PreferredTableName(tls, (*TTable)(unsafe.Pointer(pTab2)).FzName), zType, int32((*TTable)(unsafe.Pointer(pTab2)).FnCol), libc.BoolInt32((*TTable)(unsafe.Pointer(pTab2)).FtabFlags&uint32(TF_WithoutRowid) != uint32(0)), libc.BoolInt32((*TTable)(unsafe.Pointer(pTab2)).FtabFlags&uint32(TF_Strict) != uint32(0))))
|
|
goto _20
|
|
_20:
|
|
;
|
|
k1 = (*THashElem)(unsafe.Pointer(k1)).Fnext
|
|
}
|
|
goto _17
|
|
_17:
|
|
;
|
|
ii4 = ii4 + 1
|
|
}
|
|
case int32(PragTyp_INDEX_INFO):
|
|
if zRight != 0 {
|
|
pIdx = _sqlite3FindIndex(tls, db, zRight, zDb)
|
|
if pIdx == uintptr(0) {
|
|
/* If there is no index named zRight, check to see if there is a
|
|
** WITHOUT ROWID table named zRight, and if there is, show the
|
|
** structure of the PRIMARY KEY index for that table. */
|
|
pTab3 = _sqlite3LocateTable(tls, pParse, uint32(LOCATE_NOERR), zRight, zDb)
|
|
if pTab3 != 0 && !((*TTable)(unsafe.Pointer(pTab3)).FtabFlags&libc.Uint32FromInt32(TF_WithoutRowid) == libc.Uint32FromInt32(0)) {
|
|
pIdx = _sqlite3PrimaryKeyIndex(tls, pTab3)
|
|
}
|
|
}
|
|
if pIdx != 0 {
|
|
iIdxDb = _sqlite3SchemaToIndex(tls, db, (*TIndex)(unsafe.Pointer(pIdx)).FpSchema)
|
|
if (*TPragmaName)(unsafe.Pointer(pPragma)).FiArg != 0 {
|
|
/* PRAGMA index_xinfo (newer version with more rows and columns) */
|
|
mx = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnColumn)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(6)
|
|
} else {
|
|
/* PRAGMA index_info (legacy version) */
|
|
mx = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(3)
|
|
}
|
|
pTab3 = (*TIndex)(unsafe.Pointer(pIdx)).FpTable
|
|
_sqlite3CodeVerifySchema(tls, pParse, iIdxDb)
|
|
i1 = 0
|
|
for {
|
|
if !(i1 < mx) {
|
|
break
|
|
}
|
|
cnum = **(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(i1)*2))
|
|
if int32(cnum) < 0 {
|
|
v1 = uintptr(0)
|
|
} else {
|
|
v1 = (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab3)).FaCol + uintptr(cnum)*16))).FzCnName
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+19356, libc.VaList(bp+176, i1, int32(cnum), v1))
|
|
if (*TPragmaName)(unsafe.Pointer(pPragma)).FiArg != 0 {
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(4), __ccgo_ts+19361, libc.VaList(bp+176, libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaSortOrder + uintptr(i1)))), **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(i1)*8)), libc.BoolInt32(i1 < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol))))
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), int32(1), (*TParse)(unsafe.Pointer(pParse)).FnMem)
|
|
goto _21
|
|
_21:
|
|
;
|
|
i1 = i1 + 1
|
|
}
|
|
}
|
|
}
|
|
case int32(PragTyp_INDEX_LIST):
|
|
if zRight != 0 {
|
|
pTab4 = _sqlite3FindTable(tls, db, zRight, zDb)
|
|
if pTab4 != 0 {
|
|
iTabDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab4)).FpSchema)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(5)
|
|
_sqlite3CodeVerifySchema(tls, pParse, iTabDb)
|
|
pIdx1 = (*TTable)(unsafe.Pointer(pTab4)).FpIndex
|
|
i2 = libc.Int32FromInt32(0)
|
|
for {
|
|
if !(pIdx1 != 0) {
|
|
break
|
|
}
|
|
azOrigin = [3]uintptr{
|
|
0: __ccgo_ts + 19366,
|
|
1: __ccgo_ts + 19368,
|
|
2: __ccgo_ts + 17855,
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+19370, libc.VaList(bp+176, i2, (*TIndex)(unsafe.Pointer(pIdx1)).FzName, libc.BoolInt32(libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx1)).FonError) != OE_None), azOrigin[int32(uint32(*(*uint16)(unsafe.Pointer(pIdx1 + 100))&0x3>>0))], libc.BoolInt32((*TIndex)(unsafe.Pointer(pIdx1)).FpPartIdxWhere != uintptr(0))))
|
|
goto _23
|
|
_23:
|
|
;
|
|
pIdx1 = (*TIndex)(unsafe.Pointer(pIdx1)).FpNext
|
|
i2 = i2 + 1
|
|
}
|
|
}
|
|
}
|
|
case int32(PragTyp_DATABASE_LIST):
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(3)
|
|
i3 = 0
|
|
for {
|
|
if !(i3 < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
if (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i3)*32))).FpBt == uintptr(0) {
|
|
goto _24
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+19376, libc.VaList(bp+176, i3, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i3)*32))).FzDbSName, _sqlite3BtreeGetFilename(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i3)*32))).FpBt)))
|
|
goto _24
|
|
_24:
|
|
;
|
|
i3 = i3 + 1
|
|
}
|
|
case int32(PragTyp_COLLATION_LIST):
|
|
i4 = 0
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(2)
|
|
p = (*THash)(unsafe.Pointer(db + 648)).Ffirst
|
|
for {
|
|
if !(p != 0) {
|
|
break
|
|
}
|
|
pColl = (*THashElem)(unsafe.Pointer(p)).Fdata
|
|
v2 = i4
|
|
i4 = i4 + 1
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+19380, libc.VaList(bp+176, v2, (*TCollSeq)(unsafe.Pointer(pColl)).FzName))
|
|
goto _25
|
|
_25:
|
|
;
|
|
p = (*THashElem)(unsafe.Pointer(p)).Fnext
|
|
}
|
|
case int32(PragTyp_FUNCTION_LIST):
|
|
showInternFunc = libc.BoolInt32((*Tsqlite3)(unsafe.Pointer(db)).FmDbFlags&uint32(DBFLAG_InternalFunc) != uint32(0))
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(6)
|
|
i5 = 0
|
|
for {
|
|
if !(i5 < int32(SQLITE_FUNC_HASH_SZ)) {
|
|
break
|
|
}
|
|
p1 = **(**uintptr)(__ccgo_up(uintptr(unsafe.Pointer(&_sqlite3BuiltinFunctions)) + uintptr(i5)*8))
|
|
for {
|
|
if !(p1 != 0) {
|
|
break
|
|
}
|
|
_pragmaFunclistLine(tls, v, p1, int32(1), showInternFunc)
|
|
goto _28
|
|
_28:
|
|
;
|
|
p1 = *(*uintptr)(unsafe.Pointer(p1 + 64))
|
|
}
|
|
goto _27
|
|
_27:
|
|
;
|
|
i5 = i5 + 1
|
|
}
|
|
j = (*THash)(unsafe.Pointer(db + 624)).Ffirst
|
|
for {
|
|
if !(j != 0) {
|
|
break
|
|
}
|
|
p1 = (*THashElem)(unsafe.Pointer(j)).Fdata
|
|
_pragmaFunclistLine(tls, v, p1, 0, showInternFunc)
|
|
goto _29
|
|
_29:
|
|
;
|
|
j = (*THashElem)(unsafe.Pointer(j)).Fnext
|
|
}
|
|
case int32(PragTyp_MODULE_LIST):
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(1)
|
|
j1 = (*THash)(unsafe.Pointer(db + 576)).Ffirst
|
|
for {
|
|
if !(j1 != 0) {
|
|
break
|
|
}
|
|
pMod = (*THashElem)(unsafe.Pointer(j1)).Fdata
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+7913, libc.VaList(bp+176, (*TModule)(unsafe.Pointer(pMod)).FzName))
|
|
goto _30
|
|
_30:
|
|
;
|
|
j1 = (*THashElem)(unsafe.Pointer(j1)).Fnext
|
|
}
|
|
case int32(PragTyp_PRAGMA_LIST):
|
|
i6 = 0
|
|
for {
|
|
if !(i6 < libc.Int32FromUint64(libc.Uint64FromInt64(1584)/libc.Uint64FromInt64(24))) {
|
|
break
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+7913, libc.VaList(bp+176, _aPragmaName[i6].FzName))
|
|
goto _31
|
|
_31:
|
|
;
|
|
i6 = i6 + 1
|
|
}
|
|
case int32(PragTyp_FOREIGN_KEY_LIST):
|
|
if zRight != 0 {
|
|
pTab5 = _sqlite3FindTable(tls, db, zRight, zDb)
|
|
if pTab5 != 0 && libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab5)).FeTabType) == TABTYP_NORM {
|
|
pFK = (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pTab5 + 64))).FpFKey
|
|
if pFK != 0 {
|
|
iTabDb1 = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab5)).FpSchema)
|
|
i7 = 0
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(8)
|
|
_sqlite3CodeVerifySchema(tls, pParse, iTabDb1)
|
|
for pFK != 0 {
|
|
j2 = 0
|
|
for {
|
|
if !(j2 < (*TFKey)(unsafe.Pointer(pFK)).FnCol) {
|
|
break
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, int32(1), __ccgo_ts+19383, libc.VaList(bp+176, i7, j2, (*TFKey)(unsafe.Pointer(pFK)).FzTo, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab5)).FaCol + uintptr((*(*TsColMap)(unsafe.Pointer(pFK + 64 + uintptr(j2)*16))).FiFrom)*16))).FzCnName, (*(*TsColMap)(unsafe.Pointer(pFK + 64 + uintptr(j2)*16))).FzCol, _actionName(tls, **(**Tu8)(__ccgo_up(pFK + 45 + 1))), _actionName(tls, **(**Tu8)(__ccgo_up(pFK + 45))), __ccgo_ts+19392))
|
|
goto _32
|
|
_32:
|
|
;
|
|
j2 = j2 + 1
|
|
}
|
|
i7 = i7 + 1
|
|
pFK = (*TFKey)(unsafe.Pointer(pFK)).FpNextFrom
|
|
}
|
|
}
|
|
}
|
|
}
|
|
case int32(PragTyp_FOREIGN_KEY_CHECK): /* child to parent column mapping */
|
|
regResult = (*TParse)(unsafe.Pointer(pParse)).FnMem + int32(1)
|
|
**(**int32)(__ccgo_up(pParse + 60)) += int32(4)
|
|
v1 = pParse + 60
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
v2 = *(*int32)(unsafe.Pointer(v1))
|
|
regRow = v2
|
|
k2 = (*THash)(unsafe.Pointer((**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpSchema + 8)).Ffirst
|
|
for k2 != 0 {
|
|
if zRight != 0 {
|
|
pTab6 = _sqlite3LocateTable(tls, pParse, uint32(0), zRight, zDb)
|
|
k2 = uintptr(0)
|
|
} else {
|
|
pTab6 = (*THashElem)(unsafe.Pointer(k2)).Fdata
|
|
k2 = (*THashElem)(unsafe.Pointer(k2)).Fnext
|
|
}
|
|
if pTab6 == uintptr(0) || !(libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab6)).FeTabType) == libc.Int32FromInt32(TABTYP_NORM)) || (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pTab6 + 64))).FpFKey == uintptr(0) {
|
|
continue
|
|
}
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab6)).FpSchema)
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
_sqlite3CodeVerifySchema(tls, pParse, iDb)
|
|
_sqlite3TableLock(tls, pParse, iDb, (*TTable)(unsafe.Pointer(pTab6)).Ftnum, uint8(0), (*TTable)(unsafe.Pointer(pTab6)).FzName)
|
|
_sqlite3TouchRegister(tls, pParse, int32((*TTable)(unsafe.Pointer(pTab6)).FnCol)+regRow)
|
|
_sqlite3OpenTable(tls, pParse, 0, iDb, pTab6, int32(OP_OpenRead))
|
|
_sqlite3VdbeLoadString(tls, v, regResult, (*TTable)(unsafe.Pointer(pTab6)).FzName)
|
|
i8 = int32(1)
|
|
pFK1 = (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pTab6 + 64))).FpFKey
|
|
for {
|
|
if !(pFK1 != 0) {
|
|
break
|
|
}
|
|
pParent = _sqlite3FindTable(tls, db, (*TFKey)(unsafe.Pointer(pFK1)).FzTo, zDb)
|
|
if pParent == uintptr(0) {
|
|
goto _35
|
|
}
|
|
**(**uintptr)(__ccgo_up(bp + 88)) = uintptr(0)
|
|
_sqlite3TableLock(tls, pParse, iDb, (*TTable)(unsafe.Pointer(pParent)).Ftnum, uint8(0), (*TTable)(unsafe.Pointer(pParent)).FzName)
|
|
x1 = _sqlite3FkLocateIndex(tls, pParse, pParent, pFK1, bp+88, uintptr(0))
|
|
if x1 == 0 {
|
|
if **(**uintptr)(__ccgo_up(bp + 88)) == uintptr(0) {
|
|
_sqlite3OpenTable(tls, pParse, i8, iDb, pParent, int32(OP_OpenRead))
|
|
} else {
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_OpenRead), i8, libc.Int32FromUint32((*TIndex)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 88)))).Ftnum), iDb)
|
|
_sqlite3VdbeSetP4KeyInfo(tls, pParse, **(**uintptr)(__ccgo_up(bp + 88)))
|
|
}
|
|
} else {
|
|
k2 = uintptr(0)
|
|
break
|
|
}
|
|
goto _35
|
|
_35:
|
|
;
|
|
i8 = i8 + 1
|
|
pFK1 = (*TFKey)(unsafe.Pointer(pFK1)).FpNextFrom
|
|
}
|
|
if pFK1 != 0 {
|
|
break
|
|
}
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnTab < i8 {
|
|
(*TParse)(unsafe.Pointer(pParse)).FnTab = i8
|
|
}
|
|
addrTop = _sqlite3VdbeAddOp1(tls, v, int32(OP_Rewind), 0)
|
|
i8 = int32(1)
|
|
pFK1 = (*(*struct {
|
|
FaddColOffset int32
|
|
FpFKey uintptr
|
|
FpDfltList uintptr
|
|
})(unsafe.Pointer(pTab6 + 64))).FpFKey
|
|
for {
|
|
if !(pFK1 != 0) {
|
|
break
|
|
}
|
|
pParent = _sqlite3FindTable(tls, db, (*TFKey)(unsafe.Pointer(pFK1)).FzTo, zDb)
|
|
**(**uintptr)(__ccgo_up(bp + 88)) = uintptr(0)
|
|
**(**uintptr)(__ccgo_up(bp + 96)) = uintptr(0)
|
|
if pParent != 0 {
|
|
x1 = _sqlite3FkLocateIndex(tls, pParse, pParent, pFK1, bp+88, bp+96)
|
|
}
|
|
addrOk = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
/* Generate code to read the child key values into registers
|
|
** regRow..regRow+n. If any of the child key values are NULL, this
|
|
** row cannot cause an FK violation. Jump directly to addrOk in
|
|
** this case. */
|
|
_sqlite3TouchRegister(tls, pParse, regRow+(*TFKey)(unsafe.Pointer(pFK1)).FnCol)
|
|
j3 = 0
|
|
for {
|
|
if !(j3 < (*TFKey)(unsafe.Pointer(pFK1)).FnCol) {
|
|
break
|
|
}
|
|
if **(**uintptr)(__ccgo_up(bp + 96)) != 0 {
|
|
v2 = **(**int32)(__ccgo_up(**(**uintptr)(__ccgo_up(bp + 96)) + uintptr(j3)*4))
|
|
} else {
|
|
v2 = (*(*TsColMap)(unsafe.Pointer(pFK1 + 64 + uintptr(j3)*16))).FiFrom
|
|
}
|
|
iCol = v2
|
|
_sqlite3ExprCodeGetColumnOfTable(tls, v, pTab6, 0, iCol, regRow+j3)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IsNull), regRow+j3, addrOk)
|
|
goto _37
|
|
_37:
|
|
;
|
|
j3 = j3 + 1
|
|
}
|
|
/* Generate code to query the parent index for a matching parent
|
|
** key. If a match is found, jump to addrOk. */
|
|
if **(**uintptr)(__ccgo_up(bp + 88)) != 0 {
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_Affinity), regRow, (*TFKey)(unsafe.Pointer(pFK1)).FnCol, 0, _sqlite3IndexAffinityStr(tls, db, **(**uintptr)(__ccgo_up(bp + 88))), (*TFKey)(unsafe.Pointer(pFK1)).FnCol)
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_Found), i8, addrOk, regRow, (*TFKey)(unsafe.Pointer(pFK1)).FnCol)
|
|
} else {
|
|
if pParent != 0 {
|
|
jmp = _sqlite3VdbeCurrentAddr(tls, v) + int32(2)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_SeekRowid), i8, jmp, regRow)
|
|
_sqlite3VdbeGoto(tls, v, addrOk)
|
|
}
|
|
}
|
|
/* Generate code to report an FK violation to the caller. */
|
|
if (*TTable)(unsafe.Pointer(pTab6)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Rowid), 0, regResult+int32(1))
|
|
} else {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Null), 0, regResult+int32(1))
|
|
}
|
|
_sqlite3VdbeMultiLoad(tls, v, regResult+int32(2), __ccgo_ts+19397, libc.VaList(bp+176, (*TFKey)(unsafe.Pointer(pFK1)).FzTo, i8-int32(1)))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), regResult, int32(4))
|
|
_sqlite3VdbeResolveLabel(tls, v, addrOk)
|
|
_sqlite3DbFree(tls, db, **(**uintptr)(__ccgo_up(bp + 96)))
|
|
goto _36
|
|
_36:
|
|
;
|
|
i8 = i8 + 1
|
|
pFK1 = (*TFKey)(unsafe.Pointer(pFK1)).FpNextFrom
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Next), 0, addrTop+int32(1))
|
|
_sqlite3VdbeJumpHere(tls, v, addrTop)
|
|
}
|
|
break
|
|
/* Reinstall the LIKE and GLOB functions. The variant of LIKE
|
|
** used will be case sensitive or not depending on the RHS.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_CASE_SENSITIVE_LIKE):
|
|
if zRight != 0 {
|
|
_sqlite3RegisterLikeFunctions(tls, db, libc.Int32FromUint8(_sqlite3GetBoolean(tls, zRight, uint8(0))))
|
|
}
|
|
break
|
|
/* PRAGMA integrity_check
|
|
** PRAGMA integrity_check(N)
|
|
** PRAGMA quick_check
|
|
** PRAGMA quick_check(N)
|
|
**
|
|
** Verify the integrity of the database.
|
|
**
|
|
** The "quick_check" is reduced version of
|
|
** integrity_check designed to detect most database corruption
|
|
** without the overhead of cross-checking indexes. Quick_check
|
|
** is linear time whereas integrity_check is O(NlogN).
|
|
**
|
|
** The maximum number of errors is 100 by default. A different default
|
|
** can be specified using a numeric parameter N.
|
|
**
|
|
** Or, the parameter N can be the name of a table. In that case, only
|
|
** the one table named is verified. The freelist is only verified if
|
|
** the named table is "sqlite_schema" (or one of its aliases).
|
|
**
|
|
** All schemas are checked by default. To check just a single
|
|
** schema, use the form:
|
|
**
|
|
** PRAGMA schema.integrity_check;
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_INTEGRITY_CHECK):
|
|
pObjTab = uintptr(0) /* Check only this one table, if not NULL */
|
|
isQuick = libc.BoolInt32(libc.Int32FromUint8(_sqlite3UpperToLower[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zLeft)))]) == int32('q'))
|
|
/* If the PRAGMA command was of the form "PRAGMA <db>.integrity_check",
|
|
** then iDb is set to the index of the database identified by <db>.
|
|
** In this case, the integrity of database iDb only is verified by
|
|
** the VDBE created below.
|
|
**
|
|
** Otherwise, if the command was simply "PRAGMA integrity_check" (or
|
|
** "PRAGMA quick_check"), then iDb is set to 0. In this case, set iDb
|
|
** to -1 here, to indicate that the VDBE should verify the integrity
|
|
** of all attached databases. */
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fz == uintptr(0) {
|
|
iDb = -int32(1)
|
|
}
|
|
/* Initialize the VDBE program */
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(6)
|
|
/* Set the maximum error count */
|
|
**(**int32)(__ccgo_up(bp + 104)) = int32(SQLITE_INTEGRITY_CHECK_ERROR_MAX)
|
|
if zRight != 0 {
|
|
if _sqlite3GetInt32(tls, (*TToken)(unsafe.Pointer(pValue)).Fz, bp+104) != 0 {
|
|
if **(**int32)(__ccgo_up(bp + 104)) <= 0 {
|
|
**(**int32)(__ccgo_up(bp + 104)) = int32(SQLITE_INTEGRITY_CHECK_ERROR_MAX)
|
|
}
|
|
} else {
|
|
if iDb >= 0 {
|
|
v1 = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
} else {
|
|
v1 = uintptr(0)
|
|
}
|
|
pObjTab = _sqlite3LocateTable(tls, pParse, uint32(0), zRight, v1)
|
|
}
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), **(**int32)(__ccgo_up(bp + 104))-int32(1), int32(1)) /* reg[1] holds errors left */
|
|
/* Do an integrity check on each database file */
|
|
i9 = 0
|
|
for {
|
|
if !(i9 < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
} /* Array of root page numbers of all btrees */
|
|
cnt = 0 /* Number of entries in aRoot[] */
|
|
if libc.Bool(OMIT_TEMPDB != 0) && i9 == int32(1) {
|
|
goto _40
|
|
}
|
|
if iDb >= 0 && i9 != iDb {
|
|
goto _40
|
|
}
|
|
_sqlite3CodeVerifySchema(tls, pParse, i9)
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, libc.Uint32FromInt32(0), 7, 0x80) /* tag-20230327-1 */
|
|
/* Do an integrity check of the B-Tree
|
|
**
|
|
** Begin by finding the root pages numbers
|
|
** for all tables and indices in the database.
|
|
*/
|
|
pTbls = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i9)*32))).FpSchema + 8
|
|
cnt = 0
|
|
x2 = (*THash)(unsafe.Pointer(pTbls)).Ffirst
|
|
for {
|
|
if !(x2 != 0) {
|
|
break
|
|
}
|
|
pTab7 = (*THashElem)(unsafe.Pointer(x2)).Fdata /* Number of indexes on pTab */
|
|
if _tableSkipIntegrityCheck(tls, pTab7, pObjTab) != 0 {
|
|
goto _41
|
|
}
|
|
if (*TTable)(unsafe.Pointer(pTab7)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
cnt = cnt + 1
|
|
}
|
|
nIdx = 0
|
|
pIdx3 = (*TTable)(unsafe.Pointer(pTab7)).FpIndex
|
|
for {
|
|
if !(pIdx3 != 0) {
|
|
break
|
|
}
|
|
cnt = cnt + 1
|
|
goto _42
|
|
_42:
|
|
;
|
|
pIdx3 = (*TIndex)(unsafe.Pointer(pIdx3)).FpNext
|
|
nIdx = nIdx + 1
|
|
}
|
|
goto _41
|
|
_41:
|
|
;
|
|
x2 = (*THashElem)(unsafe.Pointer(x2)).Fnext
|
|
}
|
|
if cnt == 0 {
|
|
goto _40
|
|
}
|
|
if pObjTab != 0 {
|
|
cnt = cnt + 1
|
|
}
|
|
aRoot = _sqlite3DbMallocRawNN(tls, db, uint64(uint64(4)*libc.Uint64FromInt32(cnt+libc.Int32FromInt32(1))))
|
|
if aRoot == uintptr(0) {
|
|
break
|
|
}
|
|
cnt = 0
|
|
if pObjTab != 0 {
|
|
cnt = cnt + 1
|
|
v2 = cnt
|
|
**(**int32)(__ccgo_up(aRoot + uintptr(v2)*4)) = 0
|
|
}
|
|
x2 = (*THash)(unsafe.Pointer(pTbls)).Ffirst
|
|
for {
|
|
if !(x2 != 0) {
|
|
break
|
|
}
|
|
pTab8 = (*THashElem)(unsafe.Pointer(x2)).Fdata
|
|
if _tableSkipIntegrityCheck(tls, pTab8, pObjTab) != 0 {
|
|
goto _44
|
|
}
|
|
if (*TTable)(unsafe.Pointer(pTab8)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
cnt = cnt + 1
|
|
v2 = cnt
|
|
**(**int32)(__ccgo_up(aRoot + uintptr(v2)*4)) = libc.Int32FromUint32((*TTable)(unsafe.Pointer(pTab8)).Ftnum)
|
|
}
|
|
pIdx4 = (*TTable)(unsafe.Pointer(pTab8)).FpIndex
|
|
for {
|
|
if !(pIdx4 != 0) {
|
|
break
|
|
}
|
|
cnt = cnt + 1
|
|
v2 = cnt
|
|
**(**int32)(__ccgo_up(aRoot + uintptr(v2)*4)) = libc.Int32FromUint32((*TIndex)(unsafe.Pointer(pIdx4)).Ftnum)
|
|
goto _46
|
|
_46:
|
|
;
|
|
pIdx4 = (*TIndex)(unsafe.Pointer(pIdx4)).FpNext
|
|
}
|
|
goto _44
|
|
_44:
|
|
;
|
|
x2 = (*THashElem)(unsafe.Pointer(x2)).Fnext
|
|
}
|
|
**(**int32)(__ccgo_up(aRoot)) = cnt
|
|
/* Make sure sufficient number of registers have been allocated */
|
|
_sqlite3TouchRegister(tls, pParse, int32(8)+cnt)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Null), 0, int32(8), int32(8)+cnt)
|
|
_sqlite3ClearTempRegCache(tls, pParse)
|
|
/* Do the b-tree integrity checks */
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_IntegrityCk), int32(1), cnt, int32(8), aRoot, -int32(15))
|
|
_sqlite3VdbeChangeP5(tls, v, libc.Uint16FromInt32(i9))
|
|
addr1 = _sqlite3VdbeAddOp1(tls, v, int32(OP_IsNull), int32(2))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, _sqlite3MPrintf(tls, db, __ccgo_ts+19401, libc.VaList(bp+176, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i9)*32))).FzDbSName)), -int32(7))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(2), int32(3), int32(3))
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeJumpHere(tls, v, addr1)
|
|
/* Check that the indexes all have the right number of rows */
|
|
if pObjTab != 0 {
|
|
v2 = int32(1)
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
cnt = v2
|
|
_sqlite3VdbeLoadString(tls, v, int32(2), __ccgo_ts+19425)
|
|
x2 = (*THash)(unsafe.Pointer(pTbls)).Ffirst
|
|
for {
|
|
if !(x2 != 0) {
|
|
break
|
|
}
|
|
iTab = 0
|
|
pTab9 = (*THashElem)(unsafe.Pointer(x2)).Fdata
|
|
if _tableSkipIntegrityCheck(tls, pTab9, pObjTab) != 0 {
|
|
goto _49
|
|
}
|
|
if (*TTable)(unsafe.Pointer(pTab9)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
v2 = cnt
|
|
cnt = cnt + 1
|
|
iTab = v2
|
|
} else {
|
|
iTab = cnt
|
|
pIdx5 = (*TTable)(unsafe.Pointer(pTab9)).FpIndex
|
|
for {
|
|
if !(pIdx5 != 0) {
|
|
break
|
|
}
|
|
if int32(uint32(*(*uint16)(unsafe.Pointer(pIdx5 + 100))&0x3>>0)) == int32(SQLITE_IDXTYPE_PRIMARYKEY) {
|
|
break
|
|
}
|
|
iTab = iTab + 1
|
|
goto _51
|
|
_51:
|
|
;
|
|
pIdx5 = (*TIndex)(unsafe.Pointer(pIdx5)).FpNext
|
|
}
|
|
}
|
|
pIdx5 = (*TTable)(unsafe.Pointer(pTab9)).FpIndex
|
|
for {
|
|
if !(pIdx5 != 0) {
|
|
break
|
|
}
|
|
if (*TIndex)(unsafe.Pointer(pIdx5)).FpPartIdxWhere == uintptr(0) {
|
|
addr1 = _sqlite3VdbeAddOp3(tls, v, int32(OP_Eq), int32(8)+cnt, 0, int32(8)+iTab)
|
|
_sqlite3VdbeLoadString(tls, v, int32(4), (*TIndex)(unsafe.Pointer(pIdx5)).FzName)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(4), int32(2), int32(3))
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeJumpHere(tls, v, addr1)
|
|
}
|
|
cnt = cnt + 1
|
|
goto _52
|
|
_52:
|
|
;
|
|
pIdx5 = (*TIndex)(unsafe.Pointer(pIdx5)).FpNext
|
|
}
|
|
goto _49
|
|
_49:
|
|
;
|
|
x2 = (*THashElem)(unsafe.Pointer(x2)).Fnext
|
|
}
|
|
/* Make sure all the indices are constructed correctly.
|
|
*/
|
|
x2 = (*THash)(unsafe.Pointer(pTbls)).Ffirst
|
|
for {
|
|
if !(x2 != 0) {
|
|
break
|
|
}
|
|
pTab10 = (*THashElem)(unsafe.Pointer(x2)).Fdata
|
|
pPrior = uintptr(0)
|
|
r1 = -int32(1) /* Maximum non-virtual column number */
|
|
if _tableSkipIntegrityCheck(tls, pTab10, pObjTab) != 0 {
|
|
goto _53
|
|
}
|
|
if !(libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab10)).FeTabType) == libc.Int32FromInt32(TABTYP_NORM)) {
|
|
goto _53
|
|
}
|
|
if isQuick != 0 || (*TTable)(unsafe.Pointer(pTab10)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
pPk1 = uintptr(0)
|
|
r2 = 0
|
|
} else {
|
|
pPk1 = _sqlite3PrimaryKeyIndex(tls, pTab10)
|
|
r2 = _sqlite3GetTempRange(tls, pParse, libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk1)).FnKeyCol))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Null), int32(1), r2, r2+libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk1)).FnKeyCol)-int32(1))
|
|
}
|
|
_sqlite3OpenTableAndIndices(tls, pParse, pTab10, int32(OP_OpenRead), uint8(0), int32(1), uintptr(0), bp+108, bp+112)
|
|
/* reg[7] counts the number of entries in the table.
|
|
** reg[8+i] counts the number of entries in the i-th index
|
|
*/
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), 0, int32(7))
|
|
j4 = 0
|
|
pIdx6 = (*TTable)(unsafe.Pointer(pTab10)).FpIndex
|
|
for {
|
|
if !(pIdx6 != 0) {
|
|
break
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Integer), 0, int32(8)+j4) /* index entries counter */
|
|
goto _54
|
|
_54:
|
|
;
|
|
pIdx6 = (*TIndex)(unsafe.Pointer(pIdx6)).FpNext
|
|
j4 = j4 + 1
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Rewind), **(**int32)(__ccgo_up(bp + 108)), 0)
|
|
loopTop = _sqlite3VdbeAddOp2(tls, v, int32(OP_AddImm), int32(7), int32(1))
|
|
/* Fetch the right-most column from the table. This will cause
|
|
** the entire record header to be parsed and sanity checked. It
|
|
** will also prepopulate the cursor column cache that is used
|
|
** by the OP_IsType code, so it is a required step.
|
|
*/
|
|
if (*TTable)(unsafe.Pointer(pTab10)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
mxCol = -int32(1)
|
|
j4 = 0
|
|
for {
|
|
if !(j4 < int32((*TTable)(unsafe.Pointer(pTab10)).FnCol)) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab10)).FaCol + uintptr(j4)*16))).FcolFlags)&int32(COLFLAG_VIRTUAL) == 0 {
|
|
mxCol = mxCol + 1
|
|
}
|
|
goto _55
|
|
_55:
|
|
;
|
|
j4 = j4 + 1
|
|
}
|
|
if mxCol == int32((*TTable)(unsafe.Pointer(pTab10)).FiPKey) {
|
|
mxCol = mxCol - 1
|
|
}
|
|
} else {
|
|
/* COLFLAG_VIRTUAL columns are not included in the WITHOUT ROWID
|
|
** PK index column-count, so there is no need to account for them
|
|
** in this case. */
|
|
mxCol = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(_sqlite3PrimaryKeyIndex(tls, pTab10))).FnColumn) - int32(1)
|
|
}
|
|
if mxCol >= 0 {
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), **(**int32)(__ccgo_up(bp + 108)), mxCol, int32(3))
|
|
_sqlite3VdbeTypeofColumn(tls, v, int32(3))
|
|
}
|
|
if !(isQuick != 0) {
|
|
if pPk1 != 0 {
|
|
a1 = _sqlite3VdbeAddOp4Int(tls, v, int32(OP_IdxGT), **(**int32)(__ccgo_up(bp + 108)), 0, r2, libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk1)).FnKeyCol))
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_IsNull), r2)
|
|
zErr = _sqlite3MPrintf(tls, db, __ccgo_ts+19454, libc.VaList(bp+176, (*TTable)(unsafe.Pointer(pTab10)).FzName))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, zErr, -int32(7))
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeJumpHere(tls, v, a1)
|
|
_sqlite3VdbeJumpHere(tls, v, a1+int32(1))
|
|
j4 = 0
|
|
for {
|
|
if !(j4 < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk1)).FnKeyCol)) {
|
|
break
|
|
}
|
|
_sqlite3ExprCodeLoadIndexColumn(tls, pParse, pPk1, **(**int32)(__ccgo_up(bp + 108)), j4, r2+j4)
|
|
goto _56
|
|
_56:
|
|
;
|
|
j4 = j4 + 1
|
|
}
|
|
}
|
|
}
|
|
/* Verify datatypes for all columns:
|
|
**
|
|
** (1) NOT NULL columns may not contain a NULL
|
|
** (2) Datatype must be exact for non-ANY columns in STRICT tables
|
|
** (3) Datatype for TEXT columns in non-STRICT tables must be
|
|
** NULL, TEXT, or BLOB.
|
|
** (4) Datatype for numeric columns in non-STRICT tables must not
|
|
** be a TEXT value that can be losslessly converted to numeric.
|
|
*/
|
|
bStrict = libc.BoolInt32((*TTable)(unsafe.Pointer(pTab10)).FtabFlags&uint32(TF_Strict) != uint32(0))
|
|
j4 = 0
|
|
for {
|
|
if !(j4 < int32((*TTable)(unsafe.Pointer(pTab10)).FnCol)) {
|
|
break
|
|
}
|
|
pCol1 = (*TTable)(unsafe.Pointer(pTab10)).FaCol + uintptr(j4)*16 /* Check datatypes (besides NOT NULL) */
|
|
if j4 == int32((*TTable)(unsafe.Pointer(pTab10)).FiPKey) {
|
|
goto _57
|
|
}
|
|
if bStrict != 0 {
|
|
doTypeCheck = libc.BoolInt32(int32(uint32(*(*uint8)(unsafe.Pointer(pCol1 + 8))&0xf0>>4)) > int32(COLTYPE_ANY))
|
|
} else {
|
|
doTypeCheck = libc.BoolInt32(int32((*TColumn)(unsafe.Pointer(pCol1)).Faffinity) > int32(SQLITE_AFF_BLOB))
|
|
}
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(pCol1 + 8))&0xf>>0)) == 0 && !(doTypeCheck != 0) {
|
|
goto _57
|
|
}
|
|
/* Compute the operands that will be needed for OP_IsType */
|
|
p4 = int32(SQLITE_NULL)
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol1)).FcolFlags)&int32(COLFLAG_VIRTUAL) != 0 {
|
|
_sqlite3ExprCodeGetColumnOfTable(tls, v, pTab10, **(**int32)(__ccgo_up(bp + 108)), j4, int32(3))
|
|
p11 = -int32(1)
|
|
p3 = int32(3)
|
|
} else {
|
|
if (*TColumn)(unsafe.Pointer(pCol1)).FiDflt != 0 {
|
|
**(**uintptr)(__ccgo_up(bp + 120)) = uintptr(0)
|
|
_sqlite3ValueFromExpr(tls, db, _sqlite3ColumnExpr(tls, pTab10, pCol1), (*Tsqlite3)(unsafe.Pointer(db)).Fenc, libc.Uint8FromInt8((*TColumn)(unsafe.Pointer(pCol1)).Faffinity), bp+120)
|
|
if **(**uintptr)(__ccgo_up(bp + 120)) != 0 {
|
|
p4 = Xsqlite3_value_type(tls, **(**uintptr)(__ccgo_up(bp + 120)))
|
|
_sqlite3ValueFree(tls, **(**uintptr)(__ccgo_up(bp + 120)))
|
|
}
|
|
}
|
|
p11 = **(**int32)(__ccgo_up(bp + 108))
|
|
if !((*TTable)(unsafe.Pointer(pTab10)).FtabFlags&libc.Uint32FromInt32(TF_WithoutRowid) == libc.Uint32FromInt32(0)) {
|
|
p3 = _sqlite3TableColumnToIndex(tls, _sqlite3PrimaryKeyIndex(tls, pTab10), j4)
|
|
} else {
|
|
p3 = int32(_sqlite3TableColumnToStorage(tls, pTab10, int16(j4)))
|
|
}
|
|
}
|
|
labelError = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
labelOk = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(pCol1 + 8))&0xf>>0)) != 0 {
|
|
jmp2 = _sqlite3VdbeAddOp4Int(tls, v, int32(OP_IsType), p11, labelOk, p3, p4)
|
|
if p11 < 0 {
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(0x0f)) /* INT, REAL, TEXT, or BLOB */
|
|
jmp3 = jmp2
|
|
} else {
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(0x0d)) /* INT, TEXT, or BLOB */
|
|
/* OP_IsType does not detect NaN values in the database file
|
|
** which should be treated as a NULL. So if the header type
|
|
** is REAL, we have to load the actual data using OP_Column
|
|
** to reliably determine if the value is a NULL. */
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), p11, p3, int32(3))
|
|
_sqlite3ColumnDefault(tls, v, pTab10, j4, int32(3))
|
|
jmp3 = _sqlite3VdbeAddOp2(tls, v, int32(OP_NotNull), int32(3), labelOk)
|
|
}
|
|
zErr1 = _sqlite3MPrintf(tls, db, __ccgo_ts+19490, libc.VaList(bp+176, (*TTable)(unsafe.Pointer(pTab10)).FzName, (*TColumn)(unsafe.Pointer(pCol1)).FzCnName))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, zErr1, -int32(7))
|
|
if doTypeCheck != 0 {
|
|
_sqlite3VdbeGoto(tls, v, labelError)
|
|
_sqlite3VdbeJumpHere(tls, v, jmp2)
|
|
_sqlite3VdbeJumpHere(tls, v, jmp3)
|
|
} else {
|
|
/* VDBE byte code will fall thru */
|
|
}
|
|
}
|
|
if bStrict != 0 && doTypeCheck != 0 {
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IsType), p11, labelOk, p3, p4)
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(_aStdTypeMask[int32(uint32(*(*uint8)(unsafe.Pointer(pCol1 + 8))&0xf0>>4))-int32(1)]))
|
|
zErr1 = _sqlite3MPrintf(tls, db, __ccgo_ts+19510, libc.VaList(bp+176, _sqlite3StdType[int32(uint32(*(*uint8)(unsafe.Pointer(pCol1 + 8))&0xf0>>4))-int32(1)], (*TTable)(unsafe.Pointer(pTab10)).FzName, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab10)).FaCol + uintptr(j4)*16))).FzCnName))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, zErr1, -int32(7))
|
|
} else {
|
|
if !(bStrict != 0) && int32((*TColumn)(unsafe.Pointer(pCol1)).Faffinity) == int32(SQLITE_AFF_TEXT) {
|
|
/* (3) Datatype for TEXT columns in non-STRICT tables must be
|
|
** NULL, TEXT, or BLOB. */
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IsType), p11, labelOk, p3, p4)
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(0x1c)) /* NULL, TEXT, or BLOB */
|
|
zErr1 = _sqlite3MPrintf(tls, db, __ccgo_ts+19532, libc.VaList(bp+176, (*TTable)(unsafe.Pointer(pTab10)).FzName, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab10)).FaCol + uintptr(j4)*16))).FzCnName))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, zErr1, -int32(7))
|
|
} else {
|
|
if !(bStrict != 0) && int32((*TColumn)(unsafe.Pointer(pCol1)).Faffinity) >= int32(SQLITE_AFF_NUMERIC) {
|
|
/* (4) Datatype for numeric columns in non-STRICT tables must not
|
|
** be a TEXT value that can be converted to numeric. */
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IsType), p11, labelOk, p3, p4)
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(0x1b)) /* NULL, INT, FLOAT, or BLOB */
|
|
if p11 >= 0 {
|
|
_sqlite3ExprCodeGetColumnOfTable(tls, v, pTab10, **(**int32)(__ccgo_up(bp + 108)), j4, int32(3))
|
|
}
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_Affinity), int32(3), int32(1), 0, __ccgo_ts+19555, -int32(1))
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IsType), -int32(1), labelOk, int32(3), p4)
|
|
_sqlite3VdbeChangeP5(tls, v, uint16(0x1c)) /* NULL, TEXT, or BLOB */
|
|
zErr1 = _sqlite3MPrintf(tls, db, __ccgo_ts+19557, libc.VaList(bp+176, (*TTable)(unsafe.Pointer(pTab10)).FzName, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab10)).FaCol + uintptr(j4)*16))).FzCnName))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, zErr1, -int32(7))
|
|
}
|
|
}
|
|
}
|
|
_sqlite3VdbeResolveLabel(tls, v, labelError)
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeResolveLabel(tls, v, labelOk)
|
|
goto _57
|
|
_57:
|
|
;
|
|
j4 = j4 + 1
|
|
}
|
|
/* Verify CHECK constraints */
|
|
if (*TTable)(unsafe.Pointer(pTab10)).FpCheck != 0 && (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_IgnoreChecks) == uint64(0) {
|
|
pCheck = _sqlite3ExprListDup(tls, db, (*TTable)(unsafe.Pointer(pTab10)).FpCheck, 0)
|
|
if libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed) == 0 {
|
|
addrCkFault = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
addrCkOk = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
(*TParse)(unsafe.Pointer(pParse)).FiSelfTab = **(**int32)(__ccgo_up(bp + 108)) + int32(1)
|
|
k3 = (*TExprList)(unsafe.Pointer(pCheck)).FnExpr - int32(1)
|
|
for {
|
|
if !(k3 > 0) {
|
|
break
|
|
}
|
|
_sqlite3ExprIfFalse(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pCheck + 8 + uintptr(k3)*32))).FpExpr, addrCkFault, 0)
|
|
goto _58
|
|
_58:
|
|
;
|
|
k3 = k3 - 1
|
|
}
|
|
_sqlite3ExprIfTrue(tls, pParse, (*(*TExprList_item)(unsafe.Pointer(pCheck + 8))).FpExpr, addrCkOk, int32(SQLITE_JUMPIFNULL))
|
|
_sqlite3VdbeResolveLabel(tls, v, addrCkFault)
|
|
(*TParse)(unsafe.Pointer(pParse)).FiSelfTab = 0
|
|
zErr2 = _sqlite3MPrintf(tls, db, __ccgo_ts+19577, libc.VaList(bp+176, (*TTable)(unsafe.Pointer(pTab10)).FzName))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, zErr2, -int32(7))
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeResolveLabel(tls, v, addrCkOk)
|
|
}
|
|
_sqlite3ExprListDelete(tls, db, pCheck)
|
|
}
|
|
if !(isQuick != 0) { /* Omit the remaining tests for quick_check */
|
|
/* Validate index entries for the current row */
|
|
j4 = 0
|
|
pIdx6 = (*TTable)(unsafe.Pointer(pTab10)).FpIndex
|
|
for {
|
|
if !(pIdx6 != 0) {
|
|
break
|
|
}
|
|
ckUniq = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
if pPk1 == pIdx6 {
|
|
goto _59
|
|
}
|
|
r1 = _sqlite3GenerateIndexKey(tls, pParse, pIdx6, **(**int32)(__ccgo_up(bp + 108)), 0, 0, bp+128, pPrior, r1)
|
|
pPrior = pIdx6
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_AddImm), int32(8)+j4, int32(1)) /* increment entry count */
|
|
/* Verify that an index entry exists for the current table row */
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_Found), **(**int32)(__ccgo_up(bp + 112))+j4, ckUniq, r1, libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx6)).FnColumn))
|
|
jmp21 = _sqlite3VdbeAddOp3(tls, v, int32(OP_IFindKey), **(**int32)(__ccgo_up(bp + 112))+j4, ckUniq, r1)
|
|
_sqlite3VdbeChangeP4(tls, v, -int32(1), pIdx6, -int32(6))
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, int32(3), 0, _sqlite3MPrintf(tls, db, __ccgo_ts+19607, libc.VaList(bp+176, (*TIndex)(unsafe.Pointer(pIdx6)).FzName)), -int32(7))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(7), int32(3), int32(3))
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Goto), 0, ckUniq)
|
|
_sqlite3VdbeJumpHere(tls, v, jmp21)
|
|
_sqlite3VdbeLoadString(tls, v, int32(3), __ccgo_ts+19666)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(7), int32(3), int32(3))
|
|
_sqlite3VdbeLoadString(tls, v, int32(4), __ccgo_ts+19671)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(4), int32(3), int32(3))
|
|
jmp5 = _sqlite3VdbeLoadString(tls, v, int32(4), (*TIndex)(unsafe.Pointer(pIdx6)).FzName)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(4), int32(3), int32(3))
|
|
jmp4 = _integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeResolveLabel(tls, v, ckUniq)
|
|
/* The OP_IdxRowid opcode is an optimized version of OP_Column
|
|
** that extracts the rowid off the end of the index record.
|
|
** But it only works correctly if index record does not have
|
|
** any extra bytes at the end. Verify that this is the case. */
|
|
if (*TTable)(unsafe.Pointer(pTab10)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IdxRowid), **(**int32)(__ccgo_up(bp + 112))+j4, int32(3))
|
|
jmp7 = _sqlite3VdbeAddOp3(tls, v, int32(OP_Eq), int32(3), 0, r1+libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx6)).FnColumn)-int32(1))
|
|
_sqlite3VdbeLoadString(tls, v, int32(3), __ccgo_ts+19692)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(7), int32(3), int32(3))
|
|
_sqlite3VdbeLoadString(tls, v, int32(4), __ccgo_ts+19728)
|
|
_sqlite3VdbeGoto(tls, v, jmp5-int32(1))
|
|
_sqlite3VdbeJumpHere(tls, v, jmp7)
|
|
}
|
|
/* Any indexed columns with non-BINARY collations must still hold
|
|
** the exact same text value as the table. */
|
|
label6 = 0
|
|
kk = 0
|
|
for {
|
|
if !(kk < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx6)).FnKeyCol)) {
|
|
break
|
|
}
|
|
if **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx6)).FazColl + uintptr(kk)*8)) == uintptr(unsafe.Pointer(&_sqlite3StrBINARY)) {
|
|
goto _60
|
|
}
|
|
if label6 == 0 {
|
|
label6 = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), **(**int32)(__ccgo_up(bp + 112))+j4, kk, int32(3))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Ne), int32(3), label6, r1+kk)
|
|
goto _60
|
|
_60:
|
|
;
|
|
kk = kk + 1
|
|
}
|
|
if label6 != 0 {
|
|
jmp6 = _sqlite3VdbeAddOp0(tls, v, int32(OP_Goto))
|
|
_sqlite3VdbeResolveLabel(tls, v, label6)
|
|
_sqlite3VdbeLoadString(tls, v, int32(3), __ccgo_ts+19666)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Concat), int32(7), int32(3), int32(3))
|
|
_sqlite3VdbeLoadString(tls, v, int32(4), __ccgo_ts+19739)
|
|
_sqlite3VdbeGoto(tls, v, jmp5-int32(1))
|
|
_sqlite3VdbeJumpHere(tls, v, jmp6)
|
|
}
|
|
/* For UNIQUE indexes, verify that only one entry exists with the
|
|
** current key. The entry is unique if (1) any column is NULL
|
|
** or (2) the next entry has a different key */
|
|
if libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx6)).FonError) != OE_None {
|
|
uniqOk = _sqlite3VdbeMakeLabel(tls, pParse)
|
|
kk = 0
|
|
for {
|
|
if !(kk < libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx6)).FnKeyCol)) {
|
|
break
|
|
}
|
|
iCol1 = int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx6)).FaiColumn + uintptr(kk)*2)))
|
|
if iCol1 >= 0 && int32(uint32(*(*uint8)(unsafe.Pointer((*TTable)(unsafe.Pointer(pTab10)).FaCol + uintptr(iCol1)*16 + 8))&0xf>>0)) != 0 {
|
|
goto _61
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IsNull), r1+kk, uniqOk)
|
|
goto _61
|
|
_61:
|
|
;
|
|
kk = kk + 1
|
|
}
|
|
jmp61 = _sqlite3VdbeAddOp1(tls, v, int32(OP_Next), **(**int32)(__ccgo_up(bp + 112))+j4)
|
|
_sqlite3VdbeGoto(tls, v, uniqOk)
|
|
_sqlite3VdbeJumpHere(tls, v, jmp61)
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IdxGT), **(**int32)(__ccgo_up(bp + 112))+j4, uniqOk, r1, libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx6)).FnKeyCol))
|
|
_sqlite3VdbeLoadString(tls, v, int32(3), __ccgo_ts+19766)
|
|
_sqlite3VdbeGoto(tls, v, jmp5)
|
|
_sqlite3VdbeResolveLabel(tls, v, uniqOk)
|
|
}
|
|
_sqlite3VdbeJumpHere(tls, v, jmp4)
|
|
_sqlite3ResolvePartIdxLabel(tls, pParse, **(**int32)(__ccgo_up(bp + 128)))
|
|
goto _59
|
|
_59:
|
|
;
|
|
pIdx6 = (*TIndex)(unsafe.Pointer(pIdx6)).FpNext
|
|
j4 = j4 + 1
|
|
}
|
|
}
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Next), **(**int32)(__ccgo_up(bp + 108)), loopTop)
|
|
_sqlite3VdbeJumpHere(tls, v, loopTop-int32(1))
|
|
if pPk1 != 0 {
|
|
_sqlite3ReleaseTempRange(tls, pParse, r2, libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk1)).FnKeyCol))
|
|
}
|
|
goto _53
|
|
_53:
|
|
;
|
|
x2 = (*THashElem)(unsafe.Pointer(x2)).Fnext
|
|
}
|
|
/* Second pass to invoke the xIntegrity method on all virtual
|
|
** tables.
|
|
*/
|
|
x2 = (*THash)(unsafe.Pointer(pTbls)).Ffirst
|
|
for {
|
|
if !(x2 != 0) {
|
|
break
|
|
}
|
|
pTab11 = (*THashElem)(unsafe.Pointer(x2)).Fdata
|
|
if _tableSkipIntegrityCheck(tls, pTab11, pObjTab) != 0 {
|
|
goto _62
|
|
}
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab11)).FeTabType) == TABTYP_NORM {
|
|
goto _62
|
|
}
|
|
if !(libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab11)).FeTabType) == libc.Int32FromInt32(TABTYP_VTAB)) {
|
|
goto _62
|
|
}
|
|
if int32((*TTable)(unsafe.Pointer(pTab11)).FnCol) <= 0 {
|
|
zMod = **(**uintptr)(__ccgo_up((*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab11 + 64))).FazArg))
|
|
if _sqlite3HashFind(tls, db+576, zMod) == uintptr(0) {
|
|
goto _62
|
|
}
|
|
}
|
|
_sqlite3ViewGetColumnNames(tls, pParse, pTab11)
|
|
if (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab11 + 64))).Fp == uintptr(0) {
|
|
goto _62
|
|
}
|
|
pVTab = (*TVTable)(unsafe.Pointer((*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab11 + 64))).Fp)).FpVtab
|
|
if pVTab == uintptr(0) {
|
|
goto _62
|
|
}
|
|
if (*Tsqlite3_vtab)(unsafe.Pointer(pVTab)).FpModule == uintptr(0) {
|
|
goto _62
|
|
}
|
|
if (*Tsqlite3_module)(unsafe.Pointer((*Tsqlite3_vtab)(unsafe.Pointer(pVTab)).FpModule)).FiVersion < int32(4) {
|
|
goto _62
|
|
}
|
|
if (*Tsqlite3_module)(unsafe.Pointer((*Tsqlite3_vtab)(unsafe.Pointer(pVTab)).FpModule)).FxIntegrity == uintptr(0) {
|
|
goto _62
|
|
}
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_VCheck), i9, int32(3), isQuick)
|
|
(*TTable)(unsafe.Pointer(pTab11)).FnTabRef = (*TTable)(unsafe.Pointer(pTab11)).FnTabRef + 1
|
|
_sqlite3VdbeAppendP4(tls, v, pTab11, -int32(17))
|
|
a11 = _sqlite3VdbeAddOp1(tls, v, int32(OP_IsNull), int32(3))
|
|
_integrityCheckResultRow(tls, v)
|
|
_sqlite3VdbeJumpHere(tls, v, a11)
|
|
goto _62
|
|
goto _62
|
|
_62:
|
|
;
|
|
x2 = (*THashElem)(unsafe.Pointer(x2)).Fnext
|
|
}
|
|
goto _40
|
|
_40:
|
|
;
|
|
i9 = i9 + 1
|
|
}
|
|
aOp2 = _sqlite3VdbeAddOpList(tls, v, libc.Int32FromUint64(libc.Uint64FromInt64(28)/libc.Uint64FromInt64(4)), uintptr(unsafe.Pointer(&_endCode)), _iLn21)
|
|
if aOp2 != 0 {
|
|
(**(**TVdbeOp)(__ccgo_up(aOp2))).Fp2 = int32(1) - **(**int32)(__ccgo_up(bp + 104))
|
|
(**(**TVdbeOp)(__ccgo_up(aOp2 + 2*24))).Fp4type = int8(-libc.Int32FromInt32(1))
|
|
*(*uintptr)(unsafe.Pointer(aOp2 + 2*24 + 16)) = __ccgo_ts + 19793
|
|
(**(**TVdbeOp)(__ccgo_up(aOp2 + 5*24))).Fp4type = int8(-libc.Int32FromInt32(1))
|
|
*(*uintptr)(unsafe.Pointer(aOp2 + 5*24 + 16)) = _sqlite3ErrStr(tls, int32(SQLITE_CORRUPT))
|
|
}
|
|
_sqlite3VdbeChangeP3(tls, v, 0, _sqlite3VdbeCurrentAddr(tls, v)-int32(2))
|
|
break
|
|
/*
|
|
** PRAGMA encoding
|
|
** PRAGMA encoding = "utf-8"|"utf-16"|"utf-16le"|"utf-16be"
|
|
**
|
|
** In its first form, this pragma returns the encoding of the main
|
|
** database. If the database is not initialized, it is initialized now.
|
|
**
|
|
** The second form of this pragma is a no-op if the main database file
|
|
** has not already been initialized. In this case it sets the default
|
|
** encoding that will be used for the main database file if a new file
|
|
** is created. If an existing main database file is opened, then the
|
|
** default text encoding for the existing database is used.
|
|
**
|
|
** In all cases new databases created using the ATTACH command are
|
|
** created to use the same default text encoding as the main database. If
|
|
** the main database has not been initialized and/or created when ATTACH
|
|
** is executed, this is done before the ATTACH operation.
|
|
**
|
|
** In the second form this pragma sets the text encoding to be used in
|
|
** new database files created using this database handle. It is only
|
|
** useful if invoked immediately after the main database i
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_ENCODING):
|
|
if !(zRight != 0) { /* "PRAGMA encoding" */
|
|
if _sqlite3ReadSchema(tls, pParse) != 0 {
|
|
goto pragma_out
|
|
}
|
|
_returnSingleText(tls, v, _encnames1[(*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).Fenc].FzName)
|
|
} else { /* "PRAGMA encoding = XXX" */
|
|
/* Only change the value of sqlite.enc if the database handle is not
|
|
** initialized. If the main database exists, the new sqlite.enc value
|
|
** will be overwritten when the schema is next loaded. If it does not
|
|
** already exists, it will be created to use the new encoding value.
|
|
*/
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmDbFlags&uint32(DBFLAG_EncodingFixed) == uint32(0) {
|
|
pEnc = uintptr(unsafe.Pointer(&_encnames1))
|
|
for {
|
|
if !((*struct {
|
|
FzName uintptr
|
|
Fenc Tu8
|
|
})(unsafe.Pointer(pEnc)).FzName != 0) {
|
|
break
|
|
}
|
|
if 0 == _sqlite3StrICmp(tls, zRight, (*struct {
|
|
FzName uintptr
|
|
Fenc Tu8
|
|
})(unsafe.Pointer(pEnc)).FzName) {
|
|
if (*struct {
|
|
FzName uintptr
|
|
Fenc Tu8
|
|
})(unsafe.Pointer(pEnc)).Fenc != 0 {
|
|
v2 = libc.Int32FromUint8((*struct {
|
|
FzName uintptr
|
|
Fenc Tu8
|
|
})(unsafe.Pointer(pEnc)).Fenc)
|
|
} else {
|
|
v2 = int32(SQLITE_UTF16LE)
|
|
}
|
|
enc = libc.Uint8FromInt32(v2)
|
|
(*TSchema)(unsafe.Pointer((**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb))).FpSchema)).Fenc = enc
|
|
_sqlite3SetTextEncoding(tls, db, enc)
|
|
break
|
|
}
|
|
goto _63
|
|
_63:
|
|
;
|
|
pEnc += 16
|
|
}
|
|
if !((*struct {
|
|
FzName uintptr
|
|
Fenc Tu8
|
|
})(unsafe.Pointer(pEnc)).FzName != 0) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+19854, libc.VaList(bp+176, zRight))
|
|
}
|
|
}
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]schema_version
|
|
** PRAGMA [schema.]schema_version = <integer>
|
|
**
|
|
** PRAGMA [schema.]user_version
|
|
** PRAGMA [schema.]user_version = <integer>
|
|
**
|
|
** PRAGMA [schema.]freelist_count
|
|
**
|
|
** PRAGMA [schema.]data_version
|
|
**
|
|
** PRAGMA [schema.]application_id
|
|
** PRAGMA [schema.]application_id = <integer>
|
|
**
|
|
** The pragma's schema_version and user_version are used to set or get
|
|
** the value of the schema-version and user-version, respectively. Both
|
|
** the schema-version and the user-version are 32-bit signed integers
|
|
** stored in the database header.
|
|
**
|
|
** The schema-cookie is usually only manipulated internally by SQLite. It
|
|
** is incremented by SQLite whenever the database schema is modified (by
|
|
** creating or dropping a table or index). The schema version is used by
|
|
** SQLite each time a query is executed to ensure that the internal cache
|
|
** of the schema used when compiling the SQL query matches the schema of
|
|
** the database against which the compiled query is actually executed.
|
|
** Subverting this mechanism by using "PRAGMA schema_version" to modify
|
|
** the schema-version is potentially dangerous and may lead to program
|
|
** crashes or database corruption. Use with caution!
|
|
**
|
|
** The user-version is not used internally by SQLite. It may be used by
|
|
** applications for any purpose.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_HEADER_VALUE):
|
|
iCookie = libc.Int32FromUint64((*TPragmaName)(unsafe.Pointer(pPragma)).FiArg) /* Which cookie to read or write */
|
|
_sqlite3VdbeUsesBtree(tls, v, iDb)
|
|
if zRight != 0 && libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&int32(PragFlg_ReadOnly) == 0 {
|
|
aOp3 = _sqlite3VdbeAddOpList(tls, v, libc.Int32FromUint64(libc.Uint64FromInt64(8)/libc.Uint64FromInt64(4)), uintptr(unsafe.Pointer(&_setCookie)), 0)
|
|
if 0 != 0 {
|
|
break
|
|
}
|
|
(**(**TVdbeOp)(__ccgo_up(aOp3))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp3 + 1*24))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp3 + 1*24))).Fp2 = iCookie
|
|
(**(**TVdbeOp)(__ccgo_up(aOp3 + 1*24))).Fp3 = _sqlite3Atoi(tls, zRight)
|
|
(**(**TVdbeOp)(__ccgo_up(aOp3 + 1*24))).Fp5 = uint16(1)
|
|
if iCookie == int32(BTREE_SCHEMA_VERSION) && (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_Defensive) != uint64(0) {
|
|
/* Do not allow the use of PRAGMA schema_version=VALUE in defensive
|
|
** mode. Change the OP_SetCookie opcode into a no-op. */
|
|
(**(**TVdbeOp)(__ccgo_up(aOp3 + 1*24))).Fopcode = uint8(OP_Noop)
|
|
}
|
|
} else {
|
|
aOp4 = _sqlite3VdbeAddOpList(tls, v, libc.Int32FromUint64(libc.Uint64FromInt64(12)/libc.Uint64FromInt64(4)), uintptr(unsafe.Pointer(&_readCookie)), 0)
|
|
if 0 != 0 {
|
|
break
|
|
}
|
|
(**(**TVdbeOp)(__ccgo_up(aOp4))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp4 + 1*24))).Fp1 = iDb
|
|
(**(**TVdbeOp)(__ccgo_up(aOp4 + 1*24))).Fp3 = iCookie
|
|
_sqlite3VdbeReusable(tls, v)
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA compile_options
|
|
**
|
|
** Return the names of all compile-time options used in this build,
|
|
** one option per row.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_COMPILE_OPTIONS):
|
|
i10 = 0
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(1)
|
|
for {
|
|
v2 = i10
|
|
i10 = i10 + 1
|
|
v1 = Xsqlite3_compileoption_get(tls, v2)
|
|
zOpt = v1
|
|
if !(v1 != uintptr(0)) {
|
|
break
|
|
}
|
|
_sqlite3VdbeLoadString(tls, v, int32(1), zOpt)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), int32(1), int32(1))
|
|
}
|
|
_sqlite3VdbeReusable(tls, v)
|
|
break
|
|
/*
|
|
** PRAGMA [schema.]wal_checkpoint = passive|full|restart|truncate
|
|
**
|
|
** Checkpoint the database.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_WAL_CHECKPOINT):
|
|
if (*TToken)(unsafe.Pointer(pId2)).Fz != 0 {
|
|
v2 = iDb
|
|
} else {
|
|
v2 = libc.Int32FromInt32(SQLITE_MAX_ATTACHED) + libc.Int32FromInt32(2)
|
|
}
|
|
iBt = v2
|
|
eMode2 = SQLITE_CHECKPOINT_PASSIVE
|
|
if zRight != 0 {
|
|
if _sqlite3StrICmp(tls, zRight, __ccgo_ts+19020) == 0 {
|
|
eMode2 = int32(SQLITE_CHECKPOINT_FULL)
|
|
} else {
|
|
if _sqlite3StrICmp(tls, zRight, __ccgo_ts+19879) == 0 {
|
|
eMode2 = int32(SQLITE_CHECKPOINT_RESTART)
|
|
} else {
|
|
if _sqlite3StrICmp(tls, zRight, __ccgo_ts+19173) == 0 {
|
|
eMode2 = int32(SQLITE_CHECKPOINT_TRUNCATE)
|
|
} else {
|
|
if _sqlite3StrICmp(tls, zRight, __ccgo_ts+19887) == 0 {
|
|
eMode2 = -int32(1)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FnMem = int32(3)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Checkpoint), iBt, eMode2, int32(1))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), int32(1), int32(3))
|
|
break
|
|
/*
|
|
** PRAGMA wal_autocheckpoint
|
|
** PRAGMA wal_autocheckpoint = N
|
|
**
|
|
** Configure a database connection to automatically checkpoint a database
|
|
** after accumulating N frames in the log. Or query for the current value
|
|
** of N.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_WAL_AUTOCHECKPOINT):
|
|
if zRight != 0 {
|
|
Xsqlite3_wal_autocheckpoint(tls, db, _sqlite3Atoi(tls, zRight))
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FxWalCallback == __ccgo_fp(_sqlite3WalDefaultHook) {
|
|
v2 = int32(int64((*Tsqlite3)(unsafe.Pointer(db)).FpWalArg))
|
|
} else {
|
|
v2 = 0
|
|
}
|
|
_returnSingleInt(tls, v, int64(v2))
|
|
break
|
|
/*
|
|
** PRAGMA shrink_memory
|
|
**
|
|
** IMPLEMENTATION-OF: R-23445-46109 This pragma causes the database
|
|
** connection on which it is invoked to free up as much memory as it
|
|
** can, by calling sqlite3_db_release_memory().
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_SHRINK_MEMORY):
|
|
Xsqlite3_db_release_memory(tls, db)
|
|
break
|
|
/*
|
|
** PRAGMA optimize
|
|
** PRAGMA optimize(MASK)
|
|
** PRAGMA schema.optimize
|
|
** PRAGMA schema.optimize(MASK)
|
|
**
|
|
** Attempt to optimize the database. All schemas are optimized in the first
|
|
** two forms, and only the specified schema is optimized in the latter two.
|
|
**
|
|
** The details of optimizations performed by this pragma are expected
|
|
** to change and improve over time. Applications should anticipate that
|
|
** this pragma will perform new optimizations in future releases.
|
|
**
|
|
** The optional argument is a bitmask of optimizations to perform:
|
|
**
|
|
** 0x00001 Debugging mode. Do not actually perform any optimizations
|
|
** but instead return one line of text for each optimization
|
|
** that would have been done. Off by default.
|
|
**
|
|
** 0x00002 Run ANALYZE on tables that might benefit. On by default.
|
|
** See below for additional information.
|
|
**
|
|
** 0x00010 Run all ANALYZE operations using an analysis_limit that
|
|
** is the lessor of the current analysis_limit and the
|
|
** SQLITE_DEFAULT_OPTIMIZE_LIMIT compile-time option.
|
|
** The default value of SQLITE_DEFAULT_OPTIMIZE_LIMIT is
|
|
** currently (2024-02-19) set to 2000, which is such that
|
|
** the worst case run-time for PRAGMA optimize on a 100MB
|
|
** database will usually be less than 100 milliseconds on
|
|
** a RaspberryPI-4 class machine. On by default.
|
|
**
|
|
** 0x10000 Look at tables to see if they need to be reanalyzed
|
|
** due to growth or shrinkage even if they have not been
|
|
** queried during the current connection. Off by default.
|
|
**
|
|
** The default MASK is and always shall be 0x0fffe. In the current
|
|
** implementation, the default mask only covers the 0x00002 optimization,
|
|
** though additional optimizations that are covered by 0x0fffe might be
|
|
** added in the future. Optimizations that are off by default and must
|
|
** be explicitly requested have masks of 0x10000 or greater.
|
|
**
|
|
** DETERMINATION OF WHEN TO RUN ANALYZE
|
|
**
|
|
** In the current implementation, a table is analyzed if only if all of
|
|
** the following are true:
|
|
**
|
|
** (1) MASK bit 0x00002 is set.
|
|
**
|
|
** (2) The table is an ordinary table, not a virtual table or view.
|
|
**
|
|
** (3) The table name does not begin with "sqlite_".
|
|
**
|
|
** (4) One or more of the following is true:
|
|
** (4a) The 0x10000 MASK bit is set.
|
|
** (4b) One or more indexes on the table lacks an entry
|
|
** in the sqlite_stat1 table.
|
|
** (4c) The query planner used sqlite_stat1-style statistics for one
|
|
** or more indexes of the table at some point during the lifetime
|
|
** of the current connection.
|
|
**
|
|
** (5) One or more of the following is true:
|
|
** (5a) One or more indexes on the table lacks an entry
|
|
** in the sqlite_stat1 table. (Same as 4a)
|
|
** (5b) The number of rows in the table has increased or decreased by
|
|
** 10-fold. In other words, the current size of the table is
|
|
** 10 times larger than the size in sqlite_stat1 or else the
|
|
** current size is less than 1/10th the size in sqlite_stat1.
|
|
**
|
|
** The rules for when tables are analyzed are likely to change in
|
|
** future releases. Future versions of SQLite might accept a string
|
|
** literal argument to this pragma that contains a mnemonic description
|
|
** of the options rather than a bitmap.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_OPTIMIZE): /* Analysis limit to use */
|
|
nCheck = 0 /* Number of tables to be optimized */
|
|
nBtree = 0 /* Number of indexes on the current table */
|
|
if zRight != 0 {
|
|
opMask = libc.Uint32FromInt32(_sqlite3Atoi(tls, zRight))
|
|
if opMask&uint32(0x02) == uint32(0) {
|
|
break
|
|
}
|
|
} else {
|
|
opMask = uint32(0xfffe)
|
|
}
|
|
if opMask&uint32(0x10) == uint32(0) {
|
|
nLimit = 0
|
|
} else {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit > 0 && (*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit < int32(SQLITE_DEFAULT_OPTIMIZE_LIMIT) {
|
|
nLimit = 0
|
|
} else {
|
|
nLimit = int32(SQLITE_DEFAULT_OPTIMIZE_LIMIT)
|
|
}
|
|
}
|
|
v1 = pParse + 56
|
|
v2 = *(*int32)(unsafe.Pointer(v1))
|
|
*(*int32)(unsafe.Pointer(v1)) = *(*int32)(unsafe.Pointer(v1)) + 1
|
|
iTabCur = v2
|
|
if zDb != 0 {
|
|
v2 = iDb
|
|
} else {
|
|
v2 = (*Tsqlite3)(unsafe.Pointer(db)).FnDb - int32(1)
|
|
}
|
|
iDbLast = v2
|
|
for {
|
|
if !(iDb <= iDbLast) {
|
|
break
|
|
}
|
|
if iDb == int32(1) {
|
|
goto _71
|
|
}
|
|
_sqlite3CodeVerifySchema(tls, pParse, iDb)
|
|
pSchema = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpSchema
|
|
k4 = (*THash)(unsafe.Pointer(pSchema + 8)).Ffirst
|
|
for {
|
|
if !(k4 != 0) {
|
|
break
|
|
}
|
|
pTab12 = (*THashElem)(unsafe.Pointer(k4)).Fdata
|
|
/* This only works for ordinary tables */
|
|
if !(libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTab12)).FeTabType) == libc.Int32FromInt32(TABTYP_NORM)) {
|
|
goto _73
|
|
}
|
|
/* Do not scan system tables */
|
|
if 0 == Xsqlite3_strnicmp(tls, (*TTable)(unsafe.Pointer(pTab12)).FzName, __ccgo_ts+6760, int32(7)) {
|
|
goto _73
|
|
}
|
|
/* Find the size of the table as last recorded in sqlite_stat1.
|
|
** If any index is unanalyzed, then the threshold is -1 to
|
|
** indicate a new, unanalyzed index
|
|
*/
|
|
szThreshold = (*TTable)(unsafe.Pointer(pTab12)).FnRowLogEst
|
|
nIndex = 0
|
|
pIdx7 = (*TTable)(unsafe.Pointer(pTab12)).FpIndex
|
|
for {
|
|
if !(pIdx7 != 0) {
|
|
break
|
|
}
|
|
nIndex = nIndex + 1
|
|
if !(int32(uint32(*(*uint16)(unsafe.Pointer(pIdx7 + 100))&0x80>>7)) != 0) {
|
|
szThreshold = int16(-int32(1)) /* Always analyze if any index lacks statistics */
|
|
}
|
|
goto _74
|
|
_74:
|
|
;
|
|
pIdx7 = (*TIndex)(unsafe.Pointer(pIdx7)).FpNext
|
|
}
|
|
/* If table pTab has not been used in a way that would benefit from
|
|
** having analysis statistics during the current session, then skip it,
|
|
** unless the 0x10000 MASK bit is set. */
|
|
if (*TTable)(unsafe.Pointer(pTab12)).FtabFlags&uint32(TF_MaybeReanalyze) != uint32(0) {
|
|
/* Check for size change if stat1 has been used for a query */
|
|
} else {
|
|
if opMask&uint32(0x10000) != 0 {
|
|
/* Check for size change if 0x10000 is set */
|
|
} else {
|
|
if (*TTable)(unsafe.Pointer(pTab12)).FpIndex != uintptr(0) && int32(szThreshold) < 0 {
|
|
/* Do analysis if unanalyzed indexes exists */
|
|
} else {
|
|
/* Otherwise, we can skip this table */
|
|
goto _73
|
|
}
|
|
}
|
|
}
|
|
nCheck = nCheck + 1
|
|
if nCheck == int32(2) {
|
|
/* If ANALYZE might be invoked two or more times, hold a write
|
|
** transaction for efficiency */
|
|
_sqlite3BeginWriteOperation(tls, pParse, 0, iDb)
|
|
}
|
|
nBtree = nBtree + (nIndex + int32(1))
|
|
/* Reanalyze if the table is 10 times larger or smaller than
|
|
** the last analysis. Unconditional reanalysis if there are
|
|
** unanalyzed indexes. */
|
|
_sqlite3OpenTable(tls, pParse, iTabCur, iDb, pTab12, int32(OP_OpenRead))
|
|
if int32(szThreshold) >= 0 {
|
|
iRange = int16(33) /* 10x size change */
|
|
if int32(szThreshold) >= int32(iRange) {
|
|
v2 = int32(szThreshold) - int32(iRange)
|
|
} else {
|
|
v2 = -int32(1)
|
|
}
|
|
_sqlite3VdbeAddOp4Int(tls, v, int32(OP_IfSizeBetween), iTabCur, libc.Int32FromUint32(libc.Uint32FromInt32(_sqlite3VdbeCurrentAddr(tls, v)+int32(2))+opMask&uint32(1)), v2, int32(szThreshold)+int32(iRange))
|
|
} else {
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_Rewind), iTabCur, libc.Int32FromUint32(libc.Uint32FromInt32(_sqlite3VdbeCurrentAddr(tls, v)+int32(2))+opMask&uint32(1)))
|
|
}
|
|
zSubSql = _sqlite3MPrintf(tls, db, __ccgo_ts+19892, libc.VaList(bp+176, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName, (*TTable)(unsafe.Pointer(pTab12)).FzName))
|
|
if opMask&uint32(0x01) != 0 {
|
|
r11 = _sqlite3GetTempReg(tls, pParse)
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_String8), 0, r11, 0, zSubSql, -int32(7))
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_ResultRow), r11, int32(1))
|
|
} else {
|
|
if nLimit != 0 {
|
|
v2 = int32(0x02)
|
|
} else {
|
|
v2 = 00
|
|
}
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_SqlExec), v2, nLimit, 0, zSubSql, -int32(7))
|
|
}
|
|
goto _73
|
|
_73:
|
|
;
|
|
k4 = (*THashElem)(unsafe.Pointer(k4)).Fnext
|
|
}
|
|
goto _71
|
|
_71:
|
|
;
|
|
iDb = iDb + 1
|
|
}
|
|
_sqlite3VdbeAddOp0(tls, v, int32(OP_Expire))
|
|
/* In a schema with a large number of tables and indexes, scale back
|
|
** the analysis_limit to avoid excess run-time in the worst case.
|
|
*/
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0) && nLimit > 0 && nBtree > int32(100) {
|
|
nLimit = int32(100) * nLimit / nBtree
|
|
if nLimit < int32(100) {
|
|
nLimit = int32(100)
|
|
}
|
|
aOp5 = _sqlite3VdbeGetOp(tls, v, 0)
|
|
iEnd = _sqlite3VdbeCurrentAddr(tls, v)
|
|
iAddr1 = 0
|
|
for {
|
|
if !(iAddr1 < iEnd) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8((**(**TVdbeOp)(__ccgo_up(aOp5 + uintptr(iAddr1)*24))).Fopcode) == int32(OP_SqlExec) {
|
|
(**(**TVdbeOp)(__ccgo_up(aOp5 + uintptr(iAddr1)*24))).Fp2 = nLimit
|
|
}
|
|
goto _77
|
|
_77:
|
|
;
|
|
iAddr1 = iAddr1 + 1
|
|
}
|
|
}
|
|
break
|
|
/*
|
|
** PRAGMA busy_timeout
|
|
** PRAGMA busy_timeout = N
|
|
**
|
|
** Call sqlite3_busy_timeout(db, N). Return the current timeout value
|
|
** if one is set. If no busy handler or a different busy handler is set
|
|
** then 0 is returned. Setting the busy_timeout to 0 or negative
|
|
** disables the timeout.
|
|
*/
|
|
/*case PragTyp_BUSY_TIMEOUT*/
|
|
fallthrough
|
|
default:
|
|
if zRight != 0 {
|
|
Xsqlite3_busy_timeout(tls, db, _sqlite3Atoi(tls, zRight))
|
|
}
|
|
_returnSingleInt(tls, v, int64((*Tsqlite3)(unsafe.Pointer(db)).FbusyTimeout))
|
|
break
|
|
/*
|
|
** PRAGMA soft_heap_limit
|
|
** PRAGMA soft_heap_limit = N
|
|
**
|
|
** IMPLEMENTATION-OF: R-26343-45930 This pragma invokes the
|
|
** sqlite3_soft_heap_limit64() interface with the argument N, if N is
|
|
** specified and is a non-negative integer.
|
|
** IMPLEMENTATION-OF: R-64451-07163 The soft_heap_limit pragma always
|
|
** returns the same integer that would be returned by the
|
|
** sqlite3_soft_heap_limit64(-1) C-language function.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_SOFT_HEAP_LIMIT):
|
|
if zRight != 0 && _sqlite3DecOrHexToI64(tls, zRight, bp+136) == SQLITE_OK {
|
|
Xsqlite3_soft_heap_limit64(tls, **(**Tsqlite3_int64)(__ccgo_up(bp + 136)))
|
|
}
|
|
_returnSingleInt(tls, v, Xsqlite3_soft_heap_limit64(tls, int64(-int32(1))))
|
|
break
|
|
/*
|
|
** PRAGMA hard_heap_limit
|
|
** PRAGMA hard_heap_limit = N
|
|
**
|
|
** Invoke sqlite3_hard_heap_limit64() to query or set the hard heap
|
|
** limit. The hard heap limit can be activated or lowered by this
|
|
** pragma, but not raised or deactivated. Only the
|
|
** sqlite3_hard_heap_limit64() C-language API can raise or deactivate
|
|
** the hard heap limit. This allows an application to set a heap limit
|
|
** constraint that cannot be relaxed by an untrusted SQL script.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_HARD_HEAP_LIMIT):
|
|
if zRight != 0 && _sqlite3DecOrHexToI64(tls, zRight, bp+144) == SQLITE_OK {
|
|
iPrior = Xsqlite3_hard_heap_limit64(tls, int64(-int32(1)))
|
|
if **(**Tsqlite3_int64)(__ccgo_up(bp + 144)) > 0 && (iPrior == 0 || iPrior > **(**Tsqlite3_int64)(__ccgo_up(bp + 144))) {
|
|
Xsqlite3_hard_heap_limit64(tls, **(**Tsqlite3_int64)(__ccgo_up(bp + 144)))
|
|
}
|
|
}
|
|
_returnSingleInt(tls, v, Xsqlite3_hard_heap_limit64(tls, int64(-int32(1))))
|
|
break
|
|
/*
|
|
** PRAGMA threads
|
|
** PRAGMA threads = N
|
|
**
|
|
** Configure the maximum number of worker threads. Return the new
|
|
** maximum, which might be less than requested.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_THREADS):
|
|
if zRight != 0 && _sqlite3DecOrHexToI64(tls, zRight, bp+152) == SQLITE_OK && **(**Tsqlite3_int64)(__ccgo_up(bp + 152)) >= 0 {
|
|
Xsqlite3_limit(tls, db, int32(SQLITE_LIMIT_WORKER_THREADS), int32(**(**Tsqlite3_int64)(__ccgo_up(bp + 152))&libc.Int64FromInt32(0x7fffffff)))
|
|
}
|
|
_returnSingleInt(tls, v, int64(Xsqlite3_limit(tls, db, int32(SQLITE_LIMIT_WORKER_THREADS), -int32(1))))
|
|
break
|
|
/*
|
|
** PRAGMA analysis_limit
|
|
** PRAGMA analysis_limit = N
|
|
**
|
|
** Configure the maximum number of rows that ANALYZE will examine
|
|
** in each index that it looks at. Return the new limit.
|
|
*/
|
|
fallthrough
|
|
case int32(PragTyp_ANALYSIS_LIMIT):
|
|
if zRight != 0 && _sqlite3DecOrHexToI64(tls, zRight, bp+160) == SQLITE_OK && **(**Tsqlite3_int64)(__ccgo_up(bp + 160)) >= 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit = int32(**(**Tsqlite3_int64)(__ccgo_up(bp + 160)) & libc.Int64FromInt32(0x7fffffff))
|
|
}
|
|
_returnSingleInt(tls, v, int64((*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit)) /* IMP: R-57594-65522 */
|
|
break
|
|
} /* End of the PRAGMA switch */
|
|
/* The following block is a no-op unless SQLITE_DEBUG is defined. Its only
|
|
** purpose is to execute assert() statements to verify that if the
|
|
** PragFlg_NoColumns1 flag is set and the caller specified an argument
|
|
** to the PRAGMA, the implementation has not added any OP_ResultRow
|
|
** instructions to the VM. */
|
|
if libc.Int32FromUint8((*TPragmaName)(unsafe.Pointer(pPragma)).FmPragFlg)&int32(PragFlg_NoColumns1) != 0 && zRight != 0 {
|
|
}
|
|
goto pragma_out
|
|
pragma_out:
|
|
;
|
|
_sqlite3DbFree(tls, db, zLeft)
|
|
_sqlite3DbFree(tls, db, zRight)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Compile the UTF-8 encoded SQL statement zSql into a statement handle.
|
|
// */
|
|
func _sqlite3Prepare(tls *libc.TLS, db uintptr, zSql uintptr, nBytes int32, prepFlags Tu32, pReprepare uintptr, ppStmt uintptr, pzTail uintptr) (r int32) {
|
|
bp := tls.Alloc(448)
|
|
defer tls.Free(448)
|
|
var i, mxLen, rc, v1 int32
|
|
var pBt, pT, zDb, zSqlCopy uintptr
|
|
var _ /* sParse at bp+0 */ TParse
|
|
_, _, _, _, _, _, _, _ = i, mxLen, pBt, pT, rc, zDb, zSqlCopy, v1
|
|
rc = SQLITE_OK /* Parsing context */
|
|
/* sqlite3ParseObjectInit(&sParse, db); // inlined for performance */
|
|
libc.Xmemset(tls, bp+uintptr(uint64(libc.UintptrFromInt32(0)+8)), 0, uint64(libc.UintptrFromInt32(0)+192)-uint64(libc.UintptrFromInt32(0)+8))
|
|
libc.Xmemset(tls, bp+uintptr(uint64(libc.UintptrFromInt32(0)+288)), 0, libc.Uint64FromInt64(424)-uint64(libc.UintptrFromInt32(0)+288))
|
|
(**(**TParse)(__ccgo_up(bp))).FpOuterParse = (*Tsqlite3)(unsafe.Pointer(db)).FpParse
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpParse = bp
|
|
(**(**TParse)(__ccgo_up(bp))).Fdb = db
|
|
if pReprepare != 0 {
|
|
(**(**TParse)(__ccgo_up(bp))).FpReprepare = pReprepare
|
|
(**(**TParse)(__ccgo_up(bp))).Fexplain = libc.Uint8FromInt32(Xsqlite3_stmt_isexplain(tls, pReprepare))
|
|
} else {
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
_sqlite3ErrorMsg(tls, bp, __ccgo_ts+1674, 0)
|
|
v1 = libc.Int32FromInt32(SQLITE_NOMEM)
|
|
rc = v1
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FerrCode = v1
|
|
goto end_prepare
|
|
}
|
|
/* For a long-term use prepared statement avoid the use of
|
|
** lookaside memory.
|
|
*/
|
|
if prepFlags&uint32(SQLITE_PREPARE_PERSISTENT) != 0 {
|
|
(**(**TParse)(__ccgo_up(bp))).FdisableLookaside = (**(**TParse)(__ccgo_up(bp))).FdisableLookaside + 1
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable = (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable + 1
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.Fsz = uint16(0)
|
|
}
|
|
(**(**TParse)(__ccgo_up(bp))).FprepFlags = uint8(prepFlags & uint32(0xff))
|
|
/* Check to verify that it is possible to get a read lock on all
|
|
** database schemas. The inability to get a read lock indicates that
|
|
** some other database connection is holding a write-lock, which in
|
|
** turn means that the other connection has made uncommitted changes
|
|
** to the schema.
|
|
**
|
|
** Were we to proceed and prepare the statement against the uncommitted
|
|
** schema changes and if those schema changes are subsequently rolled
|
|
** back and different changes are made in their place, then when this
|
|
** prepared statement goes to run the schema cookie would fail to detect
|
|
** the schema change. Disaster would follow.
|
|
**
|
|
** This thread is currently holding mutexes on all Btrees (because
|
|
** of the sqlite3BtreeEnterAll() in sqlite3LockAndPrepare()) so it
|
|
** is not possible for another thread to start a new schema change
|
|
** while this routine is running. Hence, we do not need to hold
|
|
** locks on the schema, we just need to make sure nobody else is
|
|
** holding them.
|
|
**
|
|
** Note that setting READ_UNCOMMITTED overrides most lock detection,
|
|
** but it does *not* override schema lock detection, so this all still
|
|
** works even if READ_UNCOMMITTED is set.
|
|
*/
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).FnoSharedCache != 0) {
|
|
i = 0
|
|
for {
|
|
if !(i < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
pBt = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i)*32))).FpBt
|
|
if pBt != 0 {
|
|
rc = _sqlite3BtreeSchemaLocked(tls, pBt)
|
|
if rc != 0 {
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(i)*32))).FzDbSName
|
|
_sqlite3ErrorWithMsg(tls, db, rc, __ccgo_ts+20239, libc.VaList(bp+432, zDb))
|
|
goto end_prepare
|
|
}
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FpDisconnect != 0 {
|
|
_sqlite3VtabUnlockList(tls, db)
|
|
}
|
|
if nBytes >= 0 && (nBytes == 0 || int32(**(**int8)(__ccgo_up(zSql + uintptr(nBytes-int32(1))))) != 0) {
|
|
mxLen = **(**int32)(__ccgo_up(db + 136 + 1*4))
|
|
if nBytes > mxLen {
|
|
_sqlite3ErrorWithMsg(tls, db, int32(SQLITE_TOOBIG), __ccgo_ts+20269, 0)
|
|
rc = _sqlite3ApiExit(tls, db, int32(SQLITE_TOOBIG))
|
|
goto end_prepare
|
|
}
|
|
zSqlCopy = _sqlite3DbStrNDup(tls, db, zSql, libc.Uint64FromInt32(nBytes))
|
|
if zSqlCopy != 0 {
|
|
_sqlite3RunParser(tls, bp, zSqlCopy)
|
|
(**(**TParse)(__ccgo_up(bp))).FzTail = zSql + uintptr(int64((**(**TParse)(__ccgo_up(bp))).FzTail)-int64(zSqlCopy))
|
|
_sqlite3DbFree(tls, db, zSqlCopy)
|
|
} else {
|
|
(**(**TParse)(__ccgo_up(bp))).FzTail = zSql + uintptr(nBytes)
|
|
}
|
|
} else {
|
|
_sqlite3RunParser(tls, bp, zSql)
|
|
}
|
|
if pzTail != 0 {
|
|
**(**uintptr)(__ccgo_up(pzTail)) = (**(**TParse)(__ccgo_up(bp))).FzTail
|
|
}
|
|
if libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy) == 0 {
|
|
_sqlite3VdbeSetSql(tls, (**(**TParse)(__ccgo_up(bp))).FpVdbe, zSql, int32(int64((**(**TParse)(__ccgo_up(bp))).FzTail)-int64(zSql)), uint8(prepFlags))
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
(**(**TParse)(__ccgo_up(bp))).Frc = int32(SQLITE_NOMEM)
|
|
libc.SetBitFieldPtr16Uint32(bp+40, libc.Uint32FromInt32(0), 8, 0x100)
|
|
}
|
|
if (**(**TParse)(__ccgo_up(bp))).Frc != SQLITE_OK && (**(**TParse)(__ccgo_up(bp))).Frc != int32(SQLITE_DONE) {
|
|
if int32(Tbft(*(*uint16)(unsafe.Pointer(bp + 40))&0x100>>8)) != 0 && libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy) == 0 {
|
|
_schemaIsValid(tls, bp)
|
|
}
|
|
if (**(**TParse)(__ccgo_up(bp))).FpVdbe != 0 {
|
|
_sqlite3VdbeFinalize(tls, (**(**TParse)(__ccgo_up(bp))).FpVdbe)
|
|
}
|
|
rc = (**(**TParse)(__ccgo_up(bp))).Frc
|
|
if (**(**TParse)(__ccgo_up(bp))).FzErrMsg != 0 {
|
|
_sqlite3ErrorWithMsg(tls, db, rc, __ccgo_ts+3944, libc.VaList(bp+432, (**(**TParse)(__ccgo_up(bp))).FzErrMsg))
|
|
_sqlite3DbFree(tls, db, (**(**TParse)(__ccgo_up(bp))).FzErrMsg)
|
|
} else {
|
|
_sqlite3Error(tls, db, rc)
|
|
}
|
|
} else {
|
|
**(**uintptr)(__ccgo_up(ppStmt)) = (**(**TParse)(__ccgo_up(bp))).FpVdbe
|
|
rc = SQLITE_OK
|
|
_sqlite3ErrorClear(tls, db)
|
|
}
|
|
/* Delete any TriggerPrg structures allocated while parsing this statement. */
|
|
for (**(**TParse)(__ccgo_up(bp))).FpTriggerPrg != 0 {
|
|
pT = (**(**TParse)(__ccgo_up(bp))).FpTriggerPrg
|
|
(**(**TParse)(__ccgo_up(bp))).FpTriggerPrg = (*TTriggerPrg)(unsafe.Pointer(pT)).FpNext
|
|
_sqlite3DbFree(tls, db, pT)
|
|
}
|
|
goto end_prepare
|
|
end_prepare:
|
|
;
|
|
_sqlite3ParseObjectReset(tls, bp)
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This routine processes the join information for a SELECT statement.
|
|
// **
|
|
// ** * A NATURAL join is converted into a USING join. After that, we
|
|
// ** do not need to be concerned with NATURAL joins and we only have
|
|
// ** think about USING joins.
|
|
// **
|
|
// ** * ON and USING clauses result in extra terms being added to the
|
|
// ** WHERE clause to enforce the specified constraints. The extra
|
|
// ** WHERE clause terms will be tagged with EP_OuterON or
|
|
// ** EP_InnerON so that we know that they originated in ON/USING.
|
|
// **
|
|
// ** The terms of a FROM clause are contained in the Select.pSrc structure.
|
|
// ** The left most table is the first entry in Select.pSrc. The right-most
|
|
// ** table is the last entry. The join operator is held in the entry to
|
|
// ** the right. Thus entry 1 contains the join operator for the join between
|
|
// ** entries 0 and 1. Any ON or USING clauses associated with the join are
|
|
// ** also attached to the right entry.
|
|
// **
|
|
// ** This routine returns the number of errors encountered.
|
|
// */
|
|
func _sqlite3ProcessJoin(tls *libc.TLS, pParse uintptr, p uintptr) (r int32) {
|
|
bp := tls.Alloc(32)
|
|
defer tls.Free(32)
|
|
var db, pE1, pE2, pEq, pFuncArgs, pLeft, pList, pRight, pRightTab, pSrc, pUsing, zName, zName1 uintptr
|
|
var i, iRightCol, j, v2 int32
|
|
var joinType Tu32
|
|
var _ /* iLeft at bp+0 */ int32
|
|
var _ /* iLeftCol at bp+4 */ int32
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = db, i, iRightCol, j, joinType, pE1, pE2, pEq, pFuncArgs, pLeft, pList, pRight, pRightTab, pSrc, pUsing, zName, zName1, v2 /* Right table being joined */
|
|
pSrc = (*TSelect)(unsafe.Pointer(p)).FpSrc
|
|
pLeft = pSrc + 8
|
|
pRight = pLeft + 1*80
|
|
i = 0
|
|
for {
|
|
if !(i < (*TSrcList)(unsafe.Pointer(pSrc)).FnSrc-int32(1)) {
|
|
break
|
|
}
|
|
pRightTab = (*TSrcItem)(unsafe.Pointer(pRight)).FpSTab
|
|
if (*TSrcItem)(unsafe.Pointer(pLeft)).FpSTab == uintptr(0) || pRightTab == uintptr(0) {
|
|
goto _1
|
|
}
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pRight)).Ffg.Fjointype)&int32(JT_OUTER) != 0 {
|
|
v2 = int32(EP_OuterON)
|
|
} else {
|
|
v2 = int32(EP_InnerON)
|
|
}
|
|
joinType = libc.Uint32FromInt32(v2)
|
|
/* If this is a NATURAL join, synthesize an appropriate USING clause
|
|
** to specify which columns should be joined.
|
|
*/
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pRight)).Ffg.Fjointype)&int32(JT_NATURAL) != 0 {
|
|
pUsing = uintptr(0)
|
|
if int32(*(*uint32)(unsafe.Pointer(pRight + 24 + 4))&0x800>>11) != 0 || *(*uintptr)(unsafe.Pointer(pRight + 64)) != 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+20318, libc.VaList(bp+16, 0))
|
|
return int32(1)
|
|
}
|
|
j = 0
|
|
for {
|
|
if !(j < int32((*TTable)(unsafe.Pointer(pRightTab)).FnCol)) {
|
|
break
|
|
} /* Name of column in the right table */
|
|
if libc.Int32FromUint16((*TColumn)(unsafe.Pointer((*TTable)(unsafe.Pointer(pRightTab)).FaCol+uintptr(j)*16)).FcolFlags)&int32(COLFLAG_HIDDEN) != 0 {
|
|
goto _3
|
|
}
|
|
zName = (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pRightTab)).FaCol + uintptr(j)*16))).FzCnName
|
|
if _tableAndColumnIndex(tls, pSrc, 0, i, zName, uintptr(0), uintptr(0), int32(1)) != 0 {
|
|
pUsing = _sqlite3IdListAppend(tls, pParse, pUsing, uintptr(0))
|
|
if pUsing != 0 {
|
|
(*(*TIdList_item)(unsafe.Pointer(pUsing + 8 + uintptr((*TIdList)(unsafe.Pointer(pUsing)).FnId-int32(1))*8))).FzName = _sqlite3DbStrDup(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, zName)
|
|
}
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
j = j + 1
|
|
}
|
|
if pUsing != 0 {
|
|
libc.SetBitFieldPtr32Uint32(pRight+24+4, libc.Uint32FromInt32(1), 11, 0x800)
|
|
libc.SetBitFieldPtr32Uint32(pRight+24+4, libc.Uint32FromInt32(1), 13, 0x2000)
|
|
*(*uintptr)(unsafe.Pointer(pRight + 64)) = pUsing
|
|
}
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
return int32(1)
|
|
}
|
|
}
|
|
/* Create extra terms on the WHERE clause for each column named
|
|
** in the USING clause. Example: If the two tables to be joined are
|
|
** A and B and the USING clause names X, Y, and Z, then add this
|
|
** to the WHERE clause: A.X=B.X AND A.Y=B.Y AND A.Z=B.Z
|
|
** Report an error if any column mentioned in the USING clause is
|
|
** not contained in both tables to be joined.
|
|
*/
|
|
if int32(*(*uint32)(unsafe.Pointer(pRight + 24 + 4))&0x800>>11) != 0 {
|
|
pList = *(*uintptr)(unsafe.Pointer(pRight + 64))
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
j = 0
|
|
for {
|
|
if !(j < (*TIdList)(unsafe.Pointer(pList)).FnId) {
|
|
break
|
|
} /* Equality constraint. pE1 == pE2 */
|
|
zName1 = (*(*TIdList_item)(unsafe.Pointer(pList + 8 + uintptr(j)*8))).FzName
|
|
iRightCol = _sqlite3ColumnIndex(tls, pRightTab, zName1)
|
|
if iRightCol < 0 || _tableAndColumnIndex(tls, pSrc, 0, i, zName1, bp, bp+4, int32(*(*uint32)(unsafe.Pointer(pRight + 24 + 4))&0x2000>>13)) == 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+20368, libc.VaList(bp+16, zName1))
|
|
return int32(1)
|
|
}
|
|
pE1 = _sqlite3CreateColumnExpr(tls, db, pSrc, **(**int32)(__ccgo_up(bp)), **(**int32)(__ccgo_up(bp + 4)))
|
|
_sqlite3SrcItemColumnUsed(tls, pSrc+8+uintptr(**(**int32)(__ccgo_up(bp)))*80, **(**int32)(__ccgo_up(bp + 4)))
|
|
if libc.Int32FromUint8((*(*TSrcItem)(unsafe.Pointer(pSrc + 8))).Ffg.Fjointype)&int32(JT_LTORJ) != 0 && (*TParse)(unsafe.Pointer(pParse)).FnErr == 0 {
|
|
/* This branch runs if the query contains one or more RIGHT or FULL
|
|
** JOINs. If only a single table on the left side of this join
|
|
** contains the zName column, then this branch is a no-op.
|
|
** But if there are two or more tables on the left side
|
|
** of the join, construct a coalesce() function that gathers all
|
|
** such tables. Raise an error if more than one of those references
|
|
** to zName is not also within a prior USING clause.
|
|
**
|
|
** We really ought to raise an error if there are two or more
|
|
** non-USING references to zName on the left of an INNER or LEFT
|
|
** JOIN. But older versions of SQLite do not do that, so we avoid
|
|
** adding a new error so as to not break legacy applications.
|
|
*/
|
|
pFuncArgs = uintptr(0) /* Arguments to the coalesce() */
|
|
**(**Tu32)(__ccgo_up(pE1 + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_CanBeNull))
|
|
for _tableAndColumnIndex(tls, pSrc, **(**int32)(__ccgo_up(bp))+int32(1), i, zName1, bp, bp+4, int32(*(*uint32)(unsafe.Pointer(pRight + 24 + 4))&0x2000>>13)) != 0 {
|
|
if int32(*(*uint32)(unsafe.Pointer(pSrc + 8 + uintptr(**(**int32)(__ccgo_up(bp)))*80 + 24 + 4))&0x800>>11) == 0 || _sqlite3IdListIndex(tls, *(*uintptr)(unsafe.Pointer(pSrc + 8 + uintptr(**(**int32)(__ccgo_up(bp)))*80 + 64)), zName1) < 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+20432, libc.VaList(bp+16, zName1))
|
|
break
|
|
}
|
|
pFuncArgs = _sqlite3ExprListAppend(tls, pParse, pFuncArgs, pE1)
|
|
pE1 = _sqlite3CreateColumnExpr(tls, db, pSrc, **(**int32)(__ccgo_up(bp)), **(**int32)(__ccgo_up(bp + 4)))
|
|
_sqlite3SrcItemColumnUsed(tls, pSrc+8+uintptr(**(**int32)(__ccgo_up(bp)))*80, **(**int32)(__ccgo_up(bp + 4)))
|
|
}
|
|
if pFuncArgs != 0 {
|
|
pFuncArgs = _sqlite3ExprListAppend(tls, pParse, pFuncArgs, pE1)
|
|
pE1 = _sqlite3ExprFunction(tls, pParse, pFuncArgs, uintptr(unsafe.Pointer(&_tkCoalesce)), 0)
|
|
if pE1 != 0 {
|
|
(*TExpr)(unsafe.Pointer(pE1)).FaffExpr = int8(SQLITE_AFF_DEFER)
|
|
}
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint8((*(*TSrcItem)(unsafe.Pointer(pSrc + 8 + uintptr(i+int32(1))*80))).Ffg.Fjointype)&int32(JT_LEFT) != 0 && (*TParse)(unsafe.Pointer(pParse)).FnErr == 0 {
|
|
**(**Tu32)(__ccgo_up(pE1 + 4)) |= libc.Uint32FromInt32(libc.Int32FromInt32(EP_CanBeNull))
|
|
}
|
|
}
|
|
pE2 = _sqlite3CreateColumnExpr(tls, db, pSrc, i+int32(1), iRightCol)
|
|
_sqlite3SrcItemColumnUsed(tls, pRight, iRightCol)
|
|
pEq = _sqlite3PExpr(tls, pParse, int32(TK_EQ), pE1, pE2)
|
|
if pEq != 0 {
|
|
**(**Tu32)(__ccgo_up(pEq + 4)) |= joinType
|
|
*(*int32)(unsafe.Pointer(pEq + 52)) = (*TExpr)(unsafe.Pointer(pE2)).FiTable
|
|
}
|
|
(*TSelect)(unsafe.Pointer(p)).FpWhere = _sqlite3ExprAnd(tls, pParse, (*TSelect)(unsafe.Pointer(p)).FpWhere, pEq)
|
|
goto _4
|
|
_4:
|
|
;
|
|
j = j + 1
|
|
}
|
|
} else {
|
|
if *(*uintptr)(unsafe.Pointer(pRight + 64)) != 0 {
|
|
_sqlite3SetJoinExpr(tls, *(*uintptr)(unsafe.Pointer(pRight + 64)), (*TSrcItem)(unsafe.Pointer(pRight)).FiCursor, joinType)
|
|
(*TSelect)(unsafe.Pointer(p)).FpWhere = _sqlite3ExprAnd(tls, pParse, (*TSelect)(unsafe.Pointer(p)).FpWhere, *(*uintptr)(unsafe.Pointer(pRight + 64)))
|
|
*(*uintptr)(unsafe.Pointer(pRight + 64)) = uintptr(0)
|
|
libc.SetBitFieldPtr32Uint32(pRight+24+4, libc.Uint32FromInt32(1), 12, 0x1000)
|
|
**(**Tu32)(__ccgo_up(p + 4)) |= uint32(SF_OnToWhere)
|
|
}
|
|
}
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pRightTab)).FeTabType) == int32(TABTYP_VTAB) && joinType == uint32(EP_OuterON) && *(*uintptr)(unsafe.Pointer(pRight + 48)) != 0 {
|
|
**(**Tu32)(__ccgo_up(p + 4)) |= uint32(SF_OnToWhere)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
pRight += 80
|
|
pLeft += 80
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Given a SELECT statement, generate a Table structure that describes
|
|
// ** the result set of that SELECT.
|
|
// */
|
|
func _sqlite3ResultSetOfSelect(tls *libc.TLS, pParse uintptr, pSelect uintptr, aff int8) (r uintptr) {
|
|
var db, pTab uintptr
|
|
var savedFlags Tu64
|
|
_, _, _ = db, pTab, savedFlags
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
(*TParse)(unsafe.Pointer(pParse)).FnNestSel = (*TParse)(unsafe.Pointer(pParse)).FnNestSel + 1
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnNestSel >= **(**int32)(__ccgo_up(db + 136 + 3*4)) {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+20657, 0)
|
|
return uintptr(0)
|
|
}
|
|
savedFlags = (*Tsqlite3)(unsafe.Pointer(db)).Fflags
|
|
**(**Tu64)(__ccgo_up(db + 48)) &= ^libc.Uint64FromInt32(SQLITE_FullColNames)
|
|
**(**Tu64)(__ccgo_up(db + 48)) |= uint64(SQLITE_ShortColNames)
|
|
_sqlite3SelectPrep(tls, pParse, pSelect, uintptr(0))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Fflags = savedFlags
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr != 0 {
|
|
return uintptr(0)
|
|
}
|
|
for (*TSelect)(unsafe.Pointer(pSelect)).FpPrior != 0 {
|
|
pSelect = (*TSelect)(unsafe.Pointer(pSelect)).FpPrior
|
|
}
|
|
pTab = _sqlite3DbMallocZero(tls, db, uint64(120))
|
|
if pTab == uintptr(0) {
|
|
return uintptr(0)
|
|
}
|
|
(*TTable)(unsafe.Pointer(pTab)).FnTabRef = uint32(1)
|
|
(*TTable)(unsafe.Pointer(pTab)).FzName = uintptr(0)
|
|
(*TTable)(unsafe.Pointer(pTab)).FnRowLogEst = int16(200)
|
|
_sqlite3ColumnsFromExprList(tls, pParse, (*TSelect)(unsafe.Pointer(pSelect)).FpEList, pTab+54, pTab+8)
|
|
_sqlite3SubqueryColumnTypes(tls, pParse, pTab, pSelect, aff)
|
|
(*TTable)(unsafe.Pointer(pTab)).FiPKey = int16(-int32(1))
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
_sqlite3DeleteTable(tls, db, pTab)
|
|
return uintptr(0)
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FnNestSel = (*TParse)(unsafe.Pointer(pParse)).FnNestSel - 1
|
|
return pTab
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Run the parser on the given SQL string.
|
|
// */
|
|
func _sqlite3RunParser(tls *libc.TLS, pParse uintptr, zSql uintptr) (r int32) {
|
|
bp := tls.Alloc(1280)
|
|
defer tls.Free(1280)
|
|
var db, pEngine, pParentParse uintptr
|
|
var lastTokenParsed, nErr int32
|
|
var mxSqlLen, n Ti64
|
|
var _ /* sEngine at bp+8 */ TyyParser
|
|
var _ /* tokenType at bp+0 */ int32
|
|
var _ /* x at bp+1240 */ TToken
|
|
_, _, _, _, _, _, _ = db, lastTokenParsed, mxSqlLen, n, nErr, pEngine, pParentParse
|
|
nErr = 0 /* The LEMON-generated LALR(1) parser */
|
|
n = 0 /* type of the next token */
|
|
lastTokenParsed = -int32(1) /* type of the previous token */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Max length of an SQL string */
|
|
pParentParse = uintptr(0) /* Space to hold the Lemon-generated Parser object */
|
|
mxSqlLen = int64(**(**int32)(__ccgo_up(db + 136 + 1*4)))
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeActive == 0 {
|
|
libc.AtomicStoreNInt32(db+432, libc.Int32FromInt32(0), libc.Int32FromInt32(__ATOMIC_RELAXED))
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = SQLITE_OK
|
|
(*TParse)(unsafe.Pointer(pParse)).FzTail = zSql
|
|
pEngine = bp + 8
|
|
_sqlite3ParserInit(tls, pEngine, pParse)
|
|
pParentParse = (*Tsqlite3)(unsafe.Pointer(db)).FpParse
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpParse = pParse
|
|
for int32(1) != 0 {
|
|
n = _sqlite3GetToken(tls, zSql, bp)
|
|
mxSqlLen = mxSqlLen - n
|
|
if mxSqlLen < 0 {
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = int32(SQLITE_TOOBIG)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnErr = (*TParse)(unsafe.Pointer(pParse)).FnErr + 1
|
|
break
|
|
}
|
|
if **(**int32)(__ccgo_up(bp)) >= int32(TK_WINDOW) {
|
|
if libc.AtomicLoadNInt32(db+432, libc.Int32FromInt32(__ATOMIC_RELAXED)) != 0 {
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = int32(SQLITE_INTERRUPT)
|
|
(*TParse)(unsafe.Pointer(pParse)).FnErr = (*TParse)(unsafe.Pointer(pParse)).FnErr + 1
|
|
break
|
|
}
|
|
if **(**int32)(__ccgo_up(bp)) == int32(TK_SPACE) {
|
|
zSql = zSql + uintptr(n)
|
|
continue
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zSql))) == 0 {
|
|
/* Upon reaching the end of input, call the parser two more times
|
|
** with tokens TK_SEMI and 0, in that order. */
|
|
if lastTokenParsed == int32(TK_SEMI) {
|
|
**(**int32)(__ccgo_up(bp)) = 0
|
|
} else {
|
|
if lastTokenParsed == 0 {
|
|
break
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp)) = int32(TK_SEMI)
|
|
}
|
|
}
|
|
n = 0
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp)) == int32(TK_WINDOW) {
|
|
**(**int32)(__ccgo_up(bp)) = _analyzeWindowKeyword(tls, zSql+6)
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp)) == int32(TK_OVER) {
|
|
**(**int32)(__ccgo_up(bp)) = _analyzeOverKeyword(tls, zSql+4, lastTokenParsed)
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp)) == int32(TK_FILTER) {
|
|
**(**int32)(__ccgo_up(bp)) = _analyzeFilterKeyword(tls, zSql+6, lastTokenParsed)
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp)) == int32(TK_COMMENT) && ((*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy != 0 || (*Tsqlite3)(unsafe.Pointer(db)).Fflags&(libc.Uint64FromInt32(libc.Int32FromInt32(0x00040))<<libc.Int32FromInt32(32)) != uint64(0)) {
|
|
/* Ignore SQL comments if either (1) we are reparsing the schema or
|
|
** (2) SQLITE_DBCONFIG_ENABLE_COMMENTS is turned on (the default). */
|
|
zSql = zSql + uintptr(n)
|
|
continue
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp)) != int32(TK_QNUMBER) {
|
|
(**(**TToken)(__ccgo_up(bp + 1240))).Fz = zSql
|
|
(**(**TToken)(__ccgo_up(bp + 1240))).Fn = libc.Uint32FromInt64(n)
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+25221, libc.VaList(bp+1264, bp+1240))
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FsLastToken.Fz = zSql
|
|
(*TParse)(unsafe.Pointer(pParse)).FsLastToken.Fn = libc.Uint32FromInt64(n)
|
|
_sqlite3Parser(tls, pEngine, **(**int32)(__ccgo_up(bp)), (*TParse)(unsafe.Pointer(pParse)).FsLastToken)
|
|
lastTokenParsed = **(**int32)(__ccgo_up(bp))
|
|
zSql = zSql + uintptr(n)
|
|
if (*TParse)(unsafe.Pointer(pParse)).Frc != SQLITE_OK {
|
|
break
|
|
}
|
|
}
|
|
_sqlite3ParserFinalize(tls, pEngine)
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
(*TParse)(unsafe.Pointer(pParse)).Frc = int32(SQLITE_NOMEM)
|
|
}
|
|
if (*TParse)(unsafe.Pointer(pParse)).FzErrMsg != 0 || (*TParse)(unsafe.Pointer(pParse)).Frc != SQLITE_OK && (*TParse)(unsafe.Pointer(pParse)).Frc != int32(SQLITE_DONE) {
|
|
if (*TParse)(unsafe.Pointer(pParse)).FzErrMsg == uintptr(0) {
|
|
(*TParse)(unsafe.Pointer(pParse)).FzErrMsg = _sqlite3DbStrDup(tls, db, _sqlite3ErrStr(tls, (*TParse)(unsafe.Pointer(pParse)).Frc))
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FprepFlags)&int32(SQLITE_PREPARE_DONT_LOG) == 0 {
|
|
Xsqlite3_log(tls, (*TParse)(unsafe.Pointer(pParse)).Frc, __ccgo_ts+25246, libc.VaList(bp+1264, (*TParse)(unsafe.Pointer(pParse)).FzErrMsg, (*TParse)(unsafe.Pointer(pParse)).FzTail))
|
|
}
|
|
nErr = nErr + 1
|
|
}
|
|
(*TParse)(unsafe.Pointer(pParse)).FzTail = zSql
|
|
Xsqlite3_free(tls, (*TParse)(unsafe.Pointer(pParse)).FapVtabLock)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpNewTable != 0 && !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) != libc.Int32FromInt32(PARSE_MODE_NORMAL)) {
|
|
/* If the pParse->declareVtab flag is set, do not delete any table
|
|
** structure built up in pParse->pNewTable. The calling code (see vtab.c)
|
|
** will take responsibility for freeing the Table structure.
|
|
*/
|
|
_sqlite3DeleteTable(tls, db, (*TParse)(unsafe.Pointer(pParse)).FpNewTable)
|
|
}
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpNewTrigger != 0 && !(libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= libc.Int32FromInt32(PARSE_MODE_RENAME)) {
|
|
_sqlite3DeleteTrigger(tls, db, (*TParse)(unsafe.Pointer(pParse)).FpNewTrigger)
|
|
}
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpVList != 0 {
|
|
_sqlite3DbNNFreeNN(tls, db, (*TParse)(unsafe.Pointer(pParse)).FpVList)
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpParse = pParentParse
|
|
return nErr
|
|
}
|
|
|
|
/************** End of tokenize.c ********************************************/
|
|
/************** Begin file complete.c ****************************************/
|
|
/*
|
|
** 2001 September 15
|
|
**
|
|
** The author disclaims copyright to this source code. In place of
|
|
** a legal notice, here is a blessing:
|
|
**
|
|
** May you do good and not evil.
|
|
** May you find forgiveness for yourself and forgive others.
|
|
** May you share freely, never taking more than you give.
|
|
**
|
|
*************************************************************************
|
|
** An tokenizer for SQL
|
|
**
|
|
** This file contains C code that implements the sqlite3_complete() API.
|
|
** This code used to be part of the tokenizer.c source file. But by
|
|
** separating it out, the code will be automatically omitted from
|
|
** static links that do not use it.
|
|
*/
|
|
/* #include "sqliteInt.h" */
|
|
|
|
/*
|
|
** This is defined in tokenize.c. We just have to import the definition.
|
|
*/
|
|
|
|
/*
|
|
** Token types used by the sqlite3_complete() routine. See the header
|
|
** comments on that procedure for additional information.
|
|
*/
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This routine implements the OP_Vacuum opcode of the VDBE.
|
|
// */
|
|
func _sqlite3RunVacuum(tls *libc.TLS, pzErrMsg uintptr, db uintptr, iDb int32, pOut uintptr) (r int32) {
|
|
bp := tls.Alloc(112)
|
|
defer tls.Free(112)
|
|
var i, isMemDb, nDb, nNew, nRes, rc, v1 int32
|
|
var id, pDb, pMain, pTemp, zDbMain, zFilename, zOut uintptr
|
|
var pgflags, saved_mDbFlags, saved_openFlags Tu32
|
|
var saved_flags Tu64
|
|
var saved_mTrace Tu8
|
|
var saved_nChange, saved_nTotalChange Ti64
|
|
var _ /* iRandom at bp+0 */ Tu64
|
|
var _ /* meta at bp+64 */ Tu32
|
|
var _ /* sz at bp+56 */ Ti64
|
|
var _ /* zDbVacuum at bp+8 */ [42]int8
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = i, id, isMemDb, nDb, nNew, nRes, pDb, pMain, pTemp, pgflags, rc, saved_flags, saved_mDbFlags, saved_mTrace, saved_nChange, saved_nTotalChange, saved_openFlags, zDbMain, zFilename, zOut, v1
|
|
rc = SQLITE_OK /* Saved trace settings */
|
|
pDb = uintptr(0) /* Name of output file */
|
|
pgflags = uint32(PAGER_SYNCHRONOUS_OFF) /* Name of the ATTACH-ed database used for vacuum */
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit != 0) {
|
|
_sqlite3SetString(tls, pzErrMsg, db, __ccgo_ts+22741)
|
|
return int32(SQLITE_ERROR) /* IMP: R-12218-18073 */
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeActive > int32(1) {
|
|
_sqlite3SetString(tls, pzErrMsg, db, __ccgo_ts+22781)
|
|
return int32(SQLITE_ERROR) /* IMP: R-15610-35227 */
|
|
}
|
|
saved_openFlags = (*Tsqlite3)(unsafe.Pointer(db)).FopenFlags
|
|
if pOut != 0 {
|
|
if Xsqlite3_value_type(tls, pOut) != int32(SQLITE_TEXT) {
|
|
_sqlite3SetString(tls, pzErrMsg, db, __ccgo_ts+22824)
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
zOut = Xsqlite3_value_text(tls, pOut)
|
|
**(**uint32)(__ccgo_up(db + 76)) &= libc.Uint32FromInt32(^libc.Int32FromInt32(SQLITE_OPEN_READONLY))
|
|
**(**uint32)(__ccgo_up(db + 76)) |= libc.Uint32FromInt32(libc.Int32FromInt32(SQLITE_OPEN_CREATE) | libc.Int32FromInt32(SQLITE_OPEN_READWRITE))
|
|
} else {
|
|
zOut = __ccgo_ts + 1704
|
|
}
|
|
/* Save the current value of the database flags so that it can be
|
|
** restored before returning. Then set the writable-schema flag, and
|
|
** disable CHECK and foreign key constraints. */
|
|
saved_flags = (*Tsqlite3)(unsafe.Pointer(db)).Fflags
|
|
saved_mDbFlags = (*Tsqlite3)(unsafe.Pointer(db)).FmDbFlags
|
|
saved_nChange = (*Tsqlite3)(unsafe.Pointer(db)).FnChange
|
|
saved_nTotalChange = (*Tsqlite3)(unsafe.Pointer(db)).FnTotalChange
|
|
saved_mTrace = (*Tsqlite3)(unsafe.Pointer(db)).FmTrace
|
|
**(**Tu64)(__ccgo_up(db + 48)) |= libc.Uint64FromInt32(libc.Int32FromInt32(SQLITE_WriteSchema)|libc.Int32FromInt32(SQLITE_IgnoreChecks)) | libc.Uint64FromInt32(libc.Int32FromInt32(0x00040))<<libc.Int32FromInt32(32) | libc.Uint64FromInt32(libc.Int32FromInt32(0x00010))<<libc.Int32FromInt32(32) | libc.Uint64FromInt32(libc.Int32FromInt32(0x00020))<<libc.Int32FromInt32(32)
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= libc.Uint32FromInt32(libc.Int32FromInt32(DBFLAG_PreferBuiltin) | libc.Int32FromInt32(DBFLAG_Vacuum))
|
|
**(**Tu64)(__ccgo_up(db + 48)) &= ^(libc.Uint64FromInt32(libc.Int32FromInt32(SQLITE_ForeignKeys)|libc.Int32FromInt32(SQLITE_ReverseOrder)|libc.Int32FromInt32(SQLITE_Defensive)) | libc.Uint64FromInt32(libc.Int32FromInt32(0x00001))<<libc.Int32FromInt32(32))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FmTrace = uint8(0)
|
|
zDbMain = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
pMain = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpBt
|
|
isMemDb = _sqlite3PagerIsMemdb(tls, _sqlite3BtreePager(tls, pMain))
|
|
/* Attach the temporary database as 'vacuum_XXXXXX'. The synchronous pragma
|
|
** can be set to 'off' for this file, as it is not recovered if a crash
|
|
** occurs anyway. The integrity of the database is maintained by a
|
|
** (possibly synchronous) transaction opened on the main database before
|
|
** sqlite3BtreeCopyFile() is called.
|
|
**
|
|
** An optimization would be to use a non-journaled pager.
|
|
** (Later:) I tried setting "PRAGMA vacuum_XXXXXX.journal_mode=OFF" but
|
|
** that actually made the VACUUM run slower. Very little journalling
|
|
** actually occurs when doing a vacuum since the vacuum_db is initially
|
|
** empty. Only the journal header is written. Apparently it takes more
|
|
** time to parse and run the PRAGMA to turn journalling off than it does
|
|
** to write the journal header file.
|
|
*/
|
|
Xsqlite3_randomness(tls, int32(8), bp)
|
|
Xsqlite3_snprintf(tls, int32(42), bp+8, __ccgo_ts+22842, libc.VaList(bp+80, **(**Tu64)(__ccgo_up(bp))))
|
|
nDb = (*Tsqlite3)(unsafe.Pointer(db)).FnDb
|
|
rc = _execSqlF(tls, db, pzErrMsg, __ccgo_ts+22857, libc.VaList(bp+80, zOut, bp+8))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FopenFlags = saved_openFlags
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
pDb = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(nDb)*32
|
|
pTemp = (*TDb)(unsafe.Pointer(pDb)).FpBt
|
|
nRes = _sqlite3BtreeGetRequestedReserve(tls, pMain)
|
|
if pOut != 0 {
|
|
id = _sqlite3PagerFile(tls, _sqlite3BtreePager(tls, pTemp))
|
|
**(**Ti64)(__ccgo_up(bp + 56)) = 0
|
|
if (*Tsqlite3_file)(unsafe.Pointer(id)).FpMethods != uintptr(0) && (_sqlite3OsFileSize(tls, id, bp+56) != SQLITE_OK || **(**Ti64)(__ccgo_up(bp + 56)) > 0) {
|
|
rc = int32(SQLITE_ERROR)
|
|
_sqlite3SetString(tls, pzErrMsg, db, __ccgo_ts+22873)
|
|
goto end_of_vacuum
|
|
}
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_VacuumInto)
|
|
/* For a VACUUM INTO, the pager-flags are set to the same values as
|
|
** they are for the database being vacuumed, except that PAGER_CACHESPILL
|
|
** is always set. */
|
|
pgflags = uint32(uint64((**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).Fsafety_level) | (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(PAGER_FLAGS_MASK))
|
|
/* If the VACUUM INTO target file is a URI filename and if the
|
|
** "reserve=N" query parameter is present, reset the reserve to the
|
|
** amount specified, if the amount is within range */
|
|
zFilename = _sqlite3BtreeGetFilename(tls, pTemp)
|
|
if zFilename != 0 {
|
|
nNew = int32(Xsqlite3_uri_int64(tls, zFilename, __ccgo_ts+22900, int64(nRes)))
|
|
if nNew >= 0 && nNew <= int32(255) {
|
|
nRes = nNew
|
|
}
|
|
}
|
|
}
|
|
_sqlite3BtreeSetCacheSize(tls, pTemp, (*TSchema)(unsafe.Pointer((**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpSchema)).Fcache_size)
|
|
_sqlite3BtreeSetSpillSize(tls, pTemp, _sqlite3BtreeSetSpillSize(tls, pMain, 0))
|
|
_sqlite3BtreeSetPagerFlags(tls, pTemp, pgflags|uint32(PAGER_CACHESPILL))
|
|
/* Begin a transaction and take an exclusive lock on the main database
|
|
** file. This is done before the sqlite3BtreeGetPageSize(pMain) call below,
|
|
** to ensure that we do not try to change the page-size on a WAL database.
|
|
*/
|
|
rc = _execSql(tls, db, pzErrMsg, __ccgo_ts+16107)
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
if pOut == uintptr(0) {
|
|
v1 = int32(2)
|
|
} else {
|
|
v1 = 0
|
|
}
|
|
rc = _sqlite3BtreeBeginTrans(tls, pMain, v1, uintptr(0))
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
/* Do not attempt to change the page size for a WAL database */
|
|
if _sqlite3PagerGetJournalMode(tls, _sqlite3BtreePager(tls, pMain)) == int32(PAGER_JOURNALMODE_WAL) && pOut == uintptr(0) {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnextPagesize = 0
|
|
}
|
|
if _sqlite3BtreeSetPageSize(tls, pTemp, _sqlite3BtreeGetPageSize(tls, pMain), nRes, 0) != 0 || !(isMemDb != 0) && _sqlite3BtreeSetPageSize(tls, pTemp, (*Tsqlite3)(unsafe.Pointer(db)).FnextPagesize, nRes, 0) != 0 || (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
rc = int32(SQLITE_NOMEM)
|
|
goto end_of_vacuum
|
|
}
|
|
if int32((*Tsqlite3)(unsafe.Pointer(db)).FnextAutovac) >= 0 {
|
|
v1 = int32((*Tsqlite3)(unsafe.Pointer(db)).FnextAutovac)
|
|
} else {
|
|
v1 = _sqlite3BtreeGetAutoVacuum(tls, pMain)
|
|
}
|
|
_sqlite3BtreeSetAutoVacuum(tls, pTemp, v1)
|
|
/* Query the schema of the main database. Create a mirror schema
|
|
** in the temporary database.
|
|
*/
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FiDb = libc.Uint8FromInt32(nDb) /* force new CREATE statements into vacuum_db */
|
|
rc = _execSqlF(tls, db, pzErrMsg, __ccgo_ts+22908, libc.VaList(bp+80, zDbMain))
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
rc = _execSqlF(tls, db, pzErrMsg, __ccgo_ts+23016, libc.VaList(bp+80, zDbMain))
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FiDb = uint8(0)
|
|
/* Loop through the tables in the main database. For each, do
|
|
** an "INSERT INTO vacuum_db.xxx SELECT * FROM main.xxx;" to copy
|
|
** the contents to the temporary database.
|
|
*/
|
|
rc = _execSqlF(tls, db, pzErrMsg, __ccgo_ts+23070, libc.VaList(bp+80, bp+8, zDbMain, bp+8))
|
|
**(**Tu32)(__ccgo_up(db + 44)) &= libc.Uint32FromInt32(^libc.Int32FromInt32(DBFLAG_Vacuum))
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
/* Copy the triggers, views, and virtual tables from the main database
|
|
** over to the temporary database. None of these objects has any
|
|
** associated storage, so all we have to do is copy their entries
|
|
** from the schema table.
|
|
*/
|
|
rc = _execSqlF(tls, db, pzErrMsg, __ccgo_ts+23207, libc.VaList(bp+80, bp+8, zDbMain))
|
|
if rc != 0 {
|
|
goto end_of_vacuum
|
|
}
|
|
/* Copy Btree meta values */
|
|
i = 0
|
|
for {
|
|
if !(i < libc.Int32FromUint64(libc.Uint64FromInt64(10)/libc.Uint64FromInt64(1))) {
|
|
break
|
|
}
|
|
/* GetMeta() and UpdateMeta() cannot fail in this context because
|
|
** we already have page 1 loaded into cache and marked dirty. */
|
|
_sqlite3BtreeGetMeta(tls, pMain, libc.Int32FromUint8(_aCopy[i]), bp+64)
|
|
rc = _sqlite3BtreeUpdateMeta(tls, pTemp, libc.Int32FromUint8(_aCopy[i]), **(**Tu32)(__ccgo_up(bp + 64))+uint32(_aCopy[i+int32(1)]))
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + int32(2)
|
|
}
|
|
if pOut == uintptr(0) {
|
|
rc = _sqlite3BtreeCopyFile(tls, pMain, pTemp)
|
|
}
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
rc = _sqlite3BtreeCommit(tls, pTemp)
|
|
if rc != SQLITE_OK {
|
|
goto end_of_vacuum
|
|
}
|
|
if pOut == uintptr(0) {
|
|
_sqlite3BtreeSetAutoVacuum(tls, pMain, _sqlite3BtreeGetAutoVacuum(tls, pTemp))
|
|
}
|
|
if pOut == uintptr(0) {
|
|
nRes = _sqlite3BtreeGetRequestedReserve(tls, pTemp)
|
|
rc = _sqlite3BtreeSetPageSize(tls, pMain, _sqlite3BtreeGetPageSize(tls, pTemp), nRes, int32(1))
|
|
}
|
|
goto end_of_vacuum
|
|
end_of_vacuum:
|
|
;
|
|
/* Restore the original value of db->flags */
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.FiDb = uint8(0)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FmDbFlags = saved_mDbFlags
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Fflags = saved_flags
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnChange = saved_nChange
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnTotalChange = saved_nTotalChange
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FmTrace = saved_mTrace
|
|
_sqlite3BtreeSetPageSize(tls, pMain, -int32(1), 0, int32(1))
|
|
/* Currently there is an SQL level transaction open on the vacuum
|
|
** database. No locks are held on any other files (since the main file
|
|
** was committed at the btree level). So it safe to end the transaction
|
|
** by manually setting the autoCommit flag to true and detaching the
|
|
** vacuum database. The vacuum_db journal file is deleted when the pager
|
|
** is closed by the DETACH.
|
|
*/
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = uint8(1)
|
|
if pDb != 0 {
|
|
_sqlite3BtreeClose(tls, (*TDb)(unsafe.Pointer(pDb)).FpBt)
|
|
(*TDb)(unsafe.Pointer(pDb)).FpBt = uintptr(0)
|
|
(*TDb)(unsafe.Pointer(pDb)).FpSchema = uintptr(0)
|
|
}
|
|
/* This both clears the schemas and reduces the size of the db->aDb[]
|
|
** array. */
|
|
_sqlite3ResetAllSchemasOfConnection(tls, db)
|
|
return rc
|
|
}
|
|
|
|
/* At this point, there is a write transaction open on both the
|
|
** vacuum database and the main database. Assuming no error occurs,
|
|
** both transactions are closed by this block - the main database
|
|
** transaction by sqlite3BtreeCopyFile() and the other by an explicit
|
|
** call to sqlite3BtreeCommit().
|
|
*/
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** pTab is a transient Table object that represents a subquery of some
|
|
// ** kind (maybe a parenthesized subquery in the FROM clause of a larger
|
|
// ** query, or a VIEW, or a CTE). This routine computes type information
|
|
// ** for that Table object based on the Select object that implements the
|
|
// ** subquery. For the purposes of this routine, "type information" means:
|
|
// **
|
|
// ** * The datatype name, as it might appear in a CREATE TABLE statement
|
|
// ** * Which collating sequence to use for the column
|
|
// ** * The affinity of the column
|
|
// */
|
|
func _sqlite3SubqueryColumnTypes(tls *libc.TLS, pParse uintptr, pTab uintptr, pSelect uintptr, aff int8) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var a, db, p, pCol, pColl, pS2, zType, v4 uintptr
|
|
var i, j, m int32
|
|
var k, n Ti64
|
|
var _ /* sNC at bp+0 */ TNameContext
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _ = a, db, i, j, k, m, n, p, pCol, pColl, pS2, zType, v4
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 || libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
return
|
|
}
|
|
for (*TSelect)(unsafe.Pointer(pSelect)).FpPrior != 0 {
|
|
pSelect = (*TSelect)(unsafe.Pointer(pSelect)).FpPrior
|
|
}
|
|
a = (*TSelect)(unsafe.Pointer(pSelect)).FpEList + 8
|
|
libc.Xmemset(tls, bp, 0, uint64(56))
|
|
(**(**TNameContext)(__ccgo_up(bp))).FpSrcList = (*TSelect)(unsafe.Pointer(pSelect)).FpSrc
|
|
i = 0
|
|
pCol = (*TTable)(unsafe.Pointer(pTab)).FaCol
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
m = 0
|
|
pS2 = pSelect
|
|
**(**Tu32)(__ccgo_up(pTab + 48)) |= libc.Uint32FromInt32(libc.Int32FromUint16((*TColumn)(unsafe.Pointer(pCol)).FcolFlags) & libc.Int32FromInt32(COLFLAG_NOINSERT))
|
|
p = (**(**TExprList_item)(__ccgo_up(a + uintptr(i)*32))).FpExpr
|
|
/* pCol->szEst = ... // Column size est for SELECT tables never used */
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = _sqlite3ExprAffinity(tls, p)
|
|
for int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) <= int32(SQLITE_AFF_NONE) && (*TSelect)(unsafe.Pointer(pS2)).FpNext != uintptr(0) {
|
|
m = m | _sqlite3ExprDataType(tls, (*(*TExprList_item)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pS2)).FpEList + 8 + uintptr(i)*32))).FpExpr)
|
|
pS2 = (*TSelect)(unsafe.Pointer(pS2)).FpNext
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = _sqlite3ExprAffinity(tls, (*(*TExprList_item)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pS2)).FpEList + 8 + uintptr(i)*32))).FpExpr)
|
|
}
|
|
if int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) <= int32(SQLITE_AFF_NONE) {
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = aff
|
|
}
|
|
if int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) >= int32(SQLITE_AFF_TEXT) && ((*TSelect)(unsafe.Pointer(pS2)).FpNext != 0 || pS2 != pSelect) {
|
|
pS2 = (*TSelect)(unsafe.Pointer(pS2)).FpNext
|
|
for {
|
|
if !(pS2 != 0) {
|
|
break
|
|
}
|
|
m = m | _sqlite3ExprDataType(tls, (*(*TExprList_item)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pS2)).FpEList + 8 + uintptr(i)*32))).FpExpr)
|
|
goto _2
|
|
_2:
|
|
;
|
|
pS2 = (*TSelect)(unsafe.Pointer(pS2)).FpNext
|
|
}
|
|
if int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) == int32(SQLITE_AFF_TEXT) && m&int32(0x01) != 0 {
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = int8(SQLITE_AFF_BLOB)
|
|
} else {
|
|
if int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) >= int32(SQLITE_AFF_NUMERIC) && m&int32(0x02) != 0 {
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = int8(SQLITE_AFF_BLOB)
|
|
}
|
|
}
|
|
if int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) >= int32(SQLITE_AFF_NUMERIC) && libc.Int32FromUint8((*TExpr)(unsafe.Pointer(p)).Fop) == int32(TK_CAST) {
|
|
(*TColumn)(unsafe.Pointer(pCol)).Faffinity = int8(SQLITE_AFF_FLEXNUM)
|
|
}
|
|
}
|
|
zType = _columnTypeImpl(tls, bp, p, uintptr(0), uintptr(0), uintptr(0))
|
|
if zType == uintptr(0) || int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) != int32(_sqlite3AffinityType(tls, zType, uintptr(0))) {
|
|
if int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) == int32(SQLITE_AFF_NUMERIC) || int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) == int32(SQLITE_AFF_FLEXNUM) {
|
|
zType = __ccgo_ts + 20653
|
|
} else {
|
|
zType = uintptr(0)
|
|
j = int32(1)
|
|
for {
|
|
if !(j < int32(SQLITE_N_STDTYPE)) {
|
|
break
|
|
}
|
|
if int32(_sqlite3StdTypeAffinity[j]) == int32((*TColumn)(unsafe.Pointer(pCol)).Faffinity) {
|
|
zType = _sqlite3StdType[j]
|
|
break
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
j = j + 1
|
|
}
|
|
}
|
|
}
|
|
if zType != 0 {
|
|
k = libc.Int64FromUint64(libc.Xstrlen(tls, zType))
|
|
n = libc.Int64FromUint64(libc.Xstrlen(tls, (*TColumn)(unsafe.Pointer(pCol)).FzCnName))
|
|
(*TColumn)(unsafe.Pointer(pCol)).FzCnName = _sqlite3DbReallocOrFree(tls, db, (*TColumn)(unsafe.Pointer(pCol)).FzCnName, libc.Uint64FromInt64(n+k+int64(2)))
|
|
v4 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) & ^(libc.Int32FromInt32(COLFLAG_HASTYPE) | libc.Int32FromInt32(COLFLAG_HASCOLL)))
|
|
if (*TColumn)(unsafe.Pointer(pCol)).FzCnName != 0 {
|
|
libc.Xmemcpy(tls, (*TColumn)(unsafe.Pointer(pCol)).FzCnName+uintptr(n+int64(1)), zType, libc.Uint64FromInt64(k+int64(1)))
|
|
v4 = pCol + 14
|
|
*(*Tu16)(unsafe.Pointer(v4)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v4))) | libc.Int32FromInt32(COLFLAG_HASTYPE))
|
|
}
|
|
}
|
|
pColl = _sqlite3ExprCollSeq(tls, pParse, p)
|
|
if pColl != 0 {
|
|
_sqlite3ColumnSetColl(tls, db, pCol, (*TCollSeq)(unsafe.Pointer(pColl)).FzName)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
pCol += 16
|
|
}
|
|
(*TTable)(unsafe.Pointer(pTab)).FszTabRow = int16(1) /* Any non-zero value works */
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Analyze the ON CONFLICT clause described by pUpsert. Resolve all
|
|
// ** symbols in the conflict-target.
|
|
// **
|
|
// ** Return SQLITE_OK if everything works, or an error code is something
|
|
// ** is wrong.
|
|
// */
|
|
func _sqlite3UpsertAnalyzeTarget(tls *libc.TLS, pParse uintptr, pTabList uintptr, pUpsert uintptr, pAll uintptr) (r int32) {
|
|
bp := tls.Alloc(240)
|
|
defer tls.Free(240)
|
|
var iCursor, ii, jj, nClause, nn, rc int32
|
|
var pExpr, pIdx, pTab, pTarget, pTerm, v2 uintptr
|
|
var v3 bool
|
|
var _ /* sCol at bp+56 */ [2]TExpr
|
|
var _ /* sNC at bp+0 */ TNameContext
|
|
var _ /* zWhich at bp+200 */ [16]int8
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _ = iCursor, ii, jj, nClause, nn, pExpr, pIdx, pTab, pTarget, pTerm, rc, v2, v3 /* Index column converted into an Expr */
|
|
nClause = 0 /* Counter of ON CONFLICT clauses */
|
|
/* Resolve all symbolic names in the conflict-target clause, which
|
|
** includes both the list of columns and the optional partial-index
|
|
** WHERE clause.
|
|
*/
|
|
libc.Xmemset(tls, bp, 0, uint64(56))
|
|
(**(**TNameContext)(__ccgo_up(bp))).FpParse = pParse
|
|
(**(**TNameContext)(__ccgo_up(bp))).FpSrcList = pTabList
|
|
for {
|
|
if !(pUpsert != 0 && (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertTarget != 0) {
|
|
break
|
|
}
|
|
rc = _sqlite3ResolveExprListNames(tls, bp, (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertTarget)
|
|
if rc != 0 {
|
|
return rc
|
|
}
|
|
rc = _sqlite3ResolveExprNames(tls, bp, (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertTargetWhere)
|
|
if rc != 0 {
|
|
return rc
|
|
}
|
|
/* Check to see if the conflict target matches the rowid. */
|
|
pTab = (*(*TSrcItem)(unsafe.Pointer(pTabList + 8))).FpSTab
|
|
pTarget = (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertTarget
|
|
iCursor = (*(*TSrcItem)(unsafe.Pointer(pTabList + 8))).FiCursor
|
|
if v3 = (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) && (*TExprList)(unsafe.Pointer(pTarget)).FnExpr == int32(1); v3 {
|
|
v2 = (*(*TExprList_item)(unsafe.Pointer(pTarget + 8))).FpExpr
|
|
pTerm = v2
|
|
}
|
|
if v3 && libc.Int32FromUint8((*TExpr)(unsafe.Pointer(v2)).Fop) == int32(TK_COLUMN) && int32((*TExpr)(unsafe.Pointer(pTerm)).FiColumn) == -int32(1) {
|
|
/* The conflict-target is the rowid of the primary table */
|
|
goto _1
|
|
}
|
|
/* Initialize sCol[0..1] to be an expression parse tree for a
|
|
** single column of an index. The sCol[0] node will be the TK_COLLATE
|
|
** operator and sCol[1] will be the TK_COLUMN operator. Code below
|
|
** will populate the specific collation and column number values
|
|
** prior to comparing against the conflict-target expression.
|
|
*/
|
|
libc.Xmemset(tls, bp+56, 0, uint64(144))
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[0].Fop = uint8(TK_COLLATE)
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[0].FpLeft = bp + 56 + 1*72
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[int32(1)].Fop = uint8(TK_COLUMN)
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[int32(1)].FiTable = (*(*TSrcItem)(unsafe.Pointer(pTabList + 8))).FiCursor
|
|
/* Check for matches against other indexes */
|
|
pIdx = (*TTable)(unsafe.Pointer(pTab)).FpIndex
|
|
for {
|
|
if !(pIdx != 0) {
|
|
break
|
|
}
|
|
if !(libc.Int32FromUint8((*TIndex)(unsafe.Pointer(pIdx)).FonError) != libc.Int32FromInt32(OE_None)) {
|
|
goto _4
|
|
}
|
|
if (*TExprList)(unsafe.Pointer(pTarget)).FnExpr != libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol) {
|
|
goto _4
|
|
}
|
|
if (*TIndex)(unsafe.Pointer(pIdx)).FpPartIdxWhere != 0 {
|
|
if (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertTargetWhere == uintptr(0) {
|
|
goto _4
|
|
}
|
|
if _sqlite3ExprCompare(tls, pParse, (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertTargetWhere, (*TIndex)(unsafe.Pointer(pIdx)).FpPartIdxWhere, iCursor) != 0 {
|
|
goto _4
|
|
}
|
|
}
|
|
nn = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pIdx)).FnKeyCol)
|
|
ii = 0
|
|
for {
|
|
if !(ii < nn) {
|
|
break
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(bp + 56 + 8)) = **(**uintptr)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FazColl + uintptr(ii)*8))
|
|
if int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(ii)*2))) == -int32(2) {
|
|
pExpr = (*(*TExprList_item)(unsafe.Pointer((*TIndex)(unsafe.Pointer(pIdx)).FaColExpr + 8 + uintptr(ii)*32))).FpExpr
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop) != int32(TK_COLLATE) {
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[0].FpLeft = pExpr
|
|
pExpr = bp + 56
|
|
}
|
|
} else {
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[0].FpLeft = bp + 56 + 1*72
|
|
(**(**[2]TExpr)(__ccgo_up(bp + 56)))[int32(1)].FiColumn = **(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pIdx)).FaiColumn + uintptr(ii)*2))
|
|
pExpr = bp + 56
|
|
}
|
|
jj = 0
|
|
for {
|
|
if !(jj < nn) {
|
|
break
|
|
}
|
|
if _sqlite3ExprCompare(tls, uintptr(0), (*(*TExprList_item)(unsafe.Pointer(pTarget + 8 + uintptr(jj)*32))).FpExpr, pExpr, iCursor) < int32(2) {
|
|
break /* Column ii of the index matches column jj of target */
|
|
}
|
|
goto _6
|
|
_6:
|
|
;
|
|
jj = jj + 1
|
|
}
|
|
if jj >= nn {
|
|
/* The target contains no match for column jj of the index */
|
|
break
|
|
}
|
|
goto _5
|
|
_5:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
if ii < nn {
|
|
/* Column ii of the index did not match any term of the conflict target.
|
|
** Continue the search with the next index. */
|
|
goto _4
|
|
}
|
|
(*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertIdx = pIdx
|
|
if _sqlite3UpsertOfIndex(tls, pAll, pIdx) != pUpsert {
|
|
/* Really this should be an error. The isDup ON CONFLICT clause will
|
|
** never fire. But this problem was not discovered until three years
|
|
** after multi-CONFLICT upsert was added, and so we silently ignore
|
|
** the problem to prevent breaking applications that might actually
|
|
** have redundant ON CONFLICT clauses. */
|
|
(*TUpsert)(unsafe.Pointer(pUpsert)).FisDup = uint8(1)
|
|
}
|
|
break
|
|
goto _4
|
|
_4:
|
|
;
|
|
pIdx = (*TIndex)(unsafe.Pointer(pIdx)).FpNext
|
|
}
|
|
if (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertIdx == uintptr(0) {
|
|
if nClause == 0 && (*TUpsert)(unsafe.Pointer(pUpsert)).FpNextUpsert == uintptr(0) {
|
|
(**(**[16]int8)(__ccgo_up(bp + 200)))[0] = 0
|
|
} else {
|
|
Xsqlite3_snprintf(tls, int32(16), bp+200, __ccgo_ts+22656, libc.VaList(bp+224, nClause+int32(1)))
|
|
}
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+22660, libc.VaList(bp+224, bp+200))
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
pUpsert = (*TUpsert)(unsafe.Pointer(pUpsert)).FpNextUpsert
|
|
nClause = nClause + 1
|
|
}
|
|
return SQLITE_OK
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Generate bytecode that does an UPDATE as part of an upsert.
|
|
// **
|
|
// ** If pIdx is NULL, then the UNIQUE constraint that failed was the IPK.
|
|
// ** In this case parameter iCur is a cursor open on the table b-tree that
|
|
// ** currently points to the conflicting table row. Otherwise, if pIdx
|
|
// ** is not NULL, then pIdx is the constraint that failed and iCur is a
|
|
// ** cursor points to the conflicting row.
|
|
// */
|
|
func _sqlite3UpsertDoUpdate(tls *libc.TLS, pParse uintptr, pUpsert uintptr, pTab uintptr, pIdx uintptr, iCur int32) {
|
|
var db, pPk, pSrc, pTop, v uintptr
|
|
var i, iDataCur, iPk, iStorage, k, nPk, regRowid int32
|
|
_, _, _, _, _, _, _, _, _, _, _, _ = db, i, iDataCur, iPk, iStorage, k, nPk, pPk, pSrc, pTop, regRowid, v
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb
|
|
pTop = pUpsert
|
|
iDataCur = (*TUpsert)(unsafe.Pointer(pUpsert)).FiDataCur
|
|
pUpsert = _sqlite3UpsertOfIndex(tls, pTop, pIdx)
|
|
if pIdx != 0 && iCur != iDataCur {
|
|
if (*TTable)(unsafe.Pointer(pTab)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
regRowid = _sqlite3GetTempReg(tls, pParse)
|
|
_sqlite3VdbeAddOp2(tls, v, int32(OP_IdxRowid), iCur, regRowid)
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_SeekRowid), iDataCur, 0, regRowid)
|
|
_sqlite3ReleaseTempReg(tls, pParse, regRowid)
|
|
} else {
|
|
pPk = _sqlite3PrimaryKeyIndex(tls, pTab)
|
|
nPk = libc.Int32FromUint16((*TIndex)(unsafe.Pointer(pPk)).FnKeyCol)
|
|
iPk = (*TParse)(unsafe.Pointer(pParse)).FnMem + int32(1)
|
|
**(**int32)(__ccgo_up(pParse + 60)) += nPk
|
|
i = 0
|
|
for {
|
|
if !(i < nPk) {
|
|
break
|
|
}
|
|
k = _sqlite3TableColumnToIndex(tls, pIdx, int32(**(**Ti16)(__ccgo_up((*TIndex)(unsafe.Pointer(pPk)).FaiColumn + uintptr(i)*2))))
|
|
_sqlite3VdbeAddOp3(tls, v, int32(OP_Column), iCur, k, iPk+i)
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
i = _sqlite3VdbeAddOp4Int(tls, v, int32(OP_Found), iDataCur, 0, iPk, nPk)
|
|
_sqlite3VdbeAddOp4(tls, v, int32(OP_Halt), int32(SQLITE_CORRUPT), int32(OE_Abort), 0, __ccgo_ts+13730, -int32(1))
|
|
_sqlite3MayAbort(tls, pParse)
|
|
_sqlite3VdbeJumpHere(tls, v, i)
|
|
}
|
|
}
|
|
/* pUpsert does not own pTop->pUpsertSrc - the outer INSERT statement does.
|
|
** So we have to make a copy before passing it down into sqlite3Update() */
|
|
pSrc = _sqlite3SrcListDup(tls, db, (*TUpsert)(unsafe.Pointer(pTop)).FpUpsertSrc, 0)
|
|
/* excluded.* columns of type REAL need to be converted to a hard real */
|
|
i = 0
|
|
for {
|
|
if !(i < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
if int32((**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(i)*16))).Faffinity) == int32(SQLITE_AFF_REAL) {
|
|
iStorage = (*TUpsert)(unsafe.Pointer(pTop)).FregData + int32(_sqlite3TableColumnToStorage(tls, pTab, int16(i)))
|
|
_sqlite3VdbeAddOp1(tls, v, int32(OP_RealAffinity), iStorage)
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
i = i + 1
|
|
}
|
|
_sqlite3Update(tls, pParse, pSrc, _sqlite3ExprListDup(tls, db, (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertSet, 0), _sqlite3ExprDup(tls, db, (*TUpsert)(unsafe.Pointer(pUpsert)).FpUpsertWhere, 0), int32(OE_Abort), uintptr(0), uintptr(0), pUpsert)
|
|
}
|
|
|
|
/************** End of upsert.c **********************************************/
|
|
/************** Begin file vacuum.c ******************************************/
|
|
/*
|
|
** 2003 April 6
|
|
**
|
|
** The author disclaims copyright to this source code. In place of
|
|
** a legal notice, here is a blessing:
|
|
**
|
|
** May you do good and not evil.
|
|
** May you find forgiveness for yourself and forgive others.
|
|
** May you share freely, never taking more than you give.
|
|
**
|
|
*************************************************************************
|
|
** This file contains code used to implement the VACUUM command.
|
|
**
|
|
** Most of the code in this file may be omitted by defining the
|
|
** SQLITE_OMIT_VACUUM macro.
|
|
*/
|
|
/* #include "sqliteInt.h" */
|
|
/* #include "vdbeInt.h" */
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Execute as much of a VDBE program as we can.
|
|
// ** This is the core of sqlite3_step().
|
|
// */
|
|
func _sqlite3VdbeExec(tls *libc.TLS, p uintptr) (r int32) {
|
|
bp := tls.Alloc(1024)
|
|
defer tls.Free(1024)
|
|
var aCol, aMem, aOffset, aOp, aPermute, aRoot, apArg, apArg1, db, pArgc, pBt, pBt1, pBt2, pBt3, pC, pC1, pC10, pC11, pC12, pC13, pC14, pC15, pC16, pC17, pC18, pC19, pC2, pC20, pC21, pC22, pC23, pC24, pC25, pC26, pC27, pC28, pC29, pC3, pC30, pC31, pC32, pC33, pC34, pC4, pC5, pC6, pC7, pC8, pC9, pCaller, pColl, pCrsr, pCrsr1, pCrsr2, pCrsr3, pCrsr4, pCrsr5, pCrsr6, pCrsr7, pCrsr8, pCtx, pCtx1, pCtx2, pCur, pCur1, pCur2, pCur3, pCur4, pCur5, pCur6, pCx, pCx1, pCx2, pCx3, pData, pData0, pDb, pDb1, pDb2, pDb3, pDest, pDest1, pDest2, pEnd, pFrame, pFrame1, pFrame2, pFrame3, pFrame4, pIdxKey, pIn, pIn1, pIn2, pIn3, pKey, pKeyInfo, pKeyInfo1, pKeyInfo2, pLast, pMem, pMem1, pMem2, pMem3, pMem4, pModule, pModule1, pModule2, pModule3, pModule4, pModule5, pModule6, pName, pNew, pOp, pOrig, pOut, pPager, pProgram, pQuery, pRec, pReg, pRhs, pRt, pSavepoint, pSrc, pTab, pTab1, pTab2, pTab3, pTabCur, pTmp, pVCur1, pVTab, pVar, pVtab, pVtab1, pVtab2, pVtab3, pVtab4, pVtab5, pVtab6, pVtab7, pX, pX1, pnErr, t1, z1, z2, z3, zAffinity, zAffinity1, zData, zDb, zDb1, zEndHdr, zErr, zFilename, zHdr, zHdr1, zName, zPayload, zSchema, zSql, zTab, zTrace, v191, v194 uintptr
|
|
var affinity int8
|
|
var alreadyExists, bRev, c, c1, c2, cnt, cnt1, desiredAutoCommit, eNew, eOld, eqOnly, exists, i, i1, i2, i4, i5, i6, i7, i8, i9, iCompare, iCookie, iDb, iDb1, iDb2, iDb3, iQuery, iRollback, iSavepoint, iSet, ii, ii1, isLegacy, isSchemaChange, isTransaction, len1, n, n1, n2, n4, nArg, nArg1, nCol, nField, nField1, nField2, nHdr, nKeyCol, nMem, nName, nRoot, nStep, nVarint, oc, opflags, p1, p11, p12, p13, p2, p21, pcDest, pcx, rc, res, res11, res13, res14, res21, savedAnalysisLimit, seekResult, v11, v21, wrFlag, v190, v193 int32
|
|
var colCacheCtr, iAddr, iMap, iPrior, idx, len11, n3, p22, p23, serialType, serial_type, v215, v216 Tu32
|
|
var encoding, isWriteLock, mTrace, op, p5, resetSchemaOnFault, vtabOnConflict, v227 Tu8
|
|
var flags1, flags11, flags2, flags3, flags31, newType, nullFlag, type1, type2, typeMask, v192 Tu16
|
|
var h, h1, iKey1, nAlloc, nData, nProgressLimit, nVmStep, offset64, uu Tu64
|
|
var i3, iA, iB1, iKey, iKey2, nByte, nByte1, nByte2, nCellKey, nZero, sz, v256 Ti64
|
|
var newMax, v213 uint32
|
|
var rA, rB float64
|
|
var xAuth Tsqlite3_xauth
|
|
var v206 int64
|
|
var v217 bool
|
|
var _ /* aRes at bp+760 */ [3]int32
|
|
var _ /* iA at bp+8 */ Ti64
|
|
var _ /* iB at bp+0 */ Ti64
|
|
var _ /* iMeta at bp+104 */ int32
|
|
var _ /* iMeta at bp+108 */ int32
|
|
var _ /* iMoved at bp+608 */ int32
|
|
var _ /* initData at bp+640 */ TInitData
|
|
var _ /* m at bp+552 */ TMem
|
|
var _ /* nChange at bp+616 */ Ti64
|
|
var _ /* nEntry at bp+96 */ Ti64
|
|
var _ /* nErr at bp+680 */ int32
|
|
var _ /* nullFunc at bp+896 */ TFuncDef
|
|
var _ /* pVCur at bp+832 */ uintptr
|
|
var _ /* pgno at bp+624 */ TPgno
|
|
var _ /* r at bp+120 */ TUnpackedRecord
|
|
var _ /* r at bp+168 */ TUnpackedRecord
|
|
var _ /* r at bp+208 */ TUnpackedRecord
|
|
var _ /* r at bp+464 */ TUnpackedRecord
|
|
var _ /* r at bp+512 */ TUnpackedRecord
|
|
var _ /* r at bp+704 */ TUnpackedRecord
|
|
var _ /* res at bp+112 */ int32
|
|
var _ /* res at bp+160 */ int32
|
|
var _ /* res at bp+248 */ int32
|
|
var _ /* res at bp+320 */ int32
|
|
var _ /* res at bp+376 */ int32
|
|
var _ /* res at bp+392 */ int32
|
|
var _ /* res at bp+396 */ int32
|
|
var _ /* res at bp+400 */ int32
|
|
var _ /* res at bp+404 */ int32
|
|
var _ /* res at bp+456 */ int32
|
|
var _ /* res at bp+696 */ int32
|
|
var _ /* rowid at bp+504 */ Ti64
|
|
var _ /* rowid at bp+968 */ Tsqlite_int64
|
|
var _ /* sContext at bp+848 */ Tsqlite3_context
|
|
var _ /* sMem at bp+24 */ TMem
|
|
var _ /* sMem at bp+776 */ TMem
|
|
var _ /* t at bp+80 */ Tu32
|
|
var _ /* uA at bp+16 */ Tu64
|
|
var _ /* v at bp+312 */ Ti64
|
|
var _ /* v at bp+384 */ Ti64
|
|
var _ /* v at bp+88 */ Tu64
|
|
var _ /* val at bp+744 */ Ti64
|
|
var _ /* x at bp+256 */ TMem
|
|
var _ /* x at bp+328 */ TBtreePayload
|
|
var _ /* x at bp+408 */ TBtreePayload
|
|
var _ /* x at bp+752 */ Ti64
|
|
var _ /* z at bp+688 */ uintptr
|
|
var _ /* zErr at bp+632 */ uintptr
|
|
var _ /* zErr at bp+840 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = aCol, aMem, aOffset, aOp, aPermute, aRoot, affinity, alreadyExists, apArg, apArg1, bRev, c, c1, c2, cnt, cnt1, colCacheCtr, db, desiredAutoCommit, eNew, eOld, encoding, eqOnly, exists, flags1, flags11, flags2, flags3, flags31, h, h1, i, i1, i2, i3, i4, i5, i6, i7, i8, i9, iA, iAddr, iB1, iCompare, iCookie, iDb, iDb1, iDb2, iDb3, iKey, iKey1, iKey2, iMap, iPrior, iQuery, iRollback, iSavepoint, iSet, idx, ii, ii1, isLegacy, isSchemaChange, isTransaction, isWriteLock, len1, len11, mTrace, n, n1, n2, n3, n4, nAlloc, nArg, nArg1, nByte, nByte1, nByte2, nCellKey, nCol, nData, nField, nField1, nField2, nHdr, nKeyCol, nMem, nName, nProgressLimit, nRoot, nStep, nVarint, nVmStep, nZero, newMax, newType, nullFlag, oc, offset64, op, opflags, p1, p11, p12, p13, p2, p21, p22, p23, p5, pArgc, pBt, pBt1, pBt2, pBt3, pC, pC1, pC10, pC11, pC12, pC13, pC14, pC15, pC16, pC17, pC18, pC19, pC2, pC20, pC21, pC22, pC23, pC24, pC25, pC26, pC27, pC28, pC29, pC3, pC30, pC31, pC32, pC33, pC34, pC4, pC5, pC6, pC7, pC8, pC9, pCaller, pColl, pCrsr, pCrsr1, pCrsr2, pCrsr3, pCrsr4, pCrsr5, pCrsr6, pCrsr7, pCrsr8, pCtx, pCtx1, pCtx2, pCur, pCur1, pCur2, pCur3, pCur4, pCur5, pCur6, pCx, pCx1, pCx2, pCx3, pData, pData0, pDb, pDb1, pDb2, pDb3, pDest, pDest1, pDest2, pEnd, pFrame, pFrame1, pFrame2, pFrame3, pFrame4, pIdxKey, pIn, pIn1, pIn2, pIn3, pKey, pKeyInfo, pKeyInfo1, pKeyInfo2, pLast, pMem, pMem1, pMem2, pMem3, pMem4, pModule, pModule1, pModule2, pModule3, pModule4, pModule5, pModule6, pName, pNew, pOp, pOrig, pOut, pPager, pProgram, pQuery, pRec, pReg, pRhs, pRt, pSavepoint, pSrc, pTab, pTab1, pTab2, pTab3, pTabCur, pTmp, pVCur1, pVTab, pVar, pVtab, pVtab1, pVtab2, pVtab3, pVtab4, pVtab5, pVtab6, pVtab7, pX, pX1, pcDest, pcx, pnErr, rA, rB, rc, res, res11, res13, res14, res21, resetSchemaOnFault, savedAnalysisLimit, seekResult, serialType, serial_type, sz, t1, type1, type2, typeMask, uu, v11, v21, vtabOnConflict, wrFlag, xAuth, z1, z2, z3, zAffinity, zAffinity1, zData, zDb, zDb1, zEndHdr, zErr, zFilename, zHdr, zHdr1, zName, zPayload, zSchema, zSql, zTab, zTrace, v190, v191, v192, v193, v194, v206, v213, v215, v216, v217, v227, v256
|
|
aOp = (*TVdbe)(unsafe.Pointer(p)).FaOp /* Copy of p->aOp */
|
|
pOp = aOp /* Current operation */
|
|
rc = SQLITE_OK /* Value to return */
|
|
db = (*TVdbe)(unsafe.Pointer(p)).Fdb /* The database */
|
|
resetSchemaOnFault = uint8(0) /* Reset schema after an error if positive */
|
|
encoding = (*Tsqlite3)(unsafe.Pointer(db)).Fenc /* The database encoding */
|
|
iCompare = 0 /* Result of last comparison */
|
|
nVmStep = uint64(0) /* Invoke xProgress() when nVmStep reaches this */
|
|
aMem = (*TVdbe)(unsafe.Pointer(p)).FaMem /* Copy of p->aMem */
|
|
pIn1 = uintptr(0) /* 1st input operand */
|
|
pIn2 = uintptr(0) /* 2nd input operand */
|
|
pIn3 = uintptr(0) /* 3rd input operand */
|
|
pOut = uintptr(0) /* Output operand */
|
|
colCacheCtr = uint32(0) /* Column cache counter */
|
|
/*** INSERT STACK UNION HERE ***/
|
|
/* sqlite3_step() verifies this */
|
|
if (*TVdbe)(unsafe.Pointer(p)).FlockMask != uint32(0) {
|
|
_sqlite3VdbeEnter(tls, p)
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FxProgress != 0 {
|
|
iPrior = **(**Tu32)(__ccgo_up(p + 212 + 4*4))
|
|
nProgressLimit = uint64((*Tsqlite3)(unsafe.Pointer(db)).FnProgressOps - iPrior%(*Tsqlite3)(unsafe.Pointer(db)).FnProgressOps)
|
|
} else {
|
|
nProgressLimit = libc.Uint64FromUint32(0xffffffff) | libc.Uint64FromUint32(0xffffffff)<<libc.Int32FromInt32(32)
|
|
}
|
|
if (*TVdbe)(unsafe.Pointer(p)).Frc == int32(SQLITE_NOMEM) {
|
|
/* This happens if a malloc() inside a call to sqlite3_column_text() or
|
|
** sqlite3_column_text16() failed. */
|
|
goto no_mem
|
|
}
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = SQLITE_OK
|
|
(*TVdbe)(unsafe.Pointer(p)).FiCurrentTime = 0
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FbusyHandler.FnBusy = 0
|
|
if libc.AtomicLoadNInt32(db+432, libc.Int32FromInt32(__ATOMIC_RELAXED)) != 0 {
|
|
goto abort_due_to_interrupt
|
|
}
|
|
pOp = aOp + uintptr((*TVdbe)(unsafe.Pointer(p)).Fpc)*24
|
|
for {
|
|
if !(int32(1) != 0) {
|
|
break
|
|
}
|
|
/* Errors are detected by individual opcodes, with an immediate
|
|
** jumps to abort_due_to_error. */
|
|
nVmStep = nVmStep + 1
|
|
/* Only allow tracing if SQLITE_DEBUG is defined.
|
|
*/
|
|
/* Check to see if we need to simulate an interrupt. This only happens
|
|
** if we have a special test build.
|
|
*/
|
|
/* Sanity checking on other operands */
|
|
switch libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) {
|
|
case int32(OP_Goto):
|
|
goto _2
|
|
case int32(OP_Gosub):
|
|
goto _3
|
|
case int32(OP_Return):
|
|
goto _4
|
|
case int32(OP_InitCoroutine):
|
|
goto _5
|
|
case int32(OP_EndCoroutine):
|
|
goto _6
|
|
case int32(OP_Yield):
|
|
goto _7
|
|
case int32(OP_HaltIfNull):
|
|
goto _8
|
|
case int32(OP_Halt):
|
|
goto _9
|
|
case int32(OP_Integer):
|
|
goto _10
|
|
case int32(OP_Int64):
|
|
goto _11
|
|
case int32(OP_Real):
|
|
goto _12
|
|
case int32(OP_String8):
|
|
goto _13
|
|
case int32(OP_String):
|
|
goto _14
|
|
case int32(OP_Null):
|
|
goto _15
|
|
case int32(OP_BeginSubrtn):
|
|
goto _16
|
|
case int32(OP_SoftNull):
|
|
goto _17
|
|
case int32(OP_Blob):
|
|
goto _18
|
|
case int32(OP_Variable):
|
|
goto _19
|
|
case int32(OP_Move):
|
|
goto _20
|
|
case int32(OP_Copy):
|
|
goto _21
|
|
case int32(OP_SCopy):
|
|
goto _22
|
|
case int32(OP_IntCopy):
|
|
goto _23
|
|
case int32(OP_FkCheck):
|
|
goto _24
|
|
case int32(OP_ResultRow):
|
|
goto _25
|
|
case int32(OP_Concat):
|
|
goto _26
|
|
case int32(OP_Remainder):
|
|
goto _27
|
|
case int32(OP_Divide):
|
|
goto _28
|
|
case int32(OP_Multiply):
|
|
goto _29
|
|
case int32(OP_Subtract):
|
|
goto _30
|
|
case int32(OP_Add):
|
|
goto _31
|
|
case int32(OP_CollSeq):
|
|
goto _32
|
|
case int32(OP_ShiftRight):
|
|
goto _33
|
|
case int32(OP_ShiftLeft):
|
|
goto _34
|
|
case int32(OP_BitOr):
|
|
goto _35
|
|
case int32(OP_BitAnd):
|
|
goto _36
|
|
case int32(OP_AddImm):
|
|
goto _37
|
|
case int32(OP_MustBeInt):
|
|
goto _38
|
|
case int32(OP_RealAffinity):
|
|
goto _39
|
|
case int32(OP_Cast):
|
|
goto _40
|
|
case int32(OP_Ge):
|
|
goto _41
|
|
case int32(OP_Gt):
|
|
goto _42
|
|
case int32(OP_Le):
|
|
goto _43
|
|
case int32(OP_Lt):
|
|
goto _44
|
|
case int32(OP_Ne):
|
|
goto _45
|
|
case int32(OP_Eq):
|
|
goto _46
|
|
case int32(OP_ElseEq):
|
|
goto _47
|
|
case int32(OP_Permutation):
|
|
goto _48
|
|
case int32(OP_Compare):
|
|
goto _49
|
|
case int32(OP_Jump):
|
|
goto _50
|
|
case int32(OP_Or):
|
|
goto _51
|
|
case int32(OP_And):
|
|
goto _52
|
|
case int32(OP_IsTrue):
|
|
goto _53
|
|
case int32(OP_Not):
|
|
goto _54
|
|
case int32(OP_BitNot):
|
|
goto _55
|
|
case int32(OP_Once):
|
|
goto _56
|
|
case int32(OP_If):
|
|
goto _57
|
|
case int32(OP_IfNot):
|
|
goto _58
|
|
case int32(OP_IsNull):
|
|
goto _59
|
|
case int32(OP_IsType):
|
|
goto _60
|
|
case int32(OP_ZeroOrNull):
|
|
goto _61
|
|
case int32(OP_NotNull):
|
|
goto _62
|
|
case int32(OP_IfNullRow):
|
|
goto _63
|
|
case int32(OP_Offset):
|
|
goto _64
|
|
case int32(OP_Column):
|
|
goto _65
|
|
case int32(OP_TypeCheck):
|
|
goto _66
|
|
case int32(OP_Affinity):
|
|
goto _67
|
|
case int32(OP_MakeRecord):
|
|
goto _68
|
|
case int32(OP_Count):
|
|
goto _69
|
|
case OP_Savepoint:
|
|
goto _70
|
|
case int32(OP_AutoCommit):
|
|
goto _71
|
|
case int32(OP_Transaction):
|
|
goto _72
|
|
case int32(OP_ReadCookie):
|
|
goto _73
|
|
case int32(OP_SetCookie):
|
|
goto _74
|
|
case int32(OP_OpenWrite):
|
|
goto _75
|
|
case int32(OP_OpenRead):
|
|
goto _76
|
|
case int32(OP_ReopenIdx):
|
|
goto _77
|
|
case int32(OP_OpenDup):
|
|
goto _78
|
|
case int32(OP_OpenEphemeral):
|
|
goto _79
|
|
case int32(OP_OpenAutoindex):
|
|
goto _80
|
|
case int32(OP_SorterOpen):
|
|
goto _81
|
|
case int32(OP_SequenceTest):
|
|
goto _82
|
|
case int32(OP_OpenPseudo):
|
|
goto _83
|
|
case int32(OP_Close):
|
|
goto _84
|
|
case int32(OP_SeekGT):
|
|
goto _85
|
|
case int32(OP_SeekGE):
|
|
goto _86
|
|
case int32(OP_SeekLE):
|
|
goto _87
|
|
case int32(OP_SeekLT):
|
|
goto _88
|
|
case int32(OP_SeekScan):
|
|
goto _89
|
|
case int32(OP_SeekHit):
|
|
goto _90
|
|
case int32(OP_IfNotOpen):
|
|
goto _91
|
|
case int32(OP_IfNoHope):
|
|
goto _92
|
|
case int32(OP_Found):
|
|
goto _93
|
|
case int32(OP_NotFound):
|
|
goto _94
|
|
case int32(OP_NoConflict):
|
|
goto _95
|
|
case int32(OP_NotExists):
|
|
goto _96
|
|
case int32(OP_SeekRowid):
|
|
goto _97
|
|
case int32(OP_Sequence):
|
|
goto _98
|
|
case int32(OP_NewRowid):
|
|
goto _99
|
|
case int32(OP_Insert):
|
|
goto _100
|
|
case int32(OP_RowCell):
|
|
goto _101
|
|
case int32(OP_Delete):
|
|
goto _102
|
|
case int32(OP_ResetCount):
|
|
goto _103
|
|
case int32(OP_SorterCompare):
|
|
goto _104
|
|
case int32(OP_SorterData):
|
|
goto _105
|
|
case int32(OP_RowData):
|
|
goto _106
|
|
case int32(OP_Rowid):
|
|
goto _107
|
|
case int32(OP_NullRow):
|
|
goto _108
|
|
case int32(OP_Last):
|
|
goto _109
|
|
case int32(OP_SeekEnd):
|
|
goto _110
|
|
case int32(OP_IfSizeBetween):
|
|
goto _111
|
|
case int32(OP_Sort):
|
|
goto _112
|
|
case int32(OP_SorterSort):
|
|
goto _113
|
|
case int32(OP_Rewind):
|
|
goto _114
|
|
case int32(OP_IfEmpty):
|
|
goto _115
|
|
case int32(OP_Prev):
|
|
goto _116
|
|
case int32(OP_Next):
|
|
goto _117
|
|
case int32(OP_SorterNext):
|
|
goto _118
|
|
case int32(OP_IdxInsert):
|
|
goto _119
|
|
case int32(OP_SorterInsert):
|
|
goto _120
|
|
case int32(OP_IdxDelete):
|
|
goto _121
|
|
case int32(OP_IdxRowid):
|
|
goto _122
|
|
case int32(OP_DeferredSeek):
|
|
goto _123
|
|
case int32(OP_FinishSeek):
|
|
goto _124
|
|
case int32(OP_IdxGE):
|
|
goto _125
|
|
case int32(OP_IdxLT):
|
|
goto _126
|
|
case int32(OP_IdxGT):
|
|
goto _127
|
|
case int32(OP_IdxLE):
|
|
goto _128
|
|
case int32(OP_Destroy):
|
|
goto _129
|
|
case int32(OP_Clear):
|
|
goto _130
|
|
case int32(OP_ResetSorter):
|
|
goto _131
|
|
case int32(OP_CreateBtree):
|
|
goto _132
|
|
case int32(OP_SqlExec):
|
|
goto _133
|
|
case int32(OP_ParseSchema):
|
|
goto _134
|
|
case int32(OP_LoadAnalysis):
|
|
goto _135
|
|
case int32(OP_DropTable):
|
|
goto _136
|
|
case int32(OP_DropIndex):
|
|
goto _137
|
|
case int32(OP_DropTrigger):
|
|
goto _138
|
|
case int32(OP_IntegrityCk):
|
|
goto _139
|
|
case int32(OP_IFindKey):
|
|
goto _140
|
|
case int32(OP_RowSetAdd):
|
|
goto _141
|
|
case int32(OP_RowSetRead):
|
|
goto _142
|
|
case int32(OP_RowSetTest):
|
|
goto _143
|
|
case int32(OP_Program):
|
|
goto _144
|
|
case int32(OP_Param):
|
|
goto _145
|
|
case int32(OP_FkCounter):
|
|
goto _146
|
|
case int32(OP_FkIfZero):
|
|
goto _147
|
|
case int32(OP_MemMax):
|
|
goto _148
|
|
case int32(OP_IfPos):
|
|
goto _149
|
|
case int32(OP_OffsetLimit):
|
|
goto _150
|
|
case int32(OP_IfNotZero):
|
|
goto _151
|
|
case int32(OP_DecrJumpZero):
|
|
goto _152
|
|
case int32(OP_AggStep):
|
|
goto _153
|
|
case int32(OP_AggInverse):
|
|
goto _154
|
|
case int32(OP_AggStep1):
|
|
goto _155
|
|
case int32(OP_AggFinal):
|
|
goto _156
|
|
case int32(OP_AggValue):
|
|
goto _157
|
|
case int32(OP_Checkpoint):
|
|
goto _158
|
|
case int32(OP_JournalMode):
|
|
goto _159
|
|
case int32(OP_Vacuum):
|
|
goto _160
|
|
case int32(OP_IncrVacuum):
|
|
goto _161
|
|
case int32(OP_Expire):
|
|
goto _162
|
|
case int32(OP_CursorLock):
|
|
goto _163
|
|
case int32(OP_CursorUnlock):
|
|
goto _164
|
|
case int32(OP_TableLock):
|
|
goto _165
|
|
case int32(OP_VBegin):
|
|
goto _166
|
|
case int32(OP_VCreate):
|
|
goto _167
|
|
case int32(OP_VDestroy):
|
|
goto _168
|
|
case int32(OP_VOpen):
|
|
goto _169
|
|
case int32(OP_VCheck):
|
|
goto _170
|
|
case int32(OP_VInitIn):
|
|
goto _171
|
|
case int32(OP_VFilter):
|
|
goto _172
|
|
case int32(OP_VColumn):
|
|
goto _173
|
|
case int32(OP_VNext):
|
|
goto _174
|
|
case int32(OP_VRename):
|
|
goto _175
|
|
case int32(OP_VUpdate):
|
|
goto _176
|
|
case int32(OP_Pagecount):
|
|
goto _177
|
|
case int32(OP_MaxPgcnt):
|
|
goto _178
|
|
case int32(OP_Function):
|
|
goto _179
|
|
case int32(OP_PureFunc):
|
|
goto _180
|
|
case int32(OP_ClrSubtype):
|
|
goto _181
|
|
case int32(OP_GetSubtype):
|
|
goto _182
|
|
case int32(OP_SetSubtype):
|
|
goto _183
|
|
case int32(OP_FilterAdd):
|
|
goto _184
|
|
case int32(OP_Filter):
|
|
goto _185
|
|
case int32(OP_Init):
|
|
goto _186
|
|
case int32(OP_Trace):
|
|
goto _187
|
|
default:
|
|
goto _188
|
|
}
|
|
goto _189
|
|
/*****************************************************************************
|
|
** What follows is a massive switch statement where each case implements a
|
|
** separate instruction in the virtual machine. If we follow the usual
|
|
** indentation conventions, each case should be indented by 6 spaces. But
|
|
** that is a lot of wasted space on the left margin. So the code within
|
|
** the switch statement will break with convention and be flush-left. Another
|
|
** big comment (similar to this one) will mark the point in the code where
|
|
** we transition back to normal indentation.
|
|
**
|
|
** The formatting of each case is important. The makefile for SQLite
|
|
** generates two C files "opcodes.h" and "opcodes.c" by scanning this
|
|
** file looking for lines that begin with "case OP_". The opcodes.h files
|
|
** will be filled with #defines that give unique integer values to each
|
|
** opcode and the opcodes.c file is filled with an array of strings where
|
|
** each string is the symbolic name for the corresponding opcode. If the
|
|
** case statement is followed by a comment of the form "/# same as ... #/"
|
|
** that comment is used to determine the particular value of the opcode.
|
|
**
|
|
** Other keywords in the comment that follows each case are used to
|
|
** construct the OPFLG_INITIALIZER value that initializes opcodeProperty[].
|
|
** Keywords include: in1, in2, in3, out2, out3. See
|
|
** the mkopcodeh.awk script for additional information.
|
|
**
|
|
** Documentation about VDBE opcodes is generated by scanning this file
|
|
** for lines of that contain "Opcode:". That line and all subsequent
|
|
** comment lines are used in the generation of the opcode.html documentation
|
|
** file.
|
|
**
|
|
** SUMMARY:
|
|
**
|
|
** Formatting is important to scripts that scan this file.
|
|
** Do not deviate from the formatting style currently in use.
|
|
**
|
|
*****************************************************************************/
|
|
/* Opcode: Goto * P2 * * *
|
|
**
|
|
** An unconditional jump to address P2.
|
|
** The next instruction executed will be
|
|
** the one at index P2 from the beginning of
|
|
** the program.
|
|
**
|
|
** The P1 parameter is not actually used by this opcode. However, it
|
|
** is sometimes set to 1 instead of 0 as a hint to the command-line shell
|
|
** that this Goto is the bottom of a loop and that the lines from P2 down
|
|
** to the current line should be indented for EXPLAIN output.
|
|
*/
|
|
_2:
|
|
; /* jump */
|
|
goto jump_to_p2_and_check_for_interrupt
|
|
jump_to_p2_and_check_for_interrupt:
|
|
;
|
|
pOp = aOp + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2-int32(1))*24
|
|
/* Opcodes that are used as the bottom of a loop (OP_Next, OP_Prev,
|
|
** OP_VNext, or OP_SorterNext) all jump here upon
|
|
** completion. Check to see if sqlite3_interrupt() has been called
|
|
** or if the progress callback needs to be invoked.
|
|
**
|
|
** This code uses unstructured "goto" statements and does not look clean.
|
|
** But that is not due to sloppy coding habits. The code is written this
|
|
** way for performance, to avoid having to run the interrupt and progress
|
|
** checks on every opcode. This helps sqlite3_step() to run about 1.5%
|
|
** faster according to "valgrind --tool=cachegrind" */
|
|
goto check_for_interrupt
|
|
check_for_interrupt:
|
|
;
|
|
if libc.AtomicLoadNInt32(db+432, libc.Int32FromInt32(__ATOMIC_RELAXED)) != 0 {
|
|
goto abort_due_to_interrupt
|
|
}
|
|
/* Call the progress callback if it is configured and the required number
|
|
** of VDBE ops have been executed (either since this invocation of
|
|
** sqlite3VdbeExec() or since last time the progress callback was called).
|
|
** If the progress callback returns non-zero, exit the virtual machine with
|
|
** a return code SQLITE_ABORT.
|
|
*/
|
|
for nVmStep >= nProgressLimit && (*Tsqlite3)(unsafe.Pointer(db)).FxProgress != uintptr(0) {
|
|
nProgressLimit = nProgressLimit + uint64((*Tsqlite3)(unsafe.Pointer(db)).FnProgressOps)
|
|
if (*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3)(unsafe.Pointer(db)).FxProgress})))(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpProgressArg) != 0 {
|
|
nProgressLimit = libc.Uint64FromUint32(0xffffffff) | libc.Uint64FromUint32(0xffffffff)<<libc.Int32FromInt32(32)
|
|
rc = int32(SQLITE_INTERRUPT)
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: Gosub P1 P2 * * *
|
|
**
|
|
** Write the current address onto register P1
|
|
** and then jump to address P2.
|
|
*/
|
|
_3:
|
|
; /* jump */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
(*TMem)(unsafe.Pointer(pIn1)).Fflags = uint16(MEM_Int)
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) = int64(int32((int64(pOp) - int64(aOp)) / 24))
|
|
goto jump_to_p2_and_check_for_interrupt
|
|
/* Opcode: Return P1 P2 P3 * *
|
|
**
|
|
** Jump to the address stored in register P1. If P1 is a return address
|
|
** register, then this accomplishes a return from a subroutine.
|
|
**
|
|
** If P3 is 1, then the jump is only taken if register P1 holds an integer
|
|
** values, otherwise execution falls through to the next opcode, and the
|
|
** OP_Return becomes a no-op. If P3 is 0, then register P1 must hold an
|
|
** integer or else an assert() is raised. P3 should be set to 1 when
|
|
** this opcode is used in combination with OP_BeginSubrtn, and set to 0
|
|
** otherwise.
|
|
**
|
|
** The value in register P1 is unchanged by this opcode.
|
|
**
|
|
** P2 is not used by the byte-code engine. However, if P2 is positive
|
|
** and also less than the current address, then the "EXPLAIN" output
|
|
** formatter in the CLI will indent all opcodes from the P2 opcode up
|
|
** to be not including the current Return. P2 should be the first opcode
|
|
** in the subroutine from which this opcode is returning. Thus the P2
|
|
** value is a byte-code indentation hint. See tag-20220407a in
|
|
** wherecode.c and shell.c.
|
|
*/
|
|
_4:
|
|
; /* in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Int) != 0 {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
}
|
|
pOp = aOp + uintptr(*(*Ti64)(unsafe.Pointer(pIn1)))*24
|
|
} else {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: InitCoroutine P1 P2 P3 * *
|
|
**
|
|
** Set up register P1 so that it will Yield to the coroutine
|
|
** located at address P3.
|
|
**
|
|
** If P2!=0 then the coroutine implementation immediately follows
|
|
** this opcode. So jump over the coroutine implementation to
|
|
** address P2.
|
|
**
|
|
** See also: EndCoroutine
|
|
*/
|
|
_5:
|
|
; /* jump0 */
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = int64((*TOp)(unsafe.Pointer(pOp)).Fp3 - int32(1))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Int)
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 == 0 {
|
|
goto _189
|
|
}
|
|
/* Most jump operations do a goto to this spot in order to update
|
|
** the pOp pointer. */
|
|
goto jump_to_p2
|
|
jump_to_p2:
|
|
;
|
|
/* There are never any jumps to instruction 0 */
|
|
/* Jumps must be in range */
|
|
pOp = aOp + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2-int32(1))*24
|
|
goto _189
|
|
/* Opcode: EndCoroutine P1 * * * *
|
|
**
|
|
** The instruction at the address in register P1 is a Yield.
|
|
** Jump to the P2 parameter of that Yield.
|
|
** After the jump, the value register P1 is left with a value
|
|
** such that subsequent OP_Yields go back to the this same
|
|
** OP_EndCoroutine instruction.
|
|
**
|
|
** See also: InitCoroutine
|
|
*/
|
|
_6:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pCaller = aOp + uintptr(*(*Ti64)(unsafe.Pointer(pIn1)))*24
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) = int64(int32((int64(pOp)-int64((*TVdbe)(unsafe.Pointer(p)).FaOp))/24) - int32(1))
|
|
pOp = aOp + uintptr((*TVdbeOp)(unsafe.Pointer(pCaller)).Fp2-int32(1))*24
|
|
goto _189
|
|
/* Opcode: Yield P1 P2 * * *
|
|
**
|
|
** Swap the program counter with the value in register P1. This
|
|
** has the effect of yielding to a coroutine.
|
|
**
|
|
** If the coroutine that is launched by this instruction ends with
|
|
** Yield or Return then continue to the next instruction. But if
|
|
** the coroutine launched by this instruction ends with
|
|
** EndCoroutine, then jump to P2 rather than continuing with the
|
|
** next instruction.
|
|
**
|
|
** See also: InitCoroutine
|
|
*/
|
|
_7:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
(*TMem)(unsafe.Pointer(pIn1)).Fflags = uint16(MEM_Int)
|
|
pcDest = int32(*(*Ti64)(unsafe.Pointer(pIn1)))
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) = int64(int32((int64(pOp) - int64(aOp)) / 24))
|
|
pOp = aOp + uintptr(pcDest)*24
|
|
goto _189
|
|
/* Opcode: HaltIfNull P1 P2 P3 P4 P5
|
|
** Synopsis: if r[P3]=null halt
|
|
**
|
|
** Check the value in register P3. If it is NULL then Halt using
|
|
** parameter P1, P2, and P4 as if this were a Halt instruction. If the
|
|
** value in register P3 is not NULL, then this routine is a no-op.
|
|
** The P5 parameter should be 1.
|
|
*/
|
|
_8:
|
|
; /* in3 */
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn3)).Fflags)&int32(MEM_Null) == 0 {
|
|
goto _189
|
|
}
|
|
/* Fall through into OP_Halt */
|
|
/* Opcode: Halt P1 P2 P3 P4 P5
|
|
**
|
|
** Exit immediately. All open cursors, etc are closed
|
|
** automatically.
|
|
**
|
|
** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(),
|
|
** or sqlite3_finalize(). For a normal halt, this should be SQLITE_OK (0).
|
|
** For errors, it can be some other value. If P1!=0 then P2 will determine
|
|
** whether or not to rollback the current transaction. Do not rollback
|
|
** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort,
|
|
** then back out all changes that have occurred during this execution of the
|
|
** VDBE, but do not rollback the transaction.
|
|
**
|
|
** If P3 is not zero and P4 is NULL, then P3 is a register that holds the
|
|
** text of an error message.
|
|
**
|
|
** If P3 is zero and P4 is not null then the error message string is held
|
|
** in P4.
|
|
**
|
|
** P5 is a value between 1 and 4, inclusive, then the P4 error message
|
|
** string is modified as follows:
|
|
**
|
|
** 1: NOT NULL constraint failed: P4
|
|
** 2: UNIQUE constraint failed: P4
|
|
** 3: CHECK constraint failed: P4
|
|
** 4: FOREIGN KEY constraint failed: P4
|
|
**
|
|
** If P3 is zero and P5 is not zero and P4 is NULL, then everything after
|
|
** the ":" is omitted.
|
|
**
|
|
** There is an implied "Halt 0 0 0" instruction inserted at the very end of
|
|
** every program. So a jump past the last instruction of the program
|
|
** is the same as executing Halt.
|
|
*/
|
|
_9:
|
|
;
|
|
/* A deliberately coded "OP_Halt SQLITE_INTERNAL * * * *" opcode indicates
|
|
** something is wrong with the code generator. Raise an assertion in order
|
|
** to bring this to the attention of fuzzers and other testing tools. */
|
|
if (*TVdbe)(unsafe.Pointer(p)).FpFrame != 0 && (*TOp)(unsafe.Pointer(pOp)).Fp1 == SQLITE_OK {
|
|
/* Halt the sub-program. Return control to the parent frame. */
|
|
pFrame = (*TVdbe)(unsafe.Pointer(p)).FpFrame
|
|
(*TVdbe)(unsafe.Pointer(p)).FpFrame = (*TVdbeFrame)(unsafe.Pointer(pFrame)).FpParent
|
|
(*TVdbe)(unsafe.Pointer(p)).FnFrame = (*TVdbe)(unsafe.Pointer(p)).FnFrame - 1
|
|
_sqlite3VdbeSetChanges(tls, db, (*TVdbe)(unsafe.Pointer(p)).FnChange)
|
|
pcx = _sqlite3VdbeFrameRestore(tls, pFrame)
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 == int32(OE_Ignore) {
|
|
/* Instruction pcx is the OP_Program that invoked the sub-program
|
|
** currently being halted. If the p2 instruction of this OP_Halt
|
|
** instruction is set to OE_Ignore, then the sub-program is throwing
|
|
** an IGNORE exception. In this case jump to the address specified
|
|
** as the p2 of the calling OP_Program. */
|
|
pcx = (**(**TOp)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FaOp + uintptr(pcx)*24))).Fp2 - int32(1)
|
|
}
|
|
aOp = (*TVdbe)(unsafe.Pointer(p)).FaOp
|
|
aMem = (*TVdbe)(unsafe.Pointer(p)).FaMem
|
|
pOp = aOp + uintptr(pcx)*24
|
|
goto _189
|
|
}
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
(*TVdbe)(unsafe.Pointer(p)).FerrorAction = libc.Uint8FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
if (*TVdbe)(unsafe.Pointer(p)).Frc != 0 {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 > 0 && int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == P4_NOTUSED {
|
|
zErr = _sqlite3ValueText(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56, uint8(SQLITE_UTF8))
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, zErr))
|
|
} else {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp5 != 0 {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+5860, libc.VaList(bp+984, _azType[libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)-int32(1)]))
|
|
if *(*uintptr)(unsafe.Pointer(pOp + 16)) != 0 {
|
|
(*TVdbe)(unsafe.Pointer(p)).FzErrMsg = _sqlite3MPrintf(tls, db, __ccgo_ts+5881, libc.VaList(bp+984, (*TVdbe)(unsafe.Pointer(p)).FzErrMsg, *(*uintptr)(unsafe.Pointer(pOp + 16))))
|
|
}
|
|
} else {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, *(*uintptr)(unsafe.Pointer(pOp + 16))))
|
|
}
|
|
}
|
|
_sqlite3VdbeLogAbort(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, pOp, aOp)
|
|
}
|
|
rc = _sqlite3VdbeHalt(tls, p)
|
|
if rc == int32(SQLITE_BUSY) {
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = int32(SQLITE_BUSY)
|
|
} else {
|
|
if (*TVdbe)(unsafe.Pointer(p)).Frc != 0 {
|
|
v190 = int32(SQLITE_ERROR)
|
|
} else {
|
|
v190 = int32(SQLITE_DONE)
|
|
}
|
|
rc = v190
|
|
}
|
|
goto vdbe_return
|
|
/* Opcode: Integer P1 P2 * * *
|
|
** Synopsis: r[P2]=P1
|
|
**
|
|
** The 32-bit integer value P1 is written into register P2.
|
|
*/
|
|
_10:
|
|
; /* out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = int64((*TOp)(unsafe.Pointer(pOp)).Fp1)
|
|
goto _189
|
|
/* Opcode: Int64 * P2 * P4 *
|
|
** Synopsis: r[P2]=P4
|
|
**
|
|
** P4 is a pointer to a 64-bit integer value.
|
|
** Write that value into register P2.
|
|
*/
|
|
_11:
|
|
; /* out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pOp + 16))))
|
|
goto _189
|
|
/* Opcode: Real * P2 * P4 *
|
|
** Synopsis: r[P2]=P4
|
|
**
|
|
** P4 is a pointer to a 64-bit floating point value.
|
|
** Write that value into register P2.
|
|
*/
|
|
_12:
|
|
; /* same as TK_FLOAT, out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Real)
|
|
*(*float64)(unsafe.Pointer(pOut)) = **(**float64)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pOp + 16))))
|
|
goto _189
|
|
/* Opcode: String8 * P2 * P4 *
|
|
** Synopsis: r[P2]='P4'
|
|
**
|
|
** P4 points to a nul terminated UTF-8 string. This opcode is transformed
|
|
** into a String opcode before it is executed for the first time. During
|
|
** this transformation, the length of string P4 is computed and stored
|
|
** as the P1 parameter.
|
|
*/
|
|
_13:
|
|
; /* same as TK_STRING, out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp1 = _sqlite3Strlen30(tls, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
if libc.Int32FromUint8(encoding) != int32(SQLITE_UTF8) {
|
|
rc = _sqlite3VdbeMemSetStr(tls, pOut, *(*uintptr)(unsafe.Pointer(pOp + 16)), int64(-int32(1)), uint8(SQLITE_UTF8), libc.UintptrFromInt32(0))
|
|
if rc != 0 {
|
|
goto too_big
|
|
}
|
|
if SQLITE_OK != _sqlite3VdbeChangeEncoding(tls, pOut, libc.Int32FromUint8(encoding)) {
|
|
goto no_mem
|
|
}
|
|
(*TMem)(unsafe.Pointer(pOut)).FszMalloc = 0
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Static))
|
|
if int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == -int32(7) {
|
|
_sqlite3DbFree(tls, db, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
}
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp4type = int8(-libc.Int32FromInt32(7))
|
|
*(*uintptr)(unsafe.Pointer(pOp + 16)) = (*TMem)(unsafe.Pointer(pOut)).Fz
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp1 = (*TMem)(unsafe.Pointer(pOut)).Fn
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 > **(**int32)(__ccgo_up(db + 136)) {
|
|
goto too_big
|
|
}
|
|
(*TOp)(unsafe.Pointer(pOp)).Fopcode = uint8(OP_String)
|
|
/* Fall through to the next case, OP_String */
|
|
/* Opcode: String P1 P2 P3 P4 P5
|
|
** Synopsis: r[P2]='P4' (len=P1)
|
|
**
|
|
** The string value P4 of length P1 (bytes) is stored in register P2.
|
|
**
|
|
** If P3 is not zero and the content of register P3 is equal to P5, then
|
|
** the datatype of the register P2 is converted to BLOB. The content is
|
|
** the same sequence of bytes, it is merely interpreted as a BLOB instead
|
|
** of a string, as if it had been CAST. In other words:
|
|
**
|
|
** if( P3!=0 and reg[P3]==P5 ) reg[P2] := CAST(reg[P2] as BLOB)
|
|
*/
|
|
_14:
|
|
; /* out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromInt32(MEM_Str) | libc.Int32FromInt32(MEM_Static) | libc.Int32FromInt32(MEM_Term))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fz = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fn = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
(*TMem)(unsafe.Pointer(pOut)).Fenc = encoding
|
|
goto _189
|
|
/* Opcode: BeginSubrtn * P2 * * *
|
|
** Synopsis: r[P2]=NULL
|
|
**
|
|
** Mark the beginning of a subroutine that can be entered in-line
|
|
** or that can be called using OP_Gosub. The subroutine should
|
|
** be terminated by an OP_Return instruction that has a P1 operand that
|
|
** is the same as the P2 operand to this opcode and that has P3 set to 1.
|
|
** If the subroutine is entered in-line, then the OP_Return will simply
|
|
** fall through. But if the subroutine is entered using OP_Gosub, then
|
|
** the OP_Return will jump back to the first instruction after the OP_Gosub.
|
|
**
|
|
** This routine works by loading a NULL into the P2 register. When the
|
|
** return address register contains a NULL, the OP_Return instruction is
|
|
** a no-op that simply falls through to the next instruction (assuming that
|
|
** the OP_Return opcode has a P3 value of 1). Thus if the subroutine is
|
|
** entered in-line, then the OP_Return will cause in-line execution to
|
|
** continue. But if the subroutine is entered via OP_Gosub, then the
|
|
** OP_Return will cause a return to the address following the OP_Gosub.
|
|
**
|
|
** This opcode is identical to OP_Null. It has a different name
|
|
** only to make the byte code easier to read and verify.
|
|
*/
|
|
/* Opcode: Null P1 P2 P3 * *
|
|
** Synopsis: r[P2..P3]=NULL
|
|
**
|
|
** Write a NULL into registers P2. If P3 greater than P2, then also write
|
|
** NULL into register P3 and every register in between P2 and P3. If P3
|
|
** is less than P2 (typically P3 is zero) then only register P2 is
|
|
** set to NULL.
|
|
**
|
|
** If the P1 value is non-zero, then also set the MEM_Cleared flag so that
|
|
** NULL values will not compare equal even if SQLITE_NULLEQ is set on
|
|
** OP_Ne or OP_Eq.
|
|
*/
|
|
_16:
|
|
;
|
|
_15:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
cnt = (*TOp)(unsafe.Pointer(pOp)).Fp3 - (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 != 0 {
|
|
v190 = libc.Int32FromInt32(MEM_Null) | libc.Int32FromInt32(MEM_Cleared)
|
|
} else {
|
|
v190 = int32(MEM_Null)
|
|
}
|
|
v192 = libc.Uint16FromInt32(v190)
|
|
nullFlag = v192
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = v192
|
|
(*TMem)(unsafe.Pointer(pOut)).Fn = 0
|
|
for cnt > 0 {
|
|
pOut += 56
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = nullFlag
|
|
(*TMem)(unsafe.Pointer(pOut)).Fn = 0
|
|
cnt = cnt - 1
|
|
}
|
|
goto _189
|
|
/* Opcode: SoftNull P1 * * * *
|
|
** Synopsis: r[P1]=NULL
|
|
**
|
|
** Set register P1 to have the value NULL as seen by the OP_MakeRecord
|
|
** instruction, but do not free any string or blob memory associated with
|
|
** the register, so that if the value was a string or blob that was
|
|
** previously copied using OP_SCopy, the copies will continue to be valid.
|
|
*/
|
|
_17:
|
|
;
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_Undefined)|libc.Int32FromInt32(MEM_AffMask)) | int32(MEM_Null))
|
|
goto _189
|
|
/* Opcode: Blob P1 P2 * P4 *
|
|
** Synopsis: r[P2]=P4 (len=P1)
|
|
**
|
|
** P4 points to a blob of data P1 bytes long. Store this
|
|
** blob in register P2. If P4 is a NULL pointer, then construct
|
|
** a zero-filled blob that is P1 bytes long in P2.
|
|
*/
|
|
_18:
|
|
; /* out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
if *(*uintptr)(unsafe.Pointer(pOp + 16)) == uintptr(0) {
|
|
_sqlite3VdbeMemSetZeroBlob(tls, pOut, (*TOp)(unsafe.Pointer(pOp)).Fp1)
|
|
if _sqlite3VdbeMemExpandBlob(tls, pOut) != 0 {
|
|
goto no_mem
|
|
}
|
|
} else {
|
|
_sqlite3VdbeMemSetStr(tls, pOut, *(*uintptr)(unsafe.Pointer(pOp + 16)), int64((*TOp)(unsafe.Pointer(pOp)).Fp1), uint8(0), uintptr(0))
|
|
}
|
|
(*TMem)(unsafe.Pointer(pOut)).Fenc = encoding
|
|
goto _189
|
|
/* Opcode: Variable P1 P2 * * *
|
|
** Synopsis: r[P2]=parameter(P1)
|
|
**
|
|
** Transfer the values of bound parameter P1 into register P2
|
|
*/
|
|
_19:
|
|
; /* Value being transferred */
|
|
pVar = (*TVdbe)(unsafe.Pointer(p)).FaVar + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1-int32(1))*56
|
|
if _sqlite3VdbeMemTooBig(tls, pVar) != 0 {
|
|
goto too_big
|
|
}
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags)&(libc.Int32FromInt32(MEM_Agg)|libc.Int32FromInt32(MEM_Dyn)) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
}
|
|
libc.Xmemcpy(tls, pOut, pVar, uint64(libc.UintptrFromInt32(0)+24))
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^(libc.Int32FromInt32(MEM_Dyn) | libc.Int32FromInt32(MEM_Ephem)))
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | (libc.Int32FromInt32(MEM_Static) | libc.Int32FromInt32(MEM_FromBind)))
|
|
goto _189
|
|
/* Opcode: Move P1 P2 P3 * *
|
|
** Synopsis: r[P2@P3]=r[P1@P3]
|
|
**
|
|
** Move the P3 values in register P1..P1+P3-1 over into
|
|
** registers P2..P2+P3-1. Registers P1..P1+P3-1 are
|
|
** left holding a NULL. It is an error for register ranges
|
|
** P1..P1+P3-1 and P2..P2+P3-1 to overlap. It is an error
|
|
** for P3 to be less than 1.
|
|
*/
|
|
_20:
|
|
; /* Register to copy to */
|
|
n = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
p1 = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
p2 = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
pIn1 = aMem + uintptr(p1)*56
|
|
pOut = aMem + uintptr(p2)*56
|
|
for {
|
|
_sqlite3VdbeMemMove(tls, pOut, pIn1)
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags)&int32(MEM_Ephem) != 0 && _sqlite3VdbeMemMakeWriteable(tls, pOut) != 0 {
|
|
goto no_mem
|
|
}
|
|
pIn1 += 56
|
|
pOut += 56
|
|
goto _197
|
|
_197:
|
|
;
|
|
n = n - 1
|
|
v190 = n
|
|
if !(v190 != 0) {
|
|
break
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: Copy P1 P2 P3 * P5
|
|
** Synopsis: r[P2@P3+1]=r[P1@P3+1]
|
|
**
|
|
** Make a copy of registers P1..P1+P3 into registers P2..P2+P3.
|
|
**
|
|
** If the 0x0002 bit of P5 is set then also clear the MEM_Subtype flag in the
|
|
** destination. The 0x0001 bit of P5 indicates that this Copy opcode cannot
|
|
** be merged. The 0x0001 bit is used by the query planner and does not
|
|
** come into play during query execution.
|
|
**
|
|
** This instruction makes a deep copy of the value. A duplicate
|
|
** is made of any string or blob constant. See also OP_SCopy.
|
|
*/
|
|
_21:
|
|
;
|
|
n1 = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
for int32(1) != 0 {
|
|
_sqlite3VdbeMemShallowCopy(tls, pOut, pIn1, int32(MEM_Ephem))
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags)&int32(MEM_Ephem) != 0 && _sqlite3VdbeMemMakeWriteable(tls, pOut) != 0 {
|
|
goto no_mem
|
|
}
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags)&int32(MEM_Subtype) != 0 && libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(0x0002) != 0 {
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Subtype))
|
|
}
|
|
v190 = n1
|
|
n1 = n1 - 1
|
|
if v190 == 0 {
|
|
break
|
|
}
|
|
pOut += 56
|
|
pIn1 += 56
|
|
}
|
|
goto _189
|
|
/* Opcode: SCopy P1 P2 * * *
|
|
** Synopsis: r[P2]=r[P1]
|
|
**
|
|
** Make a shallow copy of register P1 into register P2.
|
|
**
|
|
** This instruction makes a shallow copy of the value. If the value
|
|
** is a string or blob, then the copy is only a pointer to the
|
|
** original and hence if the original changes so will the copy.
|
|
** Worse, if the original is deallocated, the copy becomes invalid.
|
|
** Thus the program must guarantee that the original will not change
|
|
** during the lifetime of the copy. Use OP_Copy to make a complete
|
|
** copy.
|
|
*/
|
|
_22:
|
|
; /* out2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
_sqlite3VdbeMemShallowCopy(tls, pOut, pIn1, int32(MEM_Ephem))
|
|
goto _189
|
|
/* Opcode: IntCopy P1 P2 * * *
|
|
** Synopsis: r[P2]=r[P1]
|
|
**
|
|
** Transfer the integer value held in register P1 into register P2.
|
|
**
|
|
** This is an optimized version of SCopy that works only for integer
|
|
** values.
|
|
*/
|
|
_23:
|
|
; /* out2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
_sqlite3VdbeMemSetInt64(tls, pOut, *(*Ti64)(unsafe.Pointer(pIn1)))
|
|
goto _189
|
|
/* Opcode: FkCheck * * * * *
|
|
**
|
|
** Halt with an SQLITE_CONSTRAINT error if there are any unresolved
|
|
** foreign key constraint violations. If there are no foreign key
|
|
** constraint violations, this is a no-op.
|
|
**
|
|
** FK constraint violations are also checked when the prepared statement
|
|
** exits. This opcode is used to raise foreign key constraint errors prior
|
|
** to returning results such as a row change count or the result of a
|
|
** RETURNING clause.
|
|
*/
|
|
_24:
|
|
;
|
|
v190 = _sqlite3VdbeCheckFkImmediate(tls, p)
|
|
rc = v190
|
|
if v190 != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: ResultRow P1 P2 * * *
|
|
** Synopsis: output=r[P1@P2]
|
|
**
|
|
** The registers P1 through P1+P2-1 contain a single row of
|
|
** results. This opcode causes the sqlite3_step() call to terminate
|
|
** with an SQLITE_ROW return code and it sets up the sqlite3_stmt
|
|
** structure to provide access to the r(P1)..r(P1+P2-1) values as
|
|
** the result row.
|
|
*/
|
|
_25:
|
|
;
|
|
(*TVdbe)(unsafe.Pointer(p)).FcacheCtr = (*TVdbe)(unsafe.Pointer(p)).FcacheCtr + uint32(2) | uint32(1)
|
|
(*TVdbe)(unsafe.Pointer(p)).FpResultRow = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
goto no_mem
|
|
}
|
|
if libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FmTrace)&int32(SQLITE_TRACE_ROW) != 0 {
|
|
(*(*func(*libc.TLS, Tu32, uintptr, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{*(*uintptr)(unsafe.Pointer(&(*Tsqlite3)(unsafe.Pointer(db)).Ftrace))})))(tls, uint32(SQLITE_TRACE_ROW), (*Tsqlite3)(unsafe.Pointer(db)).FpTraceArg, p, uintptr(0))
|
|
}
|
|
(*TVdbe)(unsafe.Pointer(p)).Fpc = int32((int64(pOp)-int64(aOp))/24) + int32(1)
|
|
rc = int32(SQLITE_ROW)
|
|
goto vdbe_return
|
|
/* Opcode: Concat P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P2]+r[P1]
|
|
**
|
|
** Add the text in register P1 onto the end of the text in
|
|
** register P2 and store the result in register P3.
|
|
** If either the P1 or P2 text are NULL then store NULL in P3.
|
|
**
|
|
** P3 = P2 || P1
|
|
**
|
|
** It is illegal for P1 and P3 to be the same register. Sometimes,
|
|
** if P3 is the same register as P2, the implementation is able
|
|
** to avoid a memcpy().
|
|
*/
|
|
_26:
|
|
; /* Initial flags for P2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
flags1 = (*TMem)(unsafe.Pointer(pIn1)).Fflags
|
|
if (libc.Int32FromUint16(flags1)|libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn2)).Fflags))&int32(MEM_Null) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
goto _189
|
|
}
|
|
if libc.Int32FromUint16(flags1)&(libc.Int32FromInt32(MEM_Str)|libc.Int32FromInt32(MEM_Blob)) == 0 {
|
|
if _sqlite3VdbeMemStringify(tls, pIn1, encoding, uint8(0)) != 0 {
|
|
goto no_mem
|
|
}
|
|
flags1 = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags) & ^libc.Int32FromInt32(MEM_Str))
|
|
} else {
|
|
if libc.Int32FromUint16(flags1)&int32(MEM_Zero) != 0 {
|
|
if _sqlite3VdbeMemExpandBlob(tls, pIn1) != 0 {
|
|
goto no_mem
|
|
}
|
|
flags1 = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags) & ^libc.Int32FromInt32(MEM_Str))
|
|
}
|
|
}
|
|
flags2 = (*TMem)(unsafe.Pointer(pIn2)).Fflags
|
|
if libc.Int32FromUint16(flags2)&(libc.Int32FromInt32(MEM_Str)|libc.Int32FromInt32(MEM_Blob)) == 0 {
|
|
if _sqlite3VdbeMemStringify(tls, pIn2, encoding, uint8(0)) != 0 {
|
|
goto no_mem
|
|
}
|
|
flags2 = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn2)).Fflags) & ^libc.Int32FromInt32(MEM_Str))
|
|
} else {
|
|
if libc.Int32FromUint16(flags2)&int32(MEM_Zero) != 0 {
|
|
if _sqlite3VdbeMemExpandBlob(tls, pIn2) != 0 {
|
|
goto no_mem
|
|
}
|
|
flags2 = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn2)).Fflags) & ^libc.Int32FromInt32(MEM_Str))
|
|
}
|
|
}
|
|
nByte = int64((*TMem)(unsafe.Pointer(pIn1)).Fn)
|
|
nByte = nByte + int64((*TMem)(unsafe.Pointer(pIn2)).Fn)
|
|
if nByte > int64(**(**int32)(__ccgo_up(db + 136))) {
|
|
goto too_big
|
|
}
|
|
if _sqlite3VdbeMemGrow(tls, pOut, int32(nByte)+int32(2), libc.BoolInt32(pOut == pIn2)) != 0 {
|
|
goto no_mem
|
|
}
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Str))
|
|
if pOut != pIn2 {
|
|
libc.Xmemcpy(tls, (*TMem)(unsafe.Pointer(pOut)).Fz, (*TMem)(unsafe.Pointer(pIn2)).Fz, libc.Uint64FromInt32((*TMem)(unsafe.Pointer(pIn2)).Fn))
|
|
(*TMem)(unsafe.Pointer(pIn2)).Fflags = flags2
|
|
}
|
|
libc.Xmemcpy(tls, (*TMem)(unsafe.Pointer(pOut)).Fz+uintptr((*TMem)(unsafe.Pointer(pIn2)).Fn), (*TMem)(unsafe.Pointer(pIn1)).Fz, libc.Uint64FromInt32((*TMem)(unsafe.Pointer(pIn1)).Fn))
|
|
(*TMem)(unsafe.Pointer(pIn1)).Fflags = flags1
|
|
if libc.Int32FromUint8(encoding) > int32(SQLITE_UTF8) {
|
|
nByte = nByte & int64(^libc.Int32FromInt32(1))
|
|
}
|
|
**(**int8)(__ccgo_up((*TMem)(unsafe.Pointer(pOut)).Fz + uintptr(nByte))) = 0
|
|
**(**int8)(__ccgo_up((*TMem)(unsafe.Pointer(pOut)).Fz + uintptr(nByte+int64(1)))) = 0
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Term))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fn = int32(nByte)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fenc = encoding
|
|
goto _189
|
|
/* Opcode: Add P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P1]+r[P2]
|
|
**
|
|
** Add the value in register P1 to the value in register P2
|
|
** and store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: Multiply P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P1]*r[P2]
|
|
**
|
|
**
|
|
** Multiply the value in register P1 by the value in register P2
|
|
** and store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: Subtract P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P2]-r[P1]
|
|
**
|
|
** Subtract the value in register P1 from the value in register P2
|
|
** and store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: Divide P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P2]/r[P1]
|
|
**
|
|
** Divide the value in register P1 by the value in register P2
|
|
** and store the result in register P3 (P3=P2/P1). If the value in
|
|
** register P1 is zero, then the result is NULL. If either input is
|
|
** NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: Remainder P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P2]%r[P1]
|
|
**
|
|
** Compute the remainder after integer register P2 is divided by
|
|
** register P1 and store the result in register P3.
|
|
** If the value in register P1 is zero the result is NULL.
|
|
** If either operand is NULL, the result is NULL.
|
|
*/
|
|
_31:
|
|
; /* same as TK_PLUS, in1, in2, out3 */
|
|
_30:
|
|
; /* same as TK_MINUS, in1, in2, out3 */
|
|
_29:
|
|
; /* same as TK_STAR, in1, in2, out3 */
|
|
_28:
|
|
; /* same as TK_SLASH, in1, in2, out3 */
|
|
_27:
|
|
; /* Real value of right operand */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
type1 = (*TMem)(unsafe.Pointer(pIn1)).Fflags
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
type2 = (*TMem)(unsafe.Pointer(pIn2)).Fflags
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if !(libc.Int32FromUint16(type1)&libc.Int32FromUint16(type2)&int32(MEM_Int) != 0) {
|
|
goto _202
|
|
}
|
|
goto int_math
|
|
int_math:
|
|
;
|
|
iA = *(*Ti64)(unsafe.Pointer(pIn1))
|
|
**(**Ti64)(__ccgo_up(bp)) = *(*Ti64)(unsafe.Pointer(pIn2))
|
|
switch libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) {
|
|
case int32(OP_Add):
|
|
if _sqlite3AddInt64(tls, bp, iA) != 0 {
|
|
goto fp_math
|
|
}
|
|
case int32(OP_Subtract):
|
|
if _sqlite3SubInt64(tls, bp, iA) != 0 {
|
|
goto fp_math
|
|
}
|
|
case int32(OP_Multiply):
|
|
if _sqlite3MulInt64(tls, bp, iA) != 0 {
|
|
goto fp_math
|
|
}
|
|
case int32(OP_Divide):
|
|
if iA == 0 {
|
|
goto arithmetic_result_is_null
|
|
}
|
|
if iA == int64(-int32(1)) && **(**Ti64)(__ccgo_up(bp)) == int64(-libc.Int32FromInt32(1))-(libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)) {
|
|
goto fp_math
|
|
}
|
|
**(**Ti64)(__ccgo_up(bp)) = **(**Ti64)(__ccgo_up(bp)) / iA
|
|
default:
|
|
if iA == 0 {
|
|
goto arithmetic_result_is_null
|
|
}
|
|
if iA == int64(-int32(1)) {
|
|
iA = int64(1)
|
|
}
|
|
**(**Ti64)(__ccgo_up(bp)) = **(**Ti64)(__ccgo_up(bp)) % iA
|
|
break
|
|
}
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Int))
|
|
goto _203
|
|
_202:
|
|
;
|
|
if !((libc.Int32FromUint16(type1)|libc.Int32FromUint16(type2))&int32(MEM_Null) != 0) {
|
|
goto _204
|
|
}
|
|
goto arithmetic_result_is_null
|
|
goto _205
|
|
_204:
|
|
;
|
|
type1 = _numericType(tls, pIn1)
|
|
type2 = _numericType(tls, pIn2)
|
|
if libc.Int32FromUint16(type1)&libc.Int32FromUint16(type2)&int32(MEM_Int) != 0 {
|
|
goto int_math
|
|
}
|
|
goto fp_math
|
|
fp_math:
|
|
;
|
|
rA = _sqlite3VdbeRealValue(tls, pIn1)
|
|
rB = _sqlite3VdbeRealValue(tls, pIn2)
|
|
switch libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) {
|
|
case int32(OP_Add):
|
|
rB = rB + rA
|
|
case int32(OP_Subtract):
|
|
rB = rB - rA
|
|
case int32(OP_Multiply):
|
|
rB = rB * rA
|
|
case int32(OP_Divide):
|
|
/* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */
|
|
if rA == libc.Float64FromInt32(0) {
|
|
goto arithmetic_result_is_null
|
|
}
|
|
rB = rB / rA
|
|
default:
|
|
iA = _sqlite3VdbeIntValue(tls, pIn1)
|
|
**(**Ti64)(__ccgo_up(bp)) = _sqlite3VdbeIntValue(tls, pIn2)
|
|
if iA == 0 {
|
|
goto arithmetic_result_is_null
|
|
}
|
|
if iA == int64(-int32(1)) {
|
|
iA = int64(1)
|
|
}
|
|
rB = float64(**(**Ti64)(__ccgo_up(bp)) % iA)
|
|
break
|
|
}
|
|
if _sqlite3IsNaN(tls, rB) != 0 {
|
|
goto arithmetic_result_is_null
|
|
}
|
|
*(*float64)(unsafe.Pointer(pOut)) = rB
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Real))
|
|
_205:
|
|
;
|
|
_203:
|
|
;
|
|
goto _189
|
|
goto arithmetic_result_is_null
|
|
arithmetic_result_is_null:
|
|
;
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
goto _189
|
|
/* Opcode: CollSeq P1 * * P4
|
|
**
|
|
** P4 is a pointer to a CollSeq object. If the next call to a user function
|
|
** or aggregate calls sqlite3GetFuncCollSeq(), this collation sequence will
|
|
** be returned. This is used by the built-in min(), max() and nullif()
|
|
** functions.
|
|
**
|
|
** If P1 is not zero, then it is a register that a subsequent min() or
|
|
** max() aggregate will set to 1 if the current row is not the minimum or
|
|
** maximum. The P1 register is initialized to 0 by this instruction.
|
|
**
|
|
** The interface used by the implementation of the aforementioned functions
|
|
** to retrieve the collation sequence set by this opcode is not available
|
|
** publicly. Only built-in functions have access to this feature.
|
|
*/
|
|
_32:
|
|
;
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 != 0 {
|
|
_sqlite3VdbeMemSetInt64(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56, 0)
|
|
}
|
|
goto _189
|
|
/* Opcode: BitAnd P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P1]&r[P2]
|
|
**
|
|
** Take the bit-wise AND of the values in register P1 and P2 and
|
|
** store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: BitOr P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P1]|r[P2]
|
|
**
|
|
** Take the bit-wise OR of the values in register P1 and P2 and
|
|
** store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: ShiftLeft P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P2]<<r[P1]
|
|
**
|
|
** Shift the integer value in register P2 to the left by the
|
|
** number of bits specified by the integer in register P1.
|
|
** Store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
/* Opcode: ShiftRight P1 P2 P3 * *
|
|
** Synopsis: r[P3]=r[P2]>>r[P1]
|
|
**
|
|
** Shift the integer value in register P2 to the right by the
|
|
** number of bits specified by the integer in register P1.
|
|
** Store the result in register P3.
|
|
** If either input is NULL, the result is NULL.
|
|
*/
|
|
_36:
|
|
; /* same as TK_BITAND, in1, in2, out3 */
|
|
_35:
|
|
; /* same as TK_BITOR, in1, in2, out3 */
|
|
_34:
|
|
; /* same as TK_LSHIFT, in1, in2, out3 */
|
|
_33:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if (libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)|libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn2)).Fflags))&int32(MEM_Null) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
goto _189
|
|
}
|
|
**(**Ti64)(__ccgo_up(bp + 8)) = _sqlite3VdbeIntValue(tls, pIn2)
|
|
iB1 = _sqlite3VdbeIntValue(tls, pIn1)
|
|
op = (*TOp)(unsafe.Pointer(pOp)).Fopcode
|
|
if libc.Int32FromUint8(op) == int32(OP_BitAnd) {
|
|
**(**Ti64)(__ccgo_up(bp + 8)) = **(**Ti64)(__ccgo_up(bp + 8)) & iB1
|
|
} else {
|
|
if libc.Int32FromUint8(op) == int32(OP_BitOr) {
|
|
**(**Ti64)(__ccgo_up(bp + 8)) = **(**Ti64)(__ccgo_up(bp + 8)) | iB1
|
|
} else {
|
|
if iB1 != 0 {
|
|
/* If shifting by a negative amount, shift in the other direction */
|
|
if iB1 < 0 {
|
|
op = libc.Uint8FromInt32(libc.Int32FromInt32(2)*libc.Int32FromInt32(OP_ShiftLeft) + libc.Int32FromInt32(1) - libc.Int32FromUint8(op))
|
|
if iB1 > int64(-libc.Int32FromInt32(64)) {
|
|
v206 = -iB1
|
|
} else {
|
|
v206 = int64(64)
|
|
}
|
|
iB1 = v206
|
|
}
|
|
if iB1 >= int64(64) {
|
|
if **(**Ti64)(__ccgo_up(bp + 8)) >= 0 || libc.Int32FromUint8(op) == int32(OP_ShiftLeft) {
|
|
v190 = 0
|
|
} else {
|
|
v190 = -int32(1)
|
|
}
|
|
**(**Ti64)(__ccgo_up(bp + 8)) = int64(v190)
|
|
} else {
|
|
libc.Xmemcpy(tls, bp+16, bp+8, uint64(8))
|
|
if libc.Int32FromUint8(op) == int32(OP_ShiftLeft) {
|
|
**(**Tu64)(__ccgo_up(bp + 16)) = **(**Tu64)(__ccgo_up(bp + 16)) << libc.Uint64FromInt64(iB1)
|
|
} else {
|
|
**(**Tu64)(__ccgo_up(bp + 16)) = **(**Tu64)(__ccgo_up(bp + 16)) >> libc.Uint64FromInt64(iB1)
|
|
/* Sign-extend on a right shift of a negative number */
|
|
if **(**Ti64)(__ccgo_up(bp + 8)) < 0 {
|
|
**(**Tu64)(__ccgo_up(bp + 16)) = **(**Tu64)(__ccgo_up(bp + 16)) | (libc.Uint64FromUint32(0xffffffff)<<libc.Int32FromInt32(32)|libc.Uint64FromUint32(0xffffffff))<<(int64(64)-iB1)
|
|
}
|
|
}
|
|
libc.Xmemcpy(tls, bp+8, bp+16, uint64(8))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp + 8))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Int))
|
|
goto _189
|
|
/* Opcode: AddImm P1 P2 * * *
|
|
** Synopsis: r[P1]=r[P1]+P2
|
|
**
|
|
** Add the constant P2 to the value in register P1.
|
|
** The result is always an integer.
|
|
**
|
|
** To force any register to be an integer, just add 0.
|
|
*/
|
|
_37:
|
|
; /* in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
_sqlite3VdbeMemIntegerify(tls, pIn1)
|
|
**(**Tu64)(__ccgo_up(pIn1)) += libc.Uint64FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
goto _189
|
|
/* Opcode: MustBeInt P1 P2 * * *
|
|
**
|
|
** Force the value in register P1 to be an integer. If the value
|
|
** in P1 is not an integer and cannot be converted into an integer
|
|
** without data loss, then jump immediately to P2, or if P2==0
|
|
** raise an SQLITE_MISMATCH exception.
|
|
*/
|
|
_38:
|
|
; /* jump0, in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Int) == 0 {
|
|
_applyAffinity(tls, pIn1, int8(SQLITE_AFF_NUMERIC), encoding)
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Int) == 0 {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 == 0 {
|
|
rc = int32(SQLITE_MISMATCH)
|
|
goto abort_due_to_error
|
|
} else {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
}
|
|
(*TMem)(unsafe.Pointer(pIn1)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Int))
|
|
goto _189
|
|
/* Opcode: RealAffinity P1 * * * *
|
|
**
|
|
** If register P1 holds an integer convert it to a real value.
|
|
**
|
|
** This opcode is used when extracting information from a column that
|
|
** has REAL affinity. Such column values may still be stored as
|
|
** integers, for space efficiency, but after extraction we want them
|
|
** to have only a real value.
|
|
*/
|
|
_39:
|
|
; /* in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)) != 0 {
|
|
_sqlite3VdbeMemRealify(tls, pIn1)
|
|
}
|
|
goto _189
|
|
/* Opcode: Cast P1 P2 * * *
|
|
** Synopsis: affinity(r[P1])
|
|
**
|
|
** Force the value in register P1 to be the type defined by P2.
|
|
**
|
|
** <ul>
|
|
** <li> P2=='A' → BLOB
|
|
** <li> P2=='B' → TEXT
|
|
** <li> P2=='C' → NUMERIC
|
|
** <li> P2=='D' → INTEGER
|
|
** <li> P2=='E' → REAL
|
|
** </ul>
|
|
**
|
|
** A NULL value is not changed by this routine. It remains NULL.
|
|
*/
|
|
_40:
|
|
; /* in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Zero) != 0 {
|
|
v190 = _sqlite3VdbeMemExpandBlob(tls, pIn1)
|
|
} else {
|
|
v190 = 0
|
|
}
|
|
rc = v190
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
rc = _sqlite3VdbeMemCast(tls, pIn1, libc.Uint8FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2), encoding)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: Eq P1 P2 P3 P4 P5
|
|
** Synopsis: IF r[P3]==r[P1]
|
|
**
|
|
** Compare the values in register P1 and P3. If reg(P3)==reg(P1) then
|
|
** jump to address P2.
|
|
**
|
|
** The SQLITE_AFF_MASK portion of P5 must be an affinity character -
|
|
** SQLITE_AFF_TEXT, SQLITE_AFF_INTEGER, and so forth. An attempt is made
|
|
** to coerce both inputs according to this affinity before the
|
|
** comparison is made. If the SQLITE_AFF_MASK is 0x00, then numeric
|
|
** affinity is used. Note that the affinity conversions are stored
|
|
** back into the input registers P1 and P3. So this opcode can cause
|
|
** persistent changes to registers P1 and P3.
|
|
**
|
|
** Once any conversions have taken place, and neither value is NULL,
|
|
** the values are compared. If both values are blobs then memcmp() is
|
|
** used to determine the results of the comparison. If both values
|
|
** are text, then the appropriate collating function specified in
|
|
** P4 is used to do the comparison. If P4 is not specified then
|
|
** memcmp() is used to compare text string. If both values are
|
|
** numeric, then a numeric comparison is used. If the two values
|
|
** are of different types, then numbers are considered less than
|
|
** strings and strings are considered less than blobs.
|
|
**
|
|
** If SQLITE_NULLEQ is set in P5 then the result of comparison is always either
|
|
** true or false and is never NULL. If both operands are NULL then the result
|
|
** of comparison is true. If either operand is NULL then the result is false.
|
|
** If neither operand is NULL the result is the same as it would be if
|
|
** the SQLITE_NULLEQ flag were omitted from P5.
|
|
**
|
|
** This opcode saves the result of comparison for use by the new
|
|
** OP_Jump opcode.
|
|
*/
|
|
/* Opcode: Ne P1 P2 P3 P4 P5
|
|
** Synopsis: IF r[P3]!=r[P1]
|
|
**
|
|
** This works just like the Eq opcode except that the jump is taken if
|
|
** the operands in registers P1 and P3 are not equal. See the Eq opcode for
|
|
** additional information.
|
|
*/
|
|
/* Opcode: Lt P1 P2 P3 P4 P5
|
|
** Synopsis: IF r[P3]<r[P1]
|
|
**
|
|
** Compare the values in register P1 and P3. If reg(P3)<reg(P1) then
|
|
** jump to address P2.
|
|
**
|
|
** If the SQLITE_JUMPIFNULL bit of P5 is set and either reg(P1) or
|
|
** reg(P3) is NULL then the take the jump. If the SQLITE_JUMPIFNULL
|
|
** bit is clear then fall through if either operand is NULL.
|
|
**
|
|
** The SQLITE_AFF_MASK portion of P5 must be an affinity character -
|
|
** SQLITE_AFF_TEXT, SQLITE_AFF_INTEGER, and so forth. An attempt is made
|
|
** to coerce both inputs according to this affinity before the
|
|
** comparison is made. If the SQLITE_AFF_MASK is 0x00, then numeric
|
|
** affinity is used. Note that the affinity conversions are stored
|
|
** back into the input registers P1 and P3. So this opcode can cause
|
|
** persistent changes to registers P1 and P3.
|
|
**
|
|
** Once any conversions have taken place, and neither value is NULL,
|
|
** the values are compared. If both values are blobs then memcmp() is
|
|
** used to determine the results of the comparison. If both values
|
|
** are text, then the appropriate collating function specified in
|
|
** P4 is used to do the comparison. If P4 is not specified then
|
|
** memcmp() is used to compare text string. If both values are
|
|
** numeric, then a numeric comparison is used. If the two values
|
|
** are of different types, then numbers are considered less than
|
|
** strings and strings are considered less than blobs.
|
|
**
|
|
** This opcode saves the result of comparison for use by the new
|
|
** OP_Jump opcode.
|
|
*/
|
|
/* Opcode: Le P1 P2 P3 P4 P5
|
|
** Synopsis: IF r[P3]<=r[P1]
|
|
**
|
|
** This works just like the Lt opcode except that the jump is taken if
|
|
** the content of register P3 is less than or equal to the content of
|
|
** register P1. See the Lt opcode for additional information.
|
|
*/
|
|
/* Opcode: Gt P1 P2 P3 P4 P5
|
|
** Synopsis: IF r[P3]>r[P1]
|
|
**
|
|
** This works just like the Lt opcode except that the jump is taken if
|
|
** the content of register P3 is greater than the content of
|
|
** register P1. See the Lt opcode for additional information.
|
|
*/
|
|
/* Opcode: Ge P1 P2 P3 P4 P5
|
|
** Synopsis: IF r[P3]>=r[P1]
|
|
**
|
|
** This works just like the Lt opcode except that the jump is taken if
|
|
** the content of register P3 is greater than or equal to the content of
|
|
** register P1. See the Lt opcode for additional information.
|
|
*/
|
|
_46:
|
|
; /* same as TK_EQ, jump, in1, in3 */
|
|
_45:
|
|
; /* same as TK_NE, jump, in1, in3 */
|
|
_44:
|
|
; /* same as TK_LT, jump, in1, in3 */
|
|
_43:
|
|
; /* same as TK_LE, jump, in1, in3 */
|
|
_42:
|
|
; /* same as TK_GT, jump, in1, in3 */
|
|
_41:
|
|
; /* Copy of initial value of pIn3->flags */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
flags11 = (*TMem)(unsafe.Pointer(pIn1)).Fflags
|
|
flags3 = (*TMem)(unsafe.Pointer(pIn3)).Fflags
|
|
if libc.Int32FromUint16(flags11)&libc.Int32FromUint16(flags3)&int32(MEM_Int) != 0 {
|
|
/* Common case of comparison of two integers */
|
|
if *(*Ti64)(unsafe.Pointer(pIn3)) > *(*Ti64)(unsafe.Pointer(pIn1)) {
|
|
if **(**uint8)(__ccgo_up(_sqlite3aGTb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fopcode))) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
iCompare = +libc.Int32FromInt32(1)
|
|
} else {
|
|
if *(*Ti64)(unsafe.Pointer(pIn3)) < *(*Ti64)(unsafe.Pointer(pIn1)) {
|
|
if **(**uint8)(__ccgo_up(_sqlite3aLTb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fopcode))) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
iCompare = -int32(1)
|
|
} else {
|
|
if **(**uint8)(__ccgo_up(_sqlite3aEQb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fopcode))) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
iCompare = 0
|
|
}
|
|
}
|
|
goto _189
|
|
}
|
|
if (libc.Int32FromUint16(flags11)|libc.Int32FromUint16(flags3))&int32(MEM_Null) != 0 {
|
|
/* One or both operands are NULL */
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(SQLITE_NULLEQ) != 0 {
|
|
/* If SQLITE_NULLEQ is set (which will only happen if the operator is
|
|
** OP_Eq or OP_Ne) then take the jump or not depending on whether
|
|
** or not both operands are null.
|
|
*/
|
|
if libc.Int32FromUint16(flags11)&libc.Int32FromUint16(flags3)&int32(MEM_Null) != 0 && libc.Int32FromUint16(flags3)&int32(MEM_Cleared) == 0 {
|
|
res = 0 /* Operands are equal */
|
|
} else {
|
|
if libc.Int32FromUint16(flags3)&int32(MEM_Null) != 0 {
|
|
v190 = -int32(1)
|
|
} else {
|
|
v190 = +libc.Int32FromInt32(1)
|
|
}
|
|
res = v190 /* Operands are not equal */
|
|
}
|
|
} else {
|
|
/* SQLITE_NULLEQ is clear and at least one operand is NULL,
|
|
** then the result is always NULL.
|
|
** The jump is taken if the SQLITE_JUMPIFNULL bit is set.
|
|
*/
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(SQLITE_JUMPIFNULL) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
iCompare = int32(1) /* Operands are not equal */
|
|
goto _189
|
|
}
|
|
} else {
|
|
/* Neither operand is NULL and we couldn't do the special high-speed
|
|
** integer comparison case. So do a general-case comparison. */
|
|
affinity = int8(libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) & int32(SQLITE_AFF_MASK))
|
|
if int32(affinity) >= int32(SQLITE_AFF_NUMERIC) {
|
|
if (libc.Int32FromUint16(flags11)|libc.Int32FromUint16(flags3))&int32(MEM_Str) != 0 {
|
|
if libc.Int32FromUint16(flags11)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)|libc.Int32FromInt32(MEM_Real)|libc.Int32FromInt32(MEM_Str)) == int32(MEM_Str) {
|
|
_applyNumericAffinity(tls, pIn1, 0)
|
|
flags3 = (*TMem)(unsafe.Pointer(pIn3)).Fflags
|
|
}
|
|
if libc.Int32FromUint16(flags3)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)|libc.Int32FromInt32(MEM_Real)|libc.Int32FromInt32(MEM_Str)) == int32(MEM_Str) {
|
|
_applyNumericAffinity(tls, pIn3, 0)
|
|
}
|
|
}
|
|
} else {
|
|
if int32(affinity) == int32(SQLITE_AFF_TEXT) && (libc.Int32FromUint16(flags11)|libc.Int32FromUint16(flags3))&int32(MEM_Str) != 0 {
|
|
if libc.Int32FromUint16(flags11)&int32(MEM_Str) != 0 {
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^(libc.Int32FromInt32(MEM_Int) | libc.Int32FromInt32(MEM_Real) | libc.Int32FromInt32(MEM_IntReal)))
|
|
} else {
|
|
if libc.Int32FromUint16(flags11)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_Real)|libc.Int32FromInt32(MEM_IntReal)) != 0 {
|
|
_sqlite3VdbeMemStringify(tls, pIn1, encoding, uint8(1))
|
|
flags11 = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags) & ^libc.Int32FromInt32(MEM_TypeMask) | libc.Int32FromUint16(flags11)&int32(MEM_TypeMask))
|
|
if pIn1 == pIn3 {
|
|
flags3 = libc.Uint16FromInt32(libc.Int32FromUint16(flags11) | int32(MEM_Str))
|
|
}
|
|
}
|
|
}
|
|
if libc.Int32FromUint16(flags3)&int32(MEM_Str) != 0 {
|
|
v191 = pIn3 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^(libc.Int32FromInt32(MEM_Int) | libc.Int32FromInt32(MEM_Real) | libc.Int32FromInt32(MEM_IntReal)))
|
|
} else {
|
|
if libc.Int32FromUint16(flags3)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_Real)|libc.Int32FromInt32(MEM_IntReal)) != 0 {
|
|
_sqlite3VdbeMemStringify(tls, pIn3, encoding, uint8(1))
|
|
flags3 = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn3)).Fflags) & ^libc.Int32FromInt32(MEM_TypeMask) | libc.Int32FromUint16(flags3)&int32(MEM_TypeMask))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
res = _sqlite3MemCompare(tls, pIn3, pIn1, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
}
|
|
/* At this point, res is negative, zero, or positive if reg[P1] is
|
|
** less than, equal to, or greater than reg[P3], respectively. Compute
|
|
** the answer to this operator in res2, depending on what the comparison
|
|
** operator actually is. The next block of code depends on the fact
|
|
** that the 6 comparison operators are consecutive integers in this
|
|
** order: NE, EQ, GT, LE, LT, GE */
|
|
if res < 0 {
|
|
res21 = libc.Int32FromUint8(**(**uint8)(__ccgo_up(_sqlite3aLTb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fopcode))))
|
|
} else {
|
|
if res == 0 {
|
|
res21 = libc.Int32FromUint8(**(**uint8)(__ccgo_up(_sqlite3aEQb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fopcode))))
|
|
} else {
|
|
res21 = libc.Int32FromUint8(**(**uint8)(__ccgo_up(_sqlite3aGTb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fopcode))))
|
|
}
|
|
}
|
|
iCompare = res
|
|
/* Undo any changes made by applyAffinity() to the input registers. */
|
|
(*TMem)(unsafe.Pointer(pIn3)).Fflags = flags3
|
|
(*TMem)(unsafe.Pointer(pIn1)).Fflags = flags11
|
|
if res21 != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: ElseEq * P2 * * *
|
|
**
|
|
** This opcode must follow an OP_Lt or OP_Gt comparison operator. There
|
|
** can be zero or more OP_ReleaseReg opcodes intervening, but no other
|
|
** opcodes are allowed to occur between this instruction and the previous
|
|
** OP_Lt or OP_Gt.
|
|
**
|
|
** If the result of an OP_Eq comparison on the same two operands as
|
|
** the prior OP_Lt or OP_Gt would have been true, then jump to P2. If
|
|
** the result of an OP_Eq comparison on the two previous operands
|
|
** would have been false or NULL, then fall through.
|
|
*/
|
|
_47:
|
|
; /* same as TK_ESCAPE, jump */
|
|
if iCompare == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: Permutation * * * P4 *
|
|
**
|
|
** Set the permutation used by the OP_Compare operator in the next
|
|
** instruction. The permutation is stored in the P4 operand.
|
|
**
|
|
** The permutation is only valid for the next opcode which must be
|
|
** an OP_Compare that has the OPFLAG_PERMUTE bit set in P5.
|
|
**
|
|
** The first integer in the P4 integer array is the length of the array
|
|
** and does not become part of the permutation.
|
|
*/
|
|
_48:
|
|
;
|
|
goto _189
|
|
/* Opcode: Compare P1 P2 P3 P4 P5
|
|
** Synopsis: r[P1@P3] <-> r[P2@P3]
|
|
**
|
|
** Compare two vectors of registers in reg(P1)..reg(P1+P3-1) (call this
|
|
** vector "A") and in reg(P2)..reg(P2+P3-1) ("B"). Save the result of
|
|
** the comparison for use by the next OP_Jump instruct.
|
|
**
|
|
** If P5 has the OPFLAG_PERMUTE bit set, then the order of comparison is
|
|
** determined by the most recent OP_Permutation operator. If the
|
|
** OPFLAG_PERMUTE bit is clear, then register are compared in sequential
|
|
** order.
|
|
**
|
|
** P4 is a KeyInfo structure that defines collating sequences and sort
|
|
** orders for the comparison. The permutation applies to registers
|
|
** only. The KeyInfo elements are used sequentially.
|
|
**
|
|
** The comparison is a sort comparison, so NULLs compare equal,
|
|
** NULLs are less than numbers, numbers are less than strings,
|
|
** and strings are less than blobs.
|
|
**
|
|
** This opcode must be immediately followed by an OP_Jump opcode.
|
|
*/
|
|
_49:
|
|
; /* The permutation */
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_PERMUTE) == 0 {
|
|
aPermute = uintptr(0)
|
|
} else {
|
|
aPermute = *(*uintptr)(unsafe.Pointer(pOp + uintptr(-libc.Int32FromInt32(1))*24 + 16)) + uintptr(1)*4
|
|
}
|
|
n2 = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
pKeyInfo = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
p11 = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
p21 = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
i = 0
|
|
for {
|
|
if !(i < n2) {
|
|
break
|
|
}
|
|
if aPermute != 0 {
|
|
v213 = **(**Tu32)(__ccgo_up(aPermute + uintptr(i)*4))
|
|
} else {
|
|
v213 = libc.Uint32FromInt32(i)
|
|
}
|
|
idx = v213
|
|
pColl = *(*uintptr)(unsafe.Pointer(pKeyInfo + 32 + uintptr(i)*8))
|
|
bRev = libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TKeyInfo)(unsafe.Pointer(pKeyInfo)).FaSortFlags + uintptr(i)))) & int32(KEYINFO_ORDER_DESC)
|
|
iCompare = _sqlite3MemCompare(tls, aMem+uintptr(libc.Uint32FromInt32(p11)+idx)*56, aMem+uintptr(libc.Uint32FromInt32(p21)+idx)*56, pColl)
|
|
if iCompare != 0 {
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TKeyInfo)(unsafe.Pointer(pKeyInfo)).FaSortFlags + uintptr(i))))&int32(KEYINFO_ORDER_BIGNULL) != 0 && (libc.Int32FromUint16((**(**TMem)(__ccgo_up(aMem + uintptr(libc.Uint32FromInt32(p11)+idx)*56))).Fflags)&int32(MEM_Null) != 0 || libc.Int32FromUint16((**(**TMem)(__ccgo_up(aMem + uintptr(libc.Uint32FromInt32(p21)+idx)*56))).Fflags)&int32(MEM_Null) != 0) {
|
|
iCompare = -iCompare
|
|
}
|
|
if bRev != 0 {
|
|
iCompare = -iCompare
|
|
}
|
|
break
|
|
}
|
|
goto _212
|
|
_212:
|
|
;
|
|
i = i + 1
|
|
}
|
|
goto _189
|
|
/* Opcode: Jump P1 P2 P3 * *
|
|
**
|
|
** Jump to the instruction at address P1, P2, or P3 depending on whether
|
|
** in the most recent OP_Compare instruction the P1 vector was less than,
|
|
** equal to, or greater than the P2 vector, respectively.
|
|
**
|
|
** This opcode must immediately follow an OP_Compare opcode.
|
|
*/
|
|
_50:
|
|
; /* jump */
|
|
if iCompare < 0 {
|
|
pOp = aOp + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1-int32(1))*24
|
|
} else {
|
|
if iCompare == 0 {
|
|
pOp = aOp + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2-int32(1))*24
|
|
} else {
|
|
pOp = aOp + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3-int32(1))*24
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: And P1 P2 P3 * *
|
|
** Synopsis: r[P3]=(r[P1] && r[P2])
|
|
**
|
|
** Take the logical AND of the values in registers P1 and P2 and
|
|
** write the result into register P3.
|
|
**
|
|
** If either P1 or P2 is 0 (false) then the result is 0 even if
|
|
** the other input is NULL. A NULL and true or two NULLs give
|
|
** a NULL output.
|
|
*/
|
|
/* Opcode: Or P1 P2 P3 * *
|
|
** Synopsis: r[P3]=(r[P1] || r[P2])
|
|
**
|
|
** Take the logical OR of the values in register P1 and P2 and
|
|
** store the answer in register P3.
|
|
**
|
|
** If either P1 or P2 is nonzero (true) then the result is 1 (true)
|
|
** even if the other input is NULL. A NULL and false or two NULLs
|
|
** give a NULL output.
|
|
*/
|
|
_52:
|
|
; /* same as TK_AND, in1, in2, out3 */
|
|
_51:
|
|
; /* Right operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */
|
|
v11 = _sqlite3VdbeBooleanValue(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56, int32(2))
|
|
v21 = _sqlite3VdbeBooleanValue(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56, int32(2))
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_And) {
|
|
v11 = libc.Int32FromUint8(_and_logic[v11*int32(3)+v21])
|
|
} else {
|
|
v11 = libc.Int32FromUint8(_or_logic[v11*int32(3)+v21])
|
|
}
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if v11 == int32(2) {
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Null))
|
|
} else {
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = int64(v11)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Int))
|
|
}
|
|
goto _189
|
|
/* Opcode: IsTrue P1 P2 P3 P4 *
|
|
** Synopsis: r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4
|
|
**
|
|
** This opcode implements the IS TRUE, IS FALSE, IS NOT TRUE, and
|
|
** IS NOT FALSE operators.
|
|
**
|
|
** Interpret the value in register P1 as a boolean value. Store that
|
|
** boolean (a 0 or 1) in register P2. Or if the value in register P1 is
|
|
** NULL, then the P3 is stored in register P2. Invert the answer if P4
|
|
** is 1.
|
|
**
|
|
** The logic is summarized like this:
|
|
**
|
|
** <ul>
|
|
** <li> If P3==0 and P4==0 then r[P2] := r[P1] IS TRUE
|
|
** <li> If P3==1 and P4==1 then r[P2] := r[P1] IS FALSE
|
|
** <li> If P3==0 and P4==1 then r[P2] := r[P1] IS NOT TRUE
|
|
** <li> If P3==1 and P4==0 then r[P2] := r[P1] IS NOT FALSE
|
|
** </ul>
|
|
*/
|
|
_53:
|
|
; /* in1, out2 */
|
|
_sqlite3VdbeMemSetInt64(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56, int64(_sqlite3VdbeBooleanValue(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56, (*TOp)(unsafe.Pointer(pOp)).Fp3)^(*TOp)(unsafe.Pointer(pOp)).Fp4.Fi))
|
|
goto _189
|
|
/* Opcode: Not P1 P2 * * *
|
|
** Synopsis: r[P2]= !r[P1]
|
|
**
|
|
** Interpret the value in register P1 as a boolean value. Store the
|
|
** boolean complement in register P2. If the value in register P1 is
|
|
** NULL, then a NULL is stored in P2.
|
|
*/
|
|
_54:
|
|
; /* same as TK_NOT, in1, out2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Null) == 0 {
|
|
_sqlite3VdbeMemSetInt64(tls, pOut, libc.BoolInt64(!(_sqlite3VdbeBooleanValue(tls, pIn1, 0) != 0)))
|
|
} else {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
}
|
|
goto _189
|
|
/* Opcode: BitNot P1 P2 * * *
|
|
** Synopsis: r[P2]= ~r[P1]
|
|
**
|
|
** Interpret the content of register P1 as an integer. Store the
|
|
** ones-complement of the P1 value into register P2. If P1 holds
|
|
** a NULL then store a NULL in P2.
|
|
*/
|
|
_55:
|
|
; /* same as TK_BITNOT, in1, out2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Null) == 0 {
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Int)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = ^_sqlite3VdbeIntValue(tls, pIn1)
|
|
}
|
|
goto _189
|
|
/* Opcode: Once P1 P2 P3 * *
|
|
**
|
|
** Fall through to the next instruction the first time this opcode is
|
|
** encountered on each invocation of the byte-code program. Jump to P2
|
|
** on the second and all subsequent encounters during the same invocation.
|
|
**
|
|
** Top-level programs determine first invocation by comparing the P1
|
|
** operand against the P1 operand on the OP_Init opcode at the beginning
|
|
** of the program. If the P1 values differ, then fall through and make
|
|
** the P1 of this opcode equal to the P1 of OP_Init. If P1 values are
|
|
** the same then take the jump.
|
|
**
|
|
** For subprograms, there is a bitmask in the VdbeFrame that determines
|
|
** whether or not the jump should be taken. The bitmask is necessary
|
|
** because the self-altering code trick does not work for recursive
|
|
** triggers.
|
|
**
|
|
** The P3 operand is not used directly by this opcode. However P3 is
|
|
** used by the code generator as follows: If this opcode is the start
|
|
** of a subroutine and that subroutine uses a Bloom filter, then P3 will
|
|
** be the register that holds that Bloom filter. See tag-202407032019
|
|
** in the source code for implementation details.
|
|
*/
|
|
_56:
|
|
; /* Address of this instruction */
|
|
if (*TVdbe)(unsafe.Pointer(p)).FpFrame != 0 {
|
|
iAddr = libc.Uint32FromInt32(int32((int64(pOp) - int64((*TVdbe)(unsafe.Pointer(p)).FaOp)) / 24))
|
|
if libc.Int32FromUint8(**(**Tu8)(__ccgo_up((*TVdbeFrame)(unsafe.Pointer((*TVdbe)(unsafe.Pointer(p)).FpFrame)).FaOnce + uintptr(iAddr/uint32(8)))))&(int32(1)<<(iAddr&uint32(7))) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
v191 = (*TVdbeFrame)(unsafe.Pointer((*TVdbe)(unsafe.Pointer(p)).FpFrame)).FaOnce + uintptr(iAddr/uint32(8))
|
|
*(*Tu8)(unsafe.Pointer(v191)) = Tu8(int32(*(*Tu8)(unsafe.Pointer(v191))) | libc.Int32FromInt32(1)<<(iAddr&libc.Uint32FromInt32(7)))
|
|
} else {
|
|
if (**(**TOp)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FaOp))).Fp1 == (*TOp)(unsafe.Pointer(pOp)).Fp1 {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp1 = (**(**TOp)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FaOp))).Fp1
|
|
goto _189
|
|
/* Opcode: If P1 P2 P3 * *
|
|
**
|
|
** Jump to P2 if the value in register P1 is true. The value
|
|
** is considered true if it is numeric and non-zero. If the value
|
|
** in P1 is NULL then take the jump if and only if P3 is non-zero.
|
|
*/
|
|
_57:
|
|
;
|
|
c = _sqlite3VdbeBooleanValue(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56, (*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
if c != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: IfNot P1 P2 P3 * *
|
|
**
|
|
** Jump to P2 if the value in register P1 is False. The value
|
|
** is considered false if it has a numeric value of zero. If the value
|
|
** in P1 is NULL then take the jump if and only if P3 is non-zero.
|
|
*/
|
|
_58:
|
|
;
|
|
c1 = libc.BoolInt32(!(_sqlite3VdbeBooleanValue(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56, libc.BoolInt32(!((*TOp)(unsafe.Pointer(pOp)).Fp3 != 0))) != 0))
|
|
if c1 != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: IsNull P1 P2 * * *
|
|
** Synopsis: if r[P1]==NULL goto P2
|
|
**
|
|
** Jump to P2 if the value in register P1 is NULL.
|
|
*/
|
|
_59:
|
|
; /* same as TK_ISNULL, jump, in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Null) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: IsType P1 P2 P3 P4 P5
|
|
** Synopsis: if typeof(P1.P3) in P5 goto P2
|
|
**
|
|
** Jump to P2 if the type of a column in a btree is one of the types specified
|
|
** by the P5 bitmask.
|
|
**
|
|
** P1 is normally a cursor on a btree for which the row decode cache is
|
|
** valid through at least column P3. In other words, there should have been
|
|
** a prior OP_Column for column P3 or greater. If the cursor is not valid,
|
|
** then this opcode might give spurious results.
|
|
** The the btree row has fewer than P3 columns, then use P4 as the
|
|
** datatype.
|
|
**
|
|
** If P1 is -1, then P3 is a register number and the datatype is taken
|
|
** from the value in that register.
|
|
**
|
|
** P5 is a bitmask of data types. SQLITE_INTEGER is the least significant
|
|
** (0x01) bit. SQLITE_FLOAT is the 0x02 bit. SQLITE_TEXT is 0x04.
|
|
** SQLITE_BLOB is 0x08. SQLITE_NULL is 0x10.
|
|
**
|
|
** WARNING: This opcode does not reliably distinguish between NULL and REAL
|
|
** when P1>=0. If the database contains a NaN value, this opcode will think
|
|
** that the datatype is REAL when it should be NULL. When P1<0 and the value
|
|
** is already stored in register P3, then this opcode does reliably
|
|
** distinguish between NULL and REAL. The problem only arises then P1>=0.
|
|
**
|
|
** Take the jump to address P2 if and only if the datatype of the
|
|
** value determined by P1 and P3 corresponds to one of the bits in the
|
|
** P5 bitmask.
|
|
**
|
|
*/
|
|
_60:
|
|
;
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 >= 0 {
|
|
pC = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 < libc.Int32FromUint16((*TVdbeCursor)(unsafe.Pointer(pC)).FnHdrParsed) {
|
|
serialType = *(*Tu32)(unsafe.Pointer(pC + 120 + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*4))
|
|
if serialType >= uint32(12) {
|
|
if serialType&uint32(1) != 0 {
|
|
typeMask = uint16(0x04) /* SQLITE_TEXT */
|
|
} else {
|
|
typeMask = uint16(0x08) /* SQLITE_BLOB */
|
|
}
|
|
} else {
|
|
typeMask = uint16(_aMask[serialType])
|
|
}
|
|
} else {
|
|
typeMask = libc.Uint16FromInt32(int32(1) << ((*TOp)(unsafe.Pointer(pOp)).Fp4.Fi - int32(1)))
|
|
}
|
|
} else {
|
|
typeMask = libc.Uint16FromInt32(int32(1) << (Xsqlite3_value_type(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56) - int32(1)))
|
|
}
|
|
if libc.Int32FromUint16(typeMask)&libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: ZeroOrNull P1 P2 P3 * *
|
|
** Synopsis: r[P2] = 0 OR NULL
|
|
**
|
|
** If both registers P1 and P3 are NOT NULL, then store a zero in
|
|
** register P2. If either registers P1 or P3 are NULL then put
|
|
** a NULL in register P2.
|
|
*/
|
|
_61:
|
|
; /* in1, in2, out2, in3 */
|
|
if libc.Int32FromUint16((**(**TMem)(__ccgo_up(aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56))).Fflags)&int32(MEM_Null) != 0 || libc.Int32FromUint16((**(**TMem)(__ccgo_up(aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56))).Fflags)&int32(MEM_Null) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56)
|
|
} else {
|
|
_sqlite3VdbeMemSetInt64(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56, 0)
|
|
}
|
|
goto _189
|
|
/* Opcode: NotNull P1 P2 * * *
|
|
** Synopsis: if r[P1]!=NULL goto P2
|
|
**
|
|
** Jump to P2 if the value in register P1 is not NULL.
|
|
*/
|
|
_62:
|
|
; /* same as TK_NOTNULL, jump, in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Null) == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: IfNullRow P1 P2 P3 * *
|
|
** Synopsis: if P1.nullRow then r[P3]=NULL, goto P2
|
|
**
|
|
** Check the cursor P1 to see if it is currently pointing at a NULL row.
|
|
** If it is, then set register P3 to NULL and jump immediately to P2.
|
|
** If P1 is not on a NULL row, then fall through without making any
|
|
** changes.
|
|
**
|
|
** If P1 is not an open cursor, then this opcode is a no-op.
|
|
*/
|
|
_63:
|
|
;
|
|
pC1 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if pC1 != 0 && (*TVdbeCursor)(unsafe.Pointer(pC1)).FnullRow != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56)
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: Offset P1 P2 P3 * *
|
|
** Synopsis: r[P3] = sqlite_offset(P1)
|
|
**
|
|
** Store in register r[P3] the byte offset into the database file that is the
|
|
** start of the payload for the record at which that cursor P1 is currently
|
|
** pointing.
|
|
**
|
|
** P2 is the column number for the argument to the sqlite_offset() function.
|
|
** This opcode does not use P2 itself, but the P2 value is used by the
|
|
** code generator. The P1, P2, and P3 operands to this opcode are the
|
|
** same as for OP_Column.
|
|
**
|
|
** This opcode is only available if SQLite is compiled with the
|
|
** -DSQLITE_ENABLE_OFFSET_SQL_FUNC option.
|
|
*/
|
|
_64:
|
|
; /* The VDBE cursor */
|
|
pC2 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pOut = (*TVdbe)(unsafe.Pointer(p)).FaMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if pC2 == uintptr(0) || libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pC2)).FeCurType) != CURTYPE_BTREE {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
} else {
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC2)).FdeferredMoveto != 0 {
|
|
rc = _sqlite3VdbeFinishMoveto(tls, pC2)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
if _sqlite3BtreeEof(tls, *(*uintptr)(unsafe.Pointer(pC2 + 48))) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
} else {
|
|
_sqlite3VdbeMemSetInt64(tls, pOut, _sqlite3BtreeOffset(tls, *(*uintptr)(unsafe.Pointer(pC2 + 48))))
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: Column P1 P2 P3 P4 P5
|
|
** Synopsis: r[P3]=PX cursor P1 column P2
|
|
**
|
|
** Interpret the data that cursor P1 points to as a structure built using
|
|
** the MakeRecord instruction. (See the MakeRecord opcode for additional
|
|
** information about the format of the data.) Extract the P2-th column
|
|
** from this record. If there are less than (P2+1)
|
|
** values in the record, extract a NULL.
|
|
**
|
|
** The value extracted is stored in register P3.
|
|
**
|
|
** If the record contains fewer than P2 fields, then extract a NULL. Or,
|
|
** if the P4 argument is a P4_MEM use the value of the P4 argument as
|
|
** the result.
|
|
**
|
|
** If the OPFLAG_LENGTHARG bit is set in P5 then the result is guaranteed
|
|
** to only be used by the length() function or the equivalent. The content
|
|
** of large blobs is not loaded, thus saving CPU cycles. If the
|
|
** OPFLAG_TYPEOFARG bit is set then the result will only be used by the
|
|
** typeof() function or the IS NULL or IS NOT NULL operators or the
|
|
** equivalent. In this case, all content loading can be omitted.
|
|
*/
|
|
_65:
|
|
; /* PseudoTable input register */
|
|
pC3 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
p22 = libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
goto op_column_restart
|
|
op_column_restart:
|
|
;
|
|
aOffset = (*TVdbeCursor)(unsafe.Pointer(pC3)).FaOffset
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FcacheStatus != (*TVdbe)(unsafe.Pointer(p)).FcacheCtr { /*OPTIMIZATION-IF-FALSE*/
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FnullRow != 0 {
|
|
if libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pC3)).FeCurType) == int32(CURTYPE_PSEUDO) && (*TVdbeCursor)(unsafe.Pointer(pC3)).FseekResult > 0 {
|
|
/* For the special case of as pseudo-cursor, the seekResult field
|
|
** identifies the register that holds the record */
|
|
pReg = aMem + uintptr((*TVdbeCursor)(unsafe.Pointer(pC3)).FseekResult)*56
|
|
v215 = libc.Uint32FromInt32((*TMem)(unsafe.Pointer(pReg)).Fn)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FszRow = v215
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FpayloadSize = v215
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow = (*TMem)(unsafe.Pointer(pReg)).Fz
|
|
} else {
|
|
pDest = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
_sqlite3VdbeMemSetNull(tls, pDest)
|
|
goto op_column_out
|
|
}
|
|
} else {
|
|
pCrsr = *(*uintptr)(unsafe.Pointer(pC3 + 48))
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FdeferredMoveto != 0 {
|
|
if v217 = *(*uintptr)(unsafe.Pointer(pC3 + 16)) != 0; v217 {
|
|
v215 = **(**Tu32)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pC3 + 16)) + uintptr(uint32(1)+p22)*4))
|
|
iMap = v215
|
|
}
|
|
if v217 && v215 > uint32(0) {
|
|
pC3 = (*TVdbeCursor)(unsafe.Pointer(pC3)).FpAltCursor
|
|
p22 = iMap - uint32(1)
|
|
goto op_column_restart
|
|
}
|
|
rc = _sqlite3VdbeFinishMoveto(tls, pC3)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
} else {
|
|
if _sqlite3BtreeCursorHasMoved(tls, pCrsr) != 0 {
|
|
rc = _sqlite3VdbeHandleMovedCursor(tls, pC3)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto op_column_restart
|
|
}
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FpayloadSize = _sqlite3BtreePayloadSize(tls, pCrsr)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow = _sqlite3BtreePayloadFetch(tls, pCrsr, pC3+108)
|
|
/* Maximum page size is 64KiB */
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FcacheStatus = (*TVdbe)(unsafe.Pointer(p)).FcacheCtr
|
|
v215 = uint32(**(**Tu8)(__ccgo_up((*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow)))
|
|
**(**Tu32)(__ccgo_up(aOffset)) = v215
|
|
if v215 < uint32(0x80) {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FiHdrOffset = uint32(1)
|
|
} else {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FiHdrOffset = uint32(_sqlite3GetVarint32(tls, (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow, aOffset))
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FnHdrParsed = uint16(0)
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FszRow < **(**Tu32)(__ccgo_up(aOffset)) { /*OPTIMIZATION-IF-FALSE*/
|
|
/* pC->aRow does not have to hold the entire row, but it does at least
|
|
** need to cover the header of the record. If pC->aRow does not contain
|
|
** the complete header, then set it to zero, forcing the header to be
|
|
** dynamically allocated. */
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow = uintptr(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FszRow = uint32(0)
|
|
/* Make sure a corrupt database has not given us an oversize header.
|
|
** Do this now to avoid an oversize memory allocation.
|
|
**
|
|
** Type entries can be between 1 and 5 bytes each. But 4 and 5 byte
|
|
** types use so much data space that there can only be 4096 and 32 of
|
|
** them, respectively. So the maximum header length results from a
|
|
** 3-byte type for each of the maximum of 32768 columns plus three
|
|
** extra bytes for the header length itself. 32768*3 + 3 = 98307.
|
|
*/
|
|
if **(**Tu32)(__ccgo_up(aOffset)) > uint32(98307) || **(**Tu32)(__ccgo_up(aOffset)) > (*TVdbeCursor)(unsafe.Pointer(pC3)).FpayloadSize {
|
|
goto op_column_corrupt
|
|
}
|
|
} else {
|
|
/* This is an optimization. By skipping over the first few tests
|
|
** (ex: pC->nHdrParsed<=p2) in the next section, we achieve a
|
|
** measurable performance gain.
|
|
**
|
|
** This branch is taken even if aOffset[0]==0. Such a record is never
|
|
** generated by SQLite, and could be considered corruption, but we
|
|
** accept it for historical reasons. When aOffset[0]==0, the code this
|
|
** branch jumps to reads past the end of the record, but never more
|
|
** than a few bytes. Even if the record occurs at the end of the page
|
|
** content area, the "page header" comes after the page content and so
|
|
** this overread is harmless. Similar overreads can occur for a corrupt
|
|
** database file.
|
|
*/
|
|
zData = (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow
|
|
/* Conditional skipped */
|
|
goto op_column_read_header
|
|
}
|
|
} else {
|
|
if _sqlite3BtreeCursorHasMoved(tls, *(*uintptr)(unsafe.Pointer(pC3 + 48))) != 0 {
|
|
rc = _sqlite3VdbeHandleMovedCursor(tls, pC3)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto op_column_restart
|
|
}
|
|
}
|
|
/* Make sure at least the first p2+1 entries of the header have been
|
|
** parsed and valid information is in aOffset[] and pC->aType[].
|
|
*/
|
|
if !(uint32((*TVdbeCursor)(unsafe.Pointer(pC3)).FnHdrParsed) <= p22) {
|
|
goto _219
|
|
}
|
|
/* If there is more header available for parsing in the record, try
|
|
** to extract additional fields up through the p2+1-th field
|
|
*/
|
|
if !((*TVdbeCursor)(unsafe.Pointer(pC3)).FiHdrOffset < **(**Tu32)(__ccgo_up(aOffset))) {
|
|
goto _221
|
|
}
|
|
/* Make sure zData points to enough of the record to cover the header. */
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow == uintptr(0) {
|
|
libc.Xmemset(tls, bp+24, 0, uint64(56))
|
|
rc = _sqlite3VdbeMemFromBtreeZeroOffset(tls, *(*uintptr)(unsafe.Pointer(pC3 + 48)), **(**Tu32)(__ccgo_up(aOffset)), bp+24)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
zData = (**(**TMem)(__ccgo_up(bp + 24))).Fz
|
|
} else {
|
|
zData = (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow
|
|
}
|
|
/* Fill in pC->aType[i] and aOffset[i] values through the p2-th field. */
|
|
goto op_column_read_header
|
|
op_column_read_header:
|
|
;
|
|
i1 = libc.Int32FromUint16((*TVdbeCursor)(unsafe.Pointer(pC3)).FnHdrParsed)
|
|
offset64 = uint64(**(**Tu32)(__ccgo_up(aOffset + uintptr(i1)*4)))
|
|
zHdr = zData + uintptr((*TVdbeCursor)(unsafe.Pointer(pC3)).FiHdrOffset)
|
|
zEndHdr = zData + uintptr(**(**Tu32)(__ccgo_up(aOffset)))
|
|
for cond := true; cond; cond = libc.Uint32FromInt32(i1) <= p22 && zHdr < zEndHdr {
|
|
v216 = uint32(**(**Tu8)(__ccgo_up(zHdr)))
|
|
**(**Tu32)(__ccgo_up(bp + 80)) = v216
|
|
v215 = v216
|
|
*(*Tu32)(unsafe.Pointer(pC3 + 120 + uintptr(i1)*4)) = v215
|
|
if v215 < uint32(0x80) {
|
|
zHdr = zHdr + 1
|
|
offset64 = offset64 + uint64(_sqlite3VdbeOneByteSerialTypeLen(tls, uint8(**(**Tu32)(__ccgo_up(bp + 80)))))
|
|
} else {
|
|
zHdr = zHdr + uintptr(_sqlite3GetVarint32(tls, zHdr, bp+80))
|
|
*(*Tu32)(unsafe.Pointer(pC3 + 120 + uintptr(i1)*4)) = **(**Tu32)(__ccgo_up(bp + 80))
|
|
offset64 = offset64 + uint64(_sqlite3VdbeSerialTypeLen(tls, **(**Tu32)(__ccgo_up(bp + 80))))
|
|
}
|
|
i1 = i1 + 1
|
|
v190 = i1
|
|
**(**Tu32)(__ccgo_up(aOffset + uintptr(v190)*4)) = uint32(offset64 & libc.Uint64FromUint32(0xffffffff))
|
|
}
|
|
/* The record is corrupt if any of the following are true:
|
|
** (1) the bytes of the header extend past the declared header size
|
|
** (2) the entire header was used but not all data was used
|
|
** (3) the end of the data extends beyond the end of the record.
|
|
*/
|
|
if zHdr >= zEndHdr && (zHdr > zEndHdr || offset64 != uint64((*TVdbeCursor)(unsafe.Pointer(pC3)).FpayloadSize)) || offset64 > uint64((*TVdbeCursor)(unsafe.Pointer(pC3)).FpayloadSize) {
|
|
if **(**Tu32)(__ccgo_up(aOffset)) == uint32(0) {
|
|
i1 = 0
|
|
zHdr = zEndHdr
|
|
} else {
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow == uintptr(0) {
|
|
_sqlite3VdbeMemRelease(tls, bp+24)
|
|
}
|
|
goto op_column_corrupt
|
|
}
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FnHdrParsed = libc.Uint16FromInt32(i1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC3)).FiHdrOffset = libc.Uint32FromInt64(int64(zHdr) - int64(zData))
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow == uintptr(0) {
|
|
_sqlite3VdbeMemRelease(tls, bp+24)
|
|
}
|
|
goto _222
|
|
_221:
|
|
;
|
|
**(**Tu32)(__ccgo_up(bp + 80)) = uint32(0)
|
|
_222:
|
|
;
|
|
/* If after trying to extract new entries from the header, nHdrParsed is
|
|
** still not up to p2, that means that the record has fewer than p2
|
|
** columns. So the result will be either the default value or a NULL.
|
|
*/
|
|
if uint32((*TVdbeCursor)(unsafe.Pointer(pC3)).FnHdrParsed) <= p22 {
|
|
pDest = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == -int32(11) {
|
|
_sqlite3VdbeMemShallowCopy(tls, pDest, *(*uintptr)(unsafe.Pointer(pOp + 16)), int32(MEM_Static))
|
|
} else {
|
|
_sqlite3VdbeMemSetNull(tls, pDest)
|
|
}
|
|
goto op_column_out
|
|
}
|
|
goto _220
|
|
_219:
|
|
;
|
|
**(**Tu32)(__ccgo_up(bp + 80)) = *(*Tu32)(unsafe.Pointer(pC3 + 120 + uintptr(p22)*4))
|
|
_220:
|
|
;
|
|
/* Extract the content for the p2+1-th column. Control can only
|
|
** reach this point if aOffset[p2], aOffset[p2+1], and pC->aType[p2] are
|
|
** all valid.
|
|
*/
|
|
pDest = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pDest)).Fflags)&(libc.Int32FromInt32(MEM_Agg)|libc.Int32FromInt32(MEM_Dyn)) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pDest)
|
|
}
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC3)).FszRow >= **(**Tu32)(__ccgo_up(aOffset + uintptr(p22+uint32(1))*4)) {
|
|
/* This is the common case where the desired content fits on the original
|
|
** page - where the content is not on an overflow page */
|
|
zData = (*TVdbeCursor)(unsafe.Pointer(pC3)).FaRow + uintptr(**(**Tu32)(__ccgo_up(aOffset + uintptr(p22)*4)))
|
|
if **(**Tu32)(__ccgo_up(bp + 80)) < uint32(12) {
|
|
_sqlite3VdbeSerialGet(tls, zData, **(**Tu32)(__ccgo_up(bp + 80)), pDest)
|
|
} else {
|
|
v190 = libc.Int32FromUint32((**(**Tu32)(__ccgo_up(bp + 80)) - libc.Uint32FromInt32(12)) / libc.Uint32FromInt32(2))
|
|
len1 = v190
|
|
(*TMem)(unsafe.Pointer(pDest)).Fn = v190
|
|
(*TMem)(unsafe.Pointer(pDest)).Fenc = encoding
|
|
if (*TMem)(unsafe.Pointer(pDest)).FszMalloc < len1+int32(2) {
|
|
if len1 > **(**int32)(__ccgo_up(db + 136)) {
|
|
goto too_big
|
|
}
|
|
(*TMem)(unsafe.Pointer(pDest)).Fflags = uint16(MEM_Null)
|
|
if _sqlite3VdbeMemGrow(tls, pDest, len1+int32(2), 0) != 0 {
|
|
goto no_mem
|
|
}
|
|
} else {
|
|
(*TMem)(unsafe.Pointer(pDest)).Fz = (*TMem)(unsafe.Pointer(pDest)).FzMalloc
|
|
}
|
|
libc.Xmemcpy(tls, (*TMem)(unsafe.Pointer(pDest)).Fz, zData, libc.Uint64FromInt32(len1))
|
|
**(**int8)(__ccgo_up((*TMem)(unsafe.Pointer(pDest)).Fz + uintptr(len1))) = 0
|
|
**(**int8)(__ccgo_up((*TMem)(unsafe.Pointer(pDest)).Fz + uintptr(len1+int32(1)))) = 0
|
|
(*TMem)(unsafe.Pointer(pDest)).Fflags = _aFlag1[**(**Tu32)(__ccgo_up(bp + 80))&uint32(1)]
|
|
}
|
|
} else {
|
|
(*TMem)(unsafe.Pointer(pDest)).Fenc = encoding
|
|
/* This branch happens only when content is on overflow pages */
|
|
v227 = libc.Uint8FromInt32(libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) & libc.Int32FromInt32(OPFLAG_BYTELENARG))
|
|
p5 = v227
|
|
if libc.Int32FromUint8(v227) != 0 && (libc.Int32FromUint8(p5) == int32(OPFLAG_TYPEOFARG) || **(**Tu32)(__ccgo_up(bp + 80)) >= uint32(12) && (**(**Tu32)(__ccgo_up(bp + 80))&uint32(1) == uint32(0) || libc.Int32FromUint8(p5) == int32(OPFLAG_BYTELENARG))) || _sqlite3VdbeSerialTypeLen(tls, **(**Tu32)(__ccgo_up(bp + 80))) == uint32(0) {
|
|
/* Content is irrelevant for
|
|
** 1. the typeof() function,
|
|
** 2. the length(X) function if X is a blob, and
|
|
** 3. if the content length is zero.
|
|
** So we might as well use bogus content rather than reading
|
|
** content from disk.
|
|
**
|
|
** Although sqlite3VdbeSerialGet() may read at most 8 bytes from the
|
|
** buffer passed to it, debugging function VdbeMemPrettyPrint() may
|
|
** read more. Use the global constant sqlite3CtypeMap[] as the array,
|
|
** as that array is 256 bytes long (plenty for VdbeMemPrettyPrint())
|
|
** and it begins with a bunch of zeros.
|
|
*/
|
|
_sqlite3VdbeSerialGet(tls, uintptr(unsafe.Pointer(&_sqlite3CtypeMap)), **(**Tu32)(__ccgo_up(bp + 80)), pDest)
|
|
} else {
|
|
rc = _vdbeColumnFromOverflow(tls, pC3, libc.Int32FromUint32(p22), **(**Tu32)(__ccgo_up(bp + 80)), libc.Int64FromUint32(**(**Tu32)(__ccgo_up(aOffset + uintptr(p22)*4))), (*TVdbe)(unsafe.Pointer(p)).FcacheCtr, colCacheCtr, pDest)
|
|
if rc != 0 {
|
|
if rc == int32(SQLITE_NOMEM) {
|
|
goto no_mem
|
|
}
|
|
if rc == int32(SQLITE_TOOBIG) {
|
|
goto too_big
|
|
}
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
}
|
|
goto op_column_out
|
|
op_column_out:
|
|
;
|
|
goto _189
|
|
goto op_column_corrupt
|
|
op_column_corrupt:
|
|
;
|
|
if (**(**TOp)(__ccgo_up(aOp))).Fp3 > 0 {
|
|
pOp = aOp + uintptr((**(**TOp)(__ccgo_up(aOp))).Fp3-int32(1))*24
|
|
goto _189
|
|
} else {
|
|
rc = _sqlite3CorruptError(tls, int32(99872))
|
|
goto abort_due_to_error
|
|
}
|
|
/* Opcode: TypeCheck P1 P2 P3 P4 *
|
|
** Synopsis: typecheck(r[P1@P2])
|
|
**
|
|
** Apply affinities to the range of P2 registers beginning with P1.
|
|
** Take the affinities from the Table object in P4. If any value
|
|
** cannot be coerced into the correct type, then raise an error.
|
|
**
|
|
** If P3==0, then omit checking of VIRTUAL columns.
|
|
**
|
|
** If P3==1, then omit checking of all generated column, both VIRTUAL
|
|
** and STORED.
|
|
**
|
|
** If P3>=2, then only check column number P3-2 in the table (which will
|
|
** be a VIRTUAL column) against the value in reg[P1]. In this case,
|
|
** P2 will be 1.
|
|
**
|
|
** This opcode is similar to OP_Affinity except that this opcode
|
|
** forces the register type to the Table column type. This is used
|
|
** to implement "strict affinity".
|
|
**
|
|
** GENERATED ALWAYS AS ... STATIC columns are only checked if P3
|
|
** is zero. When P3 is non-zero, no type checking occurs for
|
|
** static generated columns. Virtual columns are computed at query time
|
|
** and so they are never checked.
|
|
**
|
|
** Preconditions:
|
|
**
|
|
** <ul>
|
|
** <li> P2 should be the number of non-virtual columns in the
|
|
** table of P4 unless P3>1, in which case P2 will be 1.
|
|
** <li> Table P4 is a STRICT table.
|
|
** </ul>
|
|
**
|
|
** If any precondition is false, an assertion fault occurs.
|
|
*/
|
|
_66:
|
|
;
|
|
pTab = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
aCol = (*TTable)(unsafe.Pointer(pTab)).FaCol
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 < int32(2) {
|
|
i2 = 0
|
|
nCol = int32((*TTable)(unsafe.Pointer(pTab)).FnCol)
|
|
} else {
|
|
i2 = (*TOp)(unsafe.Pointer(pOp)).Fp3 - int32(2)
|
|
nCol = i2 + int32(1)
|
|
}
|
|
for {
|
|
if !(i2 < nCol) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up(aCol + uintptr(i2)*16))).FcolFlags)&int32(COLFLAG_GENERATED) != 0 && (*TOp)(unsafe.Pointer(pOp)).Fp3 < int32(2) {
|
|
if libc.Int32FromUint16((**(**TColumn)(__ccgo_up(aCol + uintptr(i2)*16))).FcolFlags)&int32(COLFLAG_VIRTUAL) != 0 {
|
|
goto _228
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
pIn1 += 56
|
|
goto _228
|
|
}
|
|
}
|
|
_applyAffinity(tls, pIn1, (**(**TColumn)(__ccgo_up(aCol + uintptr(i2)*16))).Faffinity, encoding)
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Null) == 0 {
|
|
switch int32(uint32(*(*uint8)(unsafe.Pointer(aCol + uintptr(i2)*16 + 8)) & 0xf0 >> 4)) {
|
|
case int32(COLTYPE_BLOB):
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Blob) == 0 {
|
|
goto vdbe_type_error
|
|
}
|
|
case int32(COLTYPE_INTEGER):
|
|
fallthrough
|
|
case int32(COLTYPE_INT):
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Int) == 0 {
|
|
goto vdbe_type_error
|
|
}
|
|
case int32(COLTYPE_TEXT):
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Str) == 0 {
|
|
goto vdbe_type_error
|
|
}
|
|
case int32(COLTYPE_REAL):
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Int) != 0 {
|
|
/* When applying REAL affinity, if the result is still an MEM_Int
|
|
** that will fit in 6 bytes, then change the type to MEM_IntReal
|
|
** so that we keep the high-resolution integer value but know that
|
|
** the type really wants to be REAL. */
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) <= int64(140737488355327) && *(*Ti64)(unsafe.Pointer(pIn1)) >= -int64(140737488355328) {
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_IntReal))
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Int))
|
|
} else {
|
|
*(*float64)(unsafe.Pointer(pIn1)) = float64(*(*Ti64)(unsafe.Pointer(pIn1)))
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Real))
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Int))
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&(libc.Int32FromInt32(MEM_Real)|libc.Int32FromInt32(MEM_IntReal)) == 0 {
|
|
goto vdbe_type_error
|
|
}
|
|
}
|
|
default:
|
|
/* COLTYPE_ANY. Accept anything. */
|
|
break
|
|
}
|
|
}
|
|
pIn1 += 56
|
|
goto _228
|
|
_228:
|
|
;
|
|
i2 = i2 + 1
|
|
}
|
|
goto _189
|
|
goto vdbe_type_error
|
|
vdbe_type_error:
|
|
;
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+5888, libc.VaList(bp+984, _vdbeMemTypeName(tls, pIn1), _sqlite3StdType[int32(uint32(*(*uint8)(unsafe.Pointer(aCol + uintptr(i2)*16 + 8))&0xf0>>4))-int32(1)], (*TTable)(unsafe.Pointer(pTab)).FzName, (**(**TColumn)(__ccgo_up(aCol + uintptr(i2)*16))).FzCnName))
|
|
rc = libc.Int32FromInt32(SQLITE_CONSTRAINT) | libc.Int32FromInt32(12)<<libc.Int32FromInt32(8)
|
|
goto abort_due_to_error
|
|
/* Opcode: Affinity P1 P2 * P4 *
|
|
** Synopsis: affinity(r[P1@P2])
|
|
**
|
|
** Apply affinities to a range of P2 registers starting with P1.
|
|
**
|
|
** P4 is a string that is P2 characters long. The N-th character of the
|
|
** string indicates the column affinity that should be used for the N-th
|
|
** memory cell in the range.
|
|
*/
|
|
_67:
|
|
; /* The affinity to be applied */
|
|
zAffinity = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
for int32(1) != 0 {
|
|
_applyAffinity(tls, pIn1, **(**int8)(__ccgo_up(zAffinity)), encoding)
|
|
if int32(**(**int8)(__ccgo_up(zAffinity))) == int32(SQLITE_AFF_REAL) && libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Int) != 0 {
|
|
/* When applying REAL affinity, if the result is still an MEM_Int
|
|
** that will fit in 6 bytes, then change the type to MEM_IntReal
|
|
** so that we keep the high-resolution integer value but know that
|
|
** the type really wants to be REAL. */
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) <= int64(140737488355327) && *(*Ti64)(unsafe.Pointer(pIn1)) >= -int64(140737488355328) {
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_IntReal))
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Int))
|
|
} else {
|
|
*(*float64)(unsafe.Pointer(pIn1)) = float64(*(*Ti64)(unsafe.Pointer(pIn1)))
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Real))
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^(libc.Int32FromInt32(MEM_Int) | libc.Int32FromInt32(MEM_Str)))
|
|
}
|
|
}
|
|
zAffinity = zAffinity + 1
|
|
if int32(**(**int8)(__ccgo_up(zAffinity))) == 0 {
|
|
break
|
|
}
|
|
pIn1 += 56
|
|
}
|
|
goto _189
|
|
/* Opcode: MakeRecord P1 P2 P3 P4 *
|
|
** Synopsis: r[P3]=mkrec(r[P1@P2])
|
|
**
|
|
** Convert P2 registers beginning with P1 into the [record format]
|
|
** use as a data record in a database table or as a key
|
|
** in an index. The OP_Column opcode can decode the record later.
|
|
**
|
|
** P4 may be a string that is P2 characters long. The N-th character of the
|
|
** string indicates the column affinity that should be used for the N-th
|
|
** field of the index key.
|
|
**
|
|
** The mapping from character to affinity is given by the SQLITE_AFF_
|
|
** macros defined in sqliteInt.h.
|
|
**
|
|
** If P4 is NULL then all index fields have the affinity BLOB.
|
|
**
|
|
** The meaning of P5 depends on whether or not the SQLITE_ENABLE_NULL_TRIM
|
|
** compile-time option is enabled:
|
|
**
|
|
** * If SQLITE_ENABLE_NULL_TRIM is enabled, then the P5 is the index
|
|
** of the right-most table that can be null-trimmed.
|
|
**
|
|
** * If SQLITE_ENABLE_NULL_TRIM is omitted, then P5 has the value
|
|
** OPFLAG_NOCHNG_MAGIC if the OP_MakeRecord opcode is allowed to
|
|
** accept no-change records with serial_type 10. This value is
|
|
** only used inside an assert() and does not affect the end result.
|
|
*/
|
|
_68:
|
|
; /* Where to write next byte of the payload */
|
|
/* Assuming the record contains N fields, the record format looks
|
|
** like this:
|
|
**
|
|
** ------------------------------------------------------------------------
|
|
** | hdr-size | type 0 | type 1 | ... | type N-1 | data0 | ... | data N-1 |
|
|
** ------------------------------------------------------------------------
|
|
**
|
|
** Data(0) is taken from register P1. Data(1) comes from register P1+1
|
|
** and so forth.
|
|
**
|
|
** Each type field is a varint representing the serial type of the
|
|
** corresponding data element (see sqlite3VdbeSerialType()). The
|
|
** hdr-size field is also a varint which is the offset from the beginning
|
|
** of the record to data0.
|
|
*/
|
|
nData = uint64(0) /* Number of bytes of data space */
|
|
nHdr = 0 /* Number of bytes of header space */
|
|
nZero = 0 /* Number of zero bytes at the end of the record */
|
|
nField = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
zAffinity1 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
pData0 = aMem + uintptr(nField)*56
|
|
nField = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
pLast = pData0 + uintptr(nField-int32(1))*56
|
|
/* Identify the output register */
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
/* Apply the requested affinity to all inputs
|
|
*/
|
|
if zAffinity1 != 0 {
|
|
pRec = pData0
|
|
for cond := true; cond; cond = **(**int8)(__ccgo_up(zAffinity1)) != 0 {
|
|
_applyAffinity(tls, pRec, **(**int8)(__ccgo_up(zAffinity1)), encoding)
|
|
if int32(**(**int8)(__ccgo_up(zAffinity1))) == int32(SQLITE_AFF_REAL) && libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&int32(MEM_Int) != 0 {
|
|
v191 = pRec + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_IntReal))
|
|
v191 = pRec + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Int))
|
|
}
|
|
zAffinity1 = zAffinity1 + 1
|
|
pRec += 56
|
|
}
|
|
}
|
|
/* Loop through the elements that will make up the record to figure
|
|
** out how much space is required for the new record. After this loop,
|
|
** the Mem.uTemp field of each term should hold the serial-type that will
|
|
** be used for that term in the generated record:
|
|
**
|
|
** Mem.uTemp value type
|
|
** --------------- ---------------
|
|
** 0 NULL
|
|
** 1 1-byte signed integer
|
|
** 2 2-byte signed integer
|
|
** 3 3-byte signed integer
|
|
** 4 4-byte signed integer
|
|
** 5 6-byte signed integer
|
|
** 6 8-byte signed integer
|
|
** 7 IEEE float
|
|
** 8 Integer constant 0
|
|
** 9 Integer constant 1
|
|
** 10,11 reserved for expansion
|
|
** N>=12 and even BLOB
|
|
** N>=13 and odd text
|
|
**
|
|
** The following additional values are computed:
|
|
** nHdr Number of bytes needed for the record header
|
|
** nData Number of bytes of data space needed for the record
|
|
** nZero Zero bytes at the end of the record
|
|
*/
|
|
pRec = pLast
|
|
for cond := true; cond; cond = int32(1) != 0 {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&int32(MEM_Null) != 0 {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&int32(MEM_Zero) != 0 {
|
|
/* Values with MEM_Null and MEM_Zero are created by xColumn virtual
|
|
** table methods that never invoke sqlite3_result_xxxxx() while
|
|
** computing an unchanging column value in an UPDATE statement.
|
|
** Give such values a special internal-use-only serial-type of 10
|
|
** so that they can be passed through to xUpdate and have
|
|
** a true sqlite3_value_nochange(). */
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(10)
|
|
} else {
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(0)
|
|
}
|
|
nHdr = nHdr + 1
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)) != 0 {
|
|
/* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */
|
|
i3 = *(*Ti64)(unsafe.Pointer(pRec))
|
|
if i3 < 0 {
|
|
uu = libc.Uint64FromInt64(^i3)
|
|
} else {
|
|
uu = libc.Uint64FromInt64(i3)
|
|
}
|
|
nHdr = nHdr + 1
|
|
if uu <= uint64(127) {
|
|
if i3&int64(1) == i3 && libc.Int32FromUint8((*TVdbe)(unsafe.Pointer(p)).FminWriteFileFormat) >= int32(4) {
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(8) + uint32(uu)
|
|
} else {
|
|
nData = nData + 1
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(1)
|
|
}
|
|
} else {
|
|
if uu <= uint64(32767) {
|
|
nData = nData + uint64(2)
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(2)
|
|
} else {
|
|
if uu <= uint64(8388607) {
|
|
nData = nData + uint64(3)
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(3)
|
|
} else {
|
|
if uu <= uint64(2147483647) {
|
|
nData = nData + uint64(4)
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(4)
|
|
} else {
|
|
if uu <= uint64(140737488355327) {
|
|
nData = nData + uint64(6)
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(5)
|
|
} else {
|
|
nData = nData + uint64(8)
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&int32(MEM_IntReal) != 0 {
|
|
/* If the value is IntReal and is going to take up 8 bytes to store
|
|
** as an integer, then we might as well make it an 8-byte floating
|
|
** point value */
|
|
*(*float64)(unsafe.Pointer(pRec)) = float64(*(*Ti64)(unsafe.Pointer(pRec)))
|
|
v191 = pRec + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_IntReal))
|
|
v191 = pRec + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Real))
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(7)
|
|
} else {
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(6)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&int32(MEM_Real) != 0 {
|
|
nHdr = nHdr + 1
|
|
nData = nData + uint64(8)
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = uint32(7)
|
|
} else {
|
|
len11 = libc.Uint32FromInt32((*TMem)(unsafe.Pointer(pRec)).Fn)
|
|
serial_type = len11*uint32(2) + uint32(12) + libc.BoolUint32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&libc.Int32FromInt32(MEM_Str) != libc.Int32FromInt32(0))
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRec)).Fflags)&int32(MEM_Zero) != 0 {
|
|
serial_type = serial_type + libc.Uint32FromInt32(*(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pRec)).Fu)))*uint32(2)
|
|
if nData != 0 {
|
|
if _sqlite3VdbeMemExpandBlob(tls, pRec) != 0 {
|
|
goto no_mem
|
|
}
|
|
len11 = len11 + libc.Uint32FromInt32(*(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pRec)).Fu)))
|
|
} else {
|
|
nZero = nZero + int64(*(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pRec)).Fu)))
|
|
}
|
|
}
|
|
nData = nData + uint64(len11)
|
|
nHdr = nHdr + _sqlite3VarintLen(tls, uint64(serial_type))
|
|
(*TMem)(unsafe.Pointer(pRec)).FuTemp = serial_type
|
|
}
|
|
}
|
|
}
|
|
if pRec == pData0 {
|
|
break
|
|
}
|
|
pRec -= 56
|
|
}
|
|
/* EVIDENCE-OF: R-22564-11647 The header begins with a single varint
|
|
** which determines the total number of bytes in the header. The varint
|
|
** value is the size of the header in bytes including the size varint
|
|
** itself. */
|
|
if nHdr <= int32(126) {
|
|
/* The common case */
|
|
nHdr = nHdr + int32(1)
|
|
} else {
|
|
/* Rare case of a really large header */
|
|
nVarint = _sqlite3VarintLen(tls, libc.Uint64FromInt32(nHdr))
|
|
nHdr = nHdr + nVarint
|
|
if nVarint < _sqlite3VarintLen(tls, libc.Uint64FromInt32(nHdr)) {
|
|
nHdr = nHdr + 1
|
|
}
|
|
}
|
|
nByte1 = libc.Int64FromUint64(libc.Uint64FromInt32(nHdr) + nData)
|
|
/* Make sure the output register has a buffer large enough to store
|
|
** the new record. The output register (pOp->p3) is not allowed to
|
|
** be one of the input registers (because the following call to
|
|
** sqlite3VdbeMemClearAndResize() could clobber the value before it is used).
|
|
*/
|
|
if nByte1+nZero <= int64((*TMem)(unsafe.Pointer(pOut)).FszMalloc) {
|
|
/* The output register is already large enough to hold the record.
|
|
** No error checks or buffer enlargement is required */
|
|
(*TMem)(unsafe.Pointer(pOut)).Fz = (*TMem)(unsafe.Pointer(pOut)).FzMalloc
|
|
} else {
|
|
/* Need to make sure that the output is not too big and then enlarge
|
|
** the output register to hold the full result */
|
|
if nByte1+nZero > int64(**(**int32)(__ccgo_up(db + 136))) {
|
|
goto too_big
|
|
}
|
|
if _sqlite3VdbeMemClearAndResize(tls, pOut, int32(nByte1)) != 0 {
|
|
goto no_mem
|
|
}
|
|
}
|
|
(*TMem)(unsafe.Pointer(pOut)).Fn = int32(nByte1)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Blob)
|
|
if nZero != 0 {
|
|
*(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pOut)).Fu)) = int32(nZero)
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Zero))
|
|
}
|
|
zHdr1 = (*TMem)(unsafe.Pointer(pOut)).Fz
|
|
zPayload = zHdr1 + uintptr(nHdr)
|
|
/* Write the record */
|
|
if nHdr < int32(0x80) {
|
|
v191 = zHdr1
|
|
zHdr1 = zHdr1 + 1
|
|
**(**Tu8)(__ccgo_up(v191)) = libc.Uint8FromInt32(nHdr)
|
|
} else {
|
|
zHdr1 = zHdr1 + uintptr(_sqlite3PutVarint(tls, zHdr1, libc.Uint64FromInt32(nHdr)))
|
|
}
|
|
pRec = pData0
|
|
for int32(1) != 0 {
|
|
serial_type = (*TMem)(unsafe.Pointer(pRec)).FuTemp
|
|
/* EVIDENCE-OF: R-06529-47362 Following the size varint are one or more
|
|
** additional varints, one per column.
|
|
** EVIDENCE-OF: R-64536-51728 The values for each column in the record
|
|
** immediately follow the header. */
|
|
if serial_type <= uint32(7) {
|
|
v191 = zHdr1
|
|
zHdr1 = zHdr1 + 1
|
|
**(**Tu8)(__ccgo_up(v191)) = uint8(serial_type)
|
|
if serial_type == uint32(0) {
|
|
/* NULL value. No change in zPayload */
|
|
} else {
|
|
if serial_type == uint32(7) {
|
|
libc.Xmemcpy(tls, bp+88, pRec, uint64(8))
|
|
} else {
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = libc.Uint64FromInt64(*(*Ti64)(unsafe.Pointer(pRec)))
|
|
}
|
|
len11 = uint32(_sqlite3SmallTypeSizes[serial_type])
|
|
switch len11 {
|
|
default:
|
|
**(**Tu8)(__ccgo_up(zPayload + 7)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
**(**Tu8)(__ccgo_up(zPayload + 6)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
fallthrough
|
|
case uint32(6):
|
|
**(**Tu8)(__ccgo_up(zPayload + 5)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
**(**Tu8)(__ccgo_up(zPayload + 4)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
fallthrough
|
|
case uint32(4):
|
|
**(**Tu8)(__ccgo_up(zPayload + 3)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
fallthrough
|
|
case uint32(3):
|
|
**(**Tu8)(__ccgo_up(zPayload + 2)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
fallthrough
|
|
case uint32(2):
|
|
**(**Tu8)(__ccgo_up(zPayload + 1)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
**(**Tu64)(__ccgo_up(bp + 88)) = **(**Tu64)(__ccgo_up(bp + 88)) >> uint64(8)
|
|
fallthrough
|
|
case uint32(1):
|
|
**(**Tu8)(__ccgo_up(zPayload)) = uint8(**(**Tu64)(__ccgo_up(bp + 88)) & libc.Uint64FromInt32(0xff))
|
|
}
|
|
zPayload = zPayload + uintptr(len11)
|
|
}
|
|
} else {
|
|
if serial_type < uint32(0x80) {
|
|
v191 = zHdr1
|
|
zHdr1 = zHdr1 + 1
|
|
**(**Tu8)(__ccgo_up(v191)) = uint8(serial_type)
|
|
if serial_type >= uint32(14) && (*TMem)(unsafe.Pointer(pRec)).Fn > 0 {
|
|
libc.Xmemcpy(tls, zPayload, (*TMem)(unsafe.Pointer(pRec)).Fz, libc.Uint64FromInt32((*TMem)(unsafe.Pointer(pRec)).Fn))
|
|
zPayload = zPayload + uintptr((*TMem)(unsafe.Pointer(pRec)).Fn)
|
|
}
|
|
} else {
|
|
zHdr1 = zHdr1 + uintptr(_sqlite3PutVarint(tls, zHdr1, uint64(serial_type)))
|
|
if (*TMem)(unsafe.Pointer(pRec)).Fn != 0 {
|
|
libc.Xmemcpy(tls, zPayload, (*TMem)(unsafe.Pointer(pRec)).Fz, libc.Uint64FromInt32((*TMem)(unsafe.Pointer(pRec)).Fn))
|
|
zPayload = zPayload + uintptr((*TMem)(unsafe.Pointer(pRec)).Fn)
|
|
}
|
|
}
|
|
}
|
|
if pRec == pLast {
|
|
break
|
|
}
|
|
pRec += 56
|
|
}
|
|
goto _189
|
|
/* Opcode: Count P1 P2 P3 * *
|
|
** Synopsis: r[P2]=count()
|
|
**
|
|
** Store the number of entries (an integer value) in the table or index
|
|
** opened by cursor P1 in register P2.
|
|
**
|
|
** If P3==0, then an exact count is obtained, which involves visiting
|
|
** every btree page of the table. But if P3 is non-zero, an estimate
|
|
** is returned based on the current cursor position.
|
|
*/
|
|
_69:
|
|
;
|
|
pCrsr1 = *(*uintptr)(unsafe.Pointer(**(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8)) + 48))
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
**(**Ti64)(__ccgo_up(bp + 96)) = _sqlite3BtreeRowCountEst(tls, pCrsr1)
|
|
} else {
|
|
**(**Ti64)(__ccgo_up(bp + 96)) = 0 /* Not needed. Only used to silence a warning. */
|
|
rc = _sqlite3BtreeCount(tls, db, pCrsr1, bp+96)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp + 96))
|
|
goto check_for_interrupt
|
|
/* Opcode: Savepoint P1 * * P4 *
|
|
**
|
|
** Open, release or rollback the savepoint named by parameter P4, depending
|
|
** on the value of P1. To open a new savepoint set P1==0 (SAVEPOINT_BEGIN).
|
|
** To release (commit) an existing savepoint set P1==1 (SAVEPOINT_RELEASE).
|
|
** To rollback an existing savepoint set P1==2 (SAVEPOINT_ROLLBACK).
|
|
*/
|
|
_70:
|
|
;
|
|
p12 = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
zName = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
/* Assert that the p1 parameter is valid. Also that if there is no open
|
|
** transaction, then there cannot be any savepoints.
|
|
*/
|
|
if p12 == SAVEPOINT_BEGIN {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeWrite > 0 {
|
|
/* A new savepoint cannot be created if there are active write
|
|
** statements (i.e. open read/write incremental blob handles).
|
|
*/
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+5929, 0)
|
|
rc = int32(SQLITE_BUSY)
|
|
} else {
|
|
nName = _sqlite3Strlen30(tls, zName)
|
|
/* This call is Ok even if this savepoint is actually a transaction
|
|
** savepoint (and therefore should not prompt xSavepoint()) callbacks.
|
|
** If this is a transaction savepoint being opened, it is guaranteed
|
|
** that the db->aVTrans[] array is empty. */
|
|
rc = _sqlite3VtabSavepoint(tls, db, SAVEPOINT_BEGIN, (*Tsqlite3)(unsafe.Pointer(db)).FnStatement+(*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
/* Create a new savepoint structure. */
|
|
pNew = _sqlite3DbMallocRawNN(tls, db, uint64(uint64(32)+libc.Uint64FromInt32(nName)+uint64(1)))
|
|
if pNew != 0 {
|
|
(*TSavepoint)(unsafe.Pointer(pNew)).FzName = pNew + 1*32
|
|
libc.Xmemcpy(tls, (*TSavepoint)(unsafe.Pointer(pNew)).FzName, zName, libc.Uint64FromInt32(nName+int32(1)))
|
|
/* If there is no open transaction, then mark this as a special
|
|
** "transaction savepoint". */
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FautoCommit != 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = uint8(0)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FisTransactionSavepoint = uint8(1)
|
|
} else {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint = (*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint + 1
|
|
}
|
|
/* Link the new savepoint into the database handle's list. */
|
|
(*TSavepoint)(unsafe.Pointer(pNew)).FpNext = (*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint = pNew
|
|
(*TSavepoint)(unsafe.Pointer(pNew)).FnDeferredCons = (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredCons
|
|
(*TSavepoint)(unsafe.Pointer(pNew)).FnDeferredImmCons = (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredImmCons
|
|
}
|
|
}
|
|
} else {
|
|
iSavepoint = 0
|
|
/* Find the named savepoint. If there is no such savepoint, then an
|
|
** an error is returned to the user. */
|
|
pSavepoint = (*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint
|
|
for {
|
|
if !(pSavepoint != 0 && _sqlite3StrICmp(tls, (*TSavepoint)(unsafe.Pointer(pSavepoint)).FzName, zName) != 0) {
|
|
break
|
|
}
|
|
iSavepoint = iSavepoint + 1
|
|
goto _245
|
|
_245:
|
|
;
|
|
pSavepoint = (*TSavepoint)(unsafe.Pointer(pSavepoint)).FpNext
|
|
}
|
|
if !(pSavepoint != 0) {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+5980, libc.VaList(bp+984, zName))
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeWrite > 0 && p12 == int32(SAVEPOINT_RELEASE) {
|
|
/* It is not possible to release (commit) a savepoint if there are
|
|
** active write statements.
|
|
*/
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+6002, 0)
|
|
rc = int32(SQLITE_BUSY)
|
|
} else {
|
|
/* Determine whether or not this is a transaction savepoint. If so,
|
|
** and this is a RELEASE command, then the current transaction
|
|
** is committed.
|
|
*/
|
|
isTransaction = libc.BoolInt32((*TSavepoint)(unsafe.Pointer(pSavepoint)).FpNext == uintptr(0) && (*Tsqlite3)(unsafe.Pointer(db)).FisTransactionSavepoint != 0)
|
|
if isTransaction != 0 && p12 == int32(SAVEPOINT_RELEASE) {
|
|
v190 = _sqlite3VdbeCheckFkDeferred(tls, p)
|
|
rc = v190
|
|
if v190 != SQLITE_OK {
|
|
goto vdbe_return
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = uint8(1)
|
|
if _sqlite3VdbeHalt(tls, p) == int32(SQLITE_BUSY) {
|
|
(*TVdbe)(unsafe.Pointer(p)).Fpc = int32((int64(pOp) - int64(aOp)) / 24)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = uint8(0)
|
|
v190 = libc.Int32FromInt32(SQLITE_BUSY)
|
|
rc = v190
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = v190
|
|
goto vdbe_return
|
|
}
|
|
rc = (*TVdbe)(unsafe.Pointer(p)).Frc
|
|
if rc != 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = uint8(0)
|
|
} else {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FisTransactionSavepoint = uint8(0)
|
|
}
|
|
} else {
|
|
iSavepoint = (*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint - iSavepoint - int32(1)
|
|
if p12 == int32(SAVEPOINT_ROLLBACK) {
|
|
isSchemaChange = libc.BoolInt32((*Tsqlite3)(unsafe.Pointer(db)).FmDbFlags&uint32(DBFLAG_SchemaChange) != uint32(0))
|
|
ii = 0
|
|
for {
|
|
if !(ii < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
rc = _sqlite3BtreeTripAllCursors(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii)*32))).FpBt, libc.Int32FromInt32(SQLITE_ABORT)|libc.Int32FromInt32(2)<<libc.Int32FromInt32(8), libc.BoolInt32(isSchemaChange == 0))
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _248
|
|
_248:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
} else {
|
|
isSchemaChange = 0
|
|
}
|
|
ii = 0
|
|
for {
|
|
if !(ii < (*Tsqlite3)(unsafe.Pointer(db)).FnDb) {
|
|
break
|
|
}
|
|
rc = _sqlite3BtreeSavepoint(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(ii)*32))).FpBt, p12, iSavepoint)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _249
|
|
_249:
|
|
;
|
|
ii = ii + 1
|
|
}
|
|
if isSchemaChange != 0 {
|
|
_sqlite3ExpirePreparedStatements(tls, db, 0)
|
|
_sqlite3ResetAllSchemasOfConnection(tls, db)
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_SchemaChange)
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
/* Regardless of whether this is a RELEASE or ROLLBACK, destroy all
|
|
** savepoints nested inside of the savepoint being operated on. */
|
|
for (*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint != pSavepoint {
|
|
pTmp = (*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint = (*TSavepoint)(unsafe.Pointer(pTmp)).FpNext
|
|
_sqlite3DbFree(tls, db, pTmp)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint = (*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint - 1
|
|
}
|
|
/* If it is a RELEASE, then destroy the savepoint being operated on
|
|
** too. If it is a ROLLBACK TO, then set the number of deferred
|
|
** constraint violations present in the database to the value stored
|
|
** when the savepoint was created. */
|
|
if p12 == int32(SAVEPOINT_RELEASE) {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpSavepoint = (*TSavepoint)(unsafe.Pointer(pSavepoint)).FpNext
|
|
_sqlite3DbFree(tls, db, pSavepoint)
|
|
if !(isTransaction != 0) {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint = (*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint - 1
|
|
}
|
|
} else {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnDeferredCons = (*TSavepoint)(unsafe.Pointer(pSavepoint)).FnDeferredCons
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnDeferredImmCons = (*TSavepoint)(unsafe.Pointer(pSavepoint)).FnDeferredImmCons
|
|
}
|
|
if !(isTransaction != 0) || p12 == int32(SAVEPOINT_ROLLBACK) {
|
|
rc = _sqlite3VtabSavepoint(tls, db, p12, iSavepoint)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if libc.Int32FromUint8((*TVdbe)(unsafe.Pointer(p)).FeVdbeState) == int32(VDBE_HALT_STATE) {
|
|
rc = int32(SQLITE_DONE)
|
|
goto vdbe_return
|
|
}
|
|
goto _189
|
|
/* Opcode: AutoCommit P1 P2 * * *
|
|
**
|
|
** Set the database auto-commit flag to P1 (1 or 0). If P2 is true, roll
|
|
** back any currently active btree transactions. If there are any active
|
|
** VMs (apart from this one), then a ROLLBACK fails. A COMMIT fails if
|
|
** there are active writing VMs or active VMs that use shared cache.
|
|
**
|
|
** This instruction causes the VM to halt.
|
|
*/
|
|
_71:
|
|
;
|
|
desiredAutoCommit = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
iRollback = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
/* At least this one VM is active */
|
|
if desiredAutoCommit != libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit) {
|
|
if iRollback != 0 {
|
|
_sqlite3RollbackAll(tls, db, libc.Int32FromInt32(SQLITE_ABORT)|libc.Int32FromInt32(2)<<libc.Int32FromInt32(8))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = uint8(1)
|
|
} else {
|
|
if desiredAutoCommit != 0 && (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeWrite > 0 {
|
|
/* If this instruction implements a COMMIT and other VMs are writing
|
|
** return an error indicating that the other VMs must complete first.
|
|
*/
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+6056, 0)
|
|
rc = int32(SQLITE_BUSY)
|
|
goto abort_due_to_error
|
|
} else {
|
|
v190 = _sqlite3VdbeCheckFkDeferred(tls, p)
|
|
rc = v190
|
|
if v190 != SQLITE_OK {
|
|
goto vdbe_return
|
|
} else {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = libc.Uint8FromInt32(desiredAutoCommit)
|
|
}
|
|
}
|
|
}
|
|
if _sqlite3VdbeHalt(tls, p) == int32(SQLITE_BUSY) {
|
|
(*TVdbe)(unsafe.Pointer(p)).Fpc = int32((int64(pOp) - int64(aOp)) / 24)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FautoCommit = libc.Uint8FromInt32(libc.Int32FromInt32(1) - desiredAutoCommit)
|
|
v190 = libc.Int32FromInt32(SQLITE_BUSY)
|
|
rc = v190
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = v190
|
|
goto vdbe_return
|
|
}
|
|
_sqlite3CloseSavepoints(tls, db)
|
|
if (*TVdbe)(unsafe.Pointer(p)).Frc == SQLITE_OK {
|
|
rc = int32(SQLITE_DONE)
|
|
} else {
|
|
rc = int32(SQLITE_ERROR)
|
|
}
|
|
goto vdbe_return
|
|
} else {
|
|
if !(desiredAutoCommit != 0) {
|
|
v191 = __ccgo_ts + 6111
|
|
} else {
|
|
if iRollback != 0 {
|
|
v194 = __ccgo_ts + 6159
|
|
} else {
|
|
v194 = __ccgo_ts + 6202
|
|
}
|
|
v191 = v194
|
|
}
|
|
_sqlite3VdbeError(tls, p, v191, 0)
|
|
rc = int32(SQLITE_ERROR)
|
|
goto abort_due_to_error
|
|
}
|
|
/* Opcode: Transaction P1 P2 P3 P4 P5
|
|
**
|
|
** Begin a transaction on database P1 if a transaction is not already
|
|
** active.
|
|
** If P2 is non-zero, then a write-transaction is started, or if a
|
|
** read-transaction is already active, it is upgraded to a write-transaction.
|
|
** If P2 is zero, then a read-transaction is started. If P2 is 2 or more
|
|
** then an exclusive transaction is started.
|
|
**
|
|
** P1 is the index of the database file on which the transaction is
|
|
** started. Index 0 is the main database file and index 1 is the
|
|
** file used for temporary tables. Indices of 2 or more are used for
|
|
** attached databases.
|
|
**
|
|
** If a write-transaction is started and the Vdbe.usesStmtJournal flag is
|
|
** true (this flag is set if the Vdbe may modify more than one row and may
|
|
** throw an ABORT exception), a statement transaction may also be opened.
|
|
** More specifically, a statement transaction is opened iff the database
|
|
** connection is currently not in autocommit mode, or if there are other
|
|
** active statements. A statement transaction allows the changes made by this
|
|
** VDBE to be rolled back after an error without having to roll back the
|
|
** entire transaction. If no error is encountered, the statement transaction
|
|
** will automatically commit when the VDBE halts.
|
|
**
|
|
** If P5!=0 then this opcode also checks the schema cookie against P3
|
|
** and the schema generation counter against P4.
|
|
** The cookie changes its value whenever the database schema changes.
|
|
** This operation is used to detect when that the cookie has changed
|
|
** and that the current process needs to reread the schema. If the schema
|
|
** cookie in P3 differs from the schema cookie in the database header or
|
|
** if the schema generation counter in P4 differs from the current
|
|
** generation counter, then an SQLITE_SCHEMA error is raised and execution
|
|
** halts. The sqlite3_step() wrapper function might then reprepare the
|
|
** statement and rerun it from the beginning.
|
|
*/
|
|
_72:
|
|
;
|
|
**(**int32)(__ccgo_up(bp + 104)) = 0
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 != 0 && (*Tsqlite3)(unsafe.Pointer(db)).Fflags&(libc.Uint64FromInt32(SQLITE_QueryOnly)|libc.Uint64FromInt32(libc.Int32FromInt32(0x00002))<<libc.Int32FromInt32(32)) != uint64(0) {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_QueryOnly) != 0 {
|
|
/* Writes prohibited by the "PRAGMA query_only=TRUE" statement */
|
|
rc = int32(SQLITE_READONLY)
|
|
} else {
|
|
/* Writes prohibited due to a prior SQLITE_CORRUPT in the current
|
|
** transaction */
|
|
rc = int32(SQLITE_CORRUPT)
|
|
}
|
|
goto abort_due_to_error
|
|
}
|
|
pDb = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32
|
|
pBt = (*TDb)(unsafe.Pointer(pDb)).FpBt
|
|
if pBt != 0 {
|
|
rc = _sqlite3BtreeBeginTrans(tls, pBt, (*TOp)(unsafe.Pointer(pOp)).Fp2, bp+104)
|
|
if rc != SQLITE_OK {
|
|
if rc&int32(0xff) == int32(SQLITE_BUSY) {
|
|
(*TVdbe)(unsafe.Pointer(p)).Fpc = int32((int64(pOp) - int64(aOp)) / 24)
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = rc
|
|
goto vdbe_return
|
|
}
|
|
goto abort_due_to_error
|
|
}
|
|
if int32(Tbft(*(*uint16)(unsafe.Pointer(p + 200))&0x20>>5)) != 0 && (*TOp)(unsafe.Pointer(pOp)).Fp2 != 0 && (libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit) == 0 || (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeRead > int32(1)) {
|
|
if (*TVdbe)(unsafe.Pointer(p)).FiStatement == 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnStatement = (*Tsqlite3)(unsafe.Pointer(db)).FnStatement + 1
|
|
(*TVdbe)(unsafe.Pointer(p)).FiStatement = (*Tsqlite3)(unsafe.Pointer(db)).FnSavepoint + (*Tsqlite3)(unsafe.Pointer(db)).FnStatement
|
|
}
|
|
rc = _sqlite3VtabSavepoint(tls, db, SAVEPOINT_BEGIN, (*TVdbe)(unsafe.Pointer(p)).FiStatement-int32(1))
|
|
if rc == SQLITE_OK {
|
|
rc = _sqlite3BtreeBeginStmt(tls, pBt, (*TVdbe)(unsafe.Pointer(p)).FiStatement)
|
|
}
|
|
/* Store the current value of the database handles deferred constraint
|
|
** counter. If the statement transaction needs to be rolled back,
|
|
** the value of this counter needs to be restored too. */
|
|
(*TVdbe)(unsafe.Pointer(p)).FnStmtDefCons = (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredCons
|
|
(*TVdbe)(unsafe.Pointer(p)).FnStmtDefImmCons = (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredImmCons
|
|
}
|
|
}
|
|
if rc == SQLITE_OK && (*TOp)(unsafe.Pointer(pOp)).Fp5 != 0 && (**(**int32)(__ccgo_up(bp + 104)) != (*TOp)(unsafe.Pointer(pOp)).Fp3 || (*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb)).FpSchema)).FiGeneration != (*TOp)(unsafe.Pointer(pOp)).Fp4.Fi) {
|
|
/*
|
|
** IMPLEMENTATION-OF: R-03189-51135 As each SQL statement runs, the schema
|
|
** version is checked to ensure that the schema has not changed since the
|
|
** SQL statement was prepared.
|
|
*/
|
|
_sqlite3DbFree(tls, db, (*TVdbe)(unsafe.Pointer(p)).FzErrMsg)
|
|
(*TVdbe)(unsafe.Pointer(p)).FzErrMsg = _sqlite3DbStrDup(tls, db, __ccgo_ts+6243)
|
|
/* If the schema-cookie from the database file matches the cookie
|
|
** stored with the in-memory representation of the schema, do
|
|
** not reload the schema from the database file.
|
|
**
|
|
** If virtual-tables are in use, this is not just an optimization.
|
|
** Often, v-tables store their data in other SQLite tables, which
|
|
** are queried from within xNext() and other v-table methods using
|
|
** prepared queries. If such a query is out-of-date, we do not want to
|
|
** discard the database schema, as the user code implementing the
|
|
** v-table would have to be ready for the sqlite3_vtab structure itself
|
|
** to be invalidated whenever sqlite3_step() is called from within
|
|
** a v-table method.
|
|
*/
|
|
if (*TSchema)(unsafe.Pointer((**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32))).FpSchema)).Fschema_cookie != **(**int32)(__ccgo_up(bp + 104)) {
|
|
_sqlite3ResetOneSchema(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1)
|
|
}
|
|
libc.SetBitFieldPtr16Uint32(p+200, libc.Uint32FromInt32(1), 0, 0x3)
|
|
rc = int32(SQLITE_SCHEMA)
|
|
/* Set changeCntOn to 0 to prevent the value returned by sqlite3_changes()
|
|
** from being modified in sqlite3VdbeHalt(). If this statement is
|
|
** reprepared, changeCntOn will be set again. */
|
|
libc.SetBitFieldPtr16Uint32(p+200, libc.Uint32FromInt32(0), 4, 0x10)
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: ReadCookie P1 P2 P3 * *
|
|
**
|
|
** Read cookie number P3 from database P1 and write it into register P2.
|
|
** P3==1 is the schema version. P3==2 is the database format.
|
|
** P3==3 is the recommended pager cache size, and so forth. P1==0 is
|
|
** the main database file and P1==1 is the database file used to store
|
|
** temporary tables.
|
|
**
|
|
** There must be a read-lock on the database (either a transaction
|
|
** must be started or there must be an open cursor) before
|
|
** executing this instruction.
|
|
*/
|
|
_73:
|
|
;
|
|
iDb = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
iCookie = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
_sqlite3BtreeGetMeta(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FpBt, iCookie, bp+108)
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = int64(**(**int32)(__ccgo_up(bp + 108)))
|
|
goto _189
|
|
/* Opcode: SetCookie P1 P2 P3 * P5
|
|
**
|
|
** Write the integer value P3 into cookie number P2 of database P1.
|
|
** P2==1 is the schema version. P2==2 is the database format.
|
|
** P2==3 is the recommended pager cache
|
|
** size, and so forth. P1==0 is the main database file and P1==1 is the
|
|
** database file used to store temporary tables.
|
|
**
|
|
** A transaction must be started before executing this opcode.
|
|
**
|
|
** If P2 is the SCHEMA_VERSION cookie (cookie number 1) then the internal
|
|
** schema version is set to P3-P5. The "PRAGMA schema_version=N" statement
|
|
** has P5 set to 1, so that the internal schema version will be different
|
|
** from the database schema version, resulting in a schema reset.
|
|
*/
|
|
_74:
|
|
;
|
|
pDb1 = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32
|
|
/* See note about index shifting on OP_ReadCookie */
|
|
rc = _sqlite3BtreeUpdateMeta(tls, (*TDb)(unsafe.Pointer(pDb1)).FpBt, (*TOp)(unsafe.Pointer(pOp)).Fp2, libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3))
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 == int32(BTREE_SCHEMA_VERSION) {
|
|
/* When the schema cookie changes, record the new cookie internally */
|
|
**(**Tu32)(__ccgo_up((*TDb)(unsafe.Pointer(pDb1)).FpSchema)) = **(**Tu32)(__ccgo_up(pOp + 12)) - uint32((*TOp)(unsafe.Pointer(pOp)).Fp5)
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_SchemaChange)
|
|
_sqlite3FkClearTriggerCache(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1)
|
|
} else {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 == int32(BTREE_FILE_FORMAT) {
|
|
/* Record changes in the file format */
|
|
(*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb1)).FpSchema)).Ffile_format = libc.Uint8FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
}
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 == int32(1) {
|
|
/* Invalidate all prepared statements whenever the TEMP database
|
|
** schema is changed. Ticket #1644 */
|
|
_sqlite3ExpirePreparedStatements(tls, db, 0)
|
|
libc.SetBitFieldPtr16Uint32(p+200, libc.Uint32FromInt32(0), 0, 0x3)
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: OpenRead P1 P2 P3 P4 P5
|
|
** Synopsis: root=P2 iDb=P3
|
|
**
|
|
** Open a read-only cursor for the database table whose root page is
|
|
** P2 in a database file. The database file is determined by P3.
|
|
** P3==0 means the main database, P3==1 means the database used for
|
|
** temporary tables, and P3>1 means used the corresponding attached
|
|
** database. Give the new cursor an identifier of P1. The P1
|
|
** values need not be contiguous but all P1 values should be small integers.
|
|
** It is an error for P1 to be negative.
|
|
**
|
|
** Allowed P5 bits:
|
|
** <ul>
|
|
** <li> <b>0x02 OPFLAG_SEEKEQ</b>: This cursor will only be used for
|
|
** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT
|
|
** of OP_SeekLE/OP_IdxLT)
|
|
** </ul>
|
|
**
|
|
** The P4 value may be either an integer (P4_INT32) or a pointer to
|
|
** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo
|
|
** object, then table being opened must be an [index b-tree] where the
|
|
** KeyInfo object defines the content and collating
|
|
** sequence of that index b-tree. Otherwise, if P4 is an integer
|
|
** value, then the table being opened must be a [table b-tree] with a
|
|
** number of columns no less than the value of P4.
|
|
**
|
|
** See also: OpenWrite, ReopenIdx
|
|
*/
|
|
/* Opcode: ReopenIdx P1 P2 P3 P4 P5
|
|
** Synopsis: root=P2 iDb=P3
|
|
**
|
|
** The ReopenIdx opcode works like OP_OpenRead except that it first
|
|
** checks to see if the cursor on P1 is already open on the same
|
|
** b-tree and if it is this opcode becomes a no-op. In other words,
|
|
** if the cursor is already open, do not reopen it.
|
|
**
|
|
** The ReopenIdx opcode may only be used with P5==0 or P5==OPFLAG_SEEKEQ
|
|
** and with P4 being a P4_KEYINFO object. Furthermore, the P3 value must
|
|
** be the same as every other ReopenIdx or OpenRead for the same cursor
|
|
** number.
|
|
**
|
|
** Allowed P5 bits:
|
|
** <ul>
|
|
** <li> <b>0x02 OPFLAG_SEEKEQ</b>: This cursor will only be used for
|
|
** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT
|
|
** of OP_SeekLE/OP_IdxLT)
|
|
** </ul>
|
|
**
|
|
** See also: OP_OpenRead, OP_OpenWrite
|
|
*/
|
|
/* Opcode: OpenWrite P1 P2 P3 P4 P5
|
|
** Synopsis: root=P2 iDb=P3
|
|
**
|
|
** Open a read/write cursor named P1 on the table or index whose root
|
|
** page is P2 (or whose root page is held in register P2 if the
|
|
** OPFLAG_P2ISREG bit is set in P5 - see below).
|
|
**
|
|
** The P4 value may be either an integer (P4_INT32) or a pointer to
|
|
** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo
|
|
** object, then table being opened must be an [index b-tree] where the
|
|
** KeyInfo object defines the content and collating
|
|
** sequence of that index b-tree. Otherwise, if P4 is an integer
|
|
** value, then the table being opened must be a [table b-tree] with a
|
|
** number of columns no less than the value of P4.
|
|
**
|
|
** Allowed P5 bits:
|
|
** <ul>
|
|
** <li> <b>0x02 OPFLAG_SEEKEQ</b>: This cursor will only be used for
|
|
** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT
|
|
** of OP_SeekLE/OP_IdxLT)
|
|
** <li> <b>0x08 OPFLAG_FORDELETE</b>: This cursor is used only to seek
|
|
** and subsequently delete entries in an index btree. This is a
|
|
** hint to the storage engine that the storage engine is allowed to
|
|
** ignore. The hint is not used by the official SQLite b*tree storage
|
|
** engine, but is used by COMDB2.
|
|
** <li> <b>0x10 OPFLAG_P2ISREG</b>: Use the content of register P2
|
|
** as the root page, not the value of P2 itself.
|
|
** </ul>
|
|
**
|
|
** This instruction works like OpenRead except that it opens the cursor
|
|
** in read/write mode.
|
|
**
|
|
** See also: OP_OpenRead, OP_ReopenIdx
|
|
*/
|
|
_77:
|
|
;
|
|
pCur = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if pCur != 0 && (*TVdbeCursor)(unsafe.Pointer(pCur)).FpgnoRoot == libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2) {
|
|
/* Guaranteed by the code generator */
|
|
_sqlite3BtreeClearCursor(tls, *(*uintptr)(unsafe.Pointer(pCur + 48)))
|
|
goto open_cursor_set_hints
|
|
}
|
|
/* If the cursor is not currently open or is open on a different
|
|
** index, then fall through into OP_OpenRead to force a reopen */
|
|
_76:
|
|
; /* ncycle */
|
|
_75:
|
|
;
|
|
if int32(Tbft(*(*uint16)(unsafe.Pointer(p + 200))&0x3>>0)) == int32(1) {
|
|
rc = libc.Int32FromInt32(SQLITE_ABORT) | libc.Int32FromInt32(2)<<libc.Int32FromInt32(8)
|
|
goto abort_due_to_error
|
|
}
|
|
nField1 = 0
|
|
pKeyInfo1 = uintptr(0)
|
|
p23 = libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
iDb1 = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
pDb2 = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb1)*32
|
|
pX = (*TDb)(unsafe.Pointer(pDb2)).FpBt
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_OpenWrite) {
|
|
wrFlag = int32(BTREE_WRCSR) | libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_FORDELETE)
|
|
if libc.Int32FromUint8((*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb2)).FpSchema)).Ffile_format) < libc.Int32FromUint8((*TVdbe)(unsafe.Pointer(p)).FminWriteFileFormat) {
|
|
(*TVdbe)(unsafe.Pointer(p)).FminWriteFileFormat = (*TSchema)(unsafe.Pointer((*TDb)(unsafe.Pointer(pDb2)).FpSchema)).Ffile_format
|
|
}
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_P2ISREG) != 0 {
|
|
pIn2 = aMem + uintptr(p23)*56
|
|
_sqlite3VdbeMemIntegerify(tls, pIn2)
|
|
p23 = libc.Uint32FromInt32(int32(*(*Ti64)(unsafe.Pointer(pIn2))))
|
|
/* The p2 value always comes from a prior OP_CreateBtree opcode and
|
|
** that opcode will always set the p2 value to 2 or more or else fail.
|
|
** If there were a failure, the prepared statement would have halted
|
|
** before reaching this instruction. */
|
|
}
|
|
} else {
|
|
wrFlag = 0
|
|
}
|
|
if int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == -int32(9) {
|
|
pKeyInfo1 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
nField1 = libc.Int32FromUint16((*TKeyInfo)(unsafe.Pointer(pKeyInfo1)).FnAllField)
|
|
} else {
|
|
if int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == -int32(3) {
|
|
nField1 = (*TOp)(unsafe.Pointer(pOp)).Fp4.Fi
|
|
}
|
|
}
|
|
/* Table with INTEGER PRIMARY KEY and nothing else */
|
|
pCur = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, nField1, uint8(CURTYPE_BTREE))
|
|
if pCur == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pCur)).FiDb = int8(iDb1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pCur)).FnullRow = uint8(1)
|
|
libc.SetBitFieldPtr8Uint32(pCur+8, libc.Uint32FromInt32(1), 2, 0x4)
|
|
(*TVdbeCursor)(unsafe.Pointer(pCur)).FpgnoRoot = p23
|
|
rc = _sqlite3BtreeCursor(tls, pX, p23, wrFlag, pKeyInfo1, *(*uintptr)(unsafe.Pointer(pCur + 48)))
|
|
(*TVdbeCursor)(unsafe.Pointer(pCur)).FpKeyInfo = pKeyInfo1
|
|
/* Set the VdbeCursor.isTable variable. Previous versions of
|
|
** SQLite used to check if the root-page flags were sane at this point
|
|
** and report database corruption if they were not, but this check has
|
|
** since moved into the btree layer. */
|
|
(*TVdbeCursor)(unsafe.Pointer(pCur)).FisTable = libc.BoolUint8(int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) != -int32(9))
|
|
goto open_cursor_set_hints
|
|
open_cursor_set_hints:
|
|
;
|
|
_sqlite3BtreeCursorHintFlags(tls, *(*uintptr)(unsafe.Pointer(pCur + 48)), libc.Uint32FromInt32(libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&(libc.Int32FromInt32(OPFLAG_BULKCSR)|libc.Int32FromInt32(OPFLAG_SEEKEQ))))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: OpenDup P1 P2 * * *
|
|
**
|
|
** Open a new cursor P1 that points to the same ephemeral table as
|
|
** cursor P2. The P2 cursor must have been opened by a prior OP_OpenEphemeral
|
|
** opcode. Only ephemeral cursors may be duplicated.
|
|
**
|
|
** Duplicate ephemeral cursors are used for self-joins of materialized views.
|
|
*/
|
|
_78:
|
|
; /* The new cursor */
|
|
pOrig = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*8))
|
|
/* Only ephemeral cursors can be duplicated */
|
|
pCx = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, int32((*TVdbeCursor)(unsafe.Pointer(pOrig)).FnField), uint8(CURTYPE_BTREE))
|
|
if pCx == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx)).FnullRow = uint8(1)
|
|
libc.SetBitFieldPtr8Uint32(pCx+8, libc.Uint32FromInt32(1), 0, 0x1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx)).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pOrig)).FpKeyInfo
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx)).FisTable = (*TVdbeCursor)(unsafe.Pointer(pOrig)).FisTable
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx)).FpgnoRoot = (*TVdbeCursor)(unsafe.Pointer(pOrig)).FpgnoRoot
|
|
libc.SetBitFieldPtr8Uint32(pCx+8, libc.Uint32FromInt32(int32(TBool(*(*uint8)(unsafe.Pointer(pOrig + 8))&0x4>>2))), 2, 0x4)
|
|
*(*uintptr)(unsafe.Pointer(pCx + 16)) = *(*uintptr)(unsafe.Pointer(pOrig + 16))
|
|
libc.SetBitFieldPtr8Uint32(pCx+8, libc.Uint32FromInt32(1), 3, 0x8)
|
|
libc.SetBitFieldPtr8Uint32(pOrig+8, libc.Uint32FromInt32(1), 3, 0x8)
|
|
rc = _sqlite3BtreeCursor(tls, *(*uintptr)(unsafe.Pointer(pCx + 16)), (*TVdbeCursor)(unsafe.Pointer(pCx)).FpgnoRoot, int32(BTREE_WRCSR), (*TVdbeCursor)(unsafe.Pointer(pCx)).FpKeyInfo, *(*uintptr)(unsafe.Pointer(pCx + 48)))
|
|
/* The sqlite3BtreeCursor() routine can only fail for the first cursor
|
|
** opened for a database. Since there is already an open cursor when this
|
|
** opcode is run, the sqlite3BtreeCursor() cannot fail */
|
|
goto _189
|
|
/* Opcode: OpenEphemeral P1 P2 P3 P4 P5
|
|
** Synopsis: nColumn=P2
|
|
**
|
|
** Open a new cursor P1 to a transient table.
|
|
** The cursor is always opened read/write even if
|
|
** the main database is read-only. The ephemeral
|
|
** table is deleted automatically when the cursor is closed.
|
|
**
|
|
** If the cursor P1 is already opened on an ephemeral table, the table
|
|
** is cleared (all content is erased).
|
|
**
|
|
** P2 is the number of columns in the ephemeral table.
|
|
** The cursor points to a BTree table if P4==0 and to a BTree index
|
|
** if P4 is not 0. If P4 is not NULL, it points to a KeyInfo structure
|
|
** that defines the format of keys in the index.
|
|
**
|
|
** The P5 parameter can be a mask of the BTREE_* flags defined
|
|
** in btree.h. These flags control aspects of the operation of
|
|
** the btree. The BTREE_OMIT_JOURNAL and BTREE_SINGLE flags are
|
|
** added automatically.
|
|
**
|
|
** If P3 is positive, then reg[P3] is modified slightly so that it
|
|
** can be used as zero-length data for OP_Insert. This is an optimization
|
|
** that avoids an extra OP_Blob opcode to initialize that register.
|
|
*/
|
|
/* Opcode: OpenAutoindex P1 P2 * P4 *
|
|
** Synopsis: nColumn=P2
|
|
**
|
|
** This opcode works the same as OP_OpenEphemeral. It has a
|
|
** different name to distinguish its use. Tables created using
|
|
** by this opcode will be used for automatically created transient
|
|
** indices in joins.
|
|
*/
|
|
_80:
|
|
; /* ncycle */
|
|
_79:
|
|
;
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 > 0 {
|
|
/* Make register reg[P3] into a value that can be used as the data
|
|
** form sqlite3BtreeInsert() where the length of the data is zero. */
|
|
/* Only used when number of columns is zero */
|
|
(**(**TMem)(__ccgo_up(aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56))).Fn = 0
|
|
(**(**TMem)(__ccgo_up(aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56))).Fz = __ccgo_ts + 1704
|
|
}
|
|
pCx1 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if pCx1 != 0 && !(int32(TBool(*(*uint8)(unsafe.Pointer(pCx1 + 8))&0x8>>3)) != 0) && (*TOp)(unsafe.Pointer(pOp)).Fp2 <= int32((*TVdbeCursor)(unsafe.Pointer(pCx1)).FnField) {
|
|
/* If the ephemeral table is already open and has no duplicates from
|
|
** OP_OpenDup, then erase all existing content so that the table is
|
|
** empty again, rather than creating a new table. */
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FseqCount = 0
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FcacheStatus = uint32(CACHE_STALE)
|
|
rc = _sqlite3BtreeClearTable(tls, *(*uintptr)(unsafe.Pointer(pCx1 + 16)), libc.Int32FromUint32((*TVdbeCursor)(unsafe.Pointer(pCx1)).FpgnoRoot), uintptr(0))
|
|
} else {
|
|
pCx1 = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, (*TOp)(unsafe.Pointer(pOp)).Fp2, uint8(CURTYPE_BTREE))
|
|
if pCx1 == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
libc.SetBitFieldPtr8Uint32(pCx1+8, libc.Uint32FromInt32(1), 0, 0x1)
|
|
rc = _sqlite3BtreeOpen(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpVfs, uintptr(0), db, pCx1+16, libc.Int32FromInt32(BTREE_OMIT_JOURNAL)|libc.Int32FromInt32(BTREE_SINGLE)|libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5), _vfsFlags)
|
|
if rc == SQLITE_OK {
|
|
rc = _sqlite3BtreeBeginTrans(tls, *(*uintptr)(unsafe.Pointer(pCx1 + 16)), int32(1), uintptr(0))
|
|
if rc == SQLITE_OK {
|
|
/* If a transient index is required, create it by calling
|
|
** sqlite3BtreeCreateTable() with the BTREE_BLOBKEY flag before
|
|
** opening it. If a transient table is required, just use the
|
|
** automatically created table with root-page 1 (an BLOB_INTKEY table).
|
|
*/
|
|
v194 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
pKeyInfo2 = v194
|
|
v191 = v194
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FpKeyInfo = v191
|
|
if v191 != uintptr(0) {
|
|
rc = _sqlite3BtreeCreateTable(tls, *(*uintptr)(unsafe.Pointer(pCx1 + 16)), pCx1+68, int32(BTREE_BLOBKEY)|libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5))
|
|
if rc == SQLITE_OK {
|
|
rc = _sqlite3BtreeCursor(tls, *(*uintptr)(unsafe.Pointer(pCx1 + 16)), (*TVdbeCursor)(unsafe.Pointer(pCx1)).FpgnoRoot, int32(BTREE_WRCSR), pKeyInfo2, *(*uintptr)(unsafe.Pointer(pCx1 + 48)))
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FisTable = uint8(0)
|
|
} else {
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FpgnoRoot = uint32(SCHEMA_ROOT)
|
|
rc = _sqlite3BtreeCursor(tls, *(*uintptr)(unsafe.Pointer(pCx1 + 16)), uint32(SCHEMA_ROOT), int32(BTREE_WRCSR), uintptr(0), *(*uintptr)(unsafe.Pointer(pCx1 + 48)))
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FisTable = uint8(1)
|
|
}
|
|
}
|
|
libc.SetBitFieldPtr8Uint32(pCx1+8, libc.BoolUint32(libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) != libc.Int32FromInt32(BTREE_UNORDERED)), 2, 0x4)
|
|
if rc != 0 {
|
|
_sqlite3BtreeClose(tls, *(*uintptr)(unsafe.Pointer(pCx1 + 16)))
|
|
**(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8)) = uintptr(0) /* Not required; helps with static analysis */
|
|
} else {
|
|
}
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx1)).FnullRow = uint8(1)
|
|
goto _189
|
|
/* Opcode: SorterOpen P1 P2 P3 P4 *
|
|
**
|
|
** This opcode works like OP_OpenEphemeral except that it opens
|
|
** a transient index that is specifically designed to sort large
|
|
** tables using an external merge-sort algorithm.
|
|
**
|
|
** If argument P3 is non-zero, then it indicates that the sorter may
|
|
** assume that a stable sort considering the first P3 fields of each
|
|
** key is sufficient to produce the required results.
|
|
*/
|
|
_81:
|
|
;
|
|
pCx2 = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, (*TOp)(unsafe.Pointer(pOp)).Fp2, uint8(CURTYPE_SORTER))
|
|
if pCx2 == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx2)).FpKeyInfo = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
rc = _sqlite3VdbeSorterInit(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp3, pCx2)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: SequenceTest P1 P2 * * *
|
|
** Synopsis: if( cursor[P1].ctr++ ) pc = P2
|
|
**
|
|
** P1 is a sorter cursor. If the sequence counter is currently zero, jump
|
|
** to P2. Regardless of whether or not the jump is taken, increment the
|
|
** the sequence value.
|
|
*/
|
|
_82:
|
|
;
|
|
pC4 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
v191 = pC4 + 24
|
|
v256 = *(*Ti64)(unsafe.Pointer(v191))
|
|
*(*Ti64)(unsafe.Pointer(v191)) = *(*Ti64)(unsafe.Pointer(v191)) + 1
|
|
if v256 == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: OpenPseudo P1 P2 P3 * *
|
|
** Synopsis: P3 columns in r[P2]
|
|
**
|
|
** Open a new cursor that points to a fake table that contains a single
|
|
** row of data. The content of that one row is the content of memory
|
|
** register P2. In other words, cursor P1 becomes an alias for the
|
|
** MEM_Blob content contained in register P2.
|
|
**
|
|
** A pseudo-table created by this opcode is used to hold a single
|
|
** row output from the sorter so that the row can be decomposed into
|
|
** individual columns using the OP_Column opcode. The OP_Column opcode
|
|
** is the only cursor opcode that works with a pseudo-table.
|
|
**
|
|
** P3 is the number of fields in the records that will be stored by
|
|
** the pseudo-table. If P2 is 0 or negative then the pseudo-cursor
|
|
** will return NULL for every column.
|
|
*/
|
|
_83:
|
|
;
|
|
pCx3 = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, (*TOp)(unsafe.Pointer(pOp)).Fp3, uint8(CURTYPE_PSEUDO))
|
|
if pCx3 == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx3)).FnullRow = uint8(1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx3)).FseekResult = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
(*TVdbeCursor)(unsafe.Pointer(pCx3)).FisTable = uint8(1)
|
|
/* Give this pseudo-cursor a fake BtCursor pointer so that pCx
|
|
** can be safely passed to sqlite3VdbeCursorMoveto(). This avoids a test
|
|
** for pCx->eCurType==CURTYPE_BTREE inside of sqlite3VdbeCursorMoveto()
|
|
** which is a performance optimization */
|
|
*(*uintptr)(unsafe.Pointer(pCx3 + 48)) = _sqlite3BtreeFakeValidCursor(tls)
|
|
goto _189
|
|
/* Opcode: Close P1 * * * *
|
|
**
|
|
** Close a cursor previously opened as P1. If P1 is not
|
|
** currently open, this instruction is a no-op.
|
|
*/
|
|
_84:
|
|
; /* ncycle */
|
|
_sqlite3VdbeFreeCursor(tls, p, **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8)))
|
|
**(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8)) = uintptr(0)
|
|
goto _189
|
|
/* Opcode: SeekGE P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
|
|
** use the value in register P3 as the key. If cursor P1 refers
|
|
** to an SQL index, then P3 is the first in an array of P4 registers
|
|
** that are used as an unpacked index key.
|
|
**
|
|
** Reposition cursor P1 so that it points to the smallest entry that
|
|
** is greater than or equal to the key value. If there are no records
|
|
** greater than or equal to the key and P2 is not zero, then jump to P2.
|
|
**
|
|
** If the cursor P1 was opened using the OPFLAG_SEEKEQ flag, then this
|
|
** opcode will either land on a record that exactly matches the key, or
|
|
** else it will cause a jump to P2. When the cursor is OPFLAG_SEEKEQ,
|
|
** this opcode must be followed by an IdxLE opcode with the same arguments.
|
|
** The IdxGT opcode will be skipped if this opcode succeeds, but the
|
|
** IdxGT opcode will be used on subsequent loop iterations. The
|
|
** OPFLAG_SEEKEQ flags is a hint to the btree layer to say that this
|
|
** is an equality search.
|
|
**
|
|
** This opcode leaves the cursor configured to move in forward order,
|
|
** from the beginning toward the end. In other words, the cursor is
|
|
** configured to use Next, not Prev.
|
|
**
|
|
** See also: Found, NotFound, SeekLt, SeekGt, SeekLe
|
|
*/
|
|
/* Opcode: SeekGT P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
|
|
** use the value in register P3 as a key. If cursor P1 refers
|
|
** to an SQL index, then P3 is the first in an array of P4 registers
|
|
** that are used as an unpacked index key.
|
|
**
|
|
** Reposition cursor P1 so that it points to the smallest entry that
|
|
** is greater than the key value. If there are no records greater than
|
|
** the key and P2 is not zero, then jump to P2.
|
|
**
|
|
** This opcode leaves the cursor configured to move in forward order,
|
|
** from the beginning toward the end. In other words, the cursor is
|
|
** configured to use Next, not Prev.
|
|
**
|
|
** See also: Found, NotFound, SeekLt, SeekGe, SeekLe
|
|
*/
|
|
/* Opcode: SeekLT P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
|
|
** use the value in register P3 as a key. If cursor P1 refers
|
|
** to an SQL index, then P3 is the first in an array of P4 registers
|
|
** that are used as an unpacked index key.
|
|
**
|
|
** Reposition cursor P1 so that it points to the largest entry that
|
|
** is less than the key value. If there are no records less than
|
|
** the key and P2 is not zero, then jump to P2.
|
|
**
|
|
** This opcode leaves the cursor configured to move in reverse order,
|
|
** from the end toward the beginning. In other words, the cursor is
|
|
** configured to use Prev, not Next.
|
|
**
|
|
** See also: Found, NotFound, SeekGt, SeekGe, SeekLe
|
|
*/
|
|
/* Opcode: SeekLE P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
|
|
** use the value in register P3 as a key. If cursor P1 refers
|
|
** to an SQL index, then P3 is the first in an array of P4 registers
|
|
** that are used as an unpacked index key.
|
|
**
|
|
** Reposition cursor P1 so that it points to the largest entry that
|
|
** is less than or equal to the key value. If there are no records
|
|
** less than or equal to the key and P2 is not zero, then jump to P2.
|
|
**
|
|
** This opcode leaves the cursor configured to move in reverse order,
|
|
** from the end toward the beginning. In other words, the cursor is
|
|
** configured to use Prev, not Next.
|
|
**
|
|
** If the cursor P1 was opened using the OPFLAG_SEEKEQ flag, then this
|
|
** opcode will either land on a record that exactly matches the key, or
|
|
** else it will cause a jump to P2. When the cursor is OPFLAG_SEEKEQ,
|
|
** this opcode must be followed by an IdxLE opcode with the same arguments.
|
|
** The IdxGE opcode will be skipped if this opcode succeeds, but the
|
|
** IdxGE opcode will be used on subsequent loop iterations. The
|
|
** OPFLAG_SEEKEQ flags is a hint to the btree layer to say that this
|
|
** is an equality search.
|
|
**
|
|
** See also: Found, NotFound, SeekGt, SeekGe, SeekLt
|
|
*/
|
|
_88:
|
|
; /* jump0, in3, group, ncycle */
|
|
_87:
|
|
; /* jump0, in3, group, ncycle */
|
|
_86:
|
|
; /* jump0, in3, group, ncycle */
|
|
_85:
|
|
; /* Only interested in == results */
|
|
pC5 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
oc = libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode)
|
|
eqOnly = 0
|
|
(*TVdbeCursor)(unsafe.Pointer(pC5)).FnullRow = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC5)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC5)).FcacheStatus = uint32(CACHE_STALE)
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC5)).FisTable != 0 {
|
|
/* The OPFLAG_SEEKEQ/BTREE_SEEK_EQ flag is only set on index cursors */
|
|
/* The input value in P3 might be of any type: integer, real, string,
|
|
** blob, or NULL. But it needs to be an integer before we can do
|
|
** the seek, so convert it. */
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
flags31 = (*TMem)(unsafe.Pointer(pIn3)).Fflags
|
|
if libc.Int32FromUint16(flags31)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_Real)|libc.Int32FromInt32(MEM_IntReal)|libc.Int32FromInt32(MEM_Str)) == int32(MEM_Str) {
|
|
_applyNumericAffinity(tls, pIn3, 0)
|
|
}
|
|
iKey = _sqlite3VdbeIntValue(tls, pIn3) /* Get the integer key value */
|
|
newType = (*TMem)(unsafe.Pointer(pIn3)).Fflags /* Record the type after applying numeric affinity */
|
|
(*TMem)(unsafe.Pointer(pIn3)).Fflags = flags31 /* But convert the type back to its original */
|
|
/* If the P3 value could not be converted into an integer without
|
|
** loss of information, then special processing is required... */
|
|
if libc.Int32FromUint16(newType)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)) == 0 {
|
|
if libc.Int32FromUint16(newType)&int32(MEM_Real) == 0 {
|
|
if libc.Int32FromUint16(newType)&int32(MEM_Null) != 0 || oc >= int32(OP_SeekGE) {
|
|
goto jump_to_p2
|
|
} else {
|
|
rc = _sqlite3BtreeLast(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)), bp+112)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
goto seek_not_found
|
|
}
|
|
}
|
|
c2 = _sqlite3IntFloatCompare(tls, iKey, *(*float64)(unsafe.Pointer(pIn3)))
|
|
/* If the approximation iKey is larger than the actual real search
|
|
** term, substitute >= for > and < for <=. e.g. if the search term
|
|
** is 4.9 and the integer approximation 5:
|
|
**
|
|
** (x > 4.9) -> (x >= 5)
|
|
** (x <= 4.9) -> (x < 5)
|
|
*/
|
|
if c2 > 0 {
|
|
if oc&int32(0x0001) == libc.Int32FromInt32(OP_SeekGT)&libc.Int32FromInt32(0x0001) {
|
|
oc = oc - 1
|
|
}
|
|
} else {
|
|
if c2 < 0 {
|
|
if oc&int32(0x0001) == libc.Int32FromInt32(OP_SeekLT)&libc.Int32FromInt32(0x0001) {
|
|
oc = oc + 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rc = _sqlite3BtreeTableMoveto(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)), libc.Int64FromUint64(libc.Uint64FromInt64(iKey)), 0, bp+112)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC5)).FmovetoTarget = iKey /* Used by OP_Delete */
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
} else {
|
|
/* For a cursor with the OPFLAG_SEEKEQ/BTREE_SEEK_EQ hint, only the
|
|
** OP_SeekGE and OP_SeekLE opcodes are allowed, and these must be
|
|
** immediately followed by an OP_IdxGT or OP_IdxLT opcode, respectively,
|
|
** with the same key.
|
|
*/
|
|
if _sqlite3BtreeCursorHasHint(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)), uint32(BTREE_SEEK_EQ)) != 0 {
|
|
eqOnly = int32(1)
|
|
}
|
|
nField2 = (*TOp)(unsafe.Pointer(pOp)).Fp4.Fi
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 120))).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pC5)).FpKeyInfo
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 120))).FnField = libc.Uint16FromInt32(nField2)
|
|
/* The next line of code computes as follows, only faster:
|
|
** if( oc==OP_SeekGT || oc==OP_SeekLE ){
|
|
** r.default_rc = -1;
|
|
** }else{
|
|
** r.default_rc = +1;
|
|
** }
|
|
*/
|
|
if int32(1)&(oc-int32(OP_SeekLT)) != 0 {
|
|
v190 = -int32(1)
|
|
} else {
|
|
v190 = +libc.Int32FromInt32(1)
|
|
}
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 120))).Fdefault_rc = int8(v190)
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 120))).FaMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 120))).FeqSeen = uint8(0)
|
|
rc = _sqlite3BtreeIndexMoveto(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)), bp+120, bp+112)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
if eqOnly != 0 && libc.Int32FromUint8((**(**TUnpackedRecord)(__ccgo_up(bp + 120))).FeqSeen) == 0 {
|
|
goto seek_not_found
|
|
}
|
|
}
|
|
if oc >= int32(OP_SeekGE) {
|
|
if **(**int32)(__ccgo_up(bp + 112)) < 0 || **(**int32)(__ccgo_up(bp + 112)) == 0 && oc == int32(OP_SeekGT) {
|
|
**(**int32)(__ccgo_up(bp + 112)) = 0
|
|
rc = _sqlite3BtreeNext(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)), 0)
|
|
if rc != SQLITE_OK {
|
|
if rc == int32(SQLITE_DONE) {
|
|
rc = SQLITE_OK
|
|
**(**int32)(__ccgo_up(bp + 112)) = int32(1)
|
|
} else {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp + 112)) = 0
|
|
}
|
|
} else {
|
|
if **(**int32)(__ccgo_up(bp + 112)) > 0 || **(**int32)(__ccgo_up(bp + 112)) == 0 && oc == int32(OP_SeekLT) {
|
|
**(**int32)(__ccgo_up(bp + 112)) = 0
|
|
rc = _sqlite3BtreePrevious(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)), 0)
|
|
if rc != SQLITE_OK {
|
|
if rc == int32(SQLITE_DONE) {
|
|
rc = SQLITE_OK
|
|
**(**int32)(__ccgo_up(bp + 112)) = int32(1)
|
|
} else {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
} else {
|
|
/* res might be negative because the table is empty. Check to
|
|
** see if this is the case.
|
|
*/
|
|
**(**int32)(__ccgo_up(bp + 112)) = _sqlite3BtreeEof(tls, *(*uintptr)(unsafe.Pointer(pC5 + 48)))
|
|
}
|
|
}
|
|
goto seek_not_found
|
|
seek_not_found:
|
|
;
|
|
if **(**int32)(__ccgo_up(bp + 112)) != 0 {
|
|
goto jump_to_p2
|
|
} else {
|
|
if eqOnly != 0 {
|
|
pOp += 24 /* Skip the OP_IdxLt or OP_IdxGT that follows */
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: SeekScan P1 P2 * * P5
|
|
** Synopsis: Scan-ahead up to P1 rows
|
|
**
|
|
** This opcode is a prefix opcode to OP_SeekGE. In other words, this
|
|
** opcode must be immediately followed by OP_SeekGE. This constraint is
|
|
** checked by assert() statements.
|
|
**
|
|
** This opcode uses the P1 through P4 operands of the subsequent
|
|
** OP_SeekGE. In the text that follows, the operands of the subsequent
|
|
** OP_SeekGE opcode are denoted as SeekOP.P1 through SeekOP.P4. Only
|
|
** the P1, P2 and P5 operands of this opcode are also used, and are called
|
|
** This.P1, This.P2 and This.P5.
|
|
**
|
|
** This opcode helps to optimize IN operators on a multi-column index
|
|
** where the IN operator is on the later terms of the index by avoiding
|
|
** unnecessary seeks on the btree, substituting steps to the next row
|
|
** of the b-tree instead. A correct answer is obtained if this opcode
|
|
** is omitted or is a no-op.
|
|
**
|
|
** The SeekGE.P3 and SeekGE.P4 operands identify an unpacked key which
|
|
** is the desired entry that we want the cursor SeekGE.P1 to be pointing
|
|
** to. Call this SeekGE.P3/P4 row the "target".
|
|
**
|
|
** If the SeekGE.P1 cursor is not currently pointing to a valid row,
|
|
** then this opcode is a no-op and control passes through into the OP_SeekGE.
|
|
**
|
|
** If the SeekGE.P1 cursor is pointing to a valid row, then that row
|
|
** might be the target row, or it might be near and slightly before the
|
|
** target row, or it might be after the target row. If the cursor is
|
|
** currently before the target row, then this opcode attempts to position
|
|
** the cursor on or after the target row by invoking sqlite3BtreeStep()
|
|
** on the cursor between 1 and This.P1 times.
|
|
**
|
|
** The This.P5 parameter is a flag that indicates what to do if the
|
|
** cursor ends up pointing at a valid row that is past the target
|
|
** row. If This.P5 is false (0) then a jump is made to SeekGE.P2. If
|
|
** This.P5 is true (non-zero) then a jump is made to This.P2. The P5==0
|
|
** case occurs when there are no inequality constraints to the right of
|
|
** the IN constraint. The jump to SeekGE.P2 ends the loop. The P5!=0 case
|
|
** occurs when there are inequality constraints to the right of the IN
|
|
** operator. In that case, the This.P2 will point either directly to or
|
|
** to setup code prior to the OP_IdxGT or OP_IdxGE opcode that checks for
|
|
** loop terminate.
|
|
**
|
|
** Possible outcomes from this opcode:<ol>
|
|
**
|
|
** <li> If the cursor is initially not pointed to any valid row, then
|
|
** fall through into the subsequent OP_SeekGE opcode.
|
|
**
|
|
** <li> If the cursor is left pointing to a row that is before the target
|
|
** row, even after making as many as This.P1 calls to
|
|
** sqlite3BtreeNext(), then also fall through into OP_SeekGE.
|
|
**
|
|
** <li> If the cursor is left pointing at the target row, either because it
|
|
** was at the target row to begin with or because one or more
|
|
** sqlite3BtreeNext() calls moved the cursor to the target row,
|
|
** then jump to This.P2..,
|
|
**
|
|
** <li> If the cursor started out before the target row and a call to
|
|
** to sqlite3BtreeNext() moved the cursor off the end of the index
|
|
** (indicating that the target row definitely does not exist in the
|
|
** btree) then jump to SeekGE.P2, ending the loop.
|
|
**
|
|
** <li> If the cursor ends up on a valid row that is past the target row
|
|
** (indicating that the target row does not exist in the btree) then
|
|
** jump to SeekOP.P2 if This.P5==0 or to This.P2 if This.P5>0.
|
|
** </ol>
|
|
*/
|
|
_89:
|
|
;
|
|
/* If pOp->p5 is clear, then pOp->p2 points to the first instruction past the
|
|
** OP_IdxGT that follows the OP_SeekGE. Otherwise, it points to the first
|
|
** opcode past the OP_SeekGE itself. */
|
|
pC6 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((**(**TOp)(__ccgo_up(pOp + 1*24))).Fp1)*8))
|
|
if !(_sqlite3BtreeCursorIsValidNN(tls, *(*uintptr)(unsafe.Pointer(pC6 + 48))) != 0) {
|
|
goto _189
|
|
}
|
|
nStep = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 168))).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pC6)).FpKeyInfo
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 168))).FnField = libc.Uint16FromInt32(*(*int32)(unsafe.Pointer(pOp + 1*24 + 16)))
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 168))).Fdefault_rc = 0
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 168))).FaMem = aMem + uintptr((**(**TOp)(__ccgo_up(pOp + 1*24))).Fp3)*56
|
|
**(**int32)(__ccgo_up(bp + 160)) = 0 /* Not needed. Only used to silence a warning. */
|
|
_260:
|
|
;
|
|
if !(int32(1) != 0) {
|
|
goto _259
|
|
}
|
|
rc = _sqlite3VdbeIdxKeyCompare(tls, db, pC6, bp+168, bp+160)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if !(**(**int32)(__ccgo_up(bp + 160)) > 0 && libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) == 0) {
|
|
goto _261
|
|
}
|
|
goto seekscan_search_fail
|
|
seekscan_search_fail:
|
|
;
|
|
/* Jump to SeekGE.P2, ending the loop */
|
|
pOp += 24
|
|
goto jump_to_p2
|
|
_261:
|
|
;
|
|
if **(**int32)(__ccgo_up(bp + 160)) >= 0 {
|
|
/* Jump to This.P2, bypassing the OP_SeekGE opcode */
|
|
goto jump_to_p2
|
|
goto _259
|
|
}
|
|
if nStep <= 0 {
|
|
goto _259
|
|
}
|
|
nStep = nStep - 1
|
|
(*TVdbeCursor)(unsafe.Pointer(pC6)).FcacheStatus = uint32(CACHE_STALE)
|
|
rc = _sqlite3BtreeNext(tls, *(*uintptr)(unsafe.Pointer(pC6 + 48)), 0)
|
|
if rc != 0 {
|
|
if rc == int32(SQLITE_DONE) {
|
|
rc = SQLITE_OK
|
|
goto seekscan_search_fail
|
|
} else {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _260
|
|
_259:
|
|
;
|
|
goto _189
|
|
/* Opcode: SeekHit P1 P2 P3 * *
|
|
** Synopsis: set P2<=seekHit<=P3
|
|
**
|
|
** Increase or decrease the seekHit value for cursor P1, if necessary,
|
|
** so that it is no less than P2 and no greater than P3.
|
|
**
|
|
** The seekHit integer represents the maximum of terms in an index for which
|
|
** there is known to be at least one match. If the seekHit value is smaller
|
|
** than the total number of equality terms in an index lookup, then the
|
|
** OP_IfNoHope opcode might run to see if the IN loop can be abandoned
|
|
** early, thus saving work. This is part of the IN-early-out optimization.
|
|
**
|
|
** P1 must be a valid b-tree cursor.
|
|
*/
|
|
_90:
|
|
;
|
|
pC7 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if libc.Int32FromUint16((*TVdbeCursor)(unsafe.Pointer(pC7)).FseekHit) < (*TOp)(unsafe.Pointer(pOp)).Fp2 {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC7)).FseekHit = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
} else {
|
|
if libc.Int32FromUint16((*TVdbeCursor)(unsafe.Pointer(pC7)).FseekHit) > (*TOp)(unsafe.Pointer(pOp)).Fp3 {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC7)).FseekHit = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: IfNotOpen P1 P2 * * *
|
|
** Synopsis: if( !csr[P1] ) goto P2
|
|
**
|
|
** If cursor P1 is not open or if P1 is set to a NULL row using the
|
|
** OP_NullRow opcode, then jump to instruction P2. Otherwise, fall through.
|
|
*/
|
|
_91:
|
|
;
|
|
pCur1 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if pCur1 == uintptr(0) || (*TVdbeCursor)(unsafe.Pointer(pCur1)).FnullRow != 0 {
|
|
goto jump_to_p2_and_check_for_interrupt
|
|
}
|
|
goto _189
|
|
/* Opcode: Found P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If P4==0 then register P3 holds a blob constructed by MakeRecord. If
|
|
** P4>0 then register P3 is the first of P4 registers that form an unpacked
|
|
** record.
|
|
**
|
|
** Cursor P1 is on an index btree. If the record identified by P3 and P4
|
|
** is a prefix of any entry in P1 then a jump is made to P2 and
|
|
** P1 is left pointing at the matching entry.
|
|
**
|
|
** This operation leaves the cursor in a state where it can be
|
|
** advanced in the forward direction. The Next instruction will work,
|
|
** but not the Prev instruction.
|
|
**
|
|
** See also: NotFound, NoConflict, NotExists. SeekGe
|
|
*/
|
|
/* Opcode: NotFound P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If P4==0 then register P3 holds a blob constructed by MakeRecord. If
|
|
** P4>0 then register P3 is the first of P4 registers that form an unpacked
|
|
** record.
|
|
**
|
|
** Cursor P1 is on an index btree. If the record identified by P3 and P4
|
|
** is not the prefix of any entry in P1 then a jump is made to P2. If P1
|
|
** does contain an entry whose prefix matches the P3/P4 record then control
|
|
** falls through to the next instruction and P1 is left pointing at the
|
|
** matching entry.
|
|
**
|
|
** This operation leaves the cursor in a state where it cannot be
|
|
** advanced in either direction. In other words, the Next and Prev
|
|
** opcodes do not work after this operation.
|
|
**
|
|
** See also: Found, NotExists, NoConflict, IfNoHope
|
|
*/
|
|
/* Opcode: IfNoHope P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** Register P3 is the first of P4 registers that form an unpacked
|
|
** record. Cursor P1 is an index btree. P2 is a jump destination.
|
|
** In other words, the operands to this opcode are the same as the
|
|
** operands to OP_NotFound and OP_IdxGT.
|
|
**
|
|
** This opcode is an optimization attempt only. If this opcode always
|
|
** falls through, the correct answer is still obtained, but extra work
|
|
** is performed.
|
|
**
|
|
** A value of N in the seekHit flag of cursor P1 means that there exists
|
|
** a key P3:N that will match some record in the index. We want to know
|
|
** if it is possible for a record P3:P4 to match some record in the
|
|
** index. If it is not possible, we can skip some work. So if seekHit
|
|
** is less than P4, attempt to find out if a match is possible by running
|
|
** OP_NotFound.
|
|
**
|
|
** This opcode is used in IN clause processing for a multi-column key.
|
|
** If an IN clause is attached to an element of the key other than the
|
|
** left-most element, and if there are no matches on the most recent
|
|
** seek over the whole key, then it might be that one of the key element
|
|
** to the left is prohibiting a match, and hence there is "no hope" of
|
|
** any match regardless of how many IN clause elements are checked.
|
|
** In such a case, we abandon the IN clause search early, using this
|
|
** opcode. The opcode name comes from the fact that the
|
|
** jump is taken if there is "no hope" of achieving a match.
|
|
**
|
|
** See also: NotFound, SeekHit
|
|
*/
|
|
/* Opcode: NoConflict P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** If P4==0 then register P3 holds a blob constructed by MakeRecord. If
|
|
** P4>0 then register P3 is the first of P4 registers that form an unpacked
|
|
** record.
|
|
**
|
|
** Cursor P1 is on an index btree. If the record identified by P3 and P4
|
|
** contains any NULL value, jump immediately to P2. If all terms of the
|
|
** record are not-NULL then a check is done to determine if any row in the
|
|
** P1 index btree has a matching key prefix. If there are no matches, jump
|
|
** immediately to P2. If there is a match, fall through and leave the P1
|
|
** cursor pointing to the matching row.
|
|
**
|
|
** This opcode is similar to OP_NotFound with the exceptions that the
|
|
** branch is always taken if any part of the search key input is NULL.
|
|
**
|
|
** This operation leaves the cursor in a state where it cannot be
|
|
** advanced in either direction. In other words, the Next and Prev
|
|
** opcodes do not work after this operation.
|
|
**
|
|
** See also: NotFound, Found, NotExists
|
|
*/
|
|
_92:
|
|
;
|
|
pC8 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if libc.Int32FromUint16((*TVdbeCursor)(unsafe.Pointer(pC8)).FseekHit) >= (*TOp)(unsafe.Pointer(pOp)).Fp4.Fi {
|
|
goto _189
|
|
}
|
|
/* Fall through into OP_NotFound */
|
|
_95:
|
|
; /* jump, in3, ncycle */
|
|
_94:
|
|
; /* jump, in3, ncycle */
|
|
_93:
|
|
;
|
|
pC9 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FaMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FnField = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp4.Fi)
|
|
if libc.Int32FromUint16((**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FnField) > 0 {
|
|
/* Key values in an array of registers */
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pC9)).FpKeyInfo
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 208))).Fdefault_rc = 0
|
|
rc = _sqlite3BtreeIndexMoveto(tls, *(*uintptr)(unsafe.Pointer(pC9 + 48)), bp+208, pC9+36)
|
|
} else {
|
|
/* Composite key generated by OP_MakeRecord */
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer((**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FaMem)).Fflags)&int32(MEM_Zero) != 0 {
|
|
v190 = _sqlite3VdbeMemExpandBlob(tls, (**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FaMem)
|
|
} else {
|
|
v190 = 0
|
|
}
|
|
rc = v190
|
|
if rc != 0 {
|
|
goto no_mem
|
|
}
|
|
pIdxKey = _sqlite3VdbeAllocUnpackedRecord(tls, (*TVdbeCursor)(unsafe.Pointer(pC9)).FpKeyInfo)
|
|
if pIdxKey == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
_sqlite3VdbeRecordUnpack(tls, (*TMem)(unsafe.Pointer((**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FaMem)).Fn, (*TMem)(unsafe.Pointer((**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FaMem)).Fz, pIdxKey)
|
|
(*TUnpackedRecord)(unsafe.Pointer(pIdxKey)).Fdefault_rc = 0
|
|
rc = _sqlite3BtreeIndexMoveto(tls, *(*uintptr)(unsafe.Pointer(pC9 + 48)), pIdxKey, pC9+36)
|
|
_sqlite3DbFreeNN(tls, db, pIdxKey)
|
|
}
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
alreadyExists = libc.BoolInt32((*TVdbeCursor)(unsafe.Pointer(pC9)).FseekResult == 0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC9)).FnullRow = libc.Uint8FromInt32(int32(1) - alreadyExists)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC9)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC9)).FcacheStatus = uint32(CACHE_STALE)
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_Found) {
|
|
if alreadyExists != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
} else {
|
|
if !(alreadyExists != 0) {
|
|
goto jump_to_p2
|
|
}
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_NoConflict) {
|
|
/* For the OP_NoConflict opcode, take the jump if any of the
|
|
** input fields are NULL, since any key with a NULL will not
|
|
** conflict */
|
|
ii1 = 0
|
|
for {
|
|
if !(ii1 < libc.Int32FromUint16((**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FnField)) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint16((**(**TMem)(__ccgo_up((**(**TUnpackedRecord)(__ccgo_up(bp + 208))).FaMem + uintptr(ii1)*56))).Fflags)&int32(MEM_Null) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _263
|
|
_263:
|
|
;
|
|
ii1 = ii1 + 1
|
|
}
|
|
}
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_IfNoHope) {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC9)).FseekHit = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp4.Fi)
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: SeekRowid P1 P2 P3 * *
|
|
** Synopsis: intkey=r[P3]
|
|
**
|
|
** P1 is the index of a cursor open on an SQL table btree (with integer
|
|
** keys). If register P3 does not contain an integer or if P1 does not
|
|
** contain a record with rowid P3 then jump immediately to P2.
|
|
** Or, if P2 is 0, raise an SQLITE_CORRUPT error. If P1 does contain
|
|
** a record with rowid P3 then
|
|
** leave the cursor pointing at that record and fall through to the next
|
|
** instruction.
|
|
**
|
|
** The OP_NotExists opcode performs the same operation, but with OP_NotExists
|
|
** the P3 register must be guaranteed to contain an integer value. With this
|
|
** opcode, register P3 might not contain an integer.
|
|
**
|
|
** The OP_NotFound opcode performs the same operation on index btrees
|
|
** (with arbitrary multi-value keys).
|
|
**
|
|
** This opcode leaves the cursor in a state where it cannot be advanced
|
|
** in either direction. In other words, the Next and Prev opcodes will
|
|
** not work following this opcode.
|
|
**
|
|
** See also: Found, NotFound, NoConflict, SeekRowid
|
|
*/
|
|
/* Opcode: NotExists P1 P2 P3 * *
|
|
** Synopsis: intkey=r[P3]
|
|
**
|
|
** P1 is the index of a cursor open on an SQL table btree (with integer
|
|
** keys). P3 is an integer rowid. If P1 does not contain a record with
|
|
** rowid P3 then jump immediately to P2. Or, if P2 is 0, raise an
|
|
** SQLITE_CORRUPT error. If P1 does contain a record with rowid P3 then
|
|
** leave the cursor pointing at that record and fall through to the next
|
|
** instruction.
|
|
**
|
|
** The OP_SeekRowid opcode performs the same operation but also allows the
|
|
** P3 register to contain a non-integer value, in which case the jump is
|
|
** always taken. This opcode requires that P3 always contain an integer.
|
|
**
|
|
** The OP_NotFound opcode performs the same operation on index btrees
|
|
** (with arbitrary multi-value keys).
|
|
**
|
|
** This opcode leaves the cursor in a state where it cannot be advanced
|
|
** in either direction. In other words, the Next and Prev opcodes will
|
|
** not work following this opcode.
|
|
**
|
|
** See also: Found, NotFound, NoConflict, SeekRowid
|
|
*/
|
|
_97:
|
|
;
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn3)).Fflags)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)) == 0 {
|
|
/* If pIn3->u.i does not contain an integer, compute iKey as the
|
|
** integer value of pIn3. Jump to P2 if pIn3 cannot be converted
|
|
** into an integer without loss of information. Take care to avoid
|
|
** changing the datatype of pIn3, however, as it is used by other
|
|
** parts of the prepared statement. */
|
|
*(*TMem)(unsafe.Pointer(bp + 256)) = TMem{}
|
|
/* If pIn3->u.i does not contain an integer, compute iKey as the
|
|
** integer value of pIn3. Jump to P2 if pIn3 cannot be converted
|
|
** into an integer without loss of information. Take care to avoid
|
|
** changing the datatype of pIn3, however, as it is used by other
|
|
** parts of the prepared statement. */
|
|
*(*Tsqlite3_value)(unsafe.Pointer(bp + 256)) = **(**TMem)(__ccgo_up(pIn3))
|
|
_applyAffinity(tls, bp+256, int8(SQLITE_AFF_NUMERIC), encoding)
|
|
if libc.Int32FromUint16((**(**TMem)(__ccgo_up(bp + 256))).Fflags)&int32(MEM_Int) == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
iKey1 = libc.Uint64FromInt64(*(*Ti64)(unsafe.Pointer(bp + 256)))
|
|
goto notExistsWithKey
|
|
}
|
|
/* Fall through into OP_NotExists */
|
|
_96:
|
|
; /* jump, in3, ncycle */
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
iKey1 = libc.Uint64FromInt64(*(*Ti64)(unsafe.Pointer(pIn3)))
|
|
goto notExistsWithKey
|
|
notExistsWithKey:
|
|
;
|
|
pC10 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pCrsr2 = *(*uintptr)(unsafe.Pointer(pC10 + 48))
|
|
**(**int32)(__ccgo_up(bp + 248)) = 0
|
|
rc = _sqlite3BtreeTableMoveto(tls, pCrsr2, libc.Int64FromUint64(iKey1), 0, bp+248)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC10)).FmovetoTarget = libc.Int64FromUint64(iKey1) /* Used by OP_Delete */
|
|
(*TVdbeCursor)(unsafe.Pointer(pC10)).FnullRow = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC10)).FcacheStatus = uint32(CACHE_STALE)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC10)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC10)).FseekResult = **(**int32)(__ccgo_up(bp + 248))
|
|
if **(**int32)(__ccgo_up(bp + 248)) != 0 {
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 == 0 {
|
|
rc = _sqlite3CorruptError(tls, int32(102154))
|
|
} else {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: Sequence P1 P2 * * *
|
|
** Synopsis: r[P2]=cursor[P1].ctr++
|
|
**
|
|
** Find the next available sequence number for cursor P1.
|
|
** Write the sequence number into register P2.
|
|
** The sequence number on the cursor is incremented after this
|
|
** instruction.
|
|
*/
|
|
_98:
|
|
; /* out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
v191 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8)) + 24
|
|
v256 = *(*Ti64)(unsafe.Pointer(v191))
|
|
*(*Ti64)(unsafe.Pointer(v191)) = *(*Ti64)(unsafe.Pointer(v191)) + 1
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = v256
|
|
goto _189
|
|
/* Opcode: NewRowid P1 P2 P3 * *
|
|
** Synopsis: r[P2]=rowid
|
|
**
|
|
** Get a new integer record number (a.k.a "rowid") used as the key to a table.
|
|
** The record number is not previously used as a key in the database
|
|
** table that cursor P1 points to. The new record number is written
|
|
** written to register P2.
|
|
**
|
|
** If P3>0 then P3 is a register in the root frame of this VDBE that holds
|
|
** the largest previously generated record number. No new record numbers are
|
|
** allowed to be less than this value. When this value reaches its maximum,
|
|
** an SQLITE_FULL error is generated. The P3 register is updated with the '
|
|
** generated record number. This P3 mechanism is used to help implement the
|
|
** AUTOINCREMENT feature.
|
|
*/
|
|
_99:
|
|
; /* Root frame of VDBE */
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = 0
|
|
**(**int32)(__ccgo_up(bp + 320)) = 0
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
pC11 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
/* The next rowid or record number (different terms for the same
|
|
** thing) is obtained in a two-step algorithm.
|
|
**
|
|
** First we attempt to find the largest existing rowid and add one
|
|
** to that. But if the largest existing rowid is already the maximum
|
|
** positive integer, we have to fall through to the second
|
|
** probabilistic algorithm
|
|
**
|
|
** The second algorithm is to select a rowid at random and see if
|
|
** it already exists in the table. If it does not exist, we have
|
|
** succeeded. If the random rowid does exist, we select a new one
|
|
** and try again, up to 100 times.
|
|
*/
|
|
/* Some compilers complain about constants of the form 0x7fffffffffffffff.
|
|
** Others complain about 0x7ffffffffffffffffLL. The following macro seems
|
|
** to provide the constant while making all compilers happy.
|
|
*/
|
|
if !(int32(TBool(*(*uint8)(unsafe.Pointer(pC11 + 8))&0x2>>1)) != 0) {
|
|
rc = _sqlite3BtreeLast(tls, *(*uintptr)(unsafe.Pointer(pC11 + 48)), bp+320)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 320)) != 0 {
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = int64(1) /* IMP: R-61914-48074 */
|
|
} else {
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = _sqlite3BtreeIntegerKey(tls, *(*uintptr)(unsafe.Pointer(pC11 + 48)))
|
|
if **(**Ti64)(__ccgo_up(bp + 312)) >= libc.Int64FromUint64(libc.Uint64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)|libc.Uint64FromUint32(0xffffffff)) {
|
|
libc.SetBitFieldPtr8Uint32(pC11+8, libc.Uint32FromInt32(1), 1, 0x2)
|
|
} else {
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = **(**Ti64)(__ccgo_up(bp + 312)) + 1 /* IMP: R-29538-34987 */
|
|
}
|
|
}
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
/* Assert that P3 is a valid memory cell. */
|
|
if (*TVdbe)(unsafe.Pointer(p)).FpFrame != 0 {
|
|
pFrame1 = (*TVdbe)(unsafe.Pointer(p)).FpFrame
|
|
for {
|
|
if !((*TVdbeFrame)(unsafe.Pointer(pFrame1)).FpParent != 0) {
|
|
break
|
|
}
|
|
goto _266
|
|
_266:
|
|
;
|
|
pFrame1 = (*TVdbeFrame)(unsafe.Pointer(pFrame1)).FpParent
|
|
}
|
|
/* Assert that P3 is a valid memory cell. */
|
|
pMem = (*TVdbeFrame)(unsafe.Pointer(pFrame1)).FaMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
} else {
|
|
/* Assert that P3 is a valid memory cell. */
|
|
pMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
}
|
|
_sqlite3VdbeMemIntegerify(tls, pMem)
|
|
/* mem(P3) holds an integer */
|
|
if *(*Ti64)(unsafe.Pointer(pMem)) == libc.Int64FromUint64(libc.Uint64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)|libc.Uint64FromUint32(0xffffffff)) || int32(TBool(*(*uint8)(unsafe.Pointer(pC11 + 8))&0x2>>1)) != 0 {
|
|
rc = int32(SQLITE_FULL) /* IMP: R-17817-00630 */
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**Ti64)(__ccgo_up(bp + 312)) < *(*Ti64)(unsafe.Pointer(pMem))+int64(1) {
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = *(*Ti64)(unsafe.Pointer(pMem)) + int64(1)
|
|
}
|
|
*(*Ti64)(unsafe.Pointer(pMem)) = **(**Ti64)(__ccgo_up(bp + 312))
|
|
}
|
|
if int32(TBool(*(*uint8)(unsafe.Pointer(pC11 + 8))&0x2>>1)) != 0 {
|
|
/* IMPLEMENTATION-OF: R-07677-41881 If the largest ROWID is equal to the
|
|
** largest possible integer (9223372036854775807) then the database
|
|
** engine starts picking positive candidate ROWIDs at random until
|
|
** it finds one that is not previously used. */
|
|
/* We cannot be in random rowid mode if this is
|
|
** an AUTOINCREMENT table. */
|
|
cnt1 = 0
|
|
for {
|
|
Xsqlite3_randomness(tls, int32(8), bp+312)
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = **(**Ti64)(__ccgo_up(bp + 312)) & (libc.Int64FromUint64(libc.Uint64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)|libc.Uint64FromUint32(0xffffffff)) >> libc.Int32FromInt32(1))
|
|
**(**Ti64)(__ccgo_up(bp + 312)) = **(**Ti64)(__ccgo_up(bp + 312)) + 1 /* Ensure that v is greater than zero */
|
|
goto _270
|
|
_270:
|
|
;
|
|
v190 = _sqlite3BtreeTableMoveto(tls, *(*uintptr)(unsafe.Pointer(pC11 + 48)), libc.Int64FromUint64(libc.Uint64FromInt64(**(**Ti64)(__ccgo_up(bp + 312)))), 0, bp+320)
|
|
rc = v190
|
|
if v217 = v190 == SQLITE_OK && **(**int32)(__ccgo_up(bp + 320)) == 0; v217 {
|
|
cnt1 = cnt1 + 1
|
|
v193 = cnt1
|
|
}
|
|
if !(v217 && v193 < int32(100)) {
|
|
break
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 320)) == 0 {
|
|
rc = int32(SQLITE_FULL) /* IMP: R-38219-53002 */
|
|
goto abort_due_to_error
|
|
}
|
|
/* EV: R-40812-03570 */
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC11)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC11)).FcacheStatus = uint32(CACHE_STALE)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp + 312))
|
|
goto _189
|
|
/* Opcode: Insert P1 P2 P3 P4 P5
|
|
** Synopsis: intkey=r[P3] data=r[P2]
|
|
**
|
|
** Write an entry into the table of cursor P1. A new entry is
|
|
** created if it doesn't already exist or the data for an existing
|
|
** entry is overwritten. The data is the value MEM_Blob stored in register
|
|
** number P2. The key is stored in register P3. The key must
|
|
** be a MEM_Int.
|
|
**
|
|
** If the OPFLAG_NCHANGE flag of P5 is set, then the row change count is
|
|
** incremented (otherwise not). If the OPFLAG_LASTROWID flag of P5 is set,
|
|
** then rowid is stored for subsequent return by the
|
|
** sqlite3_last_insert_rowid() function (otherwise it is unmodified).
|
|
**
|
|
** If the OPFLAG_USESEEKRESULT flag of P5 is set, the implementation might
|
|
** run faster by avoiding an unnecessary seek on cursor P1. However,
|
|
** the OPFLAG_USESEEKRESULT flag must only be set if there have been no prior
|
|
** seeks on the cursor or if the most recent seek used a key equal to P3.
|
|
**
|
|
** If the OPFLAG_ISUPDATE flag is set, then this opcode is part of an
|
|
** UPDATE operation. Otherwise (if the flag is clear) then this opcode
|
|
** is part of an INSERT operation. The difference is only important to
|
|
** the update hook.
|
|
**
|
|
** Parameter P4 may point to a Table structure, or may be NULL. If it is
|
|
** not NULL, then the update-hook (sqlite3.xUpdateCallback) is invoked
|
|
** following a successful insert.
|
|
**
|
|
** (WARNING/TODO: If P1 is a pseudo-cursor and P2 is dynamically
|
|
** allocated, then ownership of P2 is transferred to the pseudo-cursor
|
|
** and register P2 becomes ephemeral. If the cursor is changed, the
|
|
** value of register P2 will then change. Make sure this does not
|
|
** cause any problems.)
|
|
**
|
|
** This instruction only works on tables. The equivalent instruction
|
|
** for indices is OP_IdxInsert.
|
|
*/
|
|
_100:
|
|
; /* Payload to be inserted */
|
|
pData = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
pC12 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pKey = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 328))).FnKey = *(*Ti64)(unsafe.Pointer(pKey))
|
|
if int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == -int32(5) && ((*Tsqlite3)(unsafe.Pointer(db)).FxPreUpdateCallback != 0 || (*Tsqlite3)(unsafe.Pointer(db)).FxUpdateCallback != 0) {
|
|
zDb = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TVdbeCursor)(unsafe.Pointer(pC12)).FiDb)*32))).FzDbSName
|
|
pTab1 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
} else {
|
|
pTab1 = uintptr(0)
|
|
zDb = uintptr(0)
|
|
}
|
|
/* Invoke the pre-update hook, if any */
|
|
if pTab1 != 0 {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FxPreUpdateCallback != 0 && !(libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&libc.Int32FromInt32(OPFLAG_ISUPDATE) != 0) {
|
|
_sqlite3VdbePreUpdateHook(tls, p, pC12, int32(SQLITE_INSERT), zDb, pTab1, (**(**TBtreePayload)(__ccgo_up(bp + 328))).FnKey, (*TOp)(unsafe.Pointer(pOp)).Fp2, -int32(1))
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FxUpdateCallback == uintptr(0) || (*TTable)(unsafe.Pointer(pTab1)).FaCol == uintptr(0) {
|
|
/* Prevent post-update hook from running in cases when it should not */
|
|
pTab1 = uintptr(0)
|
|
}
|
|
}
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_ISNOOP) != 0 {
|
|
goto _189
|
|
}
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_NCHANGE) != 0 {
|
|
(*TVdbe)(unsafe.Pointer(p)).FnChange = (*TVdbe)(unsafe.Pointer(p)).FnChange + 1
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_LASTROWID) != 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FlastRowid = (**(**TBtreePayload)(__ccgo_up(bp + 328))).FnKey
|
|
}
|
|
}
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 328))).FpData = (*TMem)(unsafe.Pointer(pData)).Fz
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 328))).FnData = (*TMem)(unsafe.Pointer(pData)).Fn
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_USESEEKRESULT) != 0 {
|
|
v190 = (*TVdbeCursor)(unsafe.Pointer(pC12)).FseekResult
|
|
} else {
|
|
v190 = 0
|
|
}
|
|
seekResult = v190
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pData)).Fflags)&int32(MEM_Zero) != 0 {
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 328))).FnZero = *(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pData)).Fu))
|
|
} else {
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 328))).FnZero = 0
|
|
}
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 328))).FpKey = uintptr(0)
|
|
rc = _sqlite3BtreeInsert(tls, *(*uintptr)(unsafe.Pointer(pC12 + 48)), bp+328, libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&(libc.Int32FromInt32(OPFLAG_APPEND)|libc.Int32FromInt32(OPFLAG_SAVEPOSITION)|libc.Int32FromInt32(OPFLAG_PREFORMAT)), seekResult)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC12)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC12)).FcacheStatus = uint32(CACHE_STALE)
|
|
colCacheCtr = colCacheCtr + 1
|
|
/* Invoke the update-hook if required. */
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if pTab1 != 0 {
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_ISUPDATE) != 0 {
|
|
v190 = int32(SQLITE_UPDATE)
|
|
} else {
|
|
v190 = int32(SQLITE_INSERT)
|
|
}
|
|
(*(*func(*libc.TLS, uintptr, int32, uintptr, uintptr, Tsqlite_int64))(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3)(unsafe.Pointer(db)).FxUpdateCallback})))(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpUpdateArg, v190, zDb, (*TTable)(unsafe.Pointer(pTab1)).FzName, (**(**TBtreePayload)(__ccgo_up(bp + 328))).FnKey)
|
|
}
|
|
goto _189
|
|
/* Opcode: RowCell P1 P2 P3 * *
|
|
**
|
|
** P1 and P2 are both open cursors. Both must be opened on the same type
|
|
** of table - intkey or index. This opcode is used as part of copying
|
|
** the current row from P2 into P1. If the cursors are opened on intkey
|
|
** tables, register P3 contains the rowid to use with the new record in
|
|
** P1. If they are opened on index tables, P3 is not used.
|
|
**
|
|
** This opcode must be followed by either an Insert or InsertIdx opcode
|
|
** with the OPFLAG_PREFORMAT flag set to complete the insert operation.
|
|
*/
|
|
_101:
|
|
; /* Rowid value to insert with */
|
|
pDest1 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pSrc = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*8))
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
v206 = *(*Ti64)(unsafe.Pointer(aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56))
|
|
} else {
|
|
v206 = 0
|
|
}
|
|
iKey2 = v206
|
|
rc = _sqlite3BtreeTransferRow(tls, *(*uintptr)(unsafe.Pointer(pDest1 + 48)), *(*uintptr)(unsafe.Pointer(pSrc + 48)), iKey2)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: Delete P1 P2 P3 P4 P5
|
|
**
|
|
** Delete the record at which the P1 cursor is currently pointing.
|
|
**
|
|
** If the OPFLAG_SAVEPOSITION bit of the P5 parameter is set, then
|
|
** the cursor will be left pointing at either the next or the previous
|
|
** record in the table. If it is left pointing at the next record, then
|
|
** the next Next instruction will be a no-op. As a result, in this case
|
|
** it is ok to delete a record from within a Next loop. If
|
|
** OPFLAG_SAVEPOSITION bit of P5 is clear, then the cursor will be
|
|
** left in an undefined state.
|
|
**
|
|
** If the OPFLAG_AUXDELETE bit is set on P5, that indicates that this
|
|
** delete is one of several associated with deleting a table row and
|
|
** all its associated index entries. Exactly one of those deletes is
|
|
** the "primary" delete. The others are all on OPFLAG_FORDELETE
|
|
** cursors or else are marked with the AUXDELETE flag.
|
|
**
|
|
** If the OPFLAG_NCHANGE (0x01) flag of P2 (NB: P2 not P5) is set, then
|
|
** the row change count is incremented (otherwise not).
|
|
**
|
|
** If the OPFLAG_ISNOOP (0x40) flag of P2 (not P5!) is set, then the
|
|
** pre-update-hook for deletes is run, but the btree is otherwise unchanged.
|
|
** This happens when the OP_Delete is to be shortly followed by an OP_Insert
|
|
** with the same key, causing the btree entry to be overwritten.
|
|
**
|
|
** P1 must not be pseudo-table. It has to be a real table with
|
|
** multiple rows.
|
|
**
|
|
** If P4 is not NULL then it points to a Table object. In this case either
|
|
** the update or pre-update hook, or both, may be invoked. The P1 cursor must
|
|
** have been positioned using OP_NotFound prior to invoking this opcode in
|
|
** this case. Specifically, if one is configured, the pre-update hook is
|
|
** invoked if P4 is not NULL. The update-hook is invoked if one is configured,
|
|
** P4 is not NULL, and the OPFLAG_NCHANGE flag is set in P2.
|
|
**
|
|
** If the OPFLAG_ISUPDATE flag is set in P2, then P3 contains the address
|
|
** of the memory cell that contains the value that the rowid of the row will
|
|
** be set to by the update.
|
|
*/
|
|
_102:
|
|
;
|
|
opflags = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
pC13 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
/* If the update-hook or pre-update-hook will be invoked, set zDb to
|
|
** the name of the db to pass as to it. Also set local pTab to a copy
|
|
** of p4.pTab. Finally, if p5 is true, indicating that this cursor was
|
|
** last moved with OP_Next or OP_Prev, not Seek or NotFound, set
|
|
** VdbeCursor.movetoTarget to the current rowid. */
|
|
if int32((*TOp)(unsafe.Pointer(pOp)).Fp4type) == -int32(5) && ((*Tsqlite3)(unsafe.Pointer(db)).FxPreUpdateCallback != 0 || (*Tsqlite3)(unsafe.Pointer(db)).FxUpdateCallback != 0) {
|
|
zDb1 = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TVdbeCursor)(unsafe.Pointer(pC13)).FiDb)*32))).FzDbSName
|
|
pTab2 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_SAVEPOSITION) != 0 && (*TVdbeCursor)(unsafe.Pointer(pC13)).FisTable != 0 {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC13)).FmovetoTarget = _sqlite3BtreeIntegerKey(tls, *(*uintptr)(unsafe.Pointer(pC13 + 48)))
|
|
}
|
|
} else {
|
|
zDb1 = uintptr(0)
|
|
pTab2 = uintptr(0)
|
|
}
|
|
/* Invoke the pre-update-hook if required. */
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FxPreUpdateCallback != 0 && pTab2 != 0 {
|
|
if opflags&int32(OPFLAG_ISUPDATE) != 0 {
|
|
v190 = int32(SQLITE_UPDATE)
|
|
} else {
|
|
v190 = int32(SQLITE_DELETE)
|
|
}
|
|
_sqlite3VdbePreUpdateHook(tls, p, pC13, v190, zDb1, pTab2, (*TVdbeCursor)(unsafe.Pointer(pC13)).FmovetoTarget, (*TOp)(unsafe.Pointer(pOp)).Fp3, -int32(1))
|
|
}
|
|
if opflags&int32(OPFLAG_ISNOOP) != 0 {
|
|
goto _189
|
|
}
|
|
/* Only flags that can be set are SAVEPOISTION and AUXDELETE */
|
|
rc = _sqlite3BtreeDelete(tls, *(*uintptr)(unsafe.Pointer(pC13 + 48)), uint8((*TOp)(unsafe.Pointer(pOp)).Fp5))
|
|
(*TVdbeCursor)(unsafe.Pointer(pC13)).FcacheStatus = uint32(CACHE_STALE)
|
|
colCacheCtr = colCacheCtr + 1
|
|
(*TVdbeCursor)(unsafe.Pointer(pC13)).FseekResult = 0
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
/* Invoke the update-hook if required. */
|
|
if opflags&int32(OPFLAG_NCHANGE) != 0 {
|
|
(*TVdbe)(unsafe.Pointer(p)).FnChange = (*TVdbe)(unsafe.Pointer(p)).FnChange + 1
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FxUpdateCallback != 0 && pTab2 != uintptr(0) && (*TTable)(unsafe.Pointer(pTab2)).FtabFlags&uint32(TF_WithoutRowid) == uint32(0) {
|
|
(*(*func(*libc.TLS, uintptr, int32, uintptr, uintptr, Tsqlite_int64))(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3)(unsafe.Pointer(db)).FxUpdateCallback})))(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpUpdateArg, int32(SQLITE_DELETE), zDb1, (*TTable)(unsafe.Pointer(pTab2)).FzName, (*TVdbeCursor)(unsafe.Pointer(pC13)).FmovetoTarget)
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: ResetCount * * * * *
|
|
**
|
|
** The value of the change counter is copied to the database handle
|
|
** change counter (returned by subsequent calls to sqlite3_changes()).
|
|
** Then the VMs internal change counter resets to 0.
|
|
** This is used by trigger programs.
|
|
*/
|
|
_103:
|
|
;
|
|
_sqlite3VdbeSetChanges(tls, db, (*TVdbe)(unsafe.Pointer(p)).FnChange)
|
|
(*TVdbe)(unsafe.Pointer(p)).FnChange = 0
|
|
goto _189
|
|
/* Opcode: SorterCompare P1 P2 P3 P4
|
|
** Synopsis: if key(P1)!=trim(r[P3],P4) goto P2
|
|
**
|
|
** P1 is a sorter cursor. This instruction compares a prefix of the
|
|
** record blob in register P3 against a prefix of the entry that
|
|
** the sorter cursor currently points to. Only the first P4 fields
|
|
** of r[P3] and the sorter record are compared.
|
|
**
|
|
** If either P3 or the sorter contains a NULL in one of their significant
|
|
** fields (not counting the P4 fields at the end which are ignored) then
|
|
** the comparison is assumed to be equal.
|
|
**
|
|
** Fall through to next instruction if the two records compare equal to
|
|
** each other. Jump to P2 if they are different.
|
|
*/
|
|
_104:
|
|
;
|
|
pC14 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
nKeyCol = (*TOp)(unsafe.Pointer(pOp)).Fp4.Fi
|
|
**(**int32)(__ccgo_up(bp + 376)) = 0
|
|
rc = _sqlite3VdbeSorterCompare(tls, pC14, pIn3, nKeyCol, bp+376)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 376)) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: SorterData P1 P2 P3 * *
|
|
** Synopsis: r[P2]=data
|
|
**
|
|
** Write into register P2 the current sorter data for sorter cursor P1.
|
|
** Then clear the column header cache on cursor P3.
|
|
**
|
|
** This opcode is normally used to move a record out of the sorter and into
|
|
** a register that is the source for a pseudo-table cursor created using
|
|
** OpenPseudo. That pseudo-table cursor is the one that is identified by
|
|
** parameter P3. Clearing the P3 column cache as part of this opcode saves
|
|
** us from having to issue a separate NullRow instruction to clear that cache.
|
|
*/
|
|
_105:
|
|
;
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
pC15 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
rc = _sqlite3VdbeSorterRowkey(tls, pC15, pOut)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(**(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*8)))).FcacheStatus = uint32(CACHE_STALE)
|
|
goto _189
|
|
/* Opcode: RowData P1 P2 P3 * *
|
|
** Synopsis: r[P2]=data
|
|
**
|
|
** Write into register P2 the complete row content for the row at
|
|
** which cursor P1 is currently pointing.
|
|
** There is no interpretation of the data.
|
|
** It is just copied onto the P2 register exactly as
|
|
** it is found in the database file.
|
|
**
|
|
** If cursor P1 is an index, then the content is the key of the row.
|
|
** If cursor P2 is a table, then the content extracted is the data.
|
|
**
|
|
** If the P1 cursor must be pointing to a valid row (not a NULL row)
|
|
** of a real table, not a pseudo-table.
|
|
**
|
|
** If P3!=0 then this opcode is allowed to make an ephemeral pointer
|
|
** into the database page. That means that the content of the output
|
|
** register will be invalidated as soon as the cursor moves - including
|
|
** moves caused by other cursors that "save" the current cursors
|
|
** position in order that they can write to the same table. If P3==0
|
|
** then a copy of the data is made into memory. P3!=0 is faster, but
|
|
** P3==0 is safer.
|
|
**
|
|
** If P3!=0 then the content of the P2 register is unsuitable for use
|
|
** in OP_Result and any OP_Result will invalidate the P2 register content.
|
|
** The P2 register content is invalidated by opcodes like OP_Function or
|
|
** by any use of another cursor pointing to the same table.
|
|
*/
|
|
_106:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
pC16 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pCrsr3 = *(*uintptr)(unsafe.Pointer(pC16 + 48))
|
|
/* The OP_RowData opcodes always follow OP_NotExists or
|
|
** OP_SeekRowid or OP_Rewind/Op_Next with no intervening instructions
|
|
** that might invalidate the cursor.
|
|
** If this were not the case, one of the following assert()s
|
|
** would fail. Should this ever change (because of changes in the code
|
|
** generator) then the fix would be to insert a call to
|
|
** sqlite3VdbeCursorMoveto().
|
|
*/
|
|
n3 = _sqlite3BtreePayloadSize(tls, pCrsr3)
|
|
if n3 > libc.Uint32FromInt32(**(**int32)(__ccgo_up(db + 136))) {
|
|
goto too_big
|
|
}
|
|
rc = _sqlite3VdbeMemFromBtreeZeroOffset(tls, pCrsr3, n3, pOut)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if !((*TOp)(unsafe.Pointer(pOp)).Fp3 != 0) {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags)&int32(MEM_Ephem) != 0 && _sqlite3VdbeMemMakeWriteable(tls, pOut) != 0 {
|
|
goto no_mem
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: Rowid P1 P2 * * *
|
|
** Synopsis: r[P2]=PX rowid of P1
|
|
**
|
|
** Store in register P2 an integer which is the key of the table entry that
|
|
** P1 is currently point to.
|
|
**
|
|
** P1 can be either an ordinary table or a virtual table. There used to
|
|
** be a separate OP_VRowid opcode for use with virtual tables, but this
|
|
** one opcode now works for both table types.
|
|
*/
|
|
_107:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
pC17 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC17)).FnullRow != 0 {
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Null)
|
|
goto _189
|
|
} else {
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC17)).FdeferredMoveto != 0 {
|
|
**(**Ti64)(__ccgo_up(bp + 384)) = (*TVdbeCursor)(unsafe.Pointer(pC17)).FmovetoTarget
|
|
} else {
|
|
if libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pC17)).FeCurType) == int32(CURTYPE_VTAB) {
|
|
pVtab = (*Tsqlite3_vtab_cursor)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pC17 + 48)))).FpVtab
|
|
pModule = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab)).FpModule
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule)).FxRowid})))(tls, *(*uintptr)(unsafe.Pointer(pC17 + 48)), bp+384)
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
} else {
|
|
rc = _sqlite3VdbeCursorRestore(tls, pC17)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC17)).FnullRow != 0 {
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Null)
|
|
goto _189
|
|
}
|
|
**(**Ti64)(__ccgo_up(bp + 384)) = _sqlite3BtreeIntegerKey(tls, *(*uintptr)(unsafe.Pointer(pC17 + 48)))
|
|
}
|
|
}
|
|
}
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp + 384))
|
|
goto _189
|
|
/* Opcode: NullRow P1 * * * *
|
|
**
|
|
** Move the cursor P1 to a null row. Any OP_Column operations
|
|
** that occur while the cursor is on the null row will always
|
|
** write a NULL.
|
|
**
|
|
** If cursor P1 is not previously opened, open it now to a special
|
|
** pseudo-cursor that always returns NULL for every column.
|
|
*/
|
|
_108:
|
|
;
|
|
pC18 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if pC18 == uintptr(0) {
|
|
/* If the cursor is not already open, create a special kind of
|
|
** pseudo-cursor that always gives null rows. */
|
|
pC18 = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, int32(1), uint8(CURTYPE_PSEUDO))
|
|
if pC18 == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC18)).FseekResult = 0
|
|
(*TVdbeCursor)(unsafe.Pointer(pC18)).FisTable = uint8(1)
|
|
libc.SetBitFieldPtr8Uint32(pC18+8, libc.Uint32FromInt32(1), 3, 0x8)
|
|
*(*uintptr)(unsafe.Pointer(pC18 + 48)) = _sqlite3BtreeFakeValidCursor(tls)
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC18)).FnullRow = uint8(1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC18)).FcacheStatus = uint32(CACHE_STALE)
|
|
if libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pC18)).FeCurType) == CURTYPE_BTREE {
|
|
_sqlite3BtreeClearCursor(tls, *(*uintptr)(unsafe.Pointer(pC18 + 48)))
|
|
}
|
|
goto _189
|
|
/* Opcode: SeekEnd P1 * * * *
|
|
**
|
|
** Position cursor P1 at the end of the btree for the purpose of
|
|
** appending a new entry onto the btree.
|
|
**
|
|
** It is assumed that the cursor is used only for appending and so
|
|
** if the cursor is valid, then the cursor must already be pointing
|
|
** at the end of the btree and so no changes are made to
|
|
** the cursor.
|
|
*/
|
|
/* Opcode: Last P1 P2 * * *
|
|
**
|
|
** The next use of the Rowid or Column or Prev instruction for P1
|
|
** will refer to the last entry in the database table or index.
|
|
** If the table or index is empty and P2>0, then jump immediately to P2.
|
|
** If P2 is 0 or if the table or index is not empty, fall through
|
|
** to the following instruction.
|
|
**
|
|
** This opcode leaves the cursor configured to move in reverse order,
|
|
** from the end toward the beginning. In other words, the cursor is
|
|
** configured to use Prev, not Next.
|
|
*/
|
|
_110:
|
|
; /* ncycle */
|
|
_109:
|
|
;
|
|
pC19 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pCrsr4 = *(*uintptr)(unsafe.Pointer(pC19 + 48))
|
|
**(**int32)(__ccgo_up(bp + 392)) = 0
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_SeekEnd) {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC19)).FseekResult = -int32(1)
|
|
if _sqlite3BtreeCursorIsValidNN(tls, pCrsr4) != 0 {
|
|
goto _189
|
|
}
|
|
}
|
|
rc = _sqlite3BtreeLast(tls, pCrsr4, bp+392)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC19)).FnullRow = libc.Uint8FromInt32(**(**int32)(__ccgo_up(bp + 392)))
|
|
(*TVdbeCursor)(unsafe.Pointer(pC19)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC19)).FcacheStatus = uint32(CACHE_STALE)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 > 0 {
|
|
if **(**int32)(__ccgo_up(bp + 392)) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: IfSizeBetween P1 P2 P3 P4 *
|
|
**
|
|
** Let N be the approximate number of rows in the table or index
|
|
** with cursor P1 and let X be 10*log2(N) if N is positive or -1
|
|
** if N is zero.
|
|
**
|
|
** Jump to P2 if X is in between P3 and P4, inclusive.
|
|
*/
|
|
_111:
|
|
;
|
|
pC20 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pCrsr5 = *(*uintptr)(unsafe.Pointer(pC20 + 48))
|
|
rc = _sqlite3BtreeFirst(tls, pCrsr5, bp+396)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 396)) != 0 {
|
|
sz = int64(-int32(1)) /* -Infinity encoding */
|
|
} else {
|
|
sz = _sqlite3BtreeRowCountEst(tls, pCrsr5)
|
|
sz = int64(_sqlite3LogEst(tls, libc.Uint64FromInt64(sz)))
|
|
}
|
|
**(**int32)(__ccgo_up(bp + 396)) = libc.BoolInt32(sz >= int64((*TOp)(unsafe.Pointer(pOp)).Fp3) && sz <= int64((*TOp)(unsafe.Pointer(pOp)).Fp4.Fi))
|
|
if **(**int32)(__ccgo_up(bp + 396)) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: SorterSort P1 P2 * * *
|
|
**
|
|
** After all records have been inserted into the Sorter object
|
|
** identified by P1, invoke this opcode to actually do the sorting.
|
|
** Jump to P2 if there are no records to be sorted.
|
|
**
|
|
** This opcode is an alias for OP_Sort and OP_Rewind that is used
|
|
** for Sorter objects.
|
|
*/
|
|
/* Opcode: Sort P1 P2 * * *
|
|
**
|
|
** This opcode does exactly the same thing as OP_Rewind except that
|
|
** it increments an undocumented global variable used for testing.
|
|
**
|
|
** Sorting is accomplished by writing records into a sorting index,
|
|
** then rewinding that index and playing it back from beginning to
|
|
** end. We use the OP_Sort opcode instead of OP_Rewind to do the
|
|
** rewinding so that the global variable will be incremented and
|
|
** regression tests can determine whether or not the optimizer is
|
|
** correctly optimizing out sorts.
|
|
*/
|
|
_113:
|
|
; /* jump ncycle */
|
|
_112:
|
|
; /* jump ncycle */
|
|
**(**Tu32)(__ccgo_up(p + 212 + 2*4)) = **(**Tu32)(__ccgo_up(p + 212 + 2*4)) + 1
|
|
/* Fall through into OP_Rewind */
|
|
/* Opcode: Rewind P1 P2 * * *
|
|
**
|
|
** The next use of the Rowid or Column or Next instruction for P1
|
|
** will refer to the first entry in the database table or index.
|
|
** If the table or index is empty, jump immediately to P2.
|
|
** If the table or index is not empty, fall through to the following
|
|
** instruction.
|
|
**
|
|
** If P2 is zero, that is an assertion that the P1 table is never
|
|
** empty and hence the jump will never be taken.
|
|
**
|
|
** This opcode leaves the cursor configured to move in forward order,
|
|
** from the beginning toward the end. In other words, the cursor is
|
|
** configured to use Next, not Prev.
|
|
*/
|
|
_114:
|
|
;
|
|
pC21 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
**(**int32)(__ccgo_up(bp + 400)) = int32(1)
|
|
if libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pC21)).FeCurType) == int32(CURTYPE_SORTER) {
|
|
rc = _sqlite3VdbeSorterRewind(tls, pC21, bp+400)
|
|
} else {
|
|
pCrsr6 = *(*uintptr)(unsafe.Pointer(pC21 + 48))
|
|
rc = _sqlite3BtreeFirst(tls, pCrsr6, bp+400)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC21)).FdeferredMoveto = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC21)).FcacheStatus = uint32(CACHE_STALE)
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC21)).FnullRow = libc.Uint8FromInt32(**(**int32)(__ccgo_up(bp + 400)))
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 > 0 {
|
|
if **(**int32)(__ccgo_up(bp + 400)) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: IfEmpty P1 P2 * * *
|
|
** Synopsis: if( empty(P1) ) goto P2
|
|
**
|
|
** Check to see if the b-tree table that cursor P1 references is empty
|
|
** and jump to P2 if it is.
|
|
*/
|
|
_115:
|
|
;
|
|
pC22 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pCrsr7 = *(*uintptr)(unsafe.Pointer(pC22 + 48))
|
|
rc = _sqlite3BtreeIsEmpty(tls, pCrsr7, bp+404)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 404)) != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: Next P1 P2 P3 * P5
|
|
**
|
|
** Advance cursor P1 so that it points to the next key/data pair in its
|
|
** table or index. If there are no more key/value pairs then fall through
|
|
** to the following instruction. But if the cursor advance was successful,
|
|
** jump immediately to P2.
|
|
**
|
|
** The Next opcode is only valid following an SeekGT, SeekGE, or
|
|
** OP_Rewind opcode used to position the cursor. Next is not allowed
|
|
** to follow SeekLT, SeekLE, or OP_Last.
|
|
**
|
|
** The P1 cursor must be for a real table, not a pseudo-table. P1 must have
|
|
** been opened prior to this opcode or the program will segfault.
|
|
**
|
|
** The P3 value is a hint to the btree implementation. If P3==1, that
|
|
** means P1 is an SQL index and that this instruction could have been
|
|
** omitted if that index had been unique. P3 is usually 0. P3 is
|
|
** always either 0 or 1.
|
|
**
|
|
** If P5 is positive and the jump is taken, then event counter
|
|
** number P5-1 in the prepared statement is incremented.
|
|
**
|
|
** See also: Prev
|
|
*/
|
|
/* Opcode: Prev P1 P2 P3 * P5
|
|
**
|
|
** Back up cursor P1 so that it points to the previous key/data pair in its
|
|
** table or index. If there is no previous key/value pairs then fall through
|
|
** to the following instruction. But if the cursor backup was successful,
|
|
** jump immediately to P2.
|
|
**
|
|
**
|
|
** The Prev opcode is only valid following an SeekLT, SeekLE, or
|
|
** OP_Last opcode used to position the cursor. Prev is not allowed
|
|
** to follow SeekGT, SeekGE, or OP_Rewind.
|
|
**
|
|
** The P1 cursor must be for a real table, not a pseudo-table. If P1 is
|
|
** not open then the behavior is undefined.
|
|
**
|
|
** The P3 value is a hint to the btree implementation. If P3==1, that
|
|
** means P1 is an SQL index and that this instruction could have been
|
|
** omitted if that index had been unique. P3 is usually 0. P3 is
|
|
** always either 0 or 1.
|
|
**
|
|
** If P5 is positive and the jump is taken, then event counter
|
|
** number P5-1 in the prepared statement is incremented.
|
|
*/
|
|
/* Opcode: SorterNext P1 P2 * * P5
|
|
**
|
|
** This opcode works just like OP_Next except that P1 must be a
|
|
** sorter object for which the OP_SorterSort opcode has been
|
|
** invoked. This opcode advances the cursor to the next sorted
|
|
** record, or jumps to P2 if there are no more sorted records.
|
|
*/
|
|
_118:
|
|
;
|
|
pC23 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
rc = _sqlite3VdbeSorterNext(tls, db, pC23)
|
|
goto next_tail
|
|
_116:
|
|
; /* jump, ncycle */
|
|
pC23 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
rc = _sqlite3BtreePrevious(tls, *(*uintptr)(unsafe.Pointer(pC23 + 48)), (*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
goto next_tail
|
|
_117:
|
|
; /* jump, ncycle */
|
|
pC23 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
rc = _sqlite3BtreeNext(tls, *(*uintptr)(unsafe.Pointer(pC23 + 48)), (*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
goto next_tail
|
|
next_tail:
|
|
;
|
|
(*TVdbeCursor)(unsafe.Pointer(pC23)).FcacheStatus = uint32(CACHE_STALE)
|
|
if rc == SQLITE_OK {
|
|
(*TVdbeCursor)(unsafe.Pointer(pC23)).FnullRow = uint8(0)
|
|
**(**Tu32)(__ccgo_up(p + 212 + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp5)*4)) = **(**Tu32)(__ccgo_up(p + 212 + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp5)*4)) + 1
|
|
goto jump_to_p2_and_check_for_interrupt
|
|
}
|
|
if rc != int32(SQLITE_DONE) {
|
|
goto abort_due_to_error
|
|
}
|
|
rc = SQLITE_OK
|
|
(*TVdbeCursor)(unsafe.Pointer(pC23)).FnullRow = uint8(1)
|
|
goto check_for_interrupt
|
|
/* Opcode: IdxInsert P1 P2 P3 P4 P5
|
|
** Synopsis: key=r[P2]
|
|
**
|
|
** Register P2 holds an SQL index key made using the
|
|
** MakeRecord instructions. This opcode writes that key
|
|
** into the index P1. Data for the entry is nil.
|
|
**
|
|
** If P4 is not zero, then it is the number of values in the unpacked
|
|
** key of reg(P2). In that case, P3 is the index of the first register
|
|
** for the unpacked key. The availability of the unpacked key can sometimes
|
|
** be an optimization.
|
|
**
|
|
** If P5 has the OPFLAG_APPEND bit set, that is a hint to the b-tree layer
|
|
** that this insert is likely to be an append.
|
|
**
|
|
** If P5 has the OPFLAG_NCHANGE bit set, then the change counter is
|
|
** incremented by this instruction. If the OPFLAG_NCHANGE bit is clear,
|
|
** then the change counter is unchanged.
|
|
**
|
|
** If the OPFLAG_USESEEKRESULT flag of P5 is set, the implementation might
|
|
** run faster by avoiding an unnecessary seek on cursor P1. However,
|
|
** the OPFLAG_USESEEKRESULT flag must only be set if there have been no prior
|
|
** seeks on the cursor or if the most recent seek used a key equivalent
|
|
** to P2.
|
|
**
|
|
** This instruction only works for indices. The equivalent instruction
|
|
** for tables is OP_Insert.
|
|
*/
|
|
_119:
|
|
;
|
|
pC24 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_NCHANGE) != 0 {
|
|
(*TVdbe)(unsafe.Pointer(p)).FnChange = (*TVdbe)(unsafe.Pointer(p)).FnChange + 1
|
|
}
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn2)).Fflags)&int32(MEM_Zero) != 0 {
|
|
v190 = _sqlite3VdbeMemExpandBlob(tls, pIn2)
|
|
} else {
|
|
v190 = 0
|
|
}
|
|
rc = v190
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 408))).FnKey = int64((*TMem)(unsafe.Pointer(pIn2)).Fn)
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 408))).FpKey = (*TMem)(unsafe.Pointer(pIn2)).Fz
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 408))).FaMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
(**(**TBtreePayload)(__ccgo_up(bp + 408))).FnMem = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp4.Fi)
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_USESEEKRESULT) != 0 {
|
|
v190 = (*TVdbeCursor)(unsafe.Pointer(pC24)).FseekResult
|
|
} else {
|
|
v190 = 0
|
|
}
|
|
rc = _sqlite3BtreeInsert(tls, *(*uintptr)(unsafe.Pointer(pC24 + 48)), bp+408, libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&(libc.Int32FromInt32(OPFLAG_APPEND)|libc.Int32FromInt32(OPFLAG_SAVEPOSITION)|libc.Int32FromInt32(OPFLAG_PREFORMAT)), v190)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC24)).FcacheStatus = uint32(CACHE_STALE)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: SorterInsert P1 P2 * * *
|
|
** Synopsis: key=r[P2]
|
|
**
|
|
** Register P2 holds an SQL index key made using the
|
|
** MakeRecord instructions. This opcode writes that key
|
|
** into the sorter P1. Data for the entry is nil.
|
|
*/
|
|
_120:
|
|
;
|
|
pC25 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn2)).Fflags)&int32(MEM_Zero) != 0 {
|
|
v190 = _sqlite3VdbeMemExpandBlob(tls, pIn2)
|
|
} else {
|
|
v190 = 0
|
|
}
|
|
rc = v190
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
rc = _sqlite3VdbeSorterWrite(tls, pC25, pIn2)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: IdxDelete P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P2@P3]
|
|
**
|
|
** The content of P3 registers starting at register P2 form
|
|
** an unpacked index key. This opcode removes that entry from the
|
|
** index opened by cursor P1.
|
|
**
|
|
** P4 is a pointer to an Index structure.
|
|
**
|
|
** Raise an SQLITE_CORRUPT_INDEX error if no matching index entry is found
|
|
** and not in writable_schema mode.
|
|
*/
|
|
_121:
|
|
;
|
|
pC26 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pCrsr8 = *(*uintptr)(unsafe.Pointer(pC26 + 48))
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 464))).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pC26)).FpKeyInfo
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 464))).FnField = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 464))).Fdefault_rc = 0
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 464))).FaMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
rc = _sqlite3BtreeIndexMoveto(tls, pCrsr8, bp+464, bp+456)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 456)) != 0 {
|
|
rc = _sqlite3VdbeFindIndexKey(tls, pCrsr8, *(*uintptr)(unsafe.Pointer(pOp + 16)), bp+464, bp+456, 0)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 456)) != 0 {
|
|
if !(_sqlite3WritableSchema(tls, db) != 0) {
|
|
rc = _sqlite3ReportError(tls, libc.Int32FromInt32(SQLITE_CORRUPT)|libc.Int32FromInt32(3)<<libc.Int32FromInt32(8), int32(103271), __ccgo_ts+6271)
|
|
goto abort_due_to_error
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC26)).FcacheStatus = uint32(CACHE_STALE)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC26)).FseekResult = 0
|
|
goto _189
|
|
}
|
|
}
|
|
rc = _sqlite3BtreeDelete(tls, pCrsr8, uint8(BTREE_AUXDELETE))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC26)).FcacheStatus = uint32(CACHE_STALE)
|
|
(*TVdbeCursor)(unsafe.Pointer(pC26)).FseekResult = 0
|
|
goto _189
|
|
/* Opcode: DeferredSeek P1 * P3 P4 *
|
|
** Synopsis: Move P3 to P1.rowid if needed
|
|
**
|
|
** P1 is an open index cursor and P3 is a cursor on the corresponding
|
|
** table. This opcode does a deferred seek of the P3 table cursor
|
|
** to the row that corresponds to the current row of P1.
|
|
**
|
|
** This is a deferred seek. Nothing actually happens until
|
|
** the cursor is used to read a record. That way, if no reads
|
|
** occur, no unnecessary I/O happens.
|
|
**
|
|
** P4 may be an array of integers (type P4_INTARRAY) containing
|
|
** one entry for each column in the P3 table. If array entry a(i)
|
|
** is non-zero, then reading column a(i)-1 from cursor P3 is
|
|
** equivalent to performing the deferred seek and then reading column i
|
|
** from P1. This information is stored in P3 and used to redirect
|
|
** reads against P3 over to P1, thus possibly avoiding the need to
|
|
** seek and read cursor P3.
|
|
*/
|
|
/* Opcode: IdxRowid P1 P2 * * *
|
|
** Synopsis: r[P2]=rowid
|
|
**
|
|
** Write into register P2 an integer which is the last entry in the record at
|
|
** the end of the index key pointed to by cursor P1. This integer should be
|
|
** the rowid of the table entry to which this index entry points.
|
|
**
|
|
** See also: Rowid, MakeRecord.
|
|
*/
|
|
_123:
|
|
; /* ncycle */
|
|
_122:
|
|
; /* Rowid that P1 current points to */
|
|
pC27 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
/* The IdxRowid and Seek opcodes are combined because of the commonality
|
|
** of sqlite3VdbeCursorRestore() and sqlite3VdbeIdxRowid(). */
|
|
rc = _sqlite3VdbeCursorRestore(tls, pC27)
|
|
/* sqlite3VdbeCursorRestore() may fail if the cursor has been disturbed
|
|
** since it was last positioned and an error (e.g. OOM or an IO error)
|
|
** occurs while trying to reposition it. */
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
if !((*TVdbeCursor)(unsafe.Pointer(pC27)).FnullRow != 0) {
|
|
**(**Ti64)(__ccgo_up(bp + 504)) = 0 /* Not needed. Only used to silence a warning. */
|
|
rc = _sqlite3VdbeIdxRowid(tls, db, *(*uintptr)(unsafe.Pointer(pC27 + 48)), bp+504)
|
|
if rc != SQLITE_OK {
|
|
goto abort_due_to_error
|
|
}
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_DeferredSeek) {
|
|
pTabCur = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*8))
|
|
(*TVdbeCursor)(unsafe.Pointer(pTabCur)).FnullRow = uint8(0)
|
|
(*TVdbeCursor)(unsafe.Pointer(pTabCur)).FmovetoTarget = **(**Ti64)(__ccgo_up(bp + 504))
|
|
(*TVdbeCursor)(unsafe.Pointer(pTabCur)).FdeferredMoveto = uint8(1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pTabCur)).FcacheStatus = uint32(CACHE_STALE)
|
|
*(*uintptr)(unsafe.Pointer(pTabCur + 16)) = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
(*TVdbeCursor)(unsafe.Pointer(pTabCur)).FpAltCursor = pC27
|
|
} else {
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp + 504))
|
|
}
|
|
} else {
|
|
_sqlite3VdbeMemSetNull(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56)
|
|
}
|
|
goto _189
|
|
/* Opcode: FinishSeek P1 * * * *
|
|
**
|
|
** If cursor P1 was previously moved via OP_DeferredSeek, complete that
|
|
** seek operation now, without further delay. If the cursor seek has
|
|
** already occurred, this instruction is a no-op.
|
|
*/
|
|
_124:
|
|
; /* The P1 index cursor */
|
|
pC28 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if (*TVdbeCursor)(unsafe.Pointer(pC28)).FdeferredMoveto != 0 {
|
|
rc = _sqlite3VdbeFinishMoveto(tls, pC28)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: IdxGE P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** The P4 register values beginning with P3 form an unpacked index
|
|
** key that omits the PRIMARY KEY. Compare this key value against the index
|
|
** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID
|
|
** fields at the end.
|
|
**
|
|
** If the P1 index entry is greater than or equal to the key value
|
|
** then jump to P2. Otherwise fall through to the next instruction.
|
|
*/
|
|
/* Opcode: IdxGT P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** The P4 register values beginning with P3 form an unpacked index
|
|
** key that omits the PRIMARY KEY. Compare this key value against the index
|
|
** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID
|
|
** fields at the end.
|
|
**
|
|
** If the P1 index entry is greater than the key value
|
|
** then jump to P2. Otherwise fall through to the next instruction.
|
|
*/
|
|
/* Opcode: IdxLT P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** The P4 register values beginning with P3 form an unpacked index
|
|
** key that omits the PRIMARY KEY or ROWID. Compare this key value against
|
|
** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or
|
|
** ROWID on the P1 index.
|
|
**
|
|
** If the P1 index entry is less than the key value then jump to P2.
|
|
** Otherwise fall through to the next instruction.
|
|
*/
|
|
/* Opcode: IdxLE P1 P2 P3 P4 *
|
|
** Synopsis: key=r[P3@P4]
|
|
**
|
|
** The P4 register values beginning with P3 form an unpacked index
|
|
** key that omits the PRIMARY KEY or ROWID. Compare this key value against
|
|
** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or
|
|
** ROWID on the P1 index.
|
|
**
|
|
** If the P1 index entry is less than or equal to the key value then jump
|
|
** to P2. Otherwise fall through to the next instruction.
|
|
*/
|
|
_128:
|
|
; /* jump, ncycle */
|
|
_127:
|
|
; /* jump, ncycle */
|
|
_126:
|
|
; /* jump, ncycle */
|
|
_125:
|
|
;
|
|
pC29 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 512))).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pC29)).FpKeyInfo
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 512))).FnField = libc.Uint16FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp4.Fi)
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) < int32(OP_IdxLT) {
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 512))).Fdefault_rc = int8(-int32(1))
|
|
} else {
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 512))).Fdefault_rc = 0
|
|
}
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 512))).FaMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
/* Inlined version of sqlite3VdbeIdxKeyCompare() */
|
|
nCellKey = 0
|
|
pCur2 = *(*uintptr)(unsafe.Pointer(pC29 + 48))
|
|
nCellKey = libc.Int64FromUint32(_sqlite3BtreePayloadSize(tls, pCur2))
|
|
/* nCellKey will always be between 0 and 0xffffffff because of the way
|
|
** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */
|
|
if nCellKey <= 0 || nCellKey > int64(0x7fffffff) {
|
|
rc = _sqlite3CorruptError(tls, int32(103483))
|
|
goto abort_due_to_error
|
|
}
|
|
_sqlite3VdbeMemInit(tls, bp+552, db, uint16(0))
|
|
rc = _sqlite3VdbeMemFromBtreeZeroOffset(tls, pCur2, libc.Uint32FromInt64(nCellKey), bp+552)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
res11 = _sqlite3VdbeRecordCompareWithSkip(tls, (**(**TMem)(__ccgo_up(bp + 552))).Fn, (**(**TMem)(__ccgo_up(bp + 552))).Fz, bp+512, 0)
|
|
_sqlite3VdbeMemReleaseMalloc(tls, bp+552)
|
|
/* End of inlined sqlite3VdbeIdxKeyCompare() */
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode)&int32(1) == libc.Int32FromInt32(OP_IdxLT)&libc.Int32FromInt32(1) {
|
|
res11 = -res11
|
|
} else {
|
|
res11 = res11 + 1
|
|
}
|
|
if res11 > 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: Destroy P1 P2 P3 * *
|
|
**
|
|
** Delete an entire database table or index whose root page in the database
|
|
** file is given by P1.
|
|
**
|
|
** The table being destroyed is in the main database file if P3==0. If
|
|
** P3==1 then the table to be destroyed is in the auxiliary database file
|
|
** that is used to store tables create using CREATE TEMPORARY TABLE.
|
|
**
|
|
** If AUTOVACUUM is enabled then it is possible that another root page
|
|
** might be moved into the newly deleted root page in order to keep all
|
|
** root pages contiguous at the beginning of the database. The former
|
|
** value of the root page that moved - its value before the move occurred -
|
|
** is stored in register P2. If no page movement was required (because the
|
|
** table being dropped was already the last one in the database) then a
|
|
** zero is stored in register P2. If AUTOVACUUM is disabled then a zero
|
|
** is stored in register P2.
|
|
**
|
|
** This opcode throws an error if there are any active reader VMs when
|
|
** it is invoked. This is done to avoid the difficulty associated with
|
|
** updating existing cursors when a root page is moved in an AUTOVACUUM
|
|
** database. This error is thrown even if the database is not an AUTOVACUUM
|
|
** db in order to avoid introducing an incompatibility between autovacuum
|
|
** and non-autovacuum modes.
|
|
**
|
|
** See also: Clear
|
|
*/
|
|
_129:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Null)
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeRead > (*Tsqlite3)(unsafe.Pointer(db)).FnVDestroy+int32(1) {
|
|
rc = int32(SQLITE_LOCKED)
|
|
(*TVdbe)(unsafe.Pointer(p)).FerrorAction = uint8(OE_Abort)
|
|
goto abort_due_to_error
|
|
} else {
|
|
iDb2 = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
**(**int32)(__ccgo_up(bp + 608)) = 0 /* Not needed. Only to silence a warning. */
|
|
rc = _sqlite3BtreeDropTable(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb2)*32))).FpBt, (*TOp)(unsafe.Pointer(pOp)).Fp1, bp+608)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Int)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = int64(**(**int32)(__ccgo_up(bp + 608)))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**int32)(__ccgo_up(bp + 608)) != 0 {
|
|
_sqlite3RootPageMoved(tls, db, iDb2, libc.Uint32FromInt32(**(**int32)(__ccgo_up(bp + 608))), libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp1))
|
|
/* All OP_Destroy operations occur on the same btree */
|
|
resetSchemaOnFault = libc.Uint8FromInt32(iDb2 + int32(1))
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: Clear P1 P2 P3
|
|
**
|
|
** Delete all contents of the database table or index whose root page
|
|
** in the database file is given by P1. But, unlike Destroy, do not
|
|
** remove the table or index from the database file.
|
|
**
|
|
** The table being cleared is in the main database file if P2==0. If
|
|
** P2==1 then the table to be cleared is in the auxiliary database file
|
|
** that is used to store tables create using CREATE TEMPORARY TABLE.
|
|
**
|
|
** If the P3 value is non-zero, then the row change count is incremented
|
|
** by the number of rows in the table being cleared. If P3 is greater
|
|
** than zero, then the value stored in register P3 is also incremented
|
|
** by the number of rows in the table being cleared.
|
|
**
|
|
** See also: Destroy
|
|
*/
|
|
_130:
|
|
;
|
|
**(**Ti64)(__ccgo_up(bp + 616)) = 0
|
|
rc = _sqlite3BtreeClearTable(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*32))).FpBt, libc.Int32FromUint32(libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp1)), bp+616)
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
**(**Ti64)(__ccgo_up(p + 56)) += **(**Ti64)(__ccgo_up(bp + 616))
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 > 0 {
|
|
*(*Ti64)(unsafe.Pointer(aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56)) += **(**Ti64)(__ccgo_up(bp + 616))
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: ResetSorter P1 * * * *
|
|
**
|
|
** Delete all contents from the ephemeral table or sorter
|
|
** that is open on cursor P1.
|
|
**
|
|
** This opcode only works for cursors used for sorting and
|
|
** opened with OP_OpenEphemeral or OP_SorterOpen.
|
|
*/
|
|
_131:
|
|
;
|
|
pC30 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pC30)).FeCurType) == int32(CURTYPE_SORTER) {
|
|
_sqlite3VdbeSorterReset(tls, db, *(*uintptr)(unsafe.Pointer(pC30 + 48)))
|
|
} else {
|
|
rc = _sqlite3BtreeClearTableOfCursor(tls, *(*uintptr)(unsafe.Pointer(pC30 + 48)))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: CreateBtree P1 P2 P3 * *
|
|
** Synopsis: r[P2]=root iDb=P1 flags=P3
|
|
**
|
|
** Allocate a new b-tree in the main database file if P1==0 or in the
|
|
** TEMP database file if P1==1 or in an attached database if
|
|
** P1>1. The P3 argument must be 1 (BTREE_INTKEY) for a rowid table
|
|
** it must be 2 (BTREE_BLOBKEY) for an index or WITHOUT ROWID table.
|
|
** The root page number of the new b-tree is stored in register P2.
|
|
*/
|
|
_132:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
**(**TPgno)(__ccgo_up(bp + 624)) = uint32(0)
|
|
pDb3 = (*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32
|
|
rc = _sqlite3BtreeCreateTable(tls, (*TDb)(unsafe.Pointer(pDb3)).FpBt, bp+624, (*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = libc.Int64FromUint32(**(**TPgno)(__ccgo_up(bp + 624)))
|
|
goto _189
|
|
/* Opcode: SqlExec P1 P2 * P4 *
|
|
**
|
|
** Run the SQL statement or statements specified in the P4 string.
|
|
**
|
|
** The P1 parameter is a bitmask of options:
|
|
**
|
|
** 0x0001 Disable Auth and Trace callbacks while the statements
|
|
** in P4 are running.
|
|
**
|
|
** 0x0002 Set db->nAnalysisLimit to P2 while the statements in
|
|
** P4 are running.
|
|
**
|
|
*/
|
|
_133:
|
|
;
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSqlExec = (*Tsqlite3)(unsafe.Pointer(db)).FnSqlExec + 1
|
|
**(**uintptr)(__ccgo_up(bp + 632)) = uintptr(0)
|
|
xAuth = (*Tsqlite3)(unsafe.Pointer(db)).FxAuth
|
|
mTrace = (*Tsqlite3)(unsafe.Pointer(db)).FmTrace
|
|
savedAnalysisLimit = (*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1&int32(0x0001) != 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FxAuth = uintptr(0)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FmTrace = uint8(0)
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1&int32(0x0002) != 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
}
|
|
rc = Xsqlite3_exec(tls, db, *(*uintptr)(unsafe.Pointer(pOp + 16)), uintptr(0), uintptr(0), bp+632)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSqlExec = (*Tsqlite3)(unsafe.Pointer(db)).FnSqlExec - 1
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FxAuth = xAuth
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FmTrace = mTrace
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnAnalysisLimit = savedAnalysisLimit
|
|
if **(**uintptr)(__ccgo_up(bp + 632)) != 0 || rc != 0 {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, **(**uintptr)(__ccgo_up(bp + 632))))
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 632)))
|
|
if rc == int32(SQLITE_NOMEM) {
|
|
goto no_mem
|
|
}
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: ParseSchema P1 * * P4 *
|
|
**
|
|
** Read and parse all entries from the schema table of database P1
|
|
** that match the WHERE clause P4. If P4 is a NULL pointer, then the
|
|
** entire schema for P1 is reparsed.
|
|
**
|
|
** This opcode invokes the parser to create a new virtual machine,
|
|
** then runs the new virtual machine. It is thus a re-entrant opcode.
|
|
*/
|
|
_134:
|
|
;
|
|
/* Any prepared statement that invokes this opcode will hold mutexes
|
|
** on every btree. This is a prerequisite for invoking
|
|
** sqlite3InitCallback().
|
|
*/
|
|
iDb3 = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
if *(*uintptr)(unsafe.Pointer(pOp + 16)) == uintptr(0) {
|
|
_sqlite3SchemaClear(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb3)*32))).FpSchema)
|
|
**(**Tu32)(__ccgo_up(db + 44)) &= libc.Uint32FromInt32(^libc.Int32FromInt32(DBFLAG_SchemaKnownOk))
|
|
rc = _sqlite3InitOne(tls, db, iDb3, p+168, uint32((*TOp)(unsafe.Pointer(pOp)).Fp5))
|
|
**(**Tu32)(__ccgo_up(db + 44)) |= uint32(DBFLAG_SchemaChange)
|
|
libc.SetBitFieldPtr16Uint32(p+200, libc.Uint32FromInt32(0), 0, 0x3)
|
|
} else {
|
|
zSchema = __ccgo_ts + 6288
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).Fdb = db
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).FiDb = iDb3
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).FpzErrMsg = p + 168
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).FmInitFlags = uint32(0)
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).FmxPage = _sqlite3BtreeLastPage(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb3)*32))).FpBt)
|
|
zSql = _sqlite3MPrintf(tls, db, __ccgo_ts+6302, libc.VaList(bp+984, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb3)*32))).FzDbSName, zSchema, *(*uintptr)(unsafe.Pointer(pOp + 16))))
|
|
if zSql == uintptr(0) {
|
|
rc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy = uint8(1)
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).Frc = SQLITE_OK
|
|
(**(**TInitData)(__ccgo_up(bp + 640))).FnInitRow = uint32(0)
|
|
rc = Xsqlite3_exec(tls, db, zSql, __ccgo_fp(_sqlite3InitCallback), bp+640, uintptr(0))
|
|
if rc == SQLITE_OK {
|
|
rc = (**(**TInitData)(__ccgo_up(bp + 640))).Frc
|
|
}
|
|
if rc == SQLITE_OK && (**(**TInitData)(__ccgo_up(bp + 640))).FnInitRow == uint32(0) {
|
|
/* The OP_ParseSchema opcode with a non-NULL P4 argument should parse
|
|
** at least one SQL statement. Any less than that indicates that
|
|
** the sqlite_schema table is corrupt. */
|
|
rc = _sqlite3CorruptError(tls, int32(103776))
|
|
}
|
|
_sqlite3DbFreeNN(tls, db, zSql)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Finit1.Fbusy = uint8(0)
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
_sqlite3ResetAllSchemasOfConnection(tls, db)
|
|
if rc == int32(SQLITE_NOMEM) {
|
|
goto no_mem
|
|
}
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: LoadAnalysis P1 * * * *
|
|
**
|
|
** Read the sqlite_stat1 table for database P1 and load the content
|
|
** of that table into the internal index hash table. This will cause
|
|
** the analysis to be used when preparing all subsequent queries.
|
|
*/
|
|
_135:
|
|
;
|
|
rc = _sqlite3AnalysisLoad(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: DropTable P1 * * P4 *
|
|
**
|
|
** Remove the internal (in-memory) data structures that describe
|
|
** the table named P4 in database P1. This is called after a table
|
|
** is dropped from disk (using the Destroy opcode) in order to keep
|
|
** the internal representation of the
|
|
** schema consistent with what is on disk.
|
|
*/
|
|
_136:
|
|
;
|
|
_sqlite3UnlinkAndDeleteTable(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
goto _189
|
|
/* Opcode: DropIndex P1 * * P4 *
|
|
**
|
|
** Remove the internal (in-memory) data structures that describe
|
|
** the index named P4 in database P1. This is called after an index
|
|
** is dropped from disk (using the Destroy opcode)
|
|
** in order to keep the internal representation of the
|
|
** schema consistent with what is on disk.
|
|
*/
|
|
_137:
|
|
;
|
|
_sqlite3UnlinkAndDeleteIndex(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
goto _189
|
|
/* Opcode: DropTrigger P1 * * P4 *
|
|
**
|
|
** Remove the internal (in-memory) data structures that describe
|
|
** the trigger named P4 in database P1. This is called after a trigger
|
|
** is dropped from disk (using the Destroy opcode) in order to keep
|
|
** the internal representation of the
|
|
** schema consistent with what is on disk.
|
|
*/
|
|
_138:
|
|
;
|
|
_sqlite3UnlinkAndDeleteTrigger(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
goto _189
|
|
/* Opcode: IntegrityCk P1 P2 P3 P4 P5
|
|
**
|
|
** Do an analysis of the currently open database. Store in
|
|
** register (P1+1) the text of an error message describing any problems.
|
|
** If no problems are found, store a NULL in register (P1+1).
|
|
**
|
|
** The register (P1) contains one less than the maximum number of allowed
|
|
** errors. At most reg(P1) errors will be reported.
|
|
** In other words, the analysis stops as soon as reg(P1) errors are
|
|
** seen. Reg(P1) is updated with the number of errors remaining.
|
|
**
|
|
** The root page numbers of all tables in the database are integers
|
|
** stored in P4_INTARRAY argument.
|
|
**
|
|
** If P5 is not zero, the check is done on the auxiliary database
|
|
** file, not the main database file.
|
|
**
|
|
** This opcode is used to implement the integrity_check pragma.
|
|
*/
|
|
_139:
|
|
; /* Register keeping track of errors remaining */
|
|
nRoot = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
aRoot = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
pnErr = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1+int32(1))*56
|
|
rc = _sqlite3BtreeIntegrityCheck(tls, db, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp5)*32))).FpBt, aRoot+1*4, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56, nRoot, int32(*(*Ti64)(unsafe.Pointer(pnErr)))+int32(1), bp+680, bp+688)
|
|
_sqlite3VdbeMemSetNull(tls, pIn1)
|
|
if **(**int32)(__ccgo_up(bp + 680)) == 0 {
|
|
} else {
|
|
if rc != 0 {
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 688)))
|
|
goto abort_due_to_error
|
|
} else {
|
|
*(*Ti64)(unsafe.Pointer(pnErr)) -= int64(**(**int32)(__ccgo_up(bp + 680)) - int32(1))
|
|
_sqlite3VdbeMemSetStr(tls, pIn1, **(**uintptr)(__ccgo_up(bp + 688)), int64(-int32(1)), uint8(SQLITE_UTF8), __ccgo_fp(Xsqlite3_free))
|
|
}
|
|
}
|
|
_sqlite3VdbeChangeEncoding(tls, pIn1, libc.Int32FromUint8(encoding))
|
|
goto check_for_interrupt
|
|
/* Opcode: IFindKey P1 P2 P3 P4 *
|
|
**
|
|
** This instruction always follows an OP_Found with the same P1, P2 and P3
|
|
** values as this instruction and a non-zero P4 value. The P4 value to
|
|
** this opcode is of type P4_INDEX and contains a pointer to the Index
|
|
** object of for the index being searched.
|
|
**
|
|
** This opcode uses sqlite3VdbeFindIndexKey() to search around the current
|
|
** cursor location for an index key that exactly matches all fields that
|
|
** are not indexed expressions or references to VIRTUAL generated columns,
|
|
** and either exactly match or are real numbers that are within 2 ULPs of
|
|
** each other if the don't match.
|
|
**
|
|
** To put it another way, this opcode looks for nearby index entries that
|
|
** are very close to the search key, but which might have small differences
|
|
** in floating-point values that come via an expression.
|
|
**
|
|
** If no nearby alternative entry is found in cursor P1, then jump to P2.
|
|
** But if a close match is found, fall through.
|
|
**
|
|
** This opcode is used by PRAGMA integrity_check to help distinguish
|
|
** between truely corrupt indexes and expression indexes that are holding
|
|
** floating-point values that are off by one or two ULPs.
|
|
*/
|
|
_140:
|
|
;
|
|
pC31 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
libc.Xmemset(tls, bp+704, 0, uint64(40))
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 704))).FaMem = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 704))).FnField = (*TIndex)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pOp + 16)))).FnColumn
|
|
(**(**TUnpackedRecord)(__ccgo_up(bp + 704))).FpKeyInfo = (*TVdbeCursor)(unsafe.Pointer(pC31)).FpKeyInfo
|
|
rc = _sqlite3VdbeFindIndexKey(tls, *(*uintptr)(unsafe.Pointer(pC31 + 48)), *(*uintptr)(unsafe.Pointer(pOp + 16)), bp+704, bp+696, int32(1))
|
|
if rc != 0 || **(**int32)(__ccgo_up(bp + 696)) != 0 {
|
|
rc = SQLITE_OK
|
|
goto jump_to_p2
|
|
}
|
|
(*TVdbeCursor)(unsafe.Pointer(pC31)).FnullRow = uint8(0)
|
|
goto _189
|
|
/* Opcode: RowSetAdd P1 P2 * * *
|
|
** Synopsis: rowset(P1)=r[P2]
|
|
**
|
|
** Insert the integer value held by register P2 into a RowSet object
|
|
** held in register P1.
|
|
**
|
|
** An assertion fails if P2 is not an integer.
|
|
*/
|
|
_141:
|
|
; /* in1, in2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Blob) == 0 {
|
|
if _sqlite3VdbeMemSetRowSet(tls, pIn1) != 0 {
|
|
goto no_mem
|
|
}
|
|
}
|
|
_sqlite3RowSetInsert(tls, (*TMem)(unsafe.Pointer(pIn1)).Fz, *(*Ti64)(unsafe.Pointer(pIn2)))
|
|
goto _189
|
|
/* Opcode: RowSetRead P1 P2 P3 * *
|
|
** Synopsis: r[P3]=rowset(P1)
|
|
**
|
|
** Extract the smallest value from the RowSet object in P1
|
|
** and put that value into register P3.
|
|
** Or, if RowSet object P1 is initially empty, leave P3
|
|
** unchanged and jump to instruction P2.
|
|
*/
|
|
_142:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Blob) == 0 || _sqlite3RowSetNext(tls, (*TMem)(unsafe.Pointer(pIn1)).Fz, bp+744) == 0 {
|
|
/* The boolean index is empty */
|
|
_sqlite3VdbeMemSetNull(tls, pIn1)
|
|
goto jump_to_p2_and_check_for_interrupt
|
|
} else {
|
|
/* A value was pulled from the index */
|
|
_sqlite3VdbeMemSetInt64(tls, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56, **(**Ti64)(__ccgo_up(bp + 744)))
|
|
}
|
|
goto check_for_interrupt
|
|
/* Opcode: RowSetTest P1 P2 P3 P4
|
|
** Synopsis: if r[P3] in rowset(P1) goto P2
|
|
**
|
|
** Register P3 is assumed to hold a 64-bit integer value. If register P1
|
|
** contains a RowSet object and that RowSet object contains
|
|
** the value held in P3, jump to register P2. Otherwise, insert the
|
|
** integer in P3 into the RowSet and continue on to the
|
|
** next opcode.
|
|
**
|
|
** The RowSet object is optimized for the case where sets of integers
|
|
** are inserted in distinct phases, which each set contains no duplicates.
|
|
** Each set is identified by a unique P4 value. The first set
|
|
** must have P4==0, the final set must have P4==-1, and for all other sets
|
|
** must have P4>0.
|
|
**
|
|
** This allows optimizations: (a) when P4==0 there is no need to test
|
|
** the RowSet object for P3, as it is guaranteed not to contain it,
|
|
** (b) when P4==-1 there is no need to insert the value, as it will
|
|
** never be tested for, and (c) when a value that is part of set X is
|
|
** inserted, there is no need to search to see if the same value was
|
|
** previously inserted as part of set X (only if it was previously
|
|
** inserted as part of some other set).
|
|
*/
|
|
_143:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
iSet = (*TOp)(unsafe.Pointer(pOp)).Fp4.Fi
|
|
/* If there is anything other than a rowset object in memory cell P1,
|
|
** delete it now and initialize P1 with an empty rowset
|
|
*/
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Blob) == 0 {
|
|
if _sqlite3VdbeMemSetRowSet(tls, pIn1) != 0 {
|
|
goto no_mem
|
|
}
|
|
}
|
|
if iSet != 0 {
|
|
exists = _sqlite3RowSetTest(tls, (*TMem)(unsafe.Pointer(pIn1)).Fz, iSet, *(*Ti64)(unsafe.Pointer(pIn3)))
|
|
if exists != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
if iSet >= 0 {
|
|
_sqlite3RowSetInsert(tls, (*TMem)(unsafe.Pointer(pIn1)).Fz, *(*Ti64)(unsafe.Pointer(pIn3)))
|
|
}
|
|
goto _189
|
|
/* Opcode: Program P1 P2 P3 P4 P5
|
|
**
|
|
** Execute the trigger program passed as P4 (type P4_SUBPROGRAM).
|
|
**
|
|
** P1 contains the address of the memory cell that contains the first memory
|
|
** cell in an array of values used as arguments to the sub-program. P2
|
|
** contains the address to jump to if the sub-program throws an IGNORE
|
|
** exception using the RAISE() function. P2 might be zero, if there is
|
|
** no possibility that an IGNORE exception will be raised.
|
|
** Register P3 contains the address
|
|
** of a memory cell in this (the parent) VM that is used to allocate the
|
|
** memory required by the sub-vdbe at runtime.
|
|
**
|
|
** P4 is a pointer to the VM containing the trigger program.
|
|
**
|
|
** If P5 is non-zero, then recursive program invocation is enabled.
|
|
*/
|
|
_144:
|
|
; /* Token identifying trigger */
|
|
pProgram = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
pRt = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
/* If the p5 flag is clear, then recursive invocation of triggers is
|
|
** disabled for backwards compatibility (p5 is set if this sub-program
|
|
** is really a trigger, not a foreign key action, and the flag set
|
|
** and cleared by the "PRAGMA recursive_triggers" command is clear).
|
|
**
|
|
** It is recursive invocation of triggers, at the SQL level, that is
|
|
** disabled. In some cases a single trigger may generate more than one
|
|
** SubProgram (if the trigger may be executed with more than one different
|
|
** ON CONFLICT algorithm). SubProgram structures associated with a
|
|
** single trigger all have the same value for the SubProgram.token
|
|
** variable. */
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp5 != 0 {
|
|
t1 = (*TSubProgram)(unsafe.Pointer(pProgram)).Ftoken
|
|
pFrame2 = (*TVdbe)(unsafe.Pointer(p)).FpFrame
|
|
for {
|
|
if !(pFrame2 != 0 && (*TVdbeFrame)(unsafe.Pointer(pFrame2)).Ftoken != t1) {
|
|
break
|
|
}
|
|
goto _278
|
|
_278:
|
|
;
|
|
pFrame2 = (*TVdbeFrame)(unsafe.Pointer(pFrame2)).FpParent
|
|
}
|
|
if pFrame2 != 0 {
|
|
goto _189
|
|
}
|
|
}
|
|
if (*TVdbe)(unsafe.Pointer(p)).FnFrame >= **(**int32)(__ccgo_up(db + 136 + 10*4)) {
|
|
rc = int32(SQLITE_ERROR)
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+6345, 0)
|
|
goto abort_due_to_error
|
|
}
|
|
/* Register pRt is used to store the memory required to save the state
|
|
** of the current program, and the memory required at runtime to execute
|
|
** the trigger program. If this trigger has been fired before, then pRt
|
|
** is already allocated. Otherwise, it must be initialized. */
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pRt)).Fflags)&int32(MEM_Blob) == 0 {
|
|
/* SubProgram.nMem is set to the number of memory cells used by the
|
|
** program stored in SubProgram.aOp. As well as these, one memory
|
|
** cell is required for each cursor used by the program. Set local
|
|
** variable nMem (and later, VdbeFrame.nChildMem) to this value.
|
|
*/
|
|
nMem = (*TSubProgram)(unsafe.Pointer(pProgram)).FnMem + (*TSubProgram)(unsafe.Pointer(pProgram)).FnCsr
|
|
if (*TSubProgram)(unsafe.Pointer(pProgram)).FnCsr == 0 {
|
|
nMem = nMem + 1
|
|
}
|
|
nByte2 = libc.Int64FromUint64(uint64((libc.Uint64FromInt64(112)+libc.Uint64FromInt32(7))&libc.Uint64FromInt32(^libc.Int32FromInt32(7))+libc.Uint64FromInt32(nMem)*uint64(56)+libc.Uint64FromInt32((*TSubProgram)(unsafe.Pointer(pProgram)).FnCsr)*uint64(8)) + libc.Uint64FromInt64((int64(7)+int64((*TSubProgram)(unsafe.Pointer(pProgram)).FnOp))/int64(8)))
|
|
pFrame2 = _sqlite3DbMallocZero(tls, db, libc.Uint64FromInt64(nByte2))
|
|
if !(pFrame2 != 0) {
|
|
goto no_mem
|
|
}
|
|
_sqlite3VdbeMemRelease(tls, pRt)
|
|
(*TMem)(unsafe.Pointer(pRt)).Fflags = libc.Uint16FromInt32(libc.Int32FromInt32(MEM_Blob) | libc.Int32FromInt32(MEM_Dyn))
|
|
(*TMem)(unsafe.Pointer(pRt)).Fz = pFrame2
|
|
(*TMem)(unsafe.Pointer(pRt)).Fn = int32(nByte2)
|
|
(*TMem)(unsafe.Pointer(pRt)).FxDel = __ccgo_fp(_sqlite3VdbeFrameMemDel)
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).Fv = p
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnChildMem = nMem
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnChildCsr = (*TSubProgram)(unsafe.Pointer(pProgram)).FnCsr
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).Fpc = int32((int64(pOp) - int64(aOp)) / 24)
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FaMem = (*TVdbe)(unsafe.Pointer(p)).FaMem
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnMem = (*TVdbe)(unsafe.Pointer(p)).FnMem
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FapCsr = (*TVdbe)(unsafe.Pointer(p)).FapCsr
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnCursor = (*TVdbe)(unsafe.Pointer(p)).FnCursor
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FaOp = (*TVdbe)(unsafe.Pointer(p)).FaOp
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnOp = (*TVdbe)(unsafe.Pointer(p)).FnOp
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).Ftoken = (*TSubProgram)(unsafe.Pointer(pProgram)).Ftoken
|
|
pEnd = pFrame2 + uintptr((libc.Uint64FromInt64(112)+libc.Uint64FromInt32(7))&libc.Uint64FromInt32(^libc.Int32FromInt32(7))) + uintptr((*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnChildMem)*56
|
|
pMem1 = pFrame2 + uintptr((libc.Uint64FromInt64(112)+libc.Uint64FromInt32(7))&libc.Uint64FromInt32(^libc.Int32FromInt32(7)))
|
|
for {
|
|
if !(pMem1 != pEnd) {
|
|
break
|
|
}
|
|
(*TMem)(unsafe.Pointer(pMem1)).Fflags = uint16(MEM_Undefined)
|
|
(*TMem)(unsafe.Pointer(pMem1)).Fdb = db
|
|
goto _279
|
|
_279:
|
|
;
|
|
pMem1 += 56
|
|
}
|
|
} else {
|
|
pFrame2 = (*TMem)(unsafe.Pointer(pRt)).Fz
|
|
}
|
|
(*TVdbe)(unsafe.Pointer(p)).FnFrame = (*TVdbe)(unsafe.Pointer(p)).FnFrame + 1
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FpParent = (*TVdbe)(unsafe.Pointer(p)).FpFrame
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FlastRowid = (*Tsqlite3)(unsafe.Pointer(db)).FlastRowid
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnChange = (*TVdbe)(unsafe.Pointer(p)).FnChange
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnDbChange = (*Tsqlite3)(unsafe.Pointer((*TVdbe)(unsafe.Pointer(p)).Fdb)).FnChange
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FpAuxData = (*TVdbe)(unsafe.Pointer(p)).FpAuxData
|
|
(*TVdbe)(unsafe.Pointer(p)).FpAuxData = uintptr(0)
|
|
(*TVdbe)(unsafe.Pointer(p)).FnChange = 0
|
|
(*TVdbe)(unsafe.Pointer(p)).FpFrame = pFrame2
|
|
v191 = pFrame2 + uintptr((libc.Uint64FromInt64(112)+libc.Uint64FromInt32(7))&libc.Uint64FromInt32(^libc.Int32FromInt32(7)))
|
|
aMem = v191
|
|
(*TVdbe)(unsafe.Pointer(p)).FaMem = v191
|
|
(*TVdbe)(unsafe.Pointer(p)).FnMem = (*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnChildMem
|
|
(*TVdbe)(unsafe.Pointer(p)).FnCursor = libc.Int32FromUint16(libc.Uint16FromInt32((*TVdbeFrame)(unsafe.Pointer(pFrame2)).FnChildCsr))
|
|
(*TVdbe)(unsafe.Pointer(p)).FapCsr = aMem + uintptr((*TVdbe)(unsafe.Pointer(p)).FnMem)*56
|
|
(*TVdbeFrame)(unsafe.Pointer(pFrame2)).FaOnce = (*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TSubProgram)(unsafe.Pointer(pProgram)).FnCsr)*8
|
|
libc.Xmemset(tls, (*TVdbeFrame)(unsafe.Pointer(pFrame2)).FaOnce, 0, libc.Uint64FromInt32(((*TSubProgram)(unsafe.Pointer(pProgram)).FnOp+int32(7))/int32(8)))
|
|
v191 = (*TSubProgram)(unsafe.Pointer(pProgram)).FaOp
|
|
aOp = v191
|
|
(*TVdbe)(unsafe.Pointer(p)).FaOp = v191
|
|
(*TVdbe)(unsafe.Pointer(p)).FnOp = (*TSubProgram)(unsafe.Pointer(pProgram)).FnOp
|
|
pOp = aOp + uintptr(-libc.Int32FromInt32(1))*24
|
|
goto check_for_interrupt
|
|
/* Opcode: Param P1 P2 * * *
|
|
**
|
|
** This opcode is only ever present in sub-programs called via the
|
|
** OP_Program instruction. Copy a value currently stored in a memory
|
|
** cell of the calling (parent) frame to cell P2 in the current frames
|
|
** address space. This is used by trigger programs to access the new.*
|
|
** and old.* values.
|
|
**
|
|
** The address of the cell in the parent frame is determined by adding
|
|
** the value of the P1 argument to the value of the P1 argument to the
|
|
** calling OP_Program instruction.
|
|
*/
|
|
_145:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
pFrame3 = (*TVdbe)(unsafe.Pointer(p)).FpFrame
|
|
pIn = (*TVdbeFrame)(unsafe.Pointer(pFrame3)).FaMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1+(**(**TOp)(__ccgo_up((*TVdbeFrame)(unsafe.Pointer(pFrame3)).FaOp + uintptr((*TVdbeFrame)(unsafe.Pointer(pFrame3)).Fpc)*24))).Fp1)*56
|
|
_sqlite3VdbeMemShallowCopy(tls, pOut, pIn, int32(MEM_Ephem))
|
|
goto _189
|
|
/* Opcode: FkCounter P1 P2 * * *
|
|
** Synopsis: fkctr[P1]+=P2
|
|
**
|
|
** Increment a "constraint counter" by P2 (P2 may be negative or positive).
|
|
** If P1 is non-zero, the database constraint counter is incremented
|
|
** (deferred foreign key constraints). Otherwise, if P1 is zero, the
|
|
** statement counter is incremented (immediate foreign key constraints).
|
|
*/
|
|
_146:
|
|
;
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 != 0 {
|
|
**(**Ti64)(__ccgo_up(db + 784)) += int64((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
} else {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Fflags&uint64(SQLITE_DeferFKs) != 0 {
|
|
**(**Ti64)(__ccgo_up(db + 792)) += int64((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
} else {
|
|
**(**Ti64)(__ccgo_up(p + 80)) += int64((*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: FkIfZero P1 P2 * * *
|
|
** Synopsis: if fkctr[P1]==0 goto P2
|
|
**
|
|
** This opcode tests if a foreign key constraint-counter is currently zero.
|
|
** If so, jump to instruction P2. Otherwise, fall through to the next
|
|
** instruction.
|
|
**
|
|
** If P1 is non-zero, then the jump is taken if the database constraint-counter
|
|
** is zero (the one that counts deferred constraint violations). If P1 is
|
|
** zero, the jump is taken if the statement constraint-counter is zero
|
|
** (immediate foreign key constraint violations).
|
|
*/
|
|
_147:
|
|
; /* jump */
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 != 0 {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredCons == 0 && (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredImmCons == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
} else {
|
|
if (*TVdbe)(unsafe.Pointer(p)).FnFkConstraint == 0 && (*Tsqlite3)(unsafe.Pointer(db)).FnDeferredImmCons == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: MemMax P1 P2 * * *
|
|
** Synopsis: r[P1]=max(r[P1],r[P2])
|
|
**
|
|
** P1 is a register in the root frame of this VM (the root frame is
|
|
** different from the current frame if this instruction is being executed
|
|
** within a sub-program). Set the value of register P1 to the maximum of
|
|
** its current value and the value in register P2.
|
|
**
|
|
** This instruction throws an error if the memory cell is not initially
|
|
** an integer.
|
|
*/
|
|
_148:
|
|
;
|
|
if (*TVdbe)(unsafe.Pointer(p)).FpFrame != 0 {
|
|
pFrame4 = (*TVdbe)(unsafe.Pointer(p)).FpFrame
|
|
for {
|
|
if !((*TVdbeFrame)(unsafe.Pointer(pFrame4)).FpParent != 0) {
|
|
break
|
|
}
|
|
goto _282
|
|
_282:
|
|
;
|
|
pFrame4 = (*TVdbeFrame)(unsafe.Pointer(pFrame4)).FpParent
|
|
}
|
|
pIn1 = (*TVdbeFrame)(unsafe.Pointer(pFrame4)).FaMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
} else {
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
}
|
|
_sqlite3VdbeMemIntegerify(tls, pIn1)
|
|
pIn2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
_sqlite3VdbeMemIntegerify(tls, pIn2)
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) < *(*Ti64)(unsafe.Pointer(pIn2)) {
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) = *(*Ti64)(unsafe.Pointer(pIn2))
|
|
}
|
|
goto _189
|
|
/* Opcode: IfPos P1 P2 P3 * *
|
|
** Synopsis: if r[P1]>0 then r[P1]-=P3, goto P2
|
|
**
|
|
** Register P1 must contain an integer.
|
|
** If the value of register P1 is 1 or greater, subtract P3 from the
|
|
** value in P1 and jump to P2.
|
|
**
|
|
** If the initial value of register P1 is less than 1, then the
|
|
** value is unchanged and control passes through to the next instruction.
|
|
*/
|
|
_149:
|
|
; /* jump, in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) > 0 {
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) -= int64((*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: OffsetLimit P1 P2 P3 * *
|
|
** Synopsis: if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1)
|
|
**
|
|
** This opcode performs a commonly used computation associated with
|
|
** LIMIT and OFFSET processing. r[P1] holds the limit counter. r[P3]
|
|
** holds the offset counter. The opcode computes the combined value
|
|
** of the LIMIT and OFFSET and stores that value in r[P2]. The r[P2]
|
|
** value computed is the total number of rows that will need to be
|
|
** visited in order to complete the query.
|
|
**
|
|
** If r[P3] is zero or negative, that means there is no OFFSET
|
|
** and r[P2] is set to be the value of the LIMIT, r[P1].
|
|
**
|
|
** if r[P1] is zero or negative, that means there is no LIMIT
|
|
** and r[P2] is set to -1.
|
|
**
|
|
** Otherwise, r[P2] is set to the sum of r[P1] and r[P3].
|
|
*/
|
|
_150:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pIn3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
**(**Ti64)(__ccgo_up(bp + 752)) = *(*Ti64)(unsafe.Pointer(pIn1))
|
|
if v217 = **(**Ti64)(__ccgo_up(bp + 752)) <= 0; !v217 {
|
|
if *(*Ti64)(unsafe.Pointer(pIn3)) > 0 {
|
|
v206 = *(*Ti64)(unsafe.Pointer(pIn3))
|
|
} else {
|
|
v206 = 0
|
|
}
|
|
}
|
|
if v217 || _sqlite3AddInt64(tls, bp+752, v206) != 0 {
|
|
/* If the LIMIT is less than or equal to zero, loop forever. This
|
|
** is documented. But also, if the LIMIT+OFFSET exceeds 2^63 then
|
|
** also loop forever. This is undocumented. In fact, one could argue
|
|
** that the loop should terminate. But assuming 1 billion iterations
|
|
** per second (far exceeding the capabilities of any current hardware)
|
|
** it would take nearly 300 years to actually reach the limit. So
|
|
** looping forever is a reasonable approximation. */
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = int64(-int32(1))
|
|
} else {
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = **(**Ti64)(__ccgo_up(bp + 752))
|
|
}
|
|
goto _189
|
|
/* Opcode: IfNotZero P1 P2 * * *
|
|
** Synopsis: if r[P1]!=0 then r[P1]--, goto P2
|
|
**
|
|
** Register P1 must contain an integer. If the content of register P1 is
|
|
** initially greater than zero, then decrement the value in register P1.
|
|
** If it is non-zero (negative or positive) and then also jump to P2.
|
|
** If register P1 is initially zero, leave it unchanged and fall through.
|
|
*/
|
|
_151:
|
|
; /* jump, in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) != 0 {
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) > 0 {
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) = *(*Ti64)(unsafe.Pointer(pIn1)) - 1
|
|
}
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: DecrJumpZero P1 P2 * * *
|
|
** Synopsis: if (--r[P1])==0 goto P2
|
|
**
|
|
** Register P1 must hold an integer. Decrement the value in P1
|
|
** and jump to P2 if the new value is exactly zero.
|
|
*/
|
|
_152:
|
|
; /* jump, in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) > int64(-libc.Int32FromInt32(1))-(libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)) {
|
|
*(*Ti64)(unsafe.Pointer(pIn1)) = *(*Ti64)(unsafe.Pointer(pIn1)) - 1
|
|
}
|
|
if *(*Ti64)(unsafe.Pointer(pIn1)) == 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: AggStep * P2 P3 P4 P5
|
|
** Synopsis: accum=r[P3] step(r[P2@P5])
|
|
**
|
|
** Execute the xStep function for an aggregate.
|
|
** The function has P5 arguments. P4 is a pointer to the
|
|
** FuncDef structure that specifies the function. Register P3 is the
|
|
** accumulator.
|
|
**
|
|
** The P5 arguments are taken from register P2 and its
|
|
** successors.
|
|
*/
|
|
/* Opcode: AggInverse * P2 P3 P4 P5
|
|
** Synopsis: accum=r[P3] inverse(r[P2@P5])
|
|
**
|
|
** Execute the xInverse function for an aggregate.
|
|
** The function has P5 arguments. P4 is a pointer to the
|
|
** FuncDef structure that specifies the function. Register P3 is the
|
|
** accumulator.
|
|
**
|
|
** The P5 arguments are taken from register P2 and its
|
|
** successors.
|
|
*/
|
|
/* Opcode: AggStep1 P1 P2 P3 P4 P5
|
|
** Synopsis: accum=r[P3] step(r[P2@P5])
|
|
**
|
|
** Execute the xStep (if P1==0) or xInverse (if P1!=0) function for an
|
|
** aggregate. The function has P5 arguments. P4 is a pointer to the
|
|
** FuncDef structure that specifies the function. Register P3 is the
|
|
** accumulator.
|
|
**
|
|
** The P5 arguments are taken from register P2 and its
|
|
** successors.
|
|
**
|
|
** This opcode is initially coded as OP_AggStep0. On first evaluation,
|
|
** the FuncDef stored in P4 is converted into an sqlite3_context and
|
|
** the opcode is changed. In this way, the initialization of the
|
|
** sqlite3_context only happens once, instead of on each call to the
|
|
** step function.
|
|
*/
|
|
_154:
|
|
;
|
|
_153:
|
|
;
|
|
n4 = libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)
|
|
/* Allocate space for (a) the context object and (n-1) extra pointers
|
|
** to append to the sqlite3_context.argv[1] array, and (b) a memory
|
|
** cell in which to store the accumulation. Be careful that the memory
|
|
** cell is 8-byte aligned, even on platforms where a pointer is 32-bits.
|
|
**
|
|
** Note: We could avoid this by using a regular memory cell from aMem[] for
|
|
** the accumulator, instead of allocating one here. */
|
|
nAlloc = uint64(uint64(libc.UintptrFromInt32(0)+48) + libc.Uint64FromInt32(n4)*libc.Uint64FromInt64(8))
|
|
pCtx = _sqlite3DbMallocRawNN(tls, db, nAlloc+uint64(56))
|
|
if pCtx == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FpOut = pCtx + uintptr(nAlloc)
|
|
_sqlite3VdbeMemInit(tls, (*Tsqlite3_context)(unsafe.Pointer(pCtx)).FpOut, db, uint16(MEM_Null))
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FpMem = uintptr(0)
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FpFunc = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FiOp = int32((int64(pOp) - int64(aOp)) / 24)
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FpVdbe = p
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FskipFlag = uint8(0)
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).FisError = 0
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).Fenc = encoding
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx)).Fargc = libc.Uint16FromInt32(n4)
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp4type = int8(-libc.Int32FromInt32(16))
|
|
*(*uintptr)(unsafe.Pointer(pOp + 16)) = pCtx
|
|
/* OP_AggInverse must have P1==1 and OP_AggStep must have P1==0 */
|
|
(*TOp)(unsafe.Pointer(pOp)).Fopcode = uint8(OP_AggStep1)
|
|
/* Fall through into OP_AggStep */
|
|
_155:
|
|
;
|
|
pCtx1 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
pMem2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
/* If this function is inside of a trigger, the register array in aMem[]
|
|
** might change from one evaluation to the next. The next block of code
|
|
** checks to see if the register array has changed, and if so it
|
|
** reinitializes the relevant parts of the sqlite3_context object */
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpMem != pMem2 {
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpMem = pMem2
|
|
i4 = libc.Int32FromUint16((*Tsqlite3_context)(unsafe.Pointer(pCtx1)).Fargc) - int32(1)
|
|
for {
|
|
if !(i4 >= 0) {
|
|
break
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(pCtx1 + 48 + uintptr(i4)*8)) = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2+i4)*56
|
|
goto _285
|
|
_285:
|
|
;
|
|
i4 = i4 - 1
|
|
}
|
|
}
|
|
(*TMem)(unsafe.Pointer(pMem2)).Fn = (*TMem)(unsafe.Pointer(pMem2)).Fn + 1
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 != 0 {
|
|
(*(*func(*libc.TLS, uintptr, int32, uintptr))(unsafe.Pointer(&struct{ uintptr }{(*TFuncDef)(unsafe.Pointer((*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpFunc)).FxInverse})))(tls, pCtx1, libc.Int32FromUint16((*Tsqlite3_context)(unsafe.Pointer(pCtx1)).Fargc), pCtx1+48)
|
|
} else {
|
|
(*(*func(*libc.TLS, uintptr, int32, uintptr))(unsafe.Pointer(&struct{ uintptr }{(*TFuncDef)(unsafe.Pointer((*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpFunc)).FxSFunc})))(tls, pCtx1, libc.Int32FromUint16((*Tsqlite3_context)(unsafe.Pointer(pCtx1)).Fargc), pCtx1+48)
|
|
} /* IMP: R-24505-23230 */
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FisError != 0 {
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FisError > 0 {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, Xsqlite3_value_text(tls, (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpOut)))
|
|
rc = (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FisError
|
|
}
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FskipFlag != 0 {
|
|
i4 = (**(**TOp)(__ccgo_up(pOp + uintptr(-libc.Int32FromInt32(1))*24))).Fp1
|
|
if i4 != 0 {
|
|
_sqlite3VdbeMemSetInt64(tls, aMem+uintptr(i4)*56, int64(1))
|
|
}
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FskipFlag = uint8(0)
|
|
}
|
|
_sqlite3VdbeMemRelease(tls, (*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpOut)
|
|
(*TMem)(unsafe.Pointer((*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FpOut)).Fflags = uint16(MEM_Null)
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx1)).FisError = 0
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: AggFinal P1 P2 * P4 *
|
|
** Synopsis: accum=r[P1] N=P2
|
|
**
|
|
** P1 is the memory location that is the accumulator for an aggregate
|
|
** or window function. Execute the finalizer function
|
|
** for an aggregate and store the result in P1.
|
|
**
|
|
** P2 is the number of arguments that the step function takes and
|
|
** P4 is a pointer to the FuncDef for this function. The P2
|
|
** argument is not used by this opcode. It is only there to disambiguate
|
|
** functions that can take varying numbers of arguments. The
|
|
** P4 argument is only needed for the case where
|
|
** the step function was not previously called.
|
|
*/
|
|
/* Opcode: AggValue * P2 P3 P4 *
|
|
** Synopsis: r[P3]=value N=P2
|
|
**
|
|
** Invoke the xValue() function and store the result in register P3.
|
|
**
|
|
** P2 is the number of arguments that the step function takes and
|
|
** P4 is a pointer to the FuncDef for this function. The P2
|
|
** argument is not used by this opcode. It is only there to disambiguate
|
|
** functions that can take varying numbers of arguments. The
|
|
** P4 argument is only needed for the case where
|
|
** the step function was not previously called.
|
|
*/
|
|
_157:
|
|
;
|
|
_156:
|
|
;
|
|
pMem3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
rc = _sqlite3VdbeMemAggValue(tls, pMem3, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
pMem3 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
} else {
|
|
rc = _sqlite3VdbeMemFinalize(tls, pMem3, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
}
|
|
if rc != 0 {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, Xsqlite3_value_text(tls, pMem3)))
|
|
goto abort_due_to_error
|
|
}
|
|
_sqlite3VdbeChangeEncoding(tls, pMem3, libc.Int32FromUint8(encoding))
|
|
goto _189
|
|
/* Opcode: Checkpoint P1 P2 P3 * *
|
|
**
|
|
** Checkpoint database P1. This is a no-op if P1 is not currently in
|
|
** WAL mode. Parameter P2 is one of SQLITE_CHECKPOINT_PASSIVE, FULL,
|
|
** RESTART, or TRUNCATE. Write 1 or 0 into mem[P3] if the checkpoint returns
|
|
** SQLITE_BUSY or not, respectively. Write the number of pages in the
|
|
** WAL after the checkpoint into mem[P3+1] and the number of pages
|
|
** in the WAL that have been checkpointed after the checkpoint
|
|
** completes into mem[P3+2]. However on an error, mem[P3+1] and
|
|
** mem[P3+2] are initialized to -1.
|
|
*/
|
|
_158:
|
|
; /* Write results here */
|
|
(**(**[3]int32)(__ccgo_up(bp + 760)))[0] = 0
|
|
v190 = -libc.Int32FromInt32(1)
|
|
(**(**[3]int32)(__ccgo_up(bp + 760)))[int32(2)] = v190
|
|
(**(**[3]int32)(__ccgo_up(bp + 760)))[int32(1)] = v190
|
|
rc = _sqlite3Checkpoint(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, (*TOp)(unsafe.Pointer(pOp)).Fp2, bp+760+1*4, bp+760+2*4)
|
|
if rc != 0 {
|
|
if rc != int32(SQLITE_BUSY) {
|
|
goto abort_due_to_error
|
|
}
|
|
rc = SQLITE_OK
|
|
(**(**[3]int32)(__ccgo_up(bp + 760)))[0] = int32(1)
|
|
}
|
|
i5 = 0
|
|
pMem4 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
for {
|
|
if !(i5 < int32(3)) {
|
|
break
|
|
}
|
|
_sqlite3VdbeMemSetInt64(tls, pMem4, int64((**(**[3]int32)(__ccgo_up(bp + 760)))[i5]))
|
|
goto _287
|
|
_287:
|
|
;
|
|
i5 = i5 + 1
|
|
pMem4 += 56
|
|
}
|
|
goto _189
|
|
/* Opcode: JournalMode P1 P2 P3 * *
|
|
**
|
|
** Change the journal mode of database P1 to P3. P3 must be one of the
|
|
** PAGER_JOURNALMODE_XXX values. If changing between the various rollback
|
|
** modes (delete, truncate, persist, off and memory), this is a simple
|
|
** operation. No IO is required.
|
|
**
|
|
** If changing into or out of WAL mode the procedure is more complicated.
|
|
**
|
|
** Write a string containing the final journal-mode to register P2.
|
|
*/
|
|
_159:
|
|
; /* Name of database file for pPager */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
eNew = (*TOp)(unsafe.Pointer(pOp)).Fp3
|
|
pBt1 = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32))).FpBt
|
|
pPager = _sqlite3BtreePager(tls, pBt1)
|
|
eOld = _sqlite3PagerGetJournalMode(tls, pPager)
|
|
if eNew == -int32(1) {
|
|
eNew = eOld
|
|
}
|
|
if !(_sqlite3PagerOkToChangeJournalMode(tls, pPager) != 0) {
|
|
eNew = eOld
|
|
}
|
|
zFilename = _sqlite3PagerFilename(tls, pPager, int32(1))
|
|
/* Do not allow a transition to journal_mode=WAL for a database
|
|
** in temporary storage or if the VFS does not support shared memory
|
|
*/
|
|
if eNew == int32(PAGER_JOURNALMODE_WAL) && (_sqlite3Strlen30(tls, zFilename) == 0 || !(_sqlite3PagerWalSupported(tls, pPager) != 0)) {
|
|
eNew = eOld
|
|
}
|
|
if eNew != eOld && (eOld == int32(PAGER_JOURNALMODE_WAL) || eNew == int32(PAGER_JOURNALMODE_WAL)) {
|
|
if !((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit != 0) || (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeRead > int32(1) {
|
|
rc = int32(SQLITE_ERROR)
|
|
if eNew == int32(PAGER_JOURNALMODE_WAL) {
|
|
v191 = __ccgo_ts + 6382
|
|
} else {
|
|
v191 = __ccgo_ts + 6387
|
|
}
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+6394, libc.VaList(bp+984, v191))
|
|
goto abort_due_to_error
|
|
} else {
|
|
if eOld == int32(PAGER_JOURNALMODE_WAL) {
|
|
/* If leaving WAL mode, close the log file. If successful, the call
|
|
** to PagerCloseWal() checkpoints and deletes the write-ahead-log
|
|
** file. An EXCLUSIVE lock may still be held on the database file
|
|
** after a successful return.
|
|
*/
|
|
rc = _sqlite3PagerCloseWal(tls, pPager, db)
|
|
if rc == SQLITE_OK {
|
|
_sqlite3PagerSetJournalMode(tls, pPager, eNew)
|
|
}
|
|
} else {
|
|
if eOld == int32(PAGER_JOURNALMODE_MEMORY) {
|
|
/* Cannot transition directly from MEMORY to WAL. Use mode OFF
|
|
** as an intermediate */
|
|
_sqlite3PagerSetJournalMode(tls, pPager, int32(PAGER_JOURNALMODE_OFF))
|
|
}
|
|
}
|
|
/* Open a transaction on the database file. Regardless of the journal
|
|
** mode, this transaction always uses a rollback journal.
|
|
*/
|
|
if rc == SQLITE_OK {
|
|
if eNew == int32(PAGER_JOURNALMODE_WAL) {
|
|
v190 = int32(2)
|
|
} else {
|
|
v190 = int32(1)
|
|
}
|
|
rc = _sqlite3BtreeSetVersion(tls, pBt1, v190)
|
|
}
|
|
}
|
|
}
|
|
if rc != 0 {
|
|
eNew = eOld
|
|
}
|
|
eNew = _sqlite3PagerSetJournalMode(tls, pPager, eNew)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromInt32(MEM_Str) | libc.Int32FromInt32(MEM_Static) | libc.Int32FromInt32(MEM_Term))
|
|
(*TMem)(unsafe.Pointer(pOut)).Fz = _sqlite3JournalModename(tls, eNew)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fn = _sqlite3Strlen30(tls, (*TMem)(unsafe.Pointer(pOut)).Fz)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fenc = uint8(SQLITE_UTF8)
|
|
_sqlite3VdbeChangeEncoding(tls, pOut, libc.Int32FromUint8(encoding))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: Vacuum P1 P2 * * *
|
|
**
|
|
** Vacuum the entire database P1. P1 is 0 for "main", and 2 or more
|
|
** for an attached database. The "temp" database may not be vacuumed.
|
|
**
|
|
** If P2 is not zero, then it is a register holding a string which is
|
|
** the file into which the result of vacuum should be written. When
|
|
** P2 is zero, the vacuum overwrites the original database.
|
|
*/
|
|
_160:
|
|
;
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp2 != 0 {
|
|
v191 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
} else {
|
|
v191 = uintptr(0)
|
|
}
|
|
rc = _sqlite3RunVacuum(tls, p+168, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, v191)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: IncrVacuum P1 P2 * * *
|
|
**
|
|
** Perform a single step of the incremental vacuum procedure on
|
|
** the P1 database. If the vacuum has finished, jump to instruction
|
|
** P2. Otherwise, fall through to the next instruction.
|
|
*/
|
|
_161:
|
|
;
|
|
pBt2 = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32))).FpBt
|
|
rc = _sqlite3BtreeIncrVacuum(tls, pBt2)
|
|
if rc != 0 {
|
|
if rc != int32(SQLITE_DONE) {
|
|
goto abort_due_to_error
|
|
}
|
|
rc = SQLITE_OK
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: Expire P1 P2 * * *
|
|
**
|
|
** Cause precompiled statements to expire. When an expired statement
|
|
** is executed using sqlite3_step() it will either automatically
|
|
** reprepare itself (if it was originally created using sqlite3_prepare_v2())
|
|
** or it will fail with SQLITE_SCHEMA.
|
|
**
|
|
** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
|
|
** then only the currently executing statement is expired.
|
|
**
|
|
** If P2 is 0, then SQL statements are expired immediately. If P2 is 1,
|
|
** then running SQL statements are allowed to continue to run to completion.
|
|
** The P2==1 case occurs when a CREATE INDEX or similar schema change happens
|
|
** that might help the statement run faster but which does not affect the
|
|
** correctness of operation.
|
|
*/
|
|
_162:
|
|
;
|
|
if !((*TOp)(unsafe.Pointer(pOp)).Fp1 != 0) {
|
|
_sqlite3ExpirePreparedStatements(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
} else {
|
|
libc.SetBitFieldPtr16Uint32(p+200, libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp2+libc.Int32FromInt32(1)), 0, 0x3)
|
|
}
|
|
goto _189
|
|
/* Opcode: CursorLock P1 * * * *
|
|
**
|
|
** Lock the btree to which cursor P1 is pointing so that the btree cannot be
|
|
** written by an other cursor.
|
|
*/
|
|
_163:
|
|
;
|
|
pC32 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
_sqlite3BtreeCursorPin(tls, *(*uintptr)(unsafe.Pointer(pC32 + 48)))
|
|
goto _189
|
|
/* Opcode: CursorUnlock P1 * * * *
|
|
**
|
|
** Unlock the btree to which cursor P1 is pointing so that it can be
|
|
** written by other cursors.
|
|
*/
|
|
_164:
|
|
;
|
|
pC33 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
_sqlite3BtreeCursorUnpin(tls, *(*uintptr)(unsafe.Pointer(pC33 + 48)))
|
|
goto _189
|
|
/* Opcode: TableLock P1 P2 P3 P4 *
|
|
** Synopsis: iDb=P1 root=P2 write=P3
|
|
**
|
|
** Obtain a lock on a particular table. This instruction is only used when
|
|
** the shared-cache feature is enabled.
|
|
**
|
|
** P1 is the index of the database in sqlite3.aDb[] of the database
|
|
** on which the lock is acquired. A readlock is obtained if P3==0 or
|
|
** a write lock if P3==1.
|
|
**
|
|
** P2 contains the root-page of the table to lock.
|
|
**
|
|
** P4 contains a pointer to the name of the table being locked. This is only
|
|
** used to generate an error message if the lock cannot be obtained.
|
|
*/
|
|
_165:
|
|
;
|
|
isWriteLock = libc.Uint8FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
if isWriteLock != 0 || uint64(0) == (*Tsqlite3)(unsafe.Pointer(db)).Fflags&(libc.Uint64FromInt32(libc.Int32FromInt32(0x00004))<<libc.Int32FromInt32(32)) {
|
|
p13 = (*TOp)(unsafe.Pointer(pOp)).Fp1
|
|
rc = _sqlite3BtreeLockTable(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(p13)*32))).FpBt, (*TOp)(unsafe.Pointer(pOp)).Fp2, isWriteLock)
|
|
if rc != 0 {
|
|
if rc&int32(0xFF) == int32(SQLITE_LOCKED) {
|
|
z1 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+6446, libc.VaList(bp+984, z1))
|
|
}
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: VBegin * * * P4 *
|
|
**
|
|
** P4 may be a pointer to an sqlite3_vtab structure. If so, call the
|
|
** xBegin method for that table.
|
|
**
|
|
** Also, whether or not P4 is set, check that this is not being called from
|
|
** within a callback to a virtual table xSync() method. If it is, the error
|
|
** code will be set to SQLITE_LOCKED.
|
|
*/
|
|
_166:
|
|
;
|
|
pVTab = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
rc = _sqlite3VtabBegin(tls, db, pVTab)
|
|
if pVTab != 0 {
|
|
_sqlite3VtabImportErrmsg(tls, p, (*TVTable)(unsafe.Pointer(pVTab)).FpVtab)
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: VCreate P1 P2 * * *
|
|
**
|
|
** P2 is a register that holds the name of a virtual table in database
|
|
** P1. Call the xCreate method for that table.
|
|
*/
|
|
_167:
|
|
; /* Name of the virtual table */
|
|
libc.Xmemset(tls, bp+776, 0, uint64(56))
|
|
(**(**TMem)(__ccgo_up(bp + 776))).Fdb = db
|
|
/* Because P2 is always a static string, it is impossible for the
|
|
** sqlite3VdbeMemCopy() to fail */
|
|
rc = _sqlite3VdbeMemCopy(tls, bp+776, aMem+uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56)
|
|
zTab = Xsqlite3_value_text(tls, bp+776)
|
|
if zTab != 0 {
|
|
rc = _sqlite3VtabCallCreate(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, zTab, p+168)
|
|
}
|
|
_sqlite3VdbeMemRelease(tls, bp+776)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: VDestroy P1 * * P4 *
|
|
**
|
|
** P4 is the name of a virtual table in database P1. Call the xDestroy method
|
|
** of that table.
|
|
*/
|
|
_168:
|
|
;
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnVDestroy = (*Tsqlite3)(unsafe.Pointer(db)).FnVDestroy + 1
|
|
rc = _sqlite3VtabCallDestroy(tls, db, (*TOp)(unsafe.Pointer(pOp)).Fp1, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnVDestroy = (*Tsqlite3)(unsafe.Pointer(db)).FnVDestroy - 1
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: VOpen P1 * * P4 *
|
|
**
|
|
** P4 is a pointer to a virtual table object, an sqlite3_vtab structure.
|
|
** P1 is a cursor number. This opcode opens a cursor to the virtual
|
|
** table and stores that cursor in P1.
|
|
*/
|
|
_169:
|
|
;
|
|
pCur3 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if pCur3 != uintptr(0) && libc.Int32FromUint8((*TVdbeCursor)(unsafe.Pointer(pCur3)).FeCurType) == int32(CURTYPE_VTAB) && (*Tsqlite3_vtab_cursor)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pCur3 + 48)))).FpVtab == (*TVTable)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pOp + 16)))).FpVtab {
|
|
/* This opcode is a no-op if the cursor is already open */
|
|
goto _189
|
|
}
|
|
**(**uintptr)(__ccgo_up(bp + 832)) = uintptr(0)
|
|
pVtab1 = (*TVTable)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pOp + 16)))).FpVtab
|
|
if pVtab1 == uintptr(0) || (*Tsqlite3_vtab)(unsafe.Pointer(pVtab1)).FpModule == uintptr(0) {
|
|
rc = int32(SQLITE_LOCKED)
|
|
goto abort_due_to_error
|
|
}
|
|
pModule1 = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab1)).FpModule
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule1)).FxOpen})))(tls, pVtab1, bp+832)
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab1)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
/* Initialize sqlite3_vtab_cursor base class */
|
|
(*Tsqlite3_vtab_cursor)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp + 832)))).FpVtab = pVtab1
|
|
/* Initialize vdbe cursor object */
|
|
pCur3 = _allocateCursor(tls, p, (*TOp)(unsafe.Pointer(pOp)).Fp1, 0, uint8(CURTYPE_VTAB))
|
|
if pCur3 != 0 {
|
|
*(*uintptr)(unsafe.Pointer(pCur3 + 48)) = **(**uintptr)(__ccgo_up(bp + 832))
|
|
(*Tsqlite3_vtab)(unsafe.Pointer(pVtab1)).FnRef = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab1)).FnRef + 1
|
|
} else {
|
|
(*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule1)).FxClose})))(tls, **(**uintptr)(__ccgo_up(bp + 832)))
|
|
goto no_mem
|
|
}
|
|
goto _189
|
|
/* Opcode: VCheck P1 P2 P3 P4 *
|
|
**
|
|
** P4 is a pointer to a Table object that is a virtual table in schema P1
|
|
** that supports the xIntegrity() method. This opcode runs the xIntegrity()
|
|
** method for that virtual table, using P3 as the integer argument. If
|
|
** an error is reported back, the table name is prepended to the error
|
|
** message and that message is stored in P2. If no errors are seen,
|
|
** register P2 is set to NULL.
|
|
*/
|
|
_170:
|
|
;
|
|
**(**uintptr)(__ccgo_up(bp + 840)) = uintptr(0)
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
_sqlite3VdbeMemSetNull(tls, pOut) /* Innocent until proven guilty */
|
|
pTab3 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
if (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab3 + 64))).Fp == uintptr(0) {
|
|
goto _189
|
|
}
|
|
pVtab2 = (*TVTable)(unsafe.Pointer((*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab3 + 64))).Fp)).FpVtab
|
|
pModule2 = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab2)).FpModule
|
|
_sqlite3VtabLock(tls, (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab3 + 64))).Fp)
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr, uintptr, int32, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule2)).FxIntegrity})))(tls, pVtab2, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32))).FzDbSName, (*TTable)(unsafe.Pointer(pTab3)).FzName, (*TOp)(unsafe.Pointer(pOp)).Fp3, bp+840)
|
|
_sqlite3VtabUnlock(tls, (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab3 + 64))).Fp)
|
|
if rc != 0 {
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 840)))
|
|
goto abort_due_to_error
|
|
}
|
|
if **(**uintptr)(__ccgo_up(bp + 840)) != 0 {
|
|
_sqlite3VdbeMemSetStr(tls, pOut, **(**uintptr)(__ccgo_up(bp + 840)), int64(-int32(1)), uint8(SQLITE_UTF8), __ccgo_fp(Xsqlite3_free))
|
|
}
|
|
goto _189
|
|
/* Opcode: VInitIn P1 P2 P3 * *
|
|
** Synopsis: r[P2]=ValueList(P1,P3)
|
|
**
|
|
** Set register P2 to be a pointer to a ValueList object for cursor P1
|
|
** with cache register P3 and output register P3+1. This ValueList object
|
|
** can be used as the first argument to sqlite3_vtab_in_first() and
|
|
** sqlite3_vtab_in_next() to extract all of the values stored in the P1
|
|
** cursor. Register P3 is used to hold the values returned by
|
|
** sqlite3_vtab_in_first() and sqlite3_vtab_in_next().
|
|
*/
|
|
_171:
|
|
; /* New ValueList object to put in reg[P2] */
|
|
pC34 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pRhs = Xsqlite3_malloc64(tls, uint64(16))
|
|
if pRhs == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
(*TValueList)(unsafe.Pointer(pRhs)).FpCsr = *(*uintptr)(unsafe.Pointer(pC34 + 48))
|
|
(*TValueList)(unsafe.Pointer(pRhs)).FpOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = uint16(MEM_Null)
|
|
_sqlite3VdbeMemSetPointer(tls, pOut, pRhs, __ccgo_ts+6475, __ccgo_fp(_sqlite3VdbeValueListFree))
|
|
goto _189
|
|
/* Opcode: VFilter P1 P2 P3 P4 *
|
|
** Synopsis: iplan=r[P3] zplan='P4'
|
|
**
|
|
** P1 is a cursor opened using VOpen. P2 is an address to jump to if
|
|
** the filtered result set is empty.
|
|
**
|
|
** P4 is either NULL or a string that was generated by the xBestIndex
|
|
** method of the module. The interpretation of the P4 string is left
|
|
** to the module implementation.
|
|
**
|
|
** This opcode invokes the xFilter method on the virtual table specified
|
|
** by P1. The integer query plan parameter to xFilter is stored in register
|
|
** P3. Register P3+1 stores the argc parameter to be passed to the
|
|
** xFilter method. Registers P3+2..P3+1+argc are the argc
|
|
** additional parameters which are passed to
|
|
** xFilter as argv. Register P3+2 becomes argv[0] when passed to xFilter.
|
|
**
|
|
** A jump is made to P2 if the result set after filtering would be empty.
|
|
*/
|
|
_172:
|
|
;
|
|
pQuery = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
pArgc = pQuery + 1*56
|
|
pCur4 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pVCur1 = *(*uintptr)(unsafe.Pointer(pCur4 + 48))
|
|
pVtab3 = (*Tsqlite3_vtab_cursor)(unsafe.Pointer(pVCur1)).FpVtab
|
|
pModule3 = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab3)).FpModule
|
|
/* Grab the index number and argc parameters */
|
|
nArg = int32(*(*Ti64)(unsafe.Pointer(pArgc)))
|
|
iQuery = int32(*(*Ti64)(unsafe.Pointer(pQuery)))
|
|
/* Invoke the xFilter method */
|
|
apArg = (*TVdbe)(unsafe.Pointer(p)).FapArg
|
|
i6 = 0
|
|
for {
|
|
if !(i6 < nArg) {
|
|
break
|
|
}
|
|
**(**uintptr)(__ccgo_up(apArg + uintptr(i6)*8)) = pArgc + uintptr(i6+int32(1))*56
|
|
goto _291
|
|
_291:
|
|
;
|
|
i6 = i6 + 1
|
|
}
|
|
rc = (*(*func(*libc.TLS, uintptr, int32, uintptr, int32, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule3)).FxFilter})))(tls, pVCur1, iQuery, *(*uintptr)(unsafe.Pointer(pOp + 16)), nArg, apArg)
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab3)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
res13 = (*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule3)).FxEof})))(tls, pVCur1)
|
|
(*TVdbeCursor)(unsafe.Pointer(pCur4)).FnullRow = uint8(0)
|
|
if res13 != 0 {
|
|
goto jump_to_p2
|
|
}
|
|
goto _189
|
|
/* Opcode: VColumn P1 P2 P3 * P5
|
|
** Synopsis: r[P3]=vcolumn(P2)
|
|
**
|
|
** Store in register P3 the value of the P2-th column of
|
|
** the current row of the virtual-table of cursor P1.
|
|
**
|
|
** If the VColumn opcode is being used to fetch the value of
|
|
** an unchanging column during an UPDATE operation, then the P5
|
|
** value is OPFLAG_NOCHNG. This will cause the sqlite3_vtab_nochange()
|
|
** function to return true inside the xColumn method of the virtual
|
|
** table implementation. The P5 column might also contain other
|
|
** bits (OPFLAG_LENGTHARG or OPFLAG_TYPEOFARG) but those bits are
|
|
** unused by OP_VColumn.
|
|
*/
|
|
_173:
|
|
;
|
|
pCur5 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
pDest2 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if (*TVdbeCursor)(unsafe.Pointer(pCur5)).FnullRow != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pDest2)
|
|
goto _189
|
|
}
|
|
pVtab4 = (*Tsqlite3_vtab_cursor)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pCur5 + 48)))).FpVtab
|
|
pModule4 = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab4)).FpModule
|
|
libc.Xmemset(tls, bp+848, 0, uint64(48))
|
|
(**(**Tsqlite3_context)(__ccgo_up(bp + 848))).FpOut = pDest2
|
|
(**(**Tsqlite3_context)(__ccgo_up(bp + 848))).Fenc = encoding
|
|
(**(**TFuncDef)(__ccgo_up(bp + 896))).FpUserData = uintptr(0)
|
|
(**(**TFuncDef)(__ccgo_up(bp + 896))).FfuncFlags = uint32(SQLITE_RESULT_SUBTYPE)
|
|
(**(**Tsqlite3_context)(__ccgo_up(bp + 848))).FpFunc = bp + 896
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)&int32(OPFLAG_NOCHNG) != 0 {
|
|
_sqlite3VdbeMemSetNull(tls, pDest2)
|
|
(*TMem)(unsafe.Pointer(pDest2)).Fflags = libc.Uint16FromInt32(libc.Int32FromInt32(MEM_Null) | libc.Int32FromInt32(MEM_Zero))
|
|
*(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pDest2)).Fu)) = 0
|
|
} else {
|
|
(*TMem)(unsafe.Pointer(pDest2)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pDest2)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Null))
|
|
}
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr, int32) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule4)).FxColumn})))(tls, *(*uintptr)(unsafe.Pointer(pCur5 + 48)), bp+848, (*TOp)(unsafe.Pointer(pOp)).Fp2)
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab4)
|
|
if (**(**Tsqlite3_context)(__ccgo_up(bp + 848))).FisError > 0 {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, Xsqlite3_value_text(tls, pDest2)))
|
|
rc = (**(**Tsqlite3_context)(__ccgo_up(bp + 848))).FisError
|
|
}
|
|
_sqlite3VdbeChangeEncoding(tls, pDest2, libc.Int32FromUint8(encoding))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: VNext P1 P2 * * *
|
|
**
|
|
** Advance virtual table P1 to the next row in its result set and
|
|
** jump to instruction P2. Or, if the virtual table has reached
|
|
** the end of its result set, then fall through to the next instruction.
|
|
*/
|
|
_174:
|
|
;
|
|
pCur6 = **(**uintptr)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FapCsr + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*8))
|
|
if (*TVdbeCursor)(unsafe.Pointer(pCur6)).FnullRow != 0 {
|
|
goto _189
|
|
}
|
|
pVtab5 = (*Tsqlite3_vtab_cursor)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pCur6 + 48)))).FpVtab
|
|
pModule5 = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab5)).FpModule
|
|
/* Invoke the xNext() method of the module. There is no way for the
|
|
** underlying implementation to return an error if one occurs during
|
|
** xNext(). Instead, if an error occurs, true is returned (indicating that
|
|
** data is available) and the error code returned when xColumn or
|
|
** some other method is next invoked on the save virtual table cursor.
|
|
*/
|
|
rc = (*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule5)).FxNext})))(tls, *(*uintptr)(unsafe.Pointer(pCur6 + 48)))
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab5)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
res14 = (*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule5)).FxEof})))(tls, *(*uintptr)(unsafe.Pointer(pCur6 + 48)))
|
|
if !(res14 != 0) {
|
|
/* If there is data, jump to P2 */
|
|
goto jump_to_p2_and_check_for_interrupt
|
|
}
|
|
goto check_for_interrupt
|
|
/* Opcode: VRename P1 * * P4 *
|
|
**
|
|
** P4 is a pointer to a virtual table object, an sqlite3_vtab structure.
|
|
** This opcode invokes the corresponding xRename method. The value
|
|
** in register P1 is passed as the zName argument to the xRename method.
|
|
*/
|
|
_175:
|
|
;
|
|
isLegacy = libc.Int32FromUint64((*Tsqlite3)(unsafe.Pointer(db)).Fflags & libc.Uint64FromInt32(SQLITE_LegacyAlter))
|
|
**(**Tu64)(__ccgo_up(db + 48)) |= uint64(SQLITE_LegacyAlter)
|
|
pVtab6 = (*TVTable)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pOp + 16)))).FpVtab
|
|
pName = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
rc = _sqlite3VdbeChangeEncoding(tls, pName, int32(SQLITE_UTF8))
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer((*Tsqlite3_vtab)(unsafe.Pointer(pVtab6)).FpModule)).FxRename})))(tls, pVtab6, (*TMem)(unsafe.Pointer(pName)).Fz)
|
|
if isLegacy == 0 {
|
|
**(**Tu64)(__ccgo_up(db + 48)) &= ^libc.Uint64FromInt32(SQLITE_LegacyAlter)
|
|
}
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab6)
|
|
libc.SetBitFieldPtr16Uint32(p+200, libc.Uint32FromInt32(0), 0, 0x3)
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
goto _189
|
|
/* Opcode: VUpdate P1 P2 P3 P4 P5
|
|
** Synopsis: data=r[P3@P2]
|
|
**
|
|
** P4 is a pointer to a virtual table object, an sqlite3_vtab structure.
|
|
** This opcode invokes the corresponding xUpdate method. P2 values
|
|
** are contiguous memory cells starting at P3 to pass to the xUpdate
|
|
** invocation. The value in register (P3+P2-1) corresponds to the
|
|
** p2th element of the argv array passed to xUpdate.
|
|
**
|
|
** The xUpdate method will do a DELETE or an INSERT or both.
|
|
** The argv[0] element (which corresponds to memory cell P3)
|
|
** is the rowid of a row to delete. If argv[0] is NULL then no
|
|
** deletion occurs. The argv[1] element is the rowid of the new
|
|
** row. This can be NULL to have the virtual table select the new
|
|
** rowid for itself. The subsequent elements in the array are
|
|
** the values of columns in the new row.
|
|
**
|
|
** If P2==1 then no insert is performed. argv[0] is the rowid of
|
|
** a row to delete.
|
|
**
|
|
** P1 is a boolean flag. If it is set to true and the xUpdate call
|
|
** is successful, then the value returned by sqlite3_last_insert_rowid()
|
|
** is set to the value of the rowid for the row just inserted.
|
|
**
|
|
** P5 is the error actions (OE_Replace, OE_Fail, OE_Ignore, etc) to
|
|
** apply in the case of a constraint failure on an insert or update.
|
|
*/
|
|
_176:
|
|
;
|
|
**(**Tsqlite_int64)(__ccgo_up(bp + 968)) = 0
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
goto no_mem
|
|
}
|
|
pVtab7 = (*TVTable)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pOp + 16)))).FpVtab
|
|
if pVtab7 == uintptr(0) || (*Tsqlite3_vtab)(unsafe.Pointer(pVtab7)).FpModule == uintptr(0) {
|
|
rc = int32(SQLITE_LOCKED)
|
|
goto abort_due_to_error
|
|
}
|
|
pModule6 = (*Tsqlite3_vtab)(unsafe.Pointer(pVtab7)).FpModule
|
|
nArg1 = (*TOp)(unsafe.Pointer(pOp)).Fp2
|
|
if (*Tsqlite3_module)(unsafe.Pointer(pModule6)).FxUpdate != 0 {
|
|
vtabOnConflict = (*Tsqlite3)(unsafe.Pointer(db)).FvtabOnConflict
|
|
apArg1 = (*TVdbe)(unsafe.Pointer(p)).FapArg
|
|
pX1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
i7 = 0
|
|
for {
|
|
if !(i7 < nArg1) {
|
|
break
|
|
}
|
|
**(**uintptr)(__ccgo_up(apArg1 + uintptr(i7)*8)) = pX1
|
|
pX1 += 56
|
|
goto _292
|
|
_292:
|
|
;
|
|
i7 = i7 + 1
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FvtabOnConflict = uint8((*TOp)(unsafe.Pointer(pOp)).Fp5)
|
|
rc = (*(*func(*libc.TLS, uintptr, int32, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3_module)(unsafe.Pointer(pModule6)).FxUpdate})))(tls, pVtab7, nArg1, apArg1, bp+968)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FvtabOnConflict = vtabOnConflict
|
|
_sqlite3VtabImportErrmsg(tls, p, pVtab7)
|
|
if rc == SQLITE_OK && (*TOp)(unsafe.Pointer(pOp)).Fp1 != 0 {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FlastRowid = **(**Tsqlite_int64)(__ccgo_up(bp + 968))
|
|
}
|
|
if rc&int32(0xff) == int32(SQLITE_CONSTRAINT) && (*TVTable)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pOp + 16)))).FbConstraint != 0 {
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) == int32(OE_Ignore) {
|
|
rc = SQLITE_OK
|
|
} else {
|
|
if libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5) == int32(OE_Replace) {
|
|
v190 = int32(OE_Abort)
|
|
} else {
|
|
v190 = libc.Int32FromUint16((*TOp)(unsafe.Pointer(pOp)).Fp5)
|
|
}
|
|
(*TVdbe)(unsafe.Pointer(p)).FerrorAction = libc.Uint8FromInt32(v190)
|
|
}
|
|
} else {
|
|
(*TVdbe)(unsafe.Pointer(p)).FnChange = (*TVdbe)(unsafe.Pointer(p)).FnChange + 1
|
|
}
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: Pagecount P1 P2 * * *
|
|
**
|
|
** Write the current number of pages in database P1 to memory cell P2.
|
|
*/
|
|
_177:
|
|
; /* out2 */
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = libc.Int64FromUint32(_sqlite3BtreeLastPage(tls, (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32))).FpBt))
|
|
goto _189
|
|
/* Opcode: MaxPgcnt P1 P2 P3 * *
|
|
**
|
|
** Try to set the maximum page count for database P1 to the value in P3.
|
|
** Do not let the maximum page count fall below the current page count and
|
|
** do not change the maximum page count value if P3==0.
|
|
**
|
|
** Store the maximum page count after the change in register P2.
|
|
*/
|
|
_178:
|
|
;
|
|
pOut = _out2Prerelease(tls, p, pOp)
|
|
pBt3 = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*32))).FpBt
|
|
newMax = uint32(0)
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp3 != 0 {
|
|
newMax = _sqlite3BtreeLastPage(tls, pBt3)
|
|
if newMax < libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3) {
|
|
newMax = libc.Uint32FromInt32((*TOp)(unsafe.Pointer(pOp)).Fp3)
|
|
}
|
|
}
|
|
*(*Ti64)(unsafe.Pointer(pOut)) = libc.Int64FromUint32(_sqlite3BtreeMaxPageCount(tls, pBt3, newMax))
|
|
goto _189
|
|
/* Opcode: Function P1 P2 P3 P4 *
|
|
** Synopsis: r[P3]=func(r[P2@NP])
|
|
**
|
|
** Invoke a user function (P4 is a pointer to an sqlite3_context object that
|
|
** contains a pointer to the function to be run) with arguments taken
|
|
** from register P2 and successors. The number of arguments is in
|
|
** the sqlite3_context object that P4 points to.
|
|
** The result of the function is stored
|
|
** in register P3. Register P3 must not be one of the function inputs.
|
|
**
|
|
** P1 is a 32-bit bitmask indicating whether or not each argument to the
|
|
** function was determined to be constant at compile time. If the first
|
|
** argument was constant then bit 0 of P1 is set. This is used to determine
|
|
** whether meta data associated with a user function argument using the
|
|
** sqlite3_set_auxdata() API may be safely retained until the next
|
|
** invocation of this opcode.
|
|
**
|
|
** See also: AggStep, AggFinal, PureFunc
|
|
*/
|
|
/* Opcode: PureFunc P1 P2 P3 P4 *
|
|
** Synopsis: r[P3]=func(r[P2@NP])
|
|
**
|
|
** Invoke a user function (P4 is a pointer to an sqlite3_context object that
|
|
** contains a pointer to the function to be run) with arguments taken
|
|
** from register P2 and successors. The number of arguments is in
|
|
** the sqlite3_context object that P4 points to.
|
|
** The result of the function is stored
|
|
** in register P3. Register P3 must not be one of the function inputs.
|
|
**
|
|
** P1 is a 32-bit bitmask indicating whether or not each argument to the
|
|
** function was determined to be constant at compile time. If the first
|
|
** argument was constant then bit 0 of P1 is set. This is used to determine
|
|
** whether meta data associated with a user function argument using the
|
|
** sqlite3_set_auxdata() API may be safely retained until the next
|
|
** invocation of this opcode.
|
|
**
|
|
** This opcode works exactly like OP_Function. The only difference is in
|
|
** its name. This opcode is used in places where the function must be
|
|
** purely non-deterministic. Some built-in date/time functions can be
|
|
** either deterministic of non-deterministic, depending on their arguments.
|
|
** When those function are used in a non-deterministic way, they will check
|
|
** to see if they were called using OP_PureFunc instead of OP_Function, and
|
|
** if they were, they throw an error.
|
|
**
|
|
** See also: AggStep, AggFinal, Function
|
|
*/
|
|
_180:
|
|
; /* group */
|
|
_179:
|
|
;
|
|
pCtx2 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
/* If this function is inside of a trigger, the register array in aMem[]
|
|
** might change from one evaluation to the next. The next block of code
|
|
** checks to see if the register array has changed, and if so it
|
|
** reinitializes the relevant parts of the sqlite3_context object */
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp3)*56
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FpOut != pOut {
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FpVdbe = p
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FpOut = pOut
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx2)).Fenc = encoding
|
|
i8 = libc.Int32FromUint16((*Tsqlite3_context)(unsafe.Pointer(pCtx2)).Fargc) - int32(1)
|
|
for {
|
|
if !(i8 >= 0) {
|
|
break
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(pCtx2 + 48 + uintptr(i8)*8)) = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2+i8)*56
|
|
goto _294
|
|
_294:
|
|
;
|
|
i8 = i8 - 1
|
|
}
|
|
}
|
|
(*TMem)(unsafe.Pointer(pOut)).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*TMem)(unsafe.Pointer(pOut)).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Null))
|
|
(*(*func(*libc.TLS, uintptr, int32, uintptr))(unsafe.Pointer(&struct{ uintptr }{(*TFuncDef)(unsafe.Pointer((*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FpFunc)).FxSFunc})))(tls, pCtx2, libc.Int32FromUint16((*Tsqlite3_context)(unsafe.Pointer(pCtx2)).Fargc), pCtx2+48) /* IMP: R-24505-23230 */
|
|
/* If the function returned an error, throw an exception */
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FisError != 0 {
|
|
if (*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FisError > 0 {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, Xsqlite3_value_text(tls, pOut)))
|
|
rc = (*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FisError
|
|
}
|
|
_sqlite3VdbeDeleteAuxData(tls, db, p+296, (*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FiOp, (*TOp)(unsafe.Pointer(pOp)).Fp1)
|
|
(*Tsqlite3_context)(unsafe.Pointer(pCtx2)).FisError = 0
|
|
if rc != 0 {
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
goto _189
|
|
/* Opcode: ClrSubtype P1 * * * *
|
|
** Synopsis: r[P1].subtype = 0
|
|
**
|
|
** Clear the subtype from register P1.
|
|
*/
|
|
_181:
|
|
; /* in1 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
v191 = pIn1 + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Subtype))
|
|
goto _189
|
|
/* Opcode: GetSubtype P1 P2 * * *
|
|
** Synopsis: r[P2] = r[P1].subtype
|
|
**
|
|
** Extract the subtype value from register P1 and write that subtype
|
|
** into register P2. If P1 has no subtype, then P1 gets a NULL.
|
|
*/
|
|
_182:
|
|
; /* in1 out2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Subtype) != 0 {
|
|
_sqlite3VdbeMemSetInt64(tls, pOut, libc.Int64FromUint8((*TMem)(unsafe.Pointer(pIn1)).FeSubtype))
|
|
} else {
|
|
_sqlite3VdbeMemSetNull(tls, pOut)
|
|
}
|
|
goto _189
|
|
/* Opcode: SetSubtype P1 P2 * * *
|
|
** Synopsis: r[P2].subtype = r[P1]
|
|
**
|
|
** Set the subtype value of register P2 to the integer from register P1.
|
|
** If P1 is NULL, clear the subtype from p2.
|
|
*/
|
|
_183:
|
|
; /* in1 out2 */
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
pOut = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp2)*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pIn1)).Fflags)&int32(MEM_Null) != 0 {
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) & ^libc.Int32FromInt32(MEM_Subtype))
|
|
} else {
|
|
v191 = pOut + 20
|
|
*(*Tu16)(unsafe.Pointer(v191)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v191))) | libc.Int32FromInt32(MEM_Subtype))
|
|
(*TMem)(unsafe.Pointer(pOut)).FeSubtype = libc.Uint8FromInt64(*(*Ti64)(unsafe.Pointer(pIn1)) & libc.Int64FromInt32(0xff))
|
|
}
|
|
goto _189
|
|
/* Opcode: FilterAdd P1 * P3 P4 *
|
|
** Synopsis: filter(P1) += key(P3@P4)
|
|
**
|
|
** Compute a hash on the P4 registers starting with r[P3] and
|
|
** add that hash to the bloom filter contained in r[P1].
|
|
*/
|
|
_184:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
h = _filterHash(tls, aMem, pOp)
|
|
h = h % libc.Uint64FromInt32((*TMem)(unsafe.Pointer(pIn1)).Fn*libc.Int32FromInt32(8))
|
|
v191 = (*TMem)(unsafe.Pointer(pIn1)).Fz + uintptr(h/uint64(8))
|
|
*(*int8)(unsafe.Pointer(v191)) = int8(int32(*(*int8)(unsafe.Pointer(v191))) | libc.Int32FromInt32(1)<<(h&libc.Uint64FromInt32(7)))
|
|
goto _189
|
|
/* Opcode: Filter P1 P2 P3 P4 *
|
|
** Synopsis: if key(P3@P4) not in filter(P1) goto P2
|
|
**
|
|
** Compute a hash on the key contained in the P4 registers starting
|
|
** with r[P3]. Check to see if that hash is found in the
|
|
** bloom filter hosted by register P1. If it is not present then
|
|
** maybe jump to P2. Otherwise fall through.
|
|
**
|
|
** False negatives are harmless. It is always safe to fall through,
|
|
** even if the value is in the bloom filter. A false negative causes
|
|
** more CPU cycles to be used, but it should still yield the correct
|
|
** answer. However, an incorrect answer may well arise from a
|
|
** false positive - if the jump is taken when it should fall through.
|
|
*/
|
|
_185:
|
|
;
|
|
pIn1 = aMem + uintptr((*TOp)(unsafe.Pointer(pOp)).Fp1)*56
|
|
h1 = _filterHash(tls, aMem, pOp)
|
|
h1 = h1 % libc.Uint64FromInt32((*TMem)(unsafe.Pointer(pIn1)).Fn*libc.Int32FromInt32(8))
|
|
if int32(**(**int8)(__ccgo_up((*TMem)(unsafe.Pointer(pIn1)).Fz + uintptr(h1/uint64(8)))))&(int32(1)<<(h1&uint64(7))) == 0 {
|
|
**(**Tu32)(__ccgo_up(p + 212 + 8*4)) = **(**Tu32)(__ccgo_up(p + 212 + 8*4)) + 1
|
|
goto jump_to_p2
|
|
} else {
|
|
**(**Tu32)(__ccgo_up(p + 212 + 7*4)) = **(**Tu32)(__ccgo_up(p + 212 + 7*4)) + 1
|
|
}
|
|
goto _189
|
|
/* Opcode: Trace P1 P2 * P4 *
|
|
**
|
|
** Write P4 on the statement trace output if statement tracing is
|
|
** enabled.
|
|
**
|
|
** Operand P1 must be 0x7fffffff and P2 must positive.
|
|
*/
|
|
/* Opcode: Init P1 P2 P3 P4 *
|
|
** Synopsis: Start at P2
|
|
**
|
|
** Programs contain a single instance of this opcode as the very first
|
|
** opcode.
|
|
**
|
|
** If tracing is enabled (by the sqlite3_trace()) interface, then
|
|
** the UTF-8 string contained in P4 is emitted on the trace callback.
|
|
** Or if P4 is blank, use the string returned by sqlite3_sql().
|
|
**
|
|
** If P2 is not zero, jump to instruction P2.
|
|
**
|
|
** Increment the value of P1 so that OP_Once opcodes will jump the
|
|
** first time they are evaluated for this run.
|
|
**
|
|
** If P3 is not zero, then it is an address to jump to if an SQLITE_CORRUPT
|
|
** error is encountered.
|
|
*/
|
|
_187:
|
|
;
|
|
_186:
|
|
;
|
|
/* If the P4 argument is not NULL, then it must be an SQL comment string.
|
|
** The "--" string is broken up to prevent false-positives with srcck1.c.
|
|
**
|
|
** This assert() provides evidence for:
|
|
** EVIDENCE-OF: R-50676-09860 The callback can compute the same text that
|
|
** would have been returned by the legacy sqlite3_trace() interface by
|
|
** using the X argument when X begins with "--" and invoking
|
|
** sqlite3_expanded_sql(P) otherwise.
|
|
*/
|
|
/* OP_Init is always instruction 0 */
|
|
if v217 = libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FmTrace)&(libc.Int32FromInt32(SQLITE_TRACE_STMT)|libc.Int32FromInt32(SQLITE_TRACE_LEGACY)) != 0 && libc.Int32FromUint8((*TVdbe)(unsafe.Pointer(p)).FminWriteFileFormat) != int32(254); v217 {
|
|
if *(*uintptr)(unsafe.Pointer(pOp + 16)) != 0 {
|
|
v194 = *(*uintptr)(unsafe.Pointer(pOp + 16))
|
|
} else {
|
|
v194 = (*TVdbe)(unsafe.Pointer(p)).FzSql
|
|
}
|
|
v191 = v194
|
|
zTrace = v191
|
|
}
|
|
if v217 && v191 != uintptr(0) {
|
|
if libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FmTrace)&int32(SQLITE_TRACE_LEGACY) != 0 {
|
|
z2 = _sqlite3VdbeExpandSql(tls, p, zTrace)
|
|
(*(*func(*libc.TLS, uintptr, uintptr))(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3)(unsafe.Pointer(db)).Ftrace.FxLegacy})))(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpTraceArg, z2)
|
|
Xsqlite3_free(tls, z2)
|
|
} else {
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeExec > int32(1) {
|
|
z3 = _sqlite3MPrintf(tls, db, __ccgo_ts+6485, libc.VaList(bp+984, zTrace))
|
|
(*(*func(*libc.TLS, Tu32, uintptr, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{*(*uintptr)(unsafe.Pointer(&(*Tsqlite3)(unsafe.Pointer(db)).Ftrace))})))(tls, uint32(SQLITE_TRACE_STMT), (*Tsqlite3)(unsafe.Pointer(db)).FpTraceArg, p, z3)
|
|
_sqlite3DbFree(tls, db, z3)
|
|
} else {
|
|
(*(*func(*libc.TLS, Tu32, uintptr, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{*(*uintptr)(unsafe.Pointer(&(*Tsqlite3)(unsafe.Pointer(db)).Ftrace))})))(tls, uint32(SQLITE_TRACE_STMT), (*Tsqlite3)(unsafe.Pointer(db)).FpTraceArg, p, zTrace)
|
|
}
|
|
}
|
|
}
|
|
if (*TOp)(unsafe.Pointer(pOp)).Fp1 >= _sqlite3Config.FiOnceResetThreshold {
|
|
if libc.Int32FromUint8((*TOp)(unsafe.Pointer(pOp)).Fopcode) == int32(OP_Trace) {
|
|
goto _189
|
|
}
|
|
i9 = int32(1)
|
|
for {
|
|
if !(i9 < (*TVdbe)(unsafe.Pointer(p)).FnOp) {
|
|
break
|
|
}
|
|
if libc.Int32FromUint8((**(**TOp)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FaOp + uintptr(i9)*24))).Fopcode) == int32(OP_Once) {
|
|
(**(**TOp)(__ccgo_up((*TVdbe)(unsafe.Pointer(p)).FaOp + uintptr(i9)*24))).Fp1 = 0
|
|
}
|
|
goto _302
|
|
_302:
|
|
;
|
|
i9 = i9 + 1
|
|
}
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp1 = 0
|
|
}
|
|
(*TOp)(unsafe.Pointer(pOp)).Fp1 = (*TOp)(unsafe.Pointer(pOp)).Fp1 + 1
|
|
**(**Tu32)(__ccgo_up(p + 212 + 6*4)) = **(**Tu32)(__ccgo_up(p + 212 + 6*4)) + 1
|
|
goto jump_to_p2
|
|
/* Opcode: Noop * * * * *
|
|
**
|
|
** Do nothing. Continue downward to the next opcode.
|
|
*/
|
|
/* Opcode: Explain P1 P2 P3 P4 *
|
|
**
|
|
** This is the same as OP_Noop during normal query execution. The
|
|
** purpose of this opcode is to hold information about the query
|
|
** plan for the purpose of EXPLAIN QUERY PLAN output.
|
|
**
|
|
** The P4 value is human-readable text that describes the query plan
|
|
** element. Something like "SCAN t1" or "SEARCH t2 USING INDEX t2x1".
|
|
**
|
|
** The P1 value is the ID of the current element and P2 is the parent
|
|
** element for the case of nested query plan elements. If P2 is zero
|
|
** then this element is a top-level element.
|
|
**
|
|
** For loop elements, P3 is the estimated code of each invocation of this
|
|
** element.
|
|
**
|
|
** As with all opcodes, the meanings of the parameters for OP_Explain
|
|
** are subject to change from one release to the next. Applications
|
|
** should not attempt to interpret or use any of the information
|
|
** contained in the OP_Explain opcode. The information provided by this
|
|
** opcode is intended for testing and debugging use only.
|
|
*/
|
|
_188:
|
|
; /* This is really OP_Noop, OP_Explain */
|
|
goto _189
|
|
/*****************************************************************************
|
|
** The cases of the switch statement above this line should all be indented
|
|
** by 6 spaces. But the left-most 6 spaces have been removed to improve the
|
|
** readability. From this point on down, the normal indentation rules are
|
|
** restored.
|
|
*****************************************************************************/
|
|
_189:
|
|
;
|
|
/* The following code adds nothing to the actual functionality
|
|
** of the program. It is only here for testing and debugging.
|
|
** On the other hand, it does burn CPU cycles every time through
|
|
** the evaluator loop. So we can leave it out when NDEBUG is defined.
|
|
*/
|
|
goto _1
|
|
_1:
|
|
;
|
|
pOp += 24
|
|
} /* The end of the for(;;) loop the loops through opcodes */
|
|
/* If we reach this point, it means that execution is finished with
|
|
** an error of some kind.
|
|
*/
|
|
goto abort_due_to_error
|
|
abort_due_to_error:
|
|
;
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
rc = int32(SQLITE_NOMEM)
|
|
} else {
|
|
if rc == libc.Int32FromInt32(SQLITE_IOERR)|libc.Int32FromInt32(33)<<libc.Int32FromInt32(8) {
|
|
rc = _sqlite3CorruptError(tls, int32(105898))
|
|
}
|
|
}
|
|
if (*TVdbe)(unsafe.Pointer(p)).FzErrMsg == uintptr(0) && rc != libc.Int32FromInt32(SQLITE_IOERR)|libc.Int32FromInt32(12)<<libc.Int32FromInt32(8) {
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+3944, libc.VaList(bp+984, _sqlite3ErrStr(tls, rc)))
|
|
}
|
|
(*TVdbe)(unsafe.Pointer(p)).Frc = rc
|
|
_sqlite3SystemError(tls, db, rc)
|
|
_sqlite3VdbeLogAbort(tls, p, rc, pOp, aOp)
|
|
if libc.Int32FromUint8((*TVdbe)(unsafe.Pointer(p)).FeVdbeState) == int32(VDBE_RUN_STATE) {
|
|
_sqlite3VdbeHalt(tls, p)
|
|
}
|
|
if rc == libc.Int32FromInt32(SQLITE_IOERR)|libc.Int32FromInt32(12)<<libc.Int32FromInt32(8) {
|
|
_sqlite3OomFault(tls, db)
|
|
}
|
|
if rc == int32(SQLITE_CORRUPT) && libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer(db)).FautoCommit) == 0 {
|
|
**(**Tu64)(__ccgo_up(db + 48)) |= libc.Uint64FromInt32(libc.Int32FromInt32(0x00002)) << libc.Int32FromInt32(32)
|
|
}
|
|
rc = int32(SQLITE_ERROR)
|
|
if libc.Int32FromUint8(resetSchemaOnFault) > 0 {
|
|
_sqlite3ResetOneSchema(tls, db, libc.Int32FromUint8(resetSchemaOnFault)-int32(1))
|
|
}
|
|
/* This is the only way out of this procedure. We have to
|
|
** release the mutexes on btrees that were acquired at the
|
|
** top. */
|
|
goto vdbe_return
|
|
vdbe_return:
|
|
;
|
|
for nVmStep >= nProgressLimit && (*Tsqlite3)(unsafe.Pointer(db)).FxProgress != uintptr(0) {
|
|
nProgressLimit = nProgressLimit + uint64((*Tsqlite3)(unsafe.Pointer(db)).FnProgressOps)
|
|
if (*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{(*Tsqlite3)(unsafe.Pointer(db)).FxProgress})))(tls, (*Tsqlite3)(unsafe.Pointer(db)).FpProgressArg) != 0 {
|
|
nProgressLimit = libc.Uint64FromUint32(0xffffffff) | libc.Uint64FromUint32(0xffffffff)<<libc.Int32FromInt32(32)
|
|
rc = int32(SQLITE_INTERRUPT)
|
|
goto abort_due_to_error
|
|
}
|
|
}
|
|
**(**Tu32)(__ccgo_up(p + 212 + 4*4)) += libc.Uint32FromInt32(libc.Int32FromUint64(nVmStep))
|
|
if (*TVdbe)(unsafe.Pointer(p)).FlockMask != uint32(0) {
|
|
_sqlite3VdbeLeave(tls, p)
|
|
}
|
|
return rc
|
|
/* Jump to here if a string or blob larger than SQLITE_MAX_LENGTH
|
|
** is encountered.
|
|
*/
|
|
goto too_big
|
|
too_big:
|
|
;
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+5594, 0)
|
|
rc = int32(SQLITE_TOOBIG)
|
|
goto abort_due_to_error
|
|
/* Jump to here if a malloc() fails.
|
|
*/
|
|
goto no_mem
|
|
no_mem:
|
|
;
|
|
_sqlite3OomFault(tls, db)
|
|
_sqlite3VdbeError(tls, p, __ccgo_ts+1674, 0)
|
|
rc = int32(SQLITE_NOMEM)
|
|
goto abort_due_to_error
|
|
/* Jump to here if the sqlite3_interrupt() API sets the interrupt
|
|
** flag.
|
|
*/
|
|
goto abort_due_to_interrupt
|
|
abort_due_to_interrupt:
|
|
;
|
|
rc = int32(SQLITE_INTERRUPT)
|
|
goto abort_due_to_error
|
|
return r
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function returns a pointer to a nul-terminated string in memory
|
|
// ** obtained from sqlite3DbMalloc(). If sqlite3.nVdbeExec is 1, then the
|
|
// ** string contains a copy of zRawSql but with host parameters expanded to
|
|
// ** their current bindings. Or, if sqlite3.nVdbeExec is greater than 1,
|
|
// ** then the returned string holds a copy of zRawSql with "-- " prepended
|
|
// ** to each line of text.
|
|
// **
|
|
// ** If the SQLITE_TRACE_SIZE_LIMIT macro is defined to an integer, then
|
|
// ** then long strings and blobs are truncated to that many bytes. This
|
|
// ** can be used to prevent unreasonably large trace strings when dealing
|
|
// ** with large (multi-megabyte) strings and blobs.
|
|
// **
|
|
// ** The calling function is responsible for making sure the memory returned
|
|
// ** is eventually freed.
|
|
// **
|
|
// ** ALGORITHM: Scan the input string looking for host parameters in any of
|
|
// ** these forms: ?, ?N, $A, @A, :A. Take care to avoid text within
|
|
// ** string literals, quoted identifier names, and comments. For text forms,
|
|
// ** the host parameter index is found by scanning the prepared
|
|
// ** statement for the corresponding OP_Variable opcode. Once the host
|
|
// ** parameter index is known, locate the value in p->aVar[]. Then render
|
|
// ** the value as a literal in place of the host parameter name.
|
|
// */
|
|
func _sqlite3VdbeExpandSql(tls *libc.TLS, p uintptr, zRawSql uintptr) (r uintptr) {
|
|
bp := tls.Alloc(128)
|
|
defer tls.Free(128)
|
|
var db, pVar, zStart, v1 uintptr
|
|
var enc Tu8
|
|
var i, nOut, nOut1, nextIndex, v2 int32
|
|
var n Ti64
|
|
var _ /* idx at bp+0 */ int32
|
|
var _ /* nToken at bp+8 */ Ti64
|
|
var _ /* out at bp+16 */ TStrAccum
|
|
var _ /* utf8 at bp+48 */ TMem
|
|
_, _, _, _, _, _, _, _, _, _, _ = db, enc, i, n, nOut, nOut1, nextIndex, pVar, zStart, v1, v2 /* The database connection */
|
|
**(**int32)(__ccgo_up(bp)) = 0 /* Index of a host parameter */
|
|
nextIndex = int32(1) /* Used to convert UTF16 into UTF8 for display */
|
|
db = (*TVdbe)(unsafe.Pointer(p)).Fdb
|
|
_sqlite3StrAccumInit(tls, bp+16, uintptr(0), uintptr(0), 0, **(**int32)(__ccgo_up(db + 136)))
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FnVdbeExec > int32(1) {
|
|
for **(**int8)(__ccgo_up(zRawSql)) != 0 {
|
|
zStart = zRawSql
|
|
for {
|
|
v1 = zRawSql
|
|
zRawSql = zRawSql + 1
|
|
if !(int32(**(**int8)(__ccgo_up(v1))) != int32('\n') && **(**int8)(__ccgo_up(zRawSql)) != 0) {
|
|
break
|
|
}
|
|
}
|
|
Xsqlite3_str_append(tls, bp+16, __ccgo_ts+5717, int32(3))
|
|
Xsqlite3_str_append(tls, bp+16, zStart, int32(int64(zRawSql)-int64(zStart)))
|
|
}
|
|
} else {
|
|
if int32((*TVdbe)(unsafe.Pointer(p)).FnVar) == 0 {
|
|
Xsqlite3_str_append(tls, bp+16, zRawSql, _sqlite3Strlen30(tls, zRawSql))
|
|
} else {
|
|
for **(**int8)(__ccgo_up(zRawSql)) != 0 {
|
|
n = _findNextHostParameter(tls, zRawSql, bp+8)
|
|
Xsqlite3_str_append(tls, bp+16, zRawSql, int32(n))
|
|
zRawSql = zRawSql + uintptr(n)
|
|
if **(**Ti64)(__ccgo_up(bp + 8)) == 0 {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zRawSql))) == int32('?') {
|
|
if **(**Ti64)(__ccgo_up(bp + 8)) > int64(1) {
|
|
_sqlite3GetInt32(tls, zRawSql+1, bp)
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp)) = nextIndex
|
|
}
|
|
} else {
|
|
**(**int32)(__ccgo_up(bp)) = _sqlite3VdbeParameterIndex(tls, p, zRawSql, int32(**(**Ti64)(__ccgo_up(bp + 8))))
|
|
}
|
|
zRawSql = zRawSql + uintptr(**(**Ti64)(__ccgo_up(bp + 8)))
|
|
if **(**int32)(__ccgo_up(bp))+int32(1) > nextIndex {
|
|
v2 = **(**int32)(__ccgo_up(bp)) + int32(1)
|
|
} else {
|
|
v2 = nextIndex
|
|
}
|
|
nextIndex = v2
|
|
pVar = (*TVdbe)(unsafe.Pointer(p)).FaVar + uintptr(**(**int32)(__ccgo_up(bp))-int32(1))*56
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pVar)).Fflags)&int32(MEM_Null) != 0 {
|
|
Xsqlite3_str_append(tls, bp+16, __ccgo_ts+1705, int32(4))
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pVar)).Fflags)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)) != 0 {
|
|
Xsqlite3_str_appendf(tls, bp+16, __ccgo_ts+1465, libc.VaList(bp+112, *(*Ti64)(unsafe.Pointer(pVar))))
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pVar)).Fflags)&int32(MEM_Real) != 0 {
|
|
Xsqlite3_str_appendf(tls, bp+16, __ccgo_ts+5721, libc.VaList(bp+112, *(*float64)(unsafe.Pointer(pVar))))
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pVar)).Fflags)&int32(MEM_Str) != 0 { /* Number of bytes of the string text to include in output */
|
|
enc = (*Tsqlite3)(unsafe.Pointer(db)).Fenc
|
|
if libc.Int32FromUint8(enc) != int32(SQLITE_UTF8) {
|
|
libc.Xmemset(tls, bp+48, 0, uint64(56))
|
|
(**(**TMem)(__ccgo_up(bp + 48))).Fdb = db
|
|
_sqlite3VdbeMemSetStr(tls, bp+48, (*TMem)(unsafe.Pointer(pVar)).Fz, int64((*TMem)(unsafe.Pointer(pVar)).Fn), enc, libc.UintptrFromInt32(0))
|
|
if int32(SQLITE_NOMEM) == _sqlite3VdbeChangeEncoding(tls, bp+48, int32(SQLITE_UTF8)) {
|
|
(**(**TStrAccum)(__ccgo_up(bp + 16))).FaccError = uint8(SQLITE_NOMEM)
|
|
(**(**TStrAccum)(__ccgo_up(bp + 16))).FnAlloc = uint32(0)
|
|
}
|
|
pVar = bp + 48
|
|
}
|
|
nOut = (*TMem)(unsafe.Pointer(pVar)).Fn
|
|
Xsqlite3_str_appendf(tls, bp+16, __ccgo_ts+5728, libc.VaList(bp+112, nOut, (*TMem)(unsafe.Pointer(pVar)).Fz))
|
|
if libc.Int32FromUint8(enc) != int32(SQLITE_UTF8) {
|
|
_sqlite3VdbeMemRelease(tls, bp+48)
|
|
}
|
|
} else {
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(pVar)).Fflags)&int32(MEM_Zero) != 0 {
|
|
Xsqlite3_str_appendf(tls, bp+16, __ccgo_ts+5735, libc.VaList(bp+112, *(*int32)(unsafe.Pointer(&(*TMem)(unsafe.Pointer(pVar)).Fu))))
|
|
} else { /* Number of bytes of the blob to include in output */
|
|
Xsqlite3_str_append(tls, bp+16, __ccgo_ts+5748, int32(2))
|
|
nOut1 = (*TMem)(unsafe.Pointer(pVar)).Fn
|
|
i = 0
|
|
for {
|
|
if !(i < nOut1) {
|
|
break
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp+16, __ccgo_ts+5751, libc.VaList(bp+112, int32(**(**int8)(__ccgo_up((*TMem)(unsafe.Pointer(pVar)).Fz + uintptr(i))))&int32(0xff)))
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
}
|
|
Xsqlite3_str_append(tls, bp+16, __ccgo_ts+5756, int32(1))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (**(**TStrAccum)(__ccgo_up(bp + 16))).FaccError != 0 {
|
|
Xsqlite3_str_reset(tls, bp+16)
|
|
}
|
|
return _sqlite3StrAccumFinish(tls, bp+16)
|
|
}
|
|
|
|
/************** End of vdbetrace.c *******************************************/
|
|
/************** Begin file vdbe.c ********************************************/
|
|
/*
|
|
** 2001 September 15
|
|
**
|
|
** The author disclaims copyright to this source code. In place of
|
|
** a legal notice, here is a blessing:
|
|
**
|
|
** May you do good and not evil.
|
|
** May you find forgiveness for yourself and forgive others.
|
|
** May you share freely, never taking more than you give.
|
|
**
|
|
*************************************************************************
|
|
** The code in this file implements the function that runs the
|
|
** bytecode of a prepared statement.
|
|
**
|
|
** Various scripts scan this source file in order to generate HTML
|
|
** documentation, headers files, or other derived files. The formatting
|
|
** of the code in this file is, therefore, important. See other comments
|
|
** in this file for details. If in doubt, do not deviate from existing
|
|
** commenting and indentation practices when changing or adding code.
|
|
*/
|
|
/* #include "sqliteInt.h" */
|
|
/* #include "vdbeInt.h" */
|
|
|
|
/*
|
|
** High-resolution hardware timer used for debugging and testing only.
|
|
*/
|
|
|
|
/*
|
|
** Invoke this macro on memory cells just prior to changing the
|
|
** value of the cell. This macro verifies that shallow copies are
|
|
** not misused. A shallow copy of a string or blob just copies a
|
|
** pointer to the string or blob, not the content. If the original
|
|
** is changed while the copy is still in use, the string or blob might
|
|
** be changed out from under the copy. This macro verifies that nothing
|
|
** like that ever happens.
|
|
*/
|
|
|
|
/*
|
|
** The following global variable is incremented every time a cursor
|
|
** moves, either by the OP_SeekXX, OP_Next, or OP_Prev opcodes. The test
|
|
** procedures use this information to make sure that indices are
|
|
** working correctly. This variable has no function other than to
|
|
** help verify the correct operation of the library.
|
|
*/
|
|
|
|
/*
|
|
** When this global variable is positive, it gets decremented once before
|
|
** each instruction in the VDBE. When it reaches zero, the u1.isInterrupted
|
|
** field of the sqlite3 structure is set in order to simulate an interrupt.
|
|
**
|
|
** This facility is used for testing purposes only. It does not function
|
|
** in an ordinary build.
|
|
*/
|
|
|
|
/*
|
|
** The next global variable is incremented each type the OP_Sort opcode
|
|
** is executed. The test procedures use this information to make sure that
|
|
** sorting is occurring or not occurring at appropriate times. This variable
|
|
** has no function other than to help verify the correct operation of the
|
|
** library.
|
|
*/
|
|
|
|
/*
|
|
** The next global variable records the size of the largest MEM_Blob
|
|
** or MEM_Str that has been used by a VDBE opcode. The test procedures
|
|
** use this information to make sure that the zero-blob functionality
|
|
** is working correctly. This variable has no function other than to
|
|
** help verify the correct operation of the library.
|
|
*/
|
|
|
|
/*
|
|
** This macro evaluates to true if either the update hook or the preupdate
|
|
** hook are enabled for database connect DB.
|
|
*/
|
|
|
|
/*
|
|
** The next global variable is incremented each time the OP_Found opcode
|
|
** is executed. This is used to test whether or not the foreign key
|
|
** operation implemented using OP_FkIsZero is working. This variable
|
|
** has no function other than to help verify the correct operation of the
|
|
** library.
|
|
*/
|
|
|
|
/*
|
|
** Test a register to see if it exceeds the current maximum blob size.
|
|
** If it does, record the new maximum blob size.
|
|
*/
|
|
|
|
/*
|
|
** Invoke the VDBE coverage callback, if that callback is defined. This
|
|
** feature is used for test suite validation only and does not appear an
|
|
** production builds.
|
|
**
|
|
** M is the type of branch. I is the direction taken for this instance of
|
|
** the branch.
|
|
**
|
|
** M: 2 - two-way branch (I=0: fall-thru 1: jump )
|
|
** 3 - two-way + NULL (I=0: fall-thru 1: jump 2: NULL )
|
|
** 4 - OP_Jump (I=0: jump p1 1: jump p2 2: jump p3)
|
|
**
|
|
** In other words, if M is 2, then I is either 0 (for fall-through) or
|
|
** 1 (for when the branch is taken). If M is 3, the I is 0 for an
|
|
** ordinary fall-through, I is 1 if the branch was taken, and I is 2
|
|
** if the result of comparison is NULL. For M=3, I=2 the jump may or
|
|
** may not be taken, depending on the SQLITE_JUMPIFNULL flags in p5.
|
|
** When M is 4, that means that an OP_Jump is being run. I is 0, 1, or 2
|
|
** depending on if the operands are less than, equal, or greater than.
|
|
**
|
|
** iSrcLine is the source code line (from the __LINE__ macro) that
|
|
** generated the VDBE instruction combined with flag bits. The source
|
|
** code line number is in the lower 24 bits of iSrcLine and the upper
|
|
** 8 bytes are flags. The lower three bits of the flags indicate
|
|
** values for I that should never occur. For example, if the branch is
|
|
** always taken, the flags should be 0x05 since the fall-through and
|
|
** alternate branch are never taken. If a branch is never taken then
|
|
** flags should be 0x06 since only the fall-through approach is allowed.
|
|
**
|
|
** Bit 0x08 of the flags indicates an OP_Jump opcode that is only
|
|
** interested in equal or not-equal. In other words, I==0 and I==2
|
|
** should be treated as equivalent
|
|
**
|
|
** Since only a line number is retained, not the filename, this macro
|
|
** only works for amalgamation builds. But that is ok, since these macros
|
|
** should be no-ops except for special builds used to measure test coverage.
|
|
*/
|
|
|
|
/*
|
|
** An ephemeral string value (signified by the MEM_Ephem flag) contains
|
|
** a pointer to a dynamically allocated string where some other entity
|
|
** is responsible for deallocating that string. Because the register
|
|
** does not control the string, it might be deleted without the register
|
|
** knowing it.
|
|
**
|
|
** This routine converts an ephemeral string into a dynamically allocated
|
|
** string that the register itself controls. In other words, it
|
|
** converts an MEM_Ephem string into a string with P.z==P.zMalloc.
|
|
*/
|
|
|
|
/* Return true if the cursor was opened using the OP_OpenSorter opcode. */
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Send a "statement aborts" message to the error log.
|
|
// */
|
|
func _sqlite3VdbeLogAbort(tls *libc.TLS, p uintptr, rc int32, pOp uintptr, aOp uintptr) {
|
|
bp := tls.Alloc(144)
|
|
defer tls.Free(144)
|
|
var pc int32
|
|
var zPrefix, zSql uintptr
|
|
var _ /* zXtra at bp+0 */ [100]int8
|
|
_, _, _ = pc, zPrefix, zSql
|
|
zSql = (*TVdbe)(unsafe.Pointer(p)).FzSql /* Original SQL text */
|
|
zPrefix = __ccgo_ts + 1704 /* Buffer space to store zPrefix */
|
|
if (*TVdbe)(unsafe.Pointer(p)).FpFrame != 0 {
|
|
if *(*uintptr)(unsafe.Pointer(aOp + 16)) != uintptr(0) {
|
|
Xsqlite3_snprintf(tls, int32(100), bp, __ccgo_ts+5758, libc.VaList(bp+112, *(*uintptr)(unsafe.Pointer(aOp + 16))+uintptr(3)))
|
|
zPrefix = bp
|
|
} else {
|
|
zPrefix = __ccgo_ts + 5768
|
|
}
|
|
}
|
|
pc = int32((int64(pOp) - int64(aOp)) / 24)
|
|
Xsqlite3_log(tls, rc, __ccgo_ts+5791, libc.VaList(bp+112, pc, (*TVdbe)(unsafe.Pointer(p)).FzErrMsg, zPrefix, zSql))
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** This function sets the P4 value of an existing OP_Explain opcode to
|
|
// ** text describing the loop in pLevel. If the OP_Explain opcode already has
|
|
// ** a P4 value, it is freed before it is overwritten.
|
|
// */
|
|
func _sqlite3WhereAddExplainText(tls *libc.TLS, pParse uintptr, addr int32, pTabList uintptr, pLevel uintptr, wctrlFlags Tu16) {
|
|
bp := tls.Alloc(176)
|
|
defer tls.Free(176)
|
|
var cRangeOp int8
|
|
var db, pIdx, pItem, pLoop, pOp, zFmt, zRowid, v1, v2 uintptr
|
|
var flags Tu32
|
|
var isSearch int32
|
|
var _ /* str at bp+0 */ TStrAccum
|
|
var _ /* zBuf at bp+32 */ [100]int8
|
|
_, _, _, _, _, _, _, _, _, _, _, _ = cRangeOp, db, flags, isSearch, pIdx, pItem, pLoop, pOp, zFmt, zRowid, v1, v2
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpToplevel != 0 {
|
|
v1 = (*TParse)(unsafe.Pointer(pParse)).FpToplevel
|
|
} else {
|
|
v1 = pParse
|
|
}
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(v1)).Fexplain) == int32(2) || libc.Bool(0 != 0) {
|
|
pOp = _sqlite3VdbeGetOp(tls, (*TParse)(unsafe.Pointer(pParse)).FpVdbe, addr)
|
|
pItem = pTabList + 8 + uintptr((*TWhereLevel)(unsafe.Pointer(pLevel)).FiFrom)*80
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Initial space for EQP output string */
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
return
|
|
}
|
|
pLoop = (*TWhereLevel)(unsafe.Pointer(pLevel)).FpWLoop
|
|
flags = (*TWhereLoop)(unsafe.Pointer(pLoop)).FwsFlags
|
|
isSearch = libc.BoolInt32(flags&libc.Uint32FromInt32(libc.Int32FromInt32(WHERE_BTM_LIMIT)|libc.Int32FromInt32(WHERE_TOP_LIMIT)) != uint32(0) || flags&uint32(WHERE_VIRTUALTABLE) == uint32(0) && libc.Int32FromUint16((*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FnEq) > 0 || libc.Int32FromUint16(wctrlFlags)&(libc.Int32FromInt32(WHERE_ORDERBY_MIN)|libc.Int32FromInt32(WHERE_ORDERBY_MAX)) != 0)
|
|
_sqlite3StrAccumInit(tls, bp, db, bp+32, int32(100), int32(SQLITE_MAX_LENGTH))
|
|
(**(**TStrAccum)(__ccgo_up(bp))).FprintfFlags = uint8(SQLITE_PRINTF_INTERNAL)
|
|
if isSearch != 0 {
|
|
v1 = __ccgo_ts + 23657
|
|
} else {
|
|
v1 = __ccgo_ts + 23664
|
|
}
|
|
if int32(*(*uint32)(unsafe.Pointer(pItem + 24 + 4))&0x40000>>18) != 0 {
|
|
v2 = __ccgo_ts + 23669
|
|
} else {
|
|
v2 = __ccgo_ts + 1704
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23677, libc.VaList(bp+144, v1, pItem, v2))
|
|
if flags&libc.Uint32FromInt32(libc.Int32FromInt32(WHERE_IPK)|libc.Int32FromInt32(WHERE_VIRTUALTABLE)) == uint32(0) {
|
|
zFmt = uintptr(0)
|
|
pIdx = (*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FpIndex
|
|
if !((*TTable)(unsafe.Pointer((*TSrcItem)(unsafe.Pointer(pItem)).FpSTab)).FtabFlags&libc.Uint32FromInt32(TF_WithoutRowid) == libc.Uint32FromInt32(0)) && int32(uint32(*(*uint16)(unsafe.Pointer(pIdx + 100))&0x3>>0)) == int32(SQLITE_IDXTYPE_PRIMARYKEY) {
|
|
if isSearch != 0 {
|
|
zFmt = __ccgo_ts + 11596
|
|
}
|
|
} else {
|
|
if flags&uint32(WHERE_PARTIALIDX) != 0 {
|
|
zFmt = __ccgo_ts + 23685
|
|
} else {
|
|
if flags&uint32(WHERE_AUTO_INDEX) != 0 {
|
|
zFmt = __ccgo_ts + 23718
|
|
} else {
|
|
if flags&libc.Uint32FromInt32(libc.Int32FromInt32(WHERE_IDX_ONLY)|libc.Int32FromInt32(WHERE_EXPRIDX)) != 0 {
|
|
zFmt = __ccgo_ts + 23743
|
|
} else {
|
|
zFmt = __ccgo_ts + 23761
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if zFmt != 0 {
|
|
Xsqlite3_str_append(tls, bp, __ccgo_ts+23770, int32(7))
|
|
Xsqlite3_str_appendf(tls, bp, zFmt, libc.VaList(bp+144, (*TIndex)(unsafe.Pointer(pIdx)).FzName))
|
|
_explainIndexRange(tls, bp, pLoop)
|
|
}
|
|
} else {
|
|
if flags&uint32(WHERE_IPK) != uint32(0) && flags&uint32(WHERE_CONSTRAINT) != uint32(0) {
|
|
zRowid = __ccgo_ts + 17967
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23778, libc.VaList(bp+144, zRowid))
|
|
if flags&libc.Uint32FromInt32(libc.Int32FromInt32(WHERE_COLUMN_EQ)|libc.Int32FromInt32(WHERE_COLUMN_IN)) != 0 {
|
|
cRangeOp = int8('=')
|
|
} else {
|
|
if flags&uint32(WHERE_BOTH_LIMIT) == uint32(WHERE_BOTH_LIMIT) {
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23809, libc.VaList(bp+144, zRowid))
|
|
cRangeOp = int8('<')
|
|
} else {
|
|
if flags&uint32(WHERE_BTM_LIMIT) != 0 {
|
|
cRangeOp = int8('>')
|
|
} else {
|
|
cRangeOp = int8('<')
|
|
}
|
|
}
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23819, libc.VaList(bp+144, int32(cRangeOp)))
|
|
} else {
|
|
if flags&uint32(WHERE_VIRTUALTABLE) != uint32(0) {
|
|
Xsqlite3_str_appendall(tls, bp, __ccgo_ts+23824)
|
|
if int32(Tu32(*(*uint8)(unsafe.Pointer(pLoop + 24 + 4))&0x4>>2)) != 0 {
|
|
v1 = __ccgo_ts + 23846
|
|
} else {
|
|
v1 = __ccgo_ts + 23854
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp, v1, libc.VaList(bp+144, (*(*struct {
|
|
FidxNum int32
|
|
F__ccgo4 uint8
|
|
FisOrdered Ti8
|
|
FomitMask Tu16
|
|
FidxStr uintptr
|
|
FmHandleIn Tu32
|
|
})(unsafe.Pointer(pLoop + 24))).FidxNum, (*(*struct {
|
|
FidxNum int32
|
|
F__ccgo4 uint8
|
|
FisOrdered Ti8
|
|
FomitMask Tu16
|
|
FidxStr uintptr
|
|
FmHandleIn Tu32
|
|
})(unsafe.Pointer(pLoop + 24))).FidxStr))
|
|
}
|
|
}
|
|
}
|
|
if libc.Int32FromUint8((*TSrcItem)(unsafe.Pointer(pItem)).Ffg.Fjointype)&int32(JT_LEFT) != 0 {
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23860, 0)
|
|
}
|
|
_sqlite3DbFree(tls, db, *(*uintptr)(unsafe.Pointer(pOp + 16)))
|
|
(*TVdbeOp)(unsafe.Pointer(pOp)).Fp4type = int8(-libc.Int32FromInt32(7))
|
|
*(*uintptr)(unsafe.Pointer(pOp + 16)) = _sqlite3StrAccumFinish(tls, bp)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Add a single OP_Explain opcode that describes a Bloom filter.
|
|
// **
|
|
// ** Or if not processing EXPLAIN QUERY PLAN and not in a SQLITE_DEBUG and/or
|
|
// ** SQLITE_ENABLE_STMT_SCANSTATUS build, then OP_Explain opcodes are not
|
|
// ** required and this routine is a no-op.
|
|
// **
|
|
// ** If an OP_Explain opcode is added to the VM, its address is returned.
|
|
// ** Otherwise, if no OP_Explain is coded, zero is returned.
|
|
// */
|
|
func _sqlite3WhereExplainBloomFilter(tls *libc.TLS, pParse uintptr, pWInfo uintptr, pLevel uintptr) (r int32) {
|
|
bp := tls.Alloc(160)
|
|
defer tls.Free(160)
|
|
var db, pItem, pLoop, pTab, v, z, zMsg uintptr
|
|
var i, ret int32
|
|
var _ /* str at bp+0 */ TStrAccum
|
|
var _ /* zBuf at bp+32 */ [100]int8
|
|
_, _, _, _, _, _, _, _, _ = db, i, pItem, pLoop, pTab, ret, v, z, zMsg
|
|
ret = 0
|
|
pItem = (*TWhereInfo)(unsafe.Pointer(pWInfo)).FpTabList + 8 + uintptr((*TWhereLevel)(unsafe.Pointer(pLevel)).FiFrom)*80
|
|
v = (*TParse)(unsafe.Pointer(pParse)).FpVdbe /* VM being constructed */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Initial space for EQP output string */
|
|
_sqlite3StrAccumInit(tls, bp, db, bp+32, int32(100), int32(SQLITE_MAX_LENGTH))
|
|
(**(**TStrAccum)(__ccgo_up(bp))).FprintfFlags = uint8(SQLITE_PRINTF_INTERNAL)
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23871, libc.VaList(bp+144, pItem))
|
|
pLoop = (*TWhereLevel)(unsafe.Pointer(pLevel)).FpWLoop
|
|
if (*TWhereLoop)(unsafe.Pointer(pLoop)).FwsFlags&uint32(WHERE_IPK) != 0 {
|
|
pTab = (*TSrcItem)(unsafe.Pointer(pItem)).FpSTab
|
|
if int32((*TTable)(unsafe.Pointer(pTab)).FiPKey) >= 0 {
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23640, libc.VaList(bp+144, (**(**TColumn)(__ccgo_up((*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr((*TTable)(unsafe.Pointer(pTab)).FiPKey)*16))).FzCnName))
|
|
} else {
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23892, 0)
|
|
}
|
|
} else {
|
|
i = libc.Int32FromUint16((*TWhereLoop)(unsafe.Pointer(pLoop)).FnSkip)
|
|
for {
|
|
if !(i < libc.Int32FromUint16((*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FnEq)) {
|
|
break
|
|
}
|
|
z = _explainIndexColumnName(tls, (*(*struct {
|
|
FnEq Tu16
|
|
FnBtm Tu16
|
|
FnTop Tu16
|
|
FnDistinctCol Tu16
|
|
FpIndex uintptr
|
|
FpOrderBy uintptr
|
|
})(unsafe.Pointer(pLoop + 24))).FpIndex, i)
|
|
if i > libc.Int32FromUint16((*TWhereLoop)(unsafe.Pointer(pLoop)).FnSkip) {
|
|
Xsqlite3_str_append(tls, bp, __ccgo_ts+23629, int32(5))
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+23640, libc.VaList(bp+144, z))
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
}
|
|
Xsqlite3_str_append(tls, bp, __ccgo_ts+5261, int32(1))
|
|
zMsg = _sqlite3StrAccumFinish(tls, bp)
|
|
ret = _sqlite3VdbeAddOp4(tls, v, int32(OP_Explain), _sqlite3VdbeCurrentAddr(tls, v), (*TParse)(unsafe.Pointer(pParse)).FaddrExplain, 0, zMsg, -int32(7))
|
|
return ret
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** strftime( FORMAT, TIMESTRING, MOD, MOD, ...)
|
|
// **
|
|
// ** Return a string described by FORMAT. Conversions as follows:
|
|
// **
|
|
// ** %d day of month 01-31
|
|
// ** %e day of month 1-31
|
|
// ** %f ** fractional seconds SS.SSS
|
|
// ** %F ISO date. YYYY-MM-DD
|
|
// ** %G ISO year corresponding to %V 0000-9999.
|
|
// ** %g 2-digit ISO year corresponding to %V 00-99
|
|
// ** %H hour 00-24
|
|
// ** %k hour 0-24 (leading zero converted to space)
|
|
// ** %I hour 01-12
|
|
// ** %j day of year 001-366
|
|
// ** %J ** julian day number
|
|
// ** %l hour 1-12 (leading zero converted to space)
|
|
// ** %m month 01-12
|
|
// ** %M minute 00-59
|
|
// ** %p "AM" or "PM"
|
|
// ** %P "am" or "pm"
|
|
// ** %R time as HH:MM
|
|
// ** %s seconds since 1970-01-01
|
|
// ** %S seconds 00-59
|
|
// ** %T time as HH:MM:SS
|
|
// ** %u day of week 1-7 Monday==1, Sunday==7
|
|
// ** %w day of week 0-6 Sunday==0, Monday==1
|
|
// ** %U week of year 00-53 (First Sunday is start of week 01)
|
|
// ** %V week of year 01-53 (First week containing Thursday is week 01)
|
|
// ** %W week of year 00-53 (First Monday is start of week 01)
|
|
// ** %Y year 0000-9999
|
|
// ** %% %
|
|
// */
|
|
func _strftimeFunc(tls *libc.TLS, context uintptr, argc int32, argv uintptr) {
|
|
bp := tls.Alloc(208)
|
|
defer tls.Free(208)
|
|
var c, cf int8
|
|
var db, zFmt, v3 uintptr
|
|
var h int32
|
|
var i, j, v2 Tsize_t
|
|
var iS Ti64
|
|
var s float64
|
|
var _ /* sRes at bp+48 */ Tsqlite3_str
|
|
var _ /* x at bp+0 */ TDateTime
|
|
var _ /* y at bp+128 */ TDateTime
|
|
var _ /* y at bp+80 */ TDateTime
|
|
_, _, _, _, _, _, _, _, _, _, _ = c, cf, db, h, i, iS, j, s, zFmt, v2, v3
|
|
if argc == 0 {
|
|
return
|
|
}
|
|
zFmt = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
if zFmt == uintptr(0) || _isDate(tls, context, argc-int32(1), argv+uintptr(1)*8, bp) != 0 {
|
|
return
|
|
}
|
|
db = Xsqlite3_context_db_handle(tls, context)
|
|
_sqlite3StrAccumInit(tls, bp+48, uintptr(0), uintptr(0), 0, **(**int32)(__ccgo_up(db + 136)))
|
|
_computeJD(tls, bp)
|
|
_computeYMD_HMS(tls, bp)
|
|
v2 = libc.Uint64FromInt32(0)
|
|
j = v2
|
|
i = v2
|
|
for {
|
|
if !(**(**int8)(__ccgo_up(zFmt + uintptr(i))) != 0) {
|
|
break
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zFmt + uintptr(i)))) != int32('%') {
|
|
goto _1
|
|
}
|
|
if j < i {
|
|
Xsqlite3_str_append(tls, bp+48, zFmt+uintptr(j), libc.Int32FromUint64(i-j))
|
|
}
|
|
i = i + 1
|
|
j = i + uint64(1)
|
|
cf = **(**int8)(__ccgo_up(zFmt + uintptr(i)))
|
|
switch int32(cf) {
|
|
case int32('d'): /* Fall thru */
|
|
fallthrough
|
|
case int32('e'):
|
|
if int32(cf) == int32('d') {
|
|
v3 = __ccgo_ts + 1391
|
|
} else {
|
|
v3 = __ccgo_ts + 1396
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp+48, v3, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).FD))
|
|
case int32('f'): /* Fractional seconds. (Non-standard) */
|
|
s = (**(**TDateTime)(__ccgo_up(bp))).Fs
|
|
if s > float64(59.999) {
|
|
s = float64(59.999)
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1400, libc.VaList(bp+184, s))
|
|
case int32('F'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1407, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).FY, (**(**TDateTime)(__ccgo_up(bp))).FM, (**(**TDateTime)(__ccgo_up(bp))).FD))
|
|
case int32('G'): /* Fall thru */
|
|
fallthrough
|
|
case int32('g'):
|
|
**(**TDateTime)(__ccgo_up(bp + 80)) = **(**TDateTime)(__ccgo_up(bp))
|
|
/* Move y so that it is the Thursday in the same week as x */
|
|
(**(**TDateTime)(__ccgo_up(bp + 80))).FiJD += int64((int32(3) - _daysAfterMonday(tls, bp)) * int32(86400000))
|
|
(**(**TDateTime)(__ccgo_up(bp + 80))).FvalidYMD = 0
|
|
_computeYMD(tls, bp+80)
|
|
if int32(cf) == int32('g') {
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp + 80))).FY%int32(100)))
|
|
} else {
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1422, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp + 80))).FY))
|
|
}
|
|
case int32('H'):
|
|
fallthrough
|
|
case int32('k'):
|
|
if int32(cf) == int32('H') {
|
|
v3 = __ccgo_ts + 1391
|
|
} else {
|
|
v3 = __ccgo_ts + 1396
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp+48, v3, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).Fh))
|
|
case int32('I'): /* Fall thru */
|
|
fallthrough
|
|
case int32('l'):
|
|
h = (**(**TDateTime)(__ccgo_up(bp))).Fh
|
|
if h > int32(12) {
|
|
h = h - int32(12)
|
|
}
|
|
if h == 0 {
|
|
h = int32(12)
|
|
}
|
|
if int32(cf) == int32('I') {
|
|
v3 = __ccgo_ts + 1391
|
|
} else {
|
|
v3 = __ccgo_ts + 1396
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp+48, v3, libc.VaList(bp+184, h))
|
|
case int32('j'): /* Day of year. Jan01==1, Jan02==2, and so forth */
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1427, libc.VaList(bp+184, _daysAfterJan01(tls, bp)+int32(1)))
|
|
case int32('J'): /* Julian day number. (Non-standard) */
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1432, libc.VaList(bp+184, float64((**(**TDateTime)(__ccgo_up(bp))).FiJD)/float64(8.64e+07)))
|
|
case int32('m'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).FM))
|
|
case int32('M'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).Fm))
|
|
case int32('p'): /* Fall thru */
|
|
fallthrough
|
|
case int32('P'):
|
|
if (**(**TDateTime)(__ccgo_up(bp))).Fh >= int32(12) {
|
|
if int32(cf) == int32('p') {
|
|
v3 = __ccgo_ts + 1438
|
|
} else {
|
|
v3 = __ccgo_ts + 1441
|
|
}
|
|
Xsqlite3_str_append(tls, bp+48, v3, int32(2))
|
|
} else {
|
|
if int32(cf) == int32('p') {
|
|
v3 = __ccgo_ts + 1444
|
|
} else {
|
|
v3 = __ccgo_ts + 1447
|
|
}
|
|
Xsqlite3_str_append(tls, bp+48, v3, int32(2))
|
|
}
|
|
case int32('R'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1450, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).Fh, (**(**TDateTime)(__ccgo_up(bp))).Fm))
|
|
case int32('s'):
|
|
if int32(uint32(*(*uint8)(unsafe.Pointer(bp + 44))&0x4>>2)) != 0 {
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1460, libc.VaList(bp+184, float64((**(**TDateTime)(__ccgo_up(bp))).FiJD-libc.Int64FromInt32(21086676)*libc.Int64FromInt32(10000000))/float64(1000)))
|
|
} else {
|
|
iS = (**(**TDateTime)(__ccgo_up(bp))).FiJD/libc.Int64FromInt32(1000) - libc.Int64FromInt32(21086676)*libc.Int64FromInt32(10000)
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1465, libc.VaList(bp+184, iS))
|
|
}
|
|
case int32('S'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, int32((**(**TDateTime)(__ccgo_up(bp))).Fs)))
|
|
case int32('T'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1470, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).Fh, (**(**TDateTime)(__ccgo_up(bp))).Fm, int32((**(**TDateTime)(__ccgo_up(bp))).Fs)))
|
|
case int32('u'): /* Day of week. 1 to 7. Monday==1, Sunday==7 */
|
|
fallthrough
|
|
case int32('w'): /* Day of week. 0 to 6. Sunday==0, Monday==1 */
|
|
c = int8(int32(int8(_daysAfterSunday(tls, bp))) + int32('0'))
|
|
if int32(c) == int32('0') && int32(cf) == int32('u') {
|
|
c = int8('7')
|
|
}
|
|
Xsqlite3_str_appendchar(tls, bp+48, int32(1), c)
|
|
case int32('U'): /* Week num. 00-53. First Sun of the year is week 01 */
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, (_daysAfterJan01(tls, bp)-_daysAfterSunday(tls, bp)+int32(7))/int32(7)))
|
|
case int32('V'): /* Week num. 01-53. First week with a Thur is week 01 */
|
|
**(**TDateTime)(__ccgo_up(bp + 128)) = **(**TDateTime)(__ccgo_up(bp))
|
|
/* Adjust y so that is the Thursday in the same week as x */
|
|
(**(**TDateTime)(__ccgo_up(bp + 128))).FiJD += int64((int32(3) - _daysAfterMonday(tls, bp)) * int32(86400000))
|
|
(**(**TDateTime)(__ccgo_up(bp + 128))).FvalidYMD = 0
|
|
_computeYMD(tls, bp+128)
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, _daysAfterJan01(tls, bp+128)/int32(7)+int32(1)))
|
|
case int32('W'): /* Week num. 00-53. First Mon of the year is week 01 */
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1391, libc.VaList(bp+184, (_daysAfterJan01(tls, bp)-_daysAfterMonday(tls, bp)+int32(7))/int32(7)))
|
|
case int32('Y'):
|
|
Xsqlite3_str_appendf(tls, bp+48, __ccgo_ts+1422, libc.VaList(bp+184, (**(**TDateTime)(__ccgo_up(bp))).FY))
|
|
case int32('%'):
|
|
Xsqlite3_str_appendchar(tls, bp+48, int32(1), int8('%'))
|
|
default:
|
|
Xsqlite3_str_reset(tls, bp+48)
|
|
return
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if j < i {
|
|
Xsqlite3_str_append(tls, bp+48, zFmt+uintptr(j), libc.Int32FromUint64(i-j))
|
|
}
|
|
_sqlite3ResultStrAccum(tls, context, bp+48)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** timediff(DATE1, DATE2)
|
|
// **
|
|
// ** Return the amount of time that must be added to DATE2 in order to
|
|
// ** convert it into DATE2. The time difference format is:
|
|
// **
|
|
// ** +YYYY-MM-DD HH:MM:SS.SSS
|
|
// **
|
|
// ** The initial "+" becomes "-" if DATE1 occurs before DATE2. For
|
|
// ** date/time values A and B, the following invariant should hold:
|
|
// **
|
|
// ** datetime(A) == (datetime(B, timediff(A,B))
|
|
// **
|
|
// ** Both DATE arguments must be either a julian day number, or an
|
|
// ** ISO-8601 string. The unix timestamps are not supported by this
|
|
// ** routine.
|
|
// */
|
|
func _timediffFunc(tls *libc.TLS, context uintptr, NotUsed1 int32, argv uintptr) {
|
|
bp := tls.Alloc(192)
|
|
defer tls.Free(192)
|
|
var M, Y int32
|
|
var sign int8
|
|
var v1 uintptr
|
|
var _ /* d1 at bp+0 */ TDateTime
|
|
var _ /* d2 at bp+48 */ TDateTime
|
|
var _ /* sRes at bp+96 */ Tsqlite3_str
|
|
_, _, _, _ = M, Y, sign, v1
|
|
_ = NotUsed1
|
|
if _isDate(tls, context, int32(1), argv, bp) != 0 {
|
|
return
|
|
}
|
|
if _isDate(tls, context, int32(1), argv+1*8, bp+48) != 0 {
|
|
return
|
|
}
|
|
_computeYMD_HMS(tls, bp)
|
|
_computeYMD_HMS(tls, bp+48)
|
|
if (**(**TDateTime)(__ccgo_up(bp))).FiJD >= (**(**TDateTime)(__ccgo_up(bp + 48))).FiJD {
|
|
sign = int8('+')
|
|
Y = (**(**TDateTime)(__ccgo_up(bp))).FY - (**(**TDateTime)(__ccgo_up(bp + 48))).FY
|
|
if Y != 0 {
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FY = (**(**TDateTime)(__ccgo_up(bp))).FY
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FvalidJD = 0
|
|
_computeJD(tls, bp+48)
|
|
}
|
|
M = (**(**TDateTime)(__ccgo_up(bp))).FM - (**(**TDateTime)(__ccgo_up(bp + 48))).FM
|
|
if M < 0 {
|
|
Y = Y - 1
|
|
M = M + int32(12)
|
|
}
|
|
if M != 0 {
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FM = (**(**TDateTime)(__ccgo_up(bp))).FM
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FvalidJD = 0
|
|
_computeJD(tls, bp+48)
|
|
}
|
|
for (**(**TDateTime)(__ccgo_up(bp))).FiJD < (**(**TDateTime)(__ccgo_up(bp + 48))).FiJD {
|
|
M = M - 1
|
|
if M < 0 {
|
|
M = int32(11)
|
|
Y = Y - 1
|
|
}
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FM = (**(**TDateTime)(__ccgo_up(bp + 48))).FM - 1
|
|
if (**(**TDateTime)(__ccgo_up(bp + 48))).FM < int32(1) {
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FM = int32(12)
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FY = (**(**TDateTime)(__ccgo_up(bp + 48))).FY - 1
|
|
}
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FvalidJD = 0
|
|
_computeJD(tls, bp+48)
|
|
}
|
|
(**(**TDateTime)(__ccgo_up(bp))).FiJD -= (**(**TDateTime)(__ccgo_up(bp + 48))).FiJD
|
|
v1 = bp
|
|
*(*Tsqlite3_int64)(unsafe.Pointer(v1)) = Tsqlite3_int64(uint64(*(*Tsqlite3_int64)(unsafe.Pointer(v1))) + libc.Uint64FromInt32(1486995408)*libc.Uint64FromInt32(100000))
|
|
} else { /* d1<d2 */
|
|
sign = int8('-')
|
|
Y = (**(**TDateTime)(__ccgo_up(bp + 48))).FY - (**(**TDateTime)(__ccgo_up(bp))).FY
|
|
if Y != 0 {
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FY = (**(**TDateTime)(__ccgo_up(bp))).FY
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FvalidJD = 0
|
|
_computeJD(tls, bp+48)
|
|
}
|
|
M = (**(**TDateTime)(__ccgo_up(bp + 48))).FM - (**(**TDateTime)(__ccgo_up(bp))).FM
|
|
if M < 0 {
|
|
Y = Y - 1
|
|
M = M + int32(12)
|
|
}
|
|
if M != 0 {
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FM = (**(**TDateTime)(__ccgo_up(bp))).FM
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FvalidJD = 0
|
|
_computeJD(tls, bp+48)
|
|
}
|
|
for (**(**TDateTime)(__ccgo_up(bp))).FiJD > (**(**TDateTime)(__ccgo_up(bp + 48))).FiJD {
|
|
M = M - 1
|
|
if M < 0 {
|
|
M = int32(11)
|
|
Y = Y - 1
|
|
}
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FM = (**(**TDateTime)(__ccgo_up(bp + 48))).FM + 1
|
|
if (**(**TDateTime)(__ccgo_up(bp + 48))).FM > int32(12) {
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FM = int32(1)
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FY = (**(**TDateTime)(__ccgo_up(bp + 48))).FY + 1
|
|
}
|
|
(**(**TDateTime)(__ccgo_up(bp + 48))).FvalidJD = 0
|
|
_computeJD(tls, bp+48)
|
|
}
|
|
(**(**TDateTime)(__ccgo_up(bp))).FiJD = (**(**TDateTime)(__ccgo_up(bp + 48))).FiJD - (**(**TDateTime)(__ccgo_up(bp))).FiJD
|
|
v1 = bp
|
|
*(*Tsqlite3_int64)(unsafe.Pointer(v1)) = Tsqlite3_int64(uint64(*(*Tsqlite3_int64)(unsafe.Pointer(v1))) + libc.Uint64FromInt32(1486995408)*libc.Uint64FromInt32(100000))
|
|
}
|
|
_clearYMD_HMS_TZ(tls, bp)
|
|
_computeYMD_HMS(tls, bp)
|
|
_sqlite3StrAccumInit(tls, bp+96, uintptr(0), uintptr(0), 0, int32(100))
|
|
Xsqlite3_str_appendf(tls, bp+96, __ccgo_ts+1485, libc.VaList(bp+136, int32(sign), Y, M, (**(**TDateTime)(__ccgo_up(bp))).FD-int32(1), (**(**TDateTime)(__ccgo_up(bp))).Fh, (**(**TDateTime)(__ccgo_up(bp))).Fm, (**(**TDateTime)(__ccgo_up(bp))).Fs))
|
|
_sqlite3ResultStrAccum(tls, context, bp+96)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Assuming the input DateTime is UTC, move it to its localtime equivalent.
|
|
// */
|
|
func _toLocaltime(tls *libc.TLS, p uintptr, pCtx uintptr) (r int32) {
|
|
bp := tls.Alloc(112)
|
|
defer tls.Free(112)
|
|
var iYearDiff int32
|
|
var _ /* sLocal at bp+8 */ Ttm
|
|
var _ /* t at bp+0 */ Ttime_t
|
|
var _ /* x at bp+64 */ TDateTime
|
|
_ = iYearDiff
|
|
/* Initialize the contents of sLocal to avoid a compiler warning. */
|
|
libc.Xmemset(tls, bp+8, 0, uint64(56))
|
|
_computeJD(tls, p)
|
|
if (*TDateTime)(unsafe.Pointer(p)).FiJD < libc.Int64FromInt32(2108667600)*libc.Int64FromInt32(100000) || (*TDateTime)(unsafe.Pointer(p)).FiJD > libc.Int64FromInt32(2130141456)*libc.Int64FromInt32(100000) {
|
|
/* EVIDENCE-OF: R-55269-29598 The localtime_r() C function normally only
|
|
** works for years between 1970 and 2037. For dates outside this range,
|
|
** SQLite attempts to map the year into an equivalent year within this
|
|
** range, do the calculation, then map the year back.
|
|
*/
|
|
**(**TDateTime)(__ccgo_up(bp + 64)) = **(**TDateTime)(__ccgo_up(p))
|
|
_computeYMD_HMS(tls, bp+64)
|
|
iYearDiff = int32(2000) + (**(**TDateTime)(__ccgo_up(bp + 64))).FY%int32(4) - (**(**TDateTime)(__ccgo_up(bp + 64))).FY
|
|
(**(**TDateTime)(__ccgo_up(bp + 64))).FY += iYearDiff
|
|
(**(**TDateTime)(__ccgo_up(bp + 64))).FvalidJD = 0
|
|
_computeJD(tls, bp+64)
|
|
**(**Ttime_t)(__ccgo_up(bp)) = int64((**(**TDateTime)(__ccgo_up(bp + 64))).FiJD/libc.Int64FromInt32(1000) - libc.Int64FromInt32(21086676)*libc.Int64FromInt32(10000))
|
|
} else {
|
|
iYearDiff = 0
|
|
**(**Ttime_t)(__ccgo_up(bp)) = int64((*TDateTime)(unsafe.Pointer(p)).FiJD/libc.Int64FromInt32(1000) - libc.Int64FromInt32(21086676)*libc.Int64FromInt32(10000))
|
|
}
|
|
if _osLocaltime(tls, bp, bp+8) != 0 {
|
|
Xsqlite3_result_error(tls, pCtx, __ccgo_ts+1249, -int32(1))
|
|
return int32(SQLITE_ERROR)
|
|
}
|
|
(*TDateTime)(unsafe.Pointer(p)).FY = (**(**Ttm)(__ccgo_up(bp + 8))).Ftm_year + int32(1900) - iYearDiff
|
|
(*TDateTime)(unsafe.Pointer(p)).FM = (**(**Ttm)(__ccgo_up(bp + 8))).Ftm_mon + int32(1)
|
|
(*TDateTime)(unsafe.Pointer(p)).FD = (**(**Ttm)(__ccgo_up(bp + 8))).Ftm_mday
|
|
(*TDateTime)(unsafe.Pointer(p)).Fh = (**(**Ttm)(__ccgo_up(bp + 8))).Ftm_hour
|
|
(*TDateTime)(unsafe.Pointer(p)).Fm = (**(**Ttm)(__ccgo_up(bp + 8))).Ftm_min
|
|
(*TDateTime)(unsafe.Pointer(p)).Fs = float64((**(**Ttm)(__ccgo_up(bp + 8))).Ftm_sec) + float64(float64((*TDateTime)(unsafe.Pointer(p)).FiJD%libc.Int64FromInt32(1000))*float64(0.001))
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidYMD = int8(1)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidHMS = int8(1)
|
|
(*TDateTime)(unsafe.Pointer(p)).FvalidJD = 0
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 0, 0x1)
|
|
(*TDateTime)(unsafe.Pointer(p)).Ftz = 0
|
|
libc.SetBitFieldPtr8Uint32(p+44, libc.Uint32FromInt32(0), 1, 0x2)
|
|
return SQLITE_OK
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Implementation of the UNISTR() function.
|
|
// **
|
|
// ** This is intended to be a work-alike of the UNISTR() function in
|
|
// ** PostgreSQL. Quoting from the PG documentation (PostgreSQL 17 -
|
|
// ** scraped on 2025-02-22):
|
|
// **
|
|
// ** Evaluate escaped Unicode characters in the argument. Unicode
|
|
// ** characters can be specified as \XXXX (4 hexadecimal digits),
|
|
// ** \+XXXXXX (6 hexadecimal digits), \uXXXX (4 hexadecimal digits),
|
|
// ** or \UXXXXXXXX (8 hexadecimal digits). To specify a backslash,
|
|
// ** write two backslashes. All other characters are taken literally.
|
|
// */
|
|
func _unistrFunc(tls *libc.TLS, context uintptr, argc int32, argv uintptr) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var i, j, n, nIn, v1 int32
|
|
var z, zIn, zOut uintptr
|
|
var _ /* v at bp+0 */ Tu32
|
|
_, _, _, _, _, _, _, _ = i, j, n, nIn, z, zIn, zOut, v1
|
|
_ = argc
|
|
zIn = Xsqlite3_value_text(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
if zIn == uintptr(0) {
|
|
return
|
|
}
|
|
nIn = Xsqlite3_value_bytes(tls, **(**uintptr)(__ccgo_up(argv)))
|
|
zOut = Xsqlite3_malloc64(tls, libc.Uint64FromInt32(nIn+int32(1)))
|
|
if zOut == uintptr(0) {
|
|
Xsqlite3_result_error_nomem(tls, context)
|
|
return
|
|
}
|
|
v1 = libc.Int32FromInt32(0)
|
|
j = v1
|
|
i = v1
|
|
for i < nIn {
|
|
z = libc.Xstrchr(tls, zIn+uintptr(i), int32('\\'))
|
|
if z == uintptr(0) {
|
|
n = nIn - i
|
|
libc.Xmemmove(tls, zOut+uintptr(j), zIn+uintptr(i), libc.Uint64FromInt32(n))
|
|
j = j + n
|
|
break
|
|
}
|
|
n = int32(int64(z) - t__predefined_ptrdiff_t(zIn+uintptr(i)))
|
|
if n > 0 {
|
|
libc.Xmemmove(tls, zOut+uintptr(j), zIn+uintptr(i), libc.Uint64FromInt32(n))
|
|
j = j + n
|
|
i = i + n
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zIn + uintptr(i+int32(1))))) == int32('\\') {
|
|
i = i + int32(2)
|
|
v1 = j
|
|
j = j + 1
|
|
**(**int8)(__ccgo_up(zOut + uintptr(v1))) = int8('\\')
|
|
} else {
|
|
if libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(zIn + uintptr(i+int32(1)))))])&int32(0x08) != 0 {
|
|
if !(_isNHex(tls, zIn+uintptr(i+int32(1)), int32(4), bp) != 0) {
|
|
goto unistr_error
|
|
}
|
|
i = i + int32(5)
|
|
j = j + _sqlite3AppendOneUtf8Character(tls, zOut+uintptr(j), **(**Tu32)(__ccgo_up(bp)))
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zIn + uintptr(i+int32(1))))) == int32('+') {
|
|
if !(_isNHex(tls, zIn+uintptr(i+int32(2)), int32(6), bp) != 0) {
|
|
goto unistr_error
|
|
}
|
|
i = i + int32(8)
|
|
j = j + _sqlite3AppendOneUtf8Character(tls, zOut+uintptr(j), **(**Tu32)(__ccgo_up(bp)))
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zIn + uintptr(i+int32(1))))) == int32('u') {
|
|
if !(_isNHex(tls, zIn+uintptr(i+int32(2)), int32(4), bp) != 0) {
|
|
goto unistr_error
|
|
}
|
|
i = i + int32(6)
|
|
j = j + _sqlite3AppendOneUtf8Character(tls, zOut+uintptr(j), **(**Tu32)(__ccgo_up(bp)))
|
|
} else {
|
|
if int32(**(**int8)(__ccgo_up(zIn + uintptr(i+int32(1))))) == int32('U') {
|
|
if !(_isNHex(tls, zIn+uintptr(i+int32(2)), int32(8), bp) != 0) {
|
|
goto unistr_error
|
|
}
|
|
i = i + int32(10)
|
|
j = j + _sqlite3AppendOneUtf8Character(tls, zOut+uintptr(j), **(**Tu32)(__ccgo_up(bp)))
|
|
} else {
|
|
goto unistr_error
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
**(**int8)(__ccgo_up(zOut + uintptr(j))) = 0
|
|
Xsqlite3_result_text64(tls, context, zOut, libc.Uint64FromInt32(j), __ccgo_fp(Xsqlite3_free), uint8(SQLITE_UTF8_ZT))
|
|
return
|
|
goto unistr_error
|
|
unistr_error:
|
|
;
|
|
Xsqlite3_free(tls, zOut)
|
|
Xsqlite3_result_error(tls, context, __ccgo_ts+16575, -int32(1))
|
|
return
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Turn a relative pathname into a full pathname. The relative path
|
|
// ** is stored as a nul-terminated string in the buffer pointed to by
|
|
// ** zPath.
|
|
// **
|
|
// ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
|
|
// ** (in this case, MAX_PATHNAME bytes). The full-path is written to
|
|
// ** this buffer before returning.
|
|
// */
|
|
func _unixFullPathname(tls *libc.TLS, pVfs uintptr, zPath uintptr, nOut int32, zOut uintptr) (r int32) {
|
|
bp := tls.Alloc(4128)
|
|
defer tls.Free(4128)
|
|
var _ /* path at bp+0 */ TDbPath
|
|
var _ /* zPwd at bp+24 */ [4098]int8
|
|
_ = pVfs
|
|
(**(**TDbPath)(__ccgo_up(bp))).Frc = 0
|
|
(**(**TDbPath)(__ccgo_up(bp))).FnUsed = 0
|
|
(**(**TDbPath)(__ccgo_up(bp))).FnSymlink = 0
|
|
(**(**TDbPath)(__ccgo_up(bp))).FnOut = nOut
|
|
(**(**TDbPath)(__ccgo_up(bp))).FzOut = zOut
|
|
if int32(**(**int8)(__ccgo_up(zPath))) != int32('/') {
|
|
if (*(*func(*libc.TLS, uintptr, Tsize_t) uintptr)(unsafe.Pointer(&struct{ uintptr }{_aSyscall[int32(3)].FpCurrent})))(tls, bp+24, libc.Uint64FromInt64(4098)-libc.Uint64FromInt32(2)) == uintptr(0) {
|
|
return _unixLogErrorAtLine(tls, _sqlite3CantopenError(tls, int32(47221)), __ccgo_ts+3560, zPath, int32(47221))
|
|
}
|
|
_appendAllPathElements(tls, bp, bp+24)
|
|
}
|
|
_appendAllPathElements(tls, bp, zPath)
|
|
**(**int8)(__ccgo_up(zOut + uintptr((**(**TDbPath)(__ccgo_up(bp))).FnUsed))) = 0
|
|
if (**(**TDbPath)(__ccgo_up(bp))).Frc != 0 || (**(**TDbPath)(__ccgo_up(bp))).FnUsed < int32(2) {
|
|
return _sqlite3CantopenError(tls, int32(47227))
|
|
}
|
|
if (**(**TDbPath)(__ccgo_up(bp))).FnSymlink != 0 {
|
|
return libc.Int32FromInt32(SQLITE_OK) | libc.Int32FromInt32(2)<<libc.Int32FromInt32(8)
|
|
}
|
|
return SQLITE_OK
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Open the file zPath.
|
|
// **
|
|
// ** Previously, the SQLite OS layer used three functions in place of this
|
|
// ** one:
|
|
// **
|
|
// ** sqlite3OsOpenReadWrite();
|
|
// ** sqlite3OsOpenReadOnly();
|
|
// ** sqlite3OsOpenExclusive();
|
|
// **
|
|
// ** These calls correspond to the following combinations of flags:
|
|
// **
|
|
// ** ReadWrite() -> (READWRITE | CREATE)
|
|
// ** ReadOnly() -> (READONLY)
|
|
// ** OpenExclusive() -> (READWRITE | CREATE | EXCLUSIVE)
|
|
// **
|
|
// ** The old OpenExclusive() accepted a boolean argument - "delFlag". If
|
|
// ** true, the file was configured to be automatically deleted when the
|
|
// ** file handle closed. To achieve the same effect using this new
|
|
// ** interface, add the DELETEONCLOSE flag to those specified above for
|
|
// ** OpenExclusive().
|
|
// */
|
|
func _unixOpen(tls *libc.TLS, pVfs uintptr, zPath uintptr, pFile uintptr, flags int32, pOutFlags uintptr) (r int32) {
|
|
bp := tls.Alloc(528)
|
|
defer tls.Free(528)
|
|
var ctrlFlags, eType, fd, isCreate, isDelete, isExclusive, isNewJrnl, isReadWrite, isReadonly, noLock, openFlags, rc, rc2 int32
|
|
var p, pReadonly, pUnused, zName uintptr
|
|
var _ /* gid at bp+524 */ Tgid_t
|
|
var _ /* openMode at bp+516 */ Tmode_t
|
|
var _ /* uid at bp+520 */ Tuid_t
|
|
var _ /* zTmpname at bp+0 */ [514]int8
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = ctrlFlags, eType, fd, isCreate, isDelete, isExclusive, isNewJrnl, isReadWrite, isReadonly, noLock, openFlags, p, pReadonly, pUnused, rc, rc2, zName
|
|
p = pFile
|
|
fd = -int32(1) /* File descriptor returned by open() */
|
|
openFlags = 0 /* Flags to pass to open() */
|
|
eType = flags & int32(0x0FFF00) /* True to omit locking primitives */
|
|
rc = SQLITE_OK /* Function Return Code */
|
|
ctrlFlags = 0 /* UNIXFILE_* flags */
|
|
isExclusive = flags & int32(SQLITE_OPEN_EXCLUSIVE)
|
|
isDelete = flags & int32(SQLITE_OPEN_DELETEONCLOSE)
|
|
isCreate = flags & int32(SQLITE_OPEN_CREATE)
|
|
isReadonly = flags & int32(SQLITE_OPEN_READONLY)
|
|
isReadWrite = flags & int32(SQLITE_OPEN_READWRITE)
|
|
/* If creating a super- or main-file journal, this function will open
|
|
** a file-descriptor on the directory too. The first time unixSync()
|
|
** is called the directory file descriptor will be fsync()ed and close()d.
|
|
*/
|
|
isNewJrnl = libc.BoolInt32(isCreate != 0 && (eType == int32(SQLITE_OPEN_SUPER_JOURNAL) || eType == int32(SQLITE_OPEN_MAIN_JOURNAL) || eType == int32(SQLITE_OPEN_WAL)))
|
|
zName = zPath
|
|
/* Check the following statements are true:
|
|
**
|
|
** (a) Exactly one of the READWRITE and READONLY flags must be set, and
|
|
** (b) if CREATE is set, then READWRITE must also be set, and
|
|
** (c) if EXCLUSIVE is set, then CREATE must also be set.
|
|
** (d) if DELETEONCLOSE is set, then CREATE must also be set.
|
|
*/
|
|
/* The main DB, main journal, WAL file and super-journal are never
|
|
** automatically deleted. Nor are they ever temporary files. */
|
|
/* Assert that the upper layer has set one of the "file-type" flags. */
|
|
/* Detect a pid change and reset the PRNG. There is a race condition
|
|
** here such that two or more threads all trying to open databases at
|
|
** the same instant might all reset the PRNG. But multiple resets
|
|
** are harmless.
|
|
*/
|
|
if libc.AtomicLoadPInt32(uintptr(unsafe.Pointer(&_randomnessPid))) != libc.Xgetpid(tls) {
|
|
libc.AtomicStorePInt32(uintptr(unsafe.Pointer(&_randomnessPid)), libc.Xgetpid(tls))
|
|
Xsqlite3_randomness(tls, 0, uintptr(0))
|
|
}
|
|
libc.Xmemset(tls, p, 0, uint64(120))
|
|
if eType == int32(SQLITE_OPEN_MAIN_DB) {
|
|
pUnused = _findReusableFd(tls, zName, flags)
|
|
if pUnused != 0 {
|
|
fd = (*TUnixUnusedFd)(unsafe.Pointer(pUnused)).Ffd
|
|
} else {
|
|
pUnused = Xsqlite3_malloc64(tls, uint64(16))
|
|
if !(pUnused != 0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
}
|
|
(*TunixFile)(unsafe.Pointer(p)).FpPreallocatedUnused = pUnused
|
|
/* Database filenames are double-zero terminated if they are not
|
|
** URIs with parameters. Hence, they can always be passed into
|
|
** sqlite3_uri_parameter(). */
|
|
} else {
|
|
if !(zName != 0) {
|
|
/* If zName is NULL, the upper layer is requesting a temp file. */
|
|
rc = _unixGetTempname(tls, (*Tsqlite3_vfs)(unsafe.Pointer(pVfs)).FmxPathname, bp)
|
|
if rc != SQLITE_OK {
|
|
return rc
|
|
}
|
|
zName = bp
|
|
/* Generated temporary filenames are always double-zero terminated
|
|
** for use by sqlite3_uri_parameter(). */
|
|
}
|
|
}
|
|
/* Determine the value of the flags parameter passed to POSIX function
|
|
** open(). These must be calculated even if open() is not called, as
|
|
** they may be stored as part of the file handle and used by the
|
|
** 'conch file' locking functions later on. */
|
|
if isReadonly != 0 {
|
|
openFlags = openFlags | O_RDONLY
|
|
}
|
|
if isReadWrite != 0 {
|
|
openFlags = openFlags | int32(O_RDWR)
|
|
}
|
|
if isCreate != 0 {
|
|
openFlags = openFlags | int32(O_CREAT)
|
|
}
|
|
if isExclusive != 0 {
|
|
openFlags = openFlags | (libc.Int32FromInt32(O_EXCL) | libc.Int32FromInt32(O_NOFOLLOW))
|
|
}
|
|
openFlags = openFlags | (libc.Int32FromInt32(O_LARGEFILE) | libc.Int32FromInt32(O_BINARY) | libc.Int32FromInt32(O_NOFOLLOW))
|
|
if fd < 0 { /* Groupid for the file */
|
|
rc = _findCreateFileMode(tls, zName, flags, bp+516, bp+520, bp+524)
|
|
if rc != SQLITE_OK {
|
|
return rc
|
|
}
|
|
fd = _robust_open(tls, zName, openFlags, **(**Tmode_t)(__ccgo_up(bp + 516)))
|
|
if fd < 0 {
|
|
if isNewJrnl != 0 && **(**int32)(__ccgo_up(libc.X__errno_location(tls))) == int32(EACCES) && (*(*func(*libc.TLS, uintptr, int32) int32)(unsafe.Pointer(&struct{ uintptr }{_aSyscall[int32(2)].FpCurrent})))(tls, zName, F_OK) != 0 {
|
|
/* If unable to create a journal because the directory is not
|
|
** writable, change the error code to indicate that. */
|
|
rc = libc.Int32FromInt32(SQLITE_READONLY) | libc.Int32FromInt32(6)<<libc.Int32FromInt32(8)
|
|
} else {
|
|
if **(**int32)(__ccgo_up(libc.X__errno_location(tls))) != int32(EISDIR) && isReadWrite != 0 {
|
|
/* Failed to open the file for read/write access. Try read-only. */
|
|
pReadonly = uintptr(0)
|
|
flags = flags & ^(libc.Int32FromInt32(SQLITE_OPEN_READWRITE) | libc.Int32FromInt32(SQLITE_OPEN_CREATE))
|
|
openFlags = openFlags & ^(libc.Int32FromInt32(O_RDWR) | libc.Int32FromInt32(O_CREAT))
|
|
flags = flags | int32(SQLITE_OPEN_READONLY)
|
|
openFlags = openFlags | O_RDONLY
|
|
isReadonly = int32(1)
|
|
pReadonly = _findReusableFd(tls, zName, flags)
|
|
if pReadonly != 0 {
|
|
fd = (*TUnixUnusedFd)(unsafe.Pointer(pReadonly)).Ffd
|
|
Xsqlite3_free(tls, pReadonly)
|
|
} else {
|
|
fd = _robust_open(tls, zName, openFlags, **(**Tmode_t)(__ccgo_up(bp + 516)))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if fd < 0 {
|
|
rc2 = _unixLogErrorAtLine(tls, _sqlite3CantopenError(tls, int32(46904)), __ccgo_ts+3542, zName, int32(46904))
|
|
if rc == SQLITE_OK {
|
|
rc = rc2
|
|
}
|
|
goto open_finished
|
|
}
|
|
/* The owner of the rollback journal or WAL file should always be the
|
|
** same as the owner of the database file. Try to ensure that this is
|
|
** the case. The chown() system call will be a no-op if the current
|
|
** process lacks root privileges, be we should at least try. Without
|
|
** this step, if a root process opens a database file, it can leave
|
|
** behinds a journal/WAL that is owned by root and hence make the
|
|
** database inaccessible to unprivileged processes.
|
|
**
|
|
** If openMode==0, then that means uid and gid are not set correctly
|
|
** (probably because SQLite is configured to use 8+3 filename mode) and
|
|
** in that case we do not want to attempt the chown().
|
|
*/
|
|
if **(**Tmode_t)(__ccgo_up(bp + 516)) != 0 && flags&(libc.Int32FromInt32(SQLITE_OPEN_WAL)|libc.Int32FromInt32(SQLITE_OPEN_MAIN_JOURNAL)) != 0 {
|
|
_robustFchown(tls, fd, **(**Tuid_t)(__ccgo_up(bp + 520)), **(**Tgid_t)(__ccgo_up(bp + 524)))
|
|
}
|
|
}
|
|
if pOutFlags != 0 {
|
|
**(**int32)(__ccgo_up(pOutFlags)) = flags
|
|
}
|
|
if (*TunixFile)(unsafe.Pointer(p)).FpPreallocatedUnused != 0 {
|
|
(*TUnixUnusedFd)(unsafe.Pointer((*TunixFile)(unsafe.Pointer(p)).FpPreallocatedUnused)).Ffd = fd
|
|
(*TUnixUnusedFd)(unsafe.Pointer((*TunixFile)(unsafe.Pointer(p)).FpPreallocatedUnused)).Fflags = flags & (libc.Int32FromInt32(SQLITE_OPEN_READONLY) | libc.Int32FromInt32(SQLITE_OPEN_READWRITE))
|
|
}
|
|
if isDelete != 0 {
|
|
(*(*func(*libc.TLS, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{_aSyscall[int32(16)].FpCurrent})))(tls, zName)
|
|
}
|
|
/* Set up appropriate ctrlFlags */
|
|
if isDelete != 0 {
|
|
ctrlFlags = ctrlFlags | int32(UNIXFILE_DELETE)
|
|
}
|
|
if isReadonly != 0 {
|
|
ctrlFlags = ctrlFlags | int32(UNIXFILE_RDONLY)
|
|
}
|
|
noLock = libc.BoolInt32(eType != int32(SQLITE_OPEN_MAIN_DB))
|
|
if noLock != 0 {
|
|
ctrlFlags = ctrlFlags | int32(UNIXFILE_NOLOCK)
|
|
}
|
|
if isNewJrnl != 0 {
|
|
ctrlFlags = ctrlFlags | int32(UNIXFILE_DIRSYNC)
|
|
}
|
|
if flags&int32(SQLITE_OPEN_URI) != 0 {
|
|
ctrlFlags = ctrlFlags | int32(UNIXFILE_URI)
|
|
}
|
|
rc = _fillInUnixFile(tls, pVfs, fd, pFile, zPath, ctrlFlags)
|
|
goto open_finished
|
|
open_finished:
|
|
;
|
|
if rc != SQLITE_OK {
|
|
Xsqlite3_free(tls, (*TunixFile)(unsafe.Pointer(p)).FpPreallocatedUnused)
|
|
}
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Extract a value from the supplied expression in the manner described
|
|
// ** above sqlite3ValueFromExpr(). Allocate the sqlite3_value object
|
|
// ** using valueNew().
|
|
// **
|
|
// ** If pCtx is NULL and an error occurs after the sqlite3_value object
|
|
// ** has been allocated, it is freed before returning. Or, if pCtx is not
|
|
// ** NULL, it is assumed that the caller will free any allocated object
|
|
// ** in all cases.
|
|
// */
|
|
func _valueFromExpr(tls *libc.TLS, db uintptr, pExpr uintptr, enc Tu8, affinity Tu8, ppVal uintptr, pCtx uintptr) (r int32) {
|
|
bp := tls.Alloc(48)
|
|
defer tls.Free(48)
|
|
var aff Tu8
|
|
var nVal, negInt, op, rc, v1 int32
|
|
var pLeft, zNeg, zVal, v3 uintptr
|
|
var _ /* iVal at bp+8 */ Ti64
|
|
var _ /* pVal at bp+0 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _ = aff, nVal, negInt, op, pLeft, rc, zNeg, zVal, v1, v3
|
|
zVal = uintptr(0)
|
|
**(**uintptr)(__ccgo_up(bp)) = uintptr(0)
|
|
negInt = int32(1)
|
|
zNeg = __ccgo_ts + 1704
|
|
rc = SQLITE_OK
|
|
for {
|
|
v1 = libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop)
|
|
op = v1
|
|
if !(v1 == int32(TK_UPLUS) || op == int32(TK_SPAN)) {
|
|
break
|
|
}
|
|
pExpr = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
}
|
|
if op == int32(TK_REGISTER) {
|
|
op = libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop2)
|
|
}
|
|
/* Compressed expressions only appear when parsing the DEFAULT clause
|
|
** on a table column definition, and hence only when pCtx==0. This
|
|
** check ensures that an EP_TokenOnly expression is never passed down
|
|
** into valueFromFunction(). */
|
|
if op == int32(TK_CAST) {
|
|
aff = libc.Uint8FromInt8(_sqlite3AffinityType(tls, *(*uintptr)(unsafe.Pointer(pExpr + 8)), uintptr(0)))
|
|
rc = _valueFromExpr(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, enc, aff, ppVal, pCtx)
|
|
if **(**uintptr)(__ccgo_up(ppVal)) != 0 {
|
|
if libc.Int32FromUint16((*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(ppVal)))).Fflags)&int32(MEM_Zero) != 0 {
|
|
v1 = _sqlite3VdbeMemExpandBlob(tls, **(**uintptr)(__ccgo_up(ppVal)))
|
|
} else {
|
|
v1 = 0
|
|
}
|
|
rc = v1
|
|
_sqlite3VdbeMemCast(tls, **(**uintptr)(__ccgo_up(ppVal)), aff, enc)
|
|
_sqlite3ValueApplyAffinity(tls, **(**uintptr)(__ccgo_up(ppVal)), affinity, enc)
|
|
}
|
|
return rc
|
|
}
|
|
/* Handle negative integers in a single step. This is needed in the
|
|
** case when the value is -9223372036854775808. Except - do not do this
|
|
** for hexadecimal literals. */
|
|
if op == int32(TK_UMINUS) {
|
|
pLeft = (*TExpr)(unsafe.Pointer(pExpr)).FpLeft
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pLeft)).Fop) == int32(TK_INTEGER) || libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pLeft)).Fop) == int32(TK_FLOAT) {
|
|
if (*TExpr)(unsafe.Pointer(pLeft)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_IntValue)) != uint32(0) || int32(**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pLeft + 8))))) != int32('0') || int32(**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pLeft + 8)) + 1))) & ^libc.Int32FromInt32(0x20) != int32('X') {
|
|
pExpr = pLeft
|
|
op = libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pExpr)).Fop)
|
|
negInt = -int32(1)
|
|
zNeg = __ccgo_ts + 5229
|
|
}
|
|
}
|
|
}
|
|
if op == int32(TK_STRING) || op == int32(TK_FLOAT) || op == int32(TK_INTEGER) {
|
|
**(**uintptr)(__ccgo_up(bp)) = _valueNew(tls, db, pCtx)
|
|
if **(**uintptr)(__ccgo_up(bp)) == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
if (*TExpr)(unsafe.Pointer(pExpr)).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_IntValue)) != uint32(0) {
|
|
_sqlite3VdbeMemSetInt64(tls, **(**uintptr)(__ccgo_up(bp)), int64(*(*int32)(unsafe.Pointer(&(*TExpr)(unsafe.Pointer(pExpr)).Fu)))*int64(negInt))
|
|
} else {
|
|
if op == int32(TK_INTEGER) && 0 == _sqlite3DecOrHexToI64(tls, *(*uintptr)(unsafe.Pointer(pExpr + 8)), bp+8) {
|
|
_sqlite3VdbeMemSetInt64(tls, **(**uintptr)(__ccgo_up(bp)), **(**Ti64)(__ccgo_up(bp + 8))*int64(negInt))
|
|
} else {
|
|
zVal = _sqlite3MPrintf(tls, db, __ccgo_ts+5231, libc.VaList(bp+24, zNeg, *(*uintptr)(unsafe.Pointer(pExpr + 8))))
|
|
if zVal == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
_sqlite3ValueSetStr(tls, **(**uintptr)(__ccgo_up(bp)), -int32(1), zVal, uint8(SQLITE_UTF8), __ccgo_fp(_sqlite3RowSetClear))
|
|
}
|
|
}
|
|
if libc.Int32FromUint8(affinity) == int32(SQLITE_AFF_BLOB) {
|
|
if op == int32(TK_FLOAT) {
|
|
_sqlite3AtoF(tls, (*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fz, **(**uintptr)(__ccgo_up(bp)))
|
|
(*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fflags = uint16(MEM_Real)
|
|
} else {
|
|
if op == int32(TK_INTEGER) {
|
|
/* This case is required by -9223372036854775808 and other strings
|
|
** that look like integers but cannot be handled by the
|
|
** sqlite3DecOrHexToI64() call above. */
|
|
_sqlite3ValueApplyAffinity(tls, **(**uintptr)(__ccgo_up(bp)), uint8(SQLITE_AFF_NUMERIC), uint8(SQLITE_UTF8))
|
|
}
|
|
}
|
|
} else {
|
|
_sqlite3ValueApplyAffinity(tls, **(**uintptr)(__ccgo_up(bp)), affinity, uint8(SQLITE_UTF8))
|
|
}
|
|
if libc.Int32FromUint16((*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fflags)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)|libc.Int32FromInt32(MEM_Real)) != 0 {
|
|
v3 = **(**uintptr)(__ccgo_up(bp)) + 20
|
|
*(*Tu16)(unsafe.Pointer(v3)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v3))) & ^libc.Int32FromInt32(MEM_Str))
|
|
}
|
|
if libc.Int32FromUint8(enc) != int32(SQLITE_UTF8) {
|
|
rc = _sqlite3VdbeChangeEncoding(tls, **(**uintptr)(__ccgo_up(bp)), libc.Int32FromUint8(enc))
|
|
}
|
|
} else {
|
|
if op == int32(TK_UMINUS) {
|
|
/* This branch happens for multiple negative signs. Ex: -(-5) */
|
|
if SQLITE_OK == _valueFromExpr(tls, db, (*TExpr)(unsafe.Pointer(pExpr)).FpLeft, enc, affinity, bp, pCtx) && **(**uintptr)(__ccgo_up(bp)) != uintptr(0) {
|
|
_sqlite3VdbeMemNumerify(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
if libc.Int32FromUint16((*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fflags)&int32(MEM_Real) != 0 {
|
|
*(*float64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))) = -*(*float64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp))))
|
|
} else {
|
|
if *(*Ti64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))) == int64(-libc.Int32FromInt32(1))-(libc.Int64FromUint32(0xffffffff)|libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)) {
|
|
*(*float64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))) = -float64(int64(-libc.Int32FromInt32(1)) - (libc.Int64FromUint32(0xffffffff) | libc.Int64FromInt32(0x7fffffff)<<libc.Int32FromInt32(32)))
|
|
(*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fflags = libc.Uint16FromInt32(libc.Int32FromUint16((*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fflags) & ^(libc.Int32FromInt32(MEM_TypeMask)|libc.Int32FromInt32(MEM_Zero)) | int32(MEM_Real))
|
|
} else {
|
|
*(*Ti64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))) = -*(*Ti64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp))))
|
|
}
|
|
}
|
|
_sqlite3ValueApplyAffinity(tls, **(**uintptr)(__ccgo_up(bp)), affinity, enc)
|
|
}
|
|
} else {
|
|
if op == int32(TK_NULL) {
|
|
**(**uintptr)(__ccgo_up(bp)) = _valueNew(tls, db, pCtx)
|
|
if **(**uintptr)(__ccgo_up(bp)) == uintptr(0) {
|
|
goto no_mem
|
|
}
|
|
_sqlite3VdbeMemSetNull(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
} else {
|
|
if op == int32(TK_BLOB) {
|
|
**(**uintptr)(__ccgo_up(bp)) = _valueNew(tls, db, pCtx)
|
|
if !(**(**uintptr)(__ccgo_up(bp)) != 0) {
|
|
goto no_mem
|
|
}
|
|
zVal = *(*uintptr)(unsafe.Pointer(pExpr + 8)) + 2
|
|
nVal = _sqlite3Strlen30(tls, zVal) - int32(1)
|
|
_sqlite3VdbeMemSetStr(tls, **(**uintptr)(__ccgo_up(bp)), _sqlite3HexToBlob(tls, db, zVal, nVal), int64(nVal/int32(2)), uint8(0), __ccgo_fp(_sqlite3RowSetClear))
|
|
} else {
|
|
if op == int32(TK_FUNCTION) && pCtx != uintptr(0) {
|
|
rc = _valueFromFunction(tls, db, pExpr, enc, affinity, bp, pCtx)
|
|
} else {
|
|
if op == int32(TK_TRUEFALSE) {
|
|
**(**uintptr)(__ccgo_up(bp)) = _valueNew(tls, db, pCtx)
|
|
if **(**uintptr)(__ccgo_up(bp)) != 0 {
|
|
(*Tsqlite3_value)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))).Fflags = uint16(MEM_Int)
|
|
*(*Ti64)(unsafe.Pointer(**(**uintptr)(__ccgo_up(bp)))) = libc.BoolInt64(int32(**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(pExpr + 8)) + 4))) == 0)
|
|
_sqlite3ValueApplyAffinity(tls, **(**uintptr)(__ccgo_up(bp)), affinity, enc)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
**(**uintptr)(__ccgo_up(ppVal)) = **(**uintptr)(__ccgo_up(bp))
|
|
return rc
|
|
goto no_mem
|
|
no_mem:
|
|
;
|
|
if pCtx == uintptr(0) || (*TParse)(unsafe.Pointer((*TValueNewStat4Ctx)(unsafe.Pointer(pCtx)).FpParse)).FnErr == 0 {
|
|
_sqlite3OomFault(tls, db)
|
|
}
|
|
_sqlite3DbFree(tls, db, zVal)
|
|
if pCtx == uintptr(0) {
|
|
_sqlite3ValueFree(tls, **(**uintptr)(__ccgo_up(bp)))
|
|
}
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Render a Mem object which is one of MEM_Int, MEM_Real, or MEM_IntReal
|
|
// ** into a buffer.
|
|
// */
|
|
func _vdbeMemRenderNum(tls *libc.TLS, sz int32, zBuf uintptr, p uintptr) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var v1 int32
|
|
var _ /* acc at bp+0 */ TStrAccum
|
|
_ = v1
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(p)).Fflags)&(libc.Int32FromInt32(MEM_Int)|libc.Int32FromInt32(MEM_IntReal)) != 0 {
|
|
(*TMem)(unsafe.Pointer(p)).Fn = _sqlite3Int64ToText(tls, *(*Ti64)(unsafe.Pointer(p)), zBuf)
|
|
if libc.Int32FromUint16((*TMem)(unsafe.Pointer(p)).Fflags)&int32(MEM_IntReal) != 0 {
|
|
libc.Xmemcpy(tls, zBuf+uintptr((*TMem)(unsafe.Pointer(p)).Fn), __ccgo_ts+5220, uint64(3))
|
|
**(**int32)(__ccgo_up(p + 16)) += int32(2)
|
|
}
|
|
} else {
|
|
_sqlite3StrAccumInit(tls, bp, uintptr(0), zBuf, sz, 0)
|
|
if (*TMem)(unsafe.Pointer(p)).Fdb != 0 {
|
|
v1 = libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer((*TMem)(unsafe.Pointer(p)).Fdb)).FnFpDigit)
|
|
} else {
|
|
v1 = int32(17)
|
|
}
|
|
Xsqlite3_str_appendf(tls, bp, __ccgo_ts+5223, libc.VaList(bp+40, v1, *(*float64)(unsafe.Pointer(p))))
|
|
**(**int8)(__ccgo_up(zBuf + uintptr((**(**TStrAccum)(__ccgo_up(bp))).FnChar))) = 0 /* Fast version of sqlite3StrAccumFinish(&acc) */
|
|
(*TMem)(unsafe.Pointer(p)).Fn = libc.Int32FromUint32((**(**TStrAccum)(__ccgo_up(bp))).FnChar)
|
|
}
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** The Table structure pTable is really a VIEW. Fill in the names of
|
|
// ** the columns of the view in the pTable structure. Return non-zero if
|
|
// ** there are errors. If an error is seen an error message is left
|
|
// ** in pParse->zErrMsg.
|
|
// */
|
|
func _viewGetColumnNames(tls *libc.TLS, pParse uintptr, pTable uintptr) (r int32) {
|
|
bp := tls.Alloc(16)
|
|
defer tls.Free(16)
|
|
var db, pSel, pSelTab, v2 uintptr
|
|
var eParseMode Tu8
|
|
var nErr, nSelect, nTab, rc, v1 int32
|
|
var xAuth Tsqlite3_xauth
|
|
_, _, _, _, _, _, _, _, _, _, _ = db, eParseMode, nErr, nSelect, nTab, pSel, pSelTab, rc, xAuth, v1, v2 /* Copy of the SELECT that implements the view */
|
|
nErr = 0 /* Number of errors encountered */
|
|
db = (*TParse)(unsafe.Pointer(pParse)).Fdb /* Saved xAuth pointer */
|
|
if libc.Int32FromUint8((*TTable)(unsafe.Pointer(pTable)).FeTabType) == int32(TABTYP_VTAB) {
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSchemaLock = (*Tsqlite3)(unsafe.Pointer(db)).FnSchemaLock + 1
|
|
rc = _sqlite3VtabCallConnect(tls, pParse, pTable)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FnSchemaLock = (*Tsqlite3)(unsafe.Pointer(db)).FnSchemaLock - 1
|
|
return rc
|
|
}
|
|
/* A positive nCol means the columns names for this view are
|
|
** already known. This routine is not called unless either the
|
|
** table is virtual or nCol is zero.
|
|
*/
|
|
/* A negative nCol is a special marker meaning that we are currently
|
|
** trying to compute the column names. If we enter this routine with
|
|
** a negative nCol, it means two or more views form a loop, like this:
|
|
**
|
|
** CREATE VIEW one AS SELECT * FROM two;
|
|
** CREATE VIEW two AS SELECT * FROM one;
|
|
**
|
|
** Actually, the error above is now caught prior to reaching this point.
|
|
** But the following test is still important as it does come up
|
|
** in the following:
|
|
**
|
|
** CREATE TABLE main.ex1(a);
|
|
** CREATE TEMP VIEW ex1 AS SELECT a FROM ex1;
|
|
** SELECT * FROM temp.ex1;
|
|
*/
|
|
if int32((*TTable)(unsafe.Pointer(pTable)).FnCol) < 0 {
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+14843, libc.VaList(bp+8, (*TTable)(unsafe.Pointer(pTable)).FzName))
|
|
return int32(1)
|
|
}
|
|
/* If we get this far, it means we need to compute the table names.
|
|
** Note that the call to sqlite3ResultSetOfSelect() will expand any
|
|
** "*" elements in the results set of the view and will assign cursors
|
|
** to the elements of the FROM clause. But we do not want these changes
|
|
** to be permanent. So the computation is done on a copy of the SELECT
|
|
** statement that defines the view.
|
|
*/
|
|
pSel = _sqlite3SelectDup(tls, db, (*(*struct {
|
|
FpSelect uintptr
|
|
})(unsafe.Pointer(&(*TTable)(unsafe.Pointer(pTable)).Fu))).FpSelect, 0)
|
|
if pSel != 0 {
|
|
eParseMode = (*TParse)(unsafe.Pointer(pParse)).FeParseMode
|
|
nTab = (*TParse)(unsafe.Pointer(pParse)).FnTab
|
|
nSelect = (*TParse)(unsafe.Pointer(pParse)).FnSelect
|
|
(*TParse)(unsafe.Pointer(pParse)).FeParseMode = uint8(PARSE_MODE_NORMAL)
|
|
_sqlite3SrcListAssignCursors(tls, pParse, (*TSelect)(unsafe.Pointer(pSel)).FpSrc)
|
|
(*TTable)(unsafe.Pointer(pTable)).FnCol = int16(-int32(1))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable = (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable + 1
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.Fsz = uint16(0)
|
|
xAuth = (*Tsqlite3)(unsafe.Pointer(db)).FxAuth
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FxAuth = uintptr(0)
|
|
pSelTab = _sqlite3ResultSetOfSelect(tls, pParse, pSel, int8(SQLITE_AFF_NONE))
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FxAuth = xAuth
|
|
(*TParse)(unsafe.Pointer(pParse)).FnTab = nTab
|
|
(*TParse)(unsafe.Pointer(pParse)).FnSelect = nSelect
|
|
if pSelTab == uintptr(0) {
|
|
(*TTable)(unsafe.Pointer(pTable)).FnCol = 0
|
|
nErr = nErr + 1
|
|
} else {
|
|
if (*TTable)(unsafe.Pointer(pTable)).FpCheck != 0 {
|
|
/* CREATE VIEW name(arglist) AS ...
|
|
** The names of the columns in the table are taken from
|
|
** arglist which is stored in pTable->pCheck. The pCheck field
|
|
** normally holds CHECK constraints on an ordinary table, but for
|
|
** a VIEW it holds the list of column names.
|
|
*/
|
|
_sqlite3ColumnsFromExprList(tls, pParse, (*TTable)(unsafe.Pointer(pTable)).FpCheck, pTable+54, pTable+8)
|
|
if (*TParse)(unsafe.Pointer(pParse)).FnErr == 0 && int32((*TTable)(unsafe.Pointer(pTable)).FnCol) == (*TExprList)(unsafe.Pointer((*TSelect)(unsafe.Pointer(pSel)).FpEList)).FnExpr {
|
|
_sqlite3SubqueryColumnTypes(tls, pParse, pTable, pSel, int8(SQLITE_AFF_NONE))
|
|
}
|
|
} else {
|
|
/* CREATE VIEW name AS... without an argument list. Construct
|
|
** the column names from the SELECT statement that defines the view.
|
|
*/
|
|
(*TTable)(unsafe.Pointer(pTable)).FnCol = (*TTable)(unsafe.Pointer(pSelTab)).FnCol
|
|
(*TTable)(unsafe.Pointer(pTable)).FaCol = (*TTable)(unsafe.Pointer(pSelTab)).FaCol
|
|
**(**Tu32)(__ccgo_up(pTable + 48)) |= (*TTable)(unsafe.Pointer(pSelTab)).FtabFlags & uint32(COLFLAG_NOINSERT)
|
|
(*TTable)(unsafe.Pointer(pSelTab)).FnCol = 0
|
|
(*TTable)(unsafe.Pointer(pSelTab)).FaCol = uintptr(0)
|
|
}
|
|
}
|
|
(*TTable)(unsafe.Pointer(pTable)).FnNVCol = (*TTable)(unsafe.Pointer(pTable)).FnCol
|
|
_sqlite3DeleteTable(tls, db, pSelTab)
|
|
_sqlite3SelectDelete(tls, db, pSel)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable = (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable - 1
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FbDisable != 0 {
|
|
v1 = 0
|
|
} else {
|
|
v1 = libc.Int32FromUint16((*Tsqlite3)(unsafe.Pointer(db)).Flookaside.FszTrue)
|
|
}
|
|
(*Tsqlite3)(unsafe.Pointer(db)).Flookaside.Fsz = libc.Uint16FromInt32(v1)
|
|
(*TParse)(unsafe.Pointer(pParse)).FeParseMode = eParseMode
|
|
} else {
|
|
nErr = nErr + 1
|
|
}
|
|
v2 = (*TTable)(unsafe.Pointer(pTable)).FpSchema + 114
|
|
*(*Tu16)(unsafe.Pointer(v2)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v2))) | libc.Int32FromInt32(DB_UnresetViews))
|
|
if (*Tsqlite3)(unsafe.Pointer(db)).FmallocFailed != 0 {
|
|
_sqlite3DeleteColumnNames(tls, db, pTable)
|
|
}
|
|
return nErr + (*TParse)(unsafe.Pointer(pParse)).FnErr
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Invoke a virtual table constructor (either xCreate or xConnect). The
|
|
// ** pointer to the function to invoke is passed as the fourth parameter
|
|
// ** to this procedure.
|
|
// */
|
|
func _vtabCallConstructor(tls *libc.TLS, db uintptr, pTab uintptr, pMod uintptr, __ccgo_fp_xConstruct uintptr, pzErr uintptr) (r int32) {
|
|
bp := tls.Alloc(64)
|
|
defer tls.Free(64)
|
|
var azArg, pCtx, pVTable, zFormat, zModuleName, zType, v6 uintptr
|
|
var i, iCol, iDb, j, nArg, nDel, nType, rc, v4 int32
|
|
var oooHidden Tu16
|
|
var _ /* sCtx at bp+0 */ TVtabCtx
|
|
var _ /* zErr at bp+32 */ uintptr
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = azArg, i, iCol, iDb, j, nArg, nDel, nType, oooHidden, pCtx, pVTable, rc, zFormat, zModuleName, zType, v4, v6
|
|
nArg = (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab + 64))).FnArg
|
|
**(**uintptr)(__ccgo_up(bp + 32)) = uintptr(0)
|
|
azArg = (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab + 64))).FazArg
|
|
/* Check that the virtual-table is not already being initialized */
|
|
pCtx = (*Tsqlite3)(unsafe.Pointer(db)).FpVtabCtx
|
|
for {
|
|
if !(pCtx != 0) {
|
|
break
|
|
}
|
|
if (*TVtabCtx)(unsafe.Pointer(pCtx)).FpTab == pTab {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = _sqlite3MPrintf(tls, db, __ccgo_ts+23472, libc.VaList(bp+48, (*TTable)(unsafe.Pointer(pTab)).FzName))
|
|
return int32(SQLITE_LOCKED)
|
|
}
|
|
goto _1
|
|
_1:
|
|
;
|
|
pCtx = (*TVtabCtx)(unsafe.Pointer(pCtx)).FpPrior
|
|
}
|
|
zModuleName = _sqlite3DbStrDup(tls, db, (*TTable)(unsafe.Pointer(pTab)).FzName)
|
|
if !(zModuleName != 0) {
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
pVTable = _sqlite3MallocZero(tls, uint64(48))
|
|
if !(pVTable != 0) {
|
|
_sqlite3OomFault(tls, db)
|
|
_sqlite3DbFree(tls, db, zModuleName)
|
|
return int32(SQLITE_NOMEM)
|
|
}
|
|
(*TVTable)(unsafe.Pointer(pVTable)).Fdb = db
|
|
(*TVTable)(unsafe.Pointer(pVTable)).FpMod = pMod
|
|
(*TVTable)(unsafe.Pointer(pVTable)).FeVtabRisk = uint8(SQLITE_VTABRISK_Normal)
|
|
iDb = _sqlite3SchemaToIndex(tls, db, (*TTable)(unsafe.Pointer(pTab)).FpSchema)
|
|
**(**uintptr)(__ccgo_up((*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab + 64))).FazArg + 1*8)) = (**(**TDb)(__ccgo_up((*Tsqlite3)(unsafe.Pointer(db)).FaDb + uintptr(iDb)*32))).FzDbSName
|
|
/* Invoke the virtual table constructor */
|
|
(**(**TVtabCtx)(__ccgo_up(bp))).FpTab = pTab
|
|
(**(**TVtabCtx)(__ccgo_up(bp))).FpVTable = pVTable
|
|
(**(**TVtabCtx)(__ccgo_up(bp))).FpPrior = (*Tsqlite3)(unsafe.Pointer(db)).FpVtabCtx
|
|
(**(**TVtabCtx)(__ccgo_up(bp))).FbDeclared = 0
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpVtabCtx = bp
|
|
(*TTable)(unsafe.Pointer(pTab)).FnTabRef = (*TTable)(unsafe.Pointer(pTab)).FnTabRef + 1
|
|
rc = (*(*func(*libc.TLS, uintptr, uintptr, int32, uintptr, uintptr, uintptr) int32)(unsafe.Pointer(&struct{ uintptr }{__ccgo_fp_xConstruct})))(tls, db, (*TModule)(unsafe.Pointer(pMod)).FpAux, nArg, azArg, pVTable+16, bp+32)
|
|
_sqlite3DeleteTable(tls, db, pTab)
|
|
(*Tsqlite3)(unsafe.Pointer(db)).FpVtabCtx = (**(**TVtabCtx)(__ccgo_up(bp))).FpPrior
|
|
if rc == int32(SQLITE_NOMEM) {
|
|
_sqlite3OomFault(tls, db)
|
|
}
|
|
if SQLITE_OK != rc {
|
|
if **(**uintptr)(__ccgo_up(bp + 32)) == uintptr(0) {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = _sqlite3MPrintf(tls, db, __ccgo_ts+23514, libc.VaList(bp+48, zModuleName))
|
|
} else {
|
|
**(**uintptr)(__ccgo_up(pzErr)) = _sqlite3MPrintf(tls, db, __ccgo_ts+3944, libc.VaList(bp+48, **(**uintptr)(__ccgo_up(bp + 32))))
|
|
Xsqlite3_free(tls, **(**uintptr)(__ccgo_up(bp + 32)))
|
|
}
|
|
_sqlite3DbFree(tls, db, pVTable)
|
|
} else {
|
|
if (*TVTable)(unsafe.Pointer(pVTable)).FpVtab != 0 {
|
|
/* Justification of ALWAYS(): A correct vtab constructor must allocate
|
|
** the sqlite3_vtab object if successful. */
|
|
libc.Xmemset(tls, (*TVTable)(unsafe.Pointer(pVTable)).FpVtab, 0, uint64(24))
|
|
(*Tsqlite3_vtab)(unsafe.Pointer((*TVTable)(unsafe.Pointer(pVTable)).FpVtab)).FpModule = (*TModule)(unsafe.Pointer(pMod)).FpModule
|
|
(*TModule)(unsafe.Pointer(pMod)).FnRefModule = (*TModule)(unsafe.Pointer(pMod)).FnRefModule + 1
|
|
(*TVTable)(unsafe.Pointer(pVTable)).FnRef = int32(1)
|
|
if (**(**TVtabCtx)(__ccgo_up(bp))).FbDeclared == 0 {
|
|
zFormat = __ccgo_ts + 23544
|
|
**(**uintptr)(__ccgo_up(pzErr)) = _sqlite3MPrintf(tls, db, zFormat, libc.VaList(bp+48, zModuleName))
|
|
_sqlite3VtabUnlock(tls, pVTable)
|
|
rc = int32(SQLITE_ERROR)
|
|
} else {
|
|
oooHidden = uint16(0)
|
|
/* If everything went according to plan, link the new VTable structure
|
|
** into the linked list headed by pTab->u.vtab.p. Then loop through the
|
|
** columns of the table to see if any of them contain the token "hidden".
|
|
** If so, set the Column COLFLAG_HIDDEN flag and remove the token from
|
|
** the type string. */
|
|
(*TVTable)(unsafe.Pointer(pVTable)).FpNext = (*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab + 64))).Fp
|
|
(*(*struct {
|
|
FnArg int32
|
|
FazArg uintptr
|
|
Fp uintptr
|
|
})(unsafe.Pointer(pTab + 64))).Fp = pVTable
|
|
iCol = 0
|
|
for {
|
|
if !(iCol < int32((*TTable)(unsafe.Pointer(pTab)).FnCol)) {
|
|
break
|
|
}
|
|
zType = _sqlite3ColumnType(tls, (*TTable)(unsafe.Pointer(pTab)).FaCol+uintptr(iCol)*16, __ccgo_ts+1704)
|
|
i = 0
|
|
nType = _sqlite3Strlen30(tls, zType)
|
|
i = 0
|
|
for {
|
|
if !(i < nType) {
|
|
break
|
|
}
|
|
if 0 == Xsqlite3_strnicmp(tls, __ccgo_ts+17858, zType+uintptr(i), int32(6)) && (i == 0 || int32(**(**int8)(__ccgo_up(zType + uintptr(i-int32(1))))) == int32(' ')) && (int32(**(**int8)(__ccgo_up(zType + uintptr(i+int32(6))))) == int32('\000') || int32(**(**int8)(__ccgo_up(zType + uintptr(i+int32(6))))) == int32(' ')) {
|
|
break
|
|
}
|
|
goto _3
|
|
_3:
|
|
;
|
|
i = i + 1
|
|
}
|
|
if i < nType {
|
|
if **(**int8)(__ccgo_up(zType + uintptr(i+int32(6)))) != 0 {
|
|
v4 = int32(1)
|
|
} else {
|
|
v4 = 0
|
|
}
|
|
nDel = int32(6) + v4
|
|
j = i
|
|
for {
|
|
if !(j+nDel <= nType) {
|
|
break
|
|
}
|
|
**(**int8)(__ccgo_up(zType + uintptr(j))) = **(**int8)(__ccgo_up(zType + uintptr(j+nDel)))
|
|
goto _5
|
|
_5:
|
|
;
|
|
j = j + 1
|
|
}
|
|
if int32(**(**int8)(__ccgo_up(zType + uintptr(i)))) == int32('\000') && i > 0 {
|
|
**(**int8)(__ccgo_up(zType + uintptr(i-int32(1)))) = int8('\000')
|
|
}
|
|
v6 = (*TTable)(unsafe.Pointer(pTab)).FaCol + uintptr(iCol)*16 + 14
|
|
*(*Tu16)(unsafe.Pointer(v6)) = Tu16(int32(*(*Tu16)(unsafe.Pointer(v6))) | libc.Int32FromInt32(COLFLAG_HIDDEN))
|
|
**(**Tu32)(__ccgo_up(pTab + 48)) |= uint32(TF_HasHidden)
|
|
oooHidden = uint16(TF_OOOHidden)
|
|
} else {
|
|
**(**Tu32)(__ccgo_up(pTab + 48)) |= uint32(oooHidden)
|
|
}
|
|
goto _2
|
|
_2:
|
|
;
|
|
iCol = iCol + 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
_sqlite3DbFree(tls, db, zModuleName)
|
|
return rc
|
|
}
|
|
|
|
// C documentation
|
|
//
|
|
// /*
|
|
// ** Perform a reduce action and the shift that must immediately
|
|
// ** follow the reduce.
|
|
// **
|
|
// ** The yyLookahead and yyLookaheadToken parameters provide reduce actions
|
|
// ** access to the lookahead token (if any). The yyLookahead will be YYNOCODE
|
|
// ** if the lookahead token has already been consumed. As this procedure is
|
|
// ** only called from one place, optimizing compilers will in-line it, which
|
|
// ** means that the extra parameters have no performance impact.
|
|
// */
|
|
func _yy_reduce(tls *libc.TLS, yypParser uintptr, yyruleno uint32, yyLookahead int32, yyLookaheadToken TToken, pParse uintptr) (r uint16) {
|
|
bp := tls.Alloc(160)
|
|
defer tls.Free(160)
|
|
var bNot, bNot1, i, nExpr, yygoto, yysize, v353 int32
|
|
var n Tu32
|
|
var op Tu8
|
|
var p, p1, p2, p3, p4, p5, pB, pDot, pFrom, pFromClause, pLeft, pLhs, pList, pList1, pList2, pList3, pList4, pNew, pOld, pRHS, pRhs, pRight, pSelect, pSelectRHS, pSrc, pSubquery, pSubquery1, temp1, temp11, temp2, temp21, temp3, temp4, yymsp, v352 uintptr
|
|
var yyact uint16
|
|
var v357 TToken
|
|
var _ /* all at bp+112 */ TToken
|
|
var _ /* as at bp+72 */ TToken
|
|
var _ /* dest at bp+16 */ TSelectDest
|
|
var _ /* iValue at bp+88 */ int32
|
|
var _ /* t at bp+96 */ TToken
|
|
var _ /* x at bp+56 */ TToken
|
|
var _ /* yylhsminor at bp+0 */ TYYMINORTYPE
|
|
_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _ = bNot, bNot1, i, n, nExpr, op, p, p1, p2, p3, p4, p5, pB, pDot, pFrom, pFromClause, pLeft, pLhs, pList, pList1, pList2, pList3, pList4, pNew, pOld, pRHS, pRhs, pRight, pSelect, pSelectRHS, pSrc, pSubquery, pSubquery1, temp1, temp11, temp2, temp21, temp3, temp4, yyact, yygoto, yymsp, yysize, v352, v353, v357 /* Amount to pop the stack */
|
|
_ = yyLookahead
|
|
_ = yyLookaheadToken
|
|
yymsp = (*TyyParser)(unsafe.Pointer(yypParser)).Fyytos
|
|
switch yyruleno {
|
|
case uint32(0):
|
|
goto _1
|
|
case uint32(1):
|
|
goto _2
|
|
case uint32(2):
|
|
goto _3
|
|
case uint32(3):
|
|
goto _4
|
|
case uint32(4):
|
|
goto _5
|
|
case uint32(6):
|
|
goto _6
|
|
case uint32(5):
|
|
goto _7
|
|
case uint32(7):
|
|
goto _8
|
|
case uint32(328):
|
|
goto _9
|
|
case uint32(9):
|
|
goto _10
|
|
case uint32(8):
|
|
goto _11
|
|
case uint32(10):
|
|
goto _12
|
|
case uint32(11):
|
|
goto _13
|
|
case uint32(12):
|
|
goto _14
|
|
case uint32(13):
|
|
goto _15
|
|
case uint32(14):
|
|
goto _16
|
|
case uint32(18):
|
|
goto _17
|
|
case uint32(15):
|
|
goto _18
|
|
case uint32(47):
|
|
goto _19
|
|
case uint32(62):
|
|
goto _20
|
|
case uint32(72):
|
|
goto _21
|
|
case uint32(81):
|
|
goto _22
|
|
case uint32(100):
|
|
goto _23
|
|
case uint32(246):
|
|
goto _24
|
|
case uint32(16):
|
|
goto _25
|
|
case uint32(17):
|
|
goto _26
|
|
case uint32(19):
|
|
goto _27
|
|
case uint32(20):
|
|
goto _28
|
|
case uint32(21):
|
|
goto _29
|
|
case uint32(22):
|
|
goto _30
|
|
case uint32(23):
|
|
goto _31
|
|
case uint32(24):
|
|
goto _32
|
|
case uint32(25):
|
|
goto _33
|
|
case uint32(65):
|
|
goto _34
|
|
case uint32(26):
|
|
goto _35
|
|
case uint32(106):
|
|
goto _36
|
|
case uint32(27):
|
|
goto _37
|
|
case uint32(28):
|
|
goto _38
|
|
case uint32(29):
|
|
goto _39
|
|
case uint32(30):
|
|
goto _40
|
|
case uint32(31):
|
|
goto _41
|
|
case uint32(67):
|
|
goto _42
|
|
case uint32(32):
|
|
goto _43
|
|
case uint32(33):
|
|
goto _44
|
|
case uint32(34):
|
|
goto _45
|
|
case uint32(35):
|
|
goto _46
|
|
case uint32(36):
|
|
goto _47
|
|
case uint32(37):
|
|
goto _48
|
|
case uint32(38):
|
|
goto _49
|
|
case uint32(39):
|
|
goto _50
|
|
case uint32(40):
|
|
goto _51
|
|
case uint32(41):
|
|
goto _52
|
|
case uint32(42):
|
|
goto _53
|
|
case uint32(43):
|
|
goto _54
|
|
case uint32(44):
|
|
goto _55
|
|
case uint32(45):
|
|
goto _56
|
|
case uint32(46):
|
|
goto _57
|
|
case uint32(48):
|
|
goto _58
|
|
case uint32(49):
|
|
goto _59
|
|
case uint32(50):
|
|
goto _60
|
|
case uint32(51):
|
|
goto _61
|
|
case uint32(52):
|
|
goto _62
|
|
case uint32(53):
|
|
goto _63
|
|
case uint32(54):
|
|
goto _64
|
|
case uint32(55):
|
|
goto _65
|
|
case uint32(56):
|
|
goto _66
|
|
case uint32(57):
|
|
goto _67
|
|
case uint32(58):
|
|
goto _68
|
|
case uint32(59):
|
|
goto _69
|
|
case uint32(60):
|
|
goto _70
|
|
case uint32(76):
|
|
goto _71
|
|
case uint32(61):
|
|
goto _72
|
|
case uint32(173):
|
|
goto _73
|
|
case uint32(80):
|
|
goto _74
|
|
case uint32(63):
|
|
goto _75
|
|
case uint32(219):
|
|
goto _76
|
|
case uint32(222):
|
|
goto _77
|
|
case uint32(247):
|
|
goto _78
|
|
case uint32(64):
|
|
goto _79
|
|
case uint32(66):
|
|
goto _80
|
|
case uint32(68):
|
|
goto _81
|
|
case uint32(69):
|
|
goto _82
|
|
case uint32(70):
|
|
goto _83
|
|
case uint32(71):
|
|
goto _84
|
|
case uint32(75):
|
|
goto _85
|
|
case uint32(73):
|
|
goto _86
|
|
case uint32(74):
|
|
goto _87
|
|
case uint32(77):
|
|
goto _88
|
|
case uint32(174):
|
|
goto _89
|
|
case uint32(78):
|
|
goto _90
|
|
case uint32(79):
|
|
goto _91
|
|
case uint32(82):
|
|
goto _92
|
|
case uint32(83):
|
|
goto _93
|
|
case uint32(84):
|
|
goto _94
|
|
case uint32(85):
|
|
goto _95
|
|
case uint32(86):
|
|
goto _96
|
|
case uint32(87):
|
|
goto _97
|
|
case uint32(88):
|
|
goto _98
|
|
case uint32(91):
|
|
goto _99
|
|
case uint32(89):
|
|
goto _100
|
|
case uint32(90):
|
|
goto _101
|
|
case uint32(92):
|
|
goto _102
|
|
case uint32(93):
|
|
goto _103
|
|
case uint32(94):
|
|
goto _104
|
|
case uint32(95):
|
|
goto _105
|
|
case uint32(97):
|
|
goto _106
|
|
case uint32(96):
|
|
goto _107
|
|
case uint32(98):
|
|
goto _108
|
|
case uint32(99):
|
|
goto _109
|
|
case uint32(134):
|
|
goto _110
|
|
case uint32(101):
|
|
goto _111
|
|
case uint32(144):
|
|
goto _112
|
|
case uint32(234):
|
|
goto _113
|
|
case uint32(237):
|
|
goto _114
|
|
case uint32(242):
|
|
goto _115
|
|
case uint32(102):
|
|
goto _116
|
|
case uint32(103):
|
|
goto _117
|
|
case uint32(104):
|
|
goto _118
|
|
case uint32(117):
|
|
goto _119
|
|
case uint32(105):
|
|
goto _120
|
|
case uint32(258):
|
|
goto _121
|
|
case uint32(259):
|
|
goto _122
|
|
case uint32(110):
|
|
goto _123
|
|
case uint32(107):
|
|
goto _124
|
|
case uint32(108):
|
|
goto _125
|
|
case uint32(109):
|
|
goto _126
|
|
case uint32(111):
|
|
goto _127
|
|
case uint32(112):
|
|
goto _128
|
|
case uint32(113):
|
|
goto _129
|
|
case uint32(114):
|
|
goto _130
|
|
case uint32(115):
|
|
goto _131
|
|
case uint32(131):
|
|
goto _132
|
|
case uint32(116):
|
|
goto _133
|
|
case uint32(120):
|
|
goto _134
|
|
case uint32(118):
|
|
goto _135
|
|
case uint32(121):
|
|
goto _136
|
|
case uint32(119):
|
|
goto _137
|
|
case uint32(122):
|
|
goto _138
|
|
case uint32(123):
|
|
goto _139
|
|
case uint32(124):
|
|
goto _140
|
|
case uint32(125):
|
|
goto _141
|
|
case uint32(126):
|
|
goto _142
|
|
case uint32(127):
|
|
goto _143
|
|
case uint32(128):
|
|
goto _144
|
|
case uint32(129):
|
|
goto _145
|
|
case uint32(130):
|
|
goto _146
|
|
case uint32(132):
|
|
goto _147
|
|
case uint32(133):
|
|
goto _148
|
|
case uint32(145):
|
|
goto _149
|
|
case uint32(135):
|
|
goto _150
|
|
case uint32(136):
|
|
goto _151
|
|
case uint32(137):
|
|
goto _152
|
|
case uint32(138):
|
|
goto _153
|
|
case uint32(139):
|
|
goto _154
|
|
case uint32(143):
|
|
goto _155
|
|
case uint32(140):
|
|
goto _156
|
|
case uint32(141):
|
|
goto _157
|
|
case uint32(142):
|
|
goto _158
|
|
case uint32(148):
|
|
goto _159
|
|
case uint32(146):
|
|
goto _160
|
|
case uint32(153):
|
|
goto _161
|
|
case uint32(155):
|
|
goto _162
|
|
case uint32(232):
|
|
goto _163
|
|
case uint32(233):
|
|
goto _164
|
|
case uint32(252):
|
|
goto _165
|
|
case uint32(154):
|
|
goto _166
|
|
case uint32(147):
|
|
goto _167
|
|
case uint32(156):
|
|
goto _168
|
|
case uint32(231):
|
|
goto _169
|
|
case uint32(251):
|
|
goto _170
|
|
case uint32(149):
|
|
goto _171
|
|
case uint32(150):
|
|
goto _172
|
|
case uint32(151):
|
|
goto _173
|
|
case uint32(152):
|
|
goto _174
|
|
case uint32(157):
|
|
goto _175
|
|
case uint32(158):
|
|
goto _176
|
|
case uint32(159):
|
|
goto _177
|
|
case uint32(160):
|
|
goto _178
|
|
case uint32(161):
|
|
goto _179
|
|
case uint32(162):
|
|
goto _180
|
|
case uint32(163):
|
|
goto _181
|
|
case uint32(164):
|
|
goto _182
|
|
case uint32(165):
|
|
goto _183
|
|
case uint32(166):
|
|
goto _184
|
|
case uint32(167):
|
|
goto _185
|
|
case uint32(168):
|
|
goto _186
|
|
case uint32(169):
|
|
goto _187
|
|
case uint32(170):
|
|
goto _188
|
|
case uint32(171):
|
|
goto _189
|
|
case uint32(172):
|
|
goto _190
|
|
case uint32(175):
|
|
goto _191
|
|
case uint32(176):
|
|
goto _192
|
|
case uint32(177):
|
|
goto _193
|
|
case uint32(178):
|
|
goto _194
|
|
case uint32(179):
|
|
goto _195
|
|
case uint32(180):
|
|
goto _196
|
|
case uint32(181):
|
|
goto _197
|
|
case uint32(182):
|
|
goto _198
|
|
case uint32(184):
|
|
goto _199
|
|
case uint32(183):
|
|
goto _200
|
|
case uint32(185):
|
|
goto _201
|
|
case uint32(186):
|
|
goto _202
|
|
case uint32(187):
|
|
goto _203
|
|
case uint32(188):
|
|
goto _204
|
|
case uint32(189):
|
|
goto _205
|
|
case uint32(190):
|
|
goto _206
|
|
case uint32(191):
|
|
goto _207
|
|
case uint32(192):
|
|
goto _208
|
|
case uint32(193):
|
|
goto _209
|
|
case uint32(194):
|
|
goto _210
|
|
case uint32(195):
|
|
goto _211
|
|
case uint32(196):
|
|
goto _212
|
|
case uint32(197):
|
|
goto _213
|
|
case uint32(199):
|
|
goto _214
|
|
case uint32(198):
|
|
goto _215
|
|
case uint32(200):
|
|
goto _216
|
|
case uint32(201):
|
|
goto _217
|
|
case uint32(202):
|
|
goto _218
|
|
case uint32(203):
|
|
goto _219
|
|
case uint32(204):
|
|
goto _220
|
|
case uint32(205):
|
|
goto _221
|
|
case uint32(206):
|
|
goto _222
|
|
case uint32(207):
|
|
goto _223
|
|
case uint32(208):
|
|
goto _224
|
|
case uint32(209):
|
|
goto _225
|
|
case uint32(210):
|
|
goto _226
|
|
case uint32(211):
|
|
goto _227
|
|
case uint32(212):
|
|
goto _228
|
|
case uint32(213):
|
|
goto _229
|
|
case uint32(215):
|
|
goto _230
|
|
case uint32(214):
|
|
goto _231
|
|
case uint32(216):
|
|
goto _232
|
|
case uint32(217):
|
|
goto _233
|
|
case uint32(221):
|
|
goto _234
|
|
case uint32(218):
|
|
goto _235
|
|
case uint32(220):
|
|
goto _236
|
|
case uint32(223):
|
|
goto _237
|
|
case uint32(224):
|
|
goto _238
|
|
case uint32(225):
|
|
goto _239
|
|
case uint32(226):
|
|
goto _240
|
|
case uint32(227):
|
|
goto _241
|
|
case uint32(228):
|
|
goto _242
|
|
case uint32(229):
|
|
goto _243
|
|
case uint32(230):
|
|
goto _244
|
|
case uint32(235):
|
|
goto _245
|
|
case uint32(236):
|
|
goto _246
|
|
case uint32(243):
|
|
goto _247
|
|
case uint32(238):
|
|
goto _248
|
|
case uint32(239):
|
|
goto _249
|
|
case uint32(281):
|
|
goto _250
|
|
case uint32(240):
|
|
goto _251
|
|
case uint32(241):
|
|
goto _252
|
|
case uint32(244):
|
|
goto _253
|
|
case uint32(245):
|
|
goto _254
|
|
case uint32(248):
|
|
goto _255
|
|
case uint32(249):
|
|
goto _256
|
|
case uint32(250):
|
|
goto _257
|
|
case uint32(253):
|
|
goto _258
|
|
case uint32(254):
|
|
goto _259
|
|
case uint32(255):
|
|
goto _260
|
|
case uint32(256):
|
|
goto _261
|
|
case uint32(257):
|
|
goto _262
|
|
case uint32(260):
|
|
goto _263
|
|
case uint32(261):
|
|
goto _264
|
|
case uint32(262):
|
|
goto _265
|
|
case uint32(263):
|
|
goto _266
|
|
case uint32(264):
|
|
goto _267
|
|
case uint32(266):
|
|
goto _268
|
|
case uint32(265):
|
|
goto _269
|
|
case uint32(267):
|
|
goto _270
|
|
case uint32(286):
|
|
goto _271
|
|
case uint32(268):
|
|
goto _272
|
|
case uint32(287):
|
|
goto _273
|
|
case uint32(269):
|
|
goto _274
|
|
case uint32(270):
|
|
goto _275
|
|
case uint32(271):
|
|
goto _276
|
|
case uint32(272):
|
|
goto _277
|
|
case uint32(273):
|
|
goto _278
|
|
case uint32(274):
|
|
goto _279
|
|
case uint32(275):
|
|
goto _280
|
|
case uint32(276):
|
|
goto _281
|
|
case uint32(277):
|
|
goto _282
|
|
case uint32(278):
|
|
goto _283
|
|
case uint32(279):
|
|
goto _284
|
|
case uint32(280):
|
|
goto _285
|
|
case uint32(282):
|
|
goto _286
|
|
case uint32(283):
|
|
goto _287
|
|
case uint32(284):
|
|
goto _288
|
|
case uint32(285):
|
|
goto _289
|
|
case uint32(288):
|
|
goto _290
|
|
case uint32(289):
|
|
goto _291
|
|
case uint32(290):
|
|
goto _292
|
|
case uint32(291):
|
|
goto _293
|
|
case uint32(292):
|
|
goto _294
|
|
case uint32(293):
|
|
goto _295
|
|
case uint32(294):
|
|
goto _296
|
|
case uint32(295):
|
|
goto _297
|
|
case uint32(296):
|
|
goto _298
|
|
case uint32(297):
|
|
goto _299
|
|
case uint32(298):
|
|
goto _300
|
|
case uint32(299):
|
|
goto _301
|
|
case uint32(300):
|
|
goto _302
|
|
case uint32(301):
|
|
goto _303
|
|
case uint32(302):
|
|
goto _304
|
|
case uint32(303):
|
|
goto _305
|
|
case uint32(304):
|
|
goto _306
|
|
case uint32(305):
|
|
goto _307
|
|
case uint32(307):
|
|
goto _308
|
|
case uint32(306):
|
|
goto _309
|
|
case uint32(308):
|
|
goto _310
|
|
case uint32(310):
|
|
goto _311
|
|
case uint32(309):
|
|
goto _312
|
|
case uint32(311):
|
|
goto _313
|
|
case uint32(312):
|
|
goto _314
|
|
case uint32(313):
|
|
goto _315
|
|
case uint32(314):
|
|
goto _316
|
|
case uint32(315):
|
|
goto _317
|
|
case uint32(316):
|
|
goto _318
|
|
case uint32(317):
|
|
goto _319
|
|
case uint32(318):
|
|
goto _320
|
|
case uint32(319):
|
|
goto _321
|
|
case uint32(320):
|
|
goto _322
|
|
case uint32(321):
|
|
goto _323
|
|
case uint32(322):
|
|
goto _324
|
|
case uint32(323):
|
|
goto _325
|
|
case uint32(324):
|
|
goto _326
|
|
case uint32(325):
|
|
goto _327
|
|
case uint32(326):
|
|
goto _328
|
|
case uint32(327):
|
|
goto _329
|
|
case uint32(331):
|
|
goto _330
|
|
case uint32(329):
|
|
goto _331
|
|
case uint32(332):
|
|
goto _332
|
|
case uint32(330):
|
|
goto _333
|
|
case uint32(334):
|
|
goto _334
|
|
case uint32(333):
|
|
goto _335
|
|
case uint32(335):
|
|
goto _336
|
|
case uint32(336):
|
|
goto _337
|
|
case uint32(338):
|
|
goto _338
|
|
case uint32(337):
|
|
goto _339
|
|
case uint32(339):
|
|
goto _340
|
|
case uint32(340):
|
|
goto _341
|
|
case uint32(341):
|
|
goto _342
|
|
case uint32(342):
|
|
goto _343
|
|
case uint32(343):
|
|
goto _344
|
|
case uint32(344):
|
|
goto _345
|
|
case uint32(345):
|
|
goto _346
|
|
case uint32(346):
|
|
goto _347
|
|
case uint32(347):
|
|
goto _348
|
|
default:
|
|
goto _349
|
|
}
|
|
goto _350
|
|
_1:
|
|
; /* explain ::= EXPLAIN */
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpReprepare == uintptr(0) {
|
|
(*TParse)(unsafe.Pointer(pParse)).Fexplain = uint8(1)
|
|
}
|
|
goto _350
|
|
_2:
|
|
; /* explain ::= EXPLAIN QUERY PLAN */
|
|
if (*TParse)(unsafe.Pointer(pParse)).FpReprepare == uintptr(0) {
|
|
(*TParse)(unsafe.Pointer(pParse)).Fexplain = uint8(2)
|
|
}
|
|
goto _350
|
|
_3:
|
|
; /* cmdx ::= cmd */
|
|
_sqlite3FinishCoding(tls, pParse)
|
|
goto _350
|
|
_4:
|
|
; /* cmd ::= BEGIN transtype trans_opt */
|
|
_sqlite3BeginTransaction(tls, pParse, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_5:
|
|
; /* transtype ::= */
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = int32(TK_DEFERRED)
|
|
goto _350
|
|
_7:
|
|
; /* transtype ::= DEFERRED */
|
|
_6:
|
|
;
|
|
_8:
|
|
;
|
|
_9:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor) /*A-overwrites-X*/
|
|
goto _350
|
|
_11:
|
|
; /* cmd ::= COMMIT|END trans_opt */
|
|
_10:
|
|
;
|
|
_sqlite3EndTransaction(tls, pParse, libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(-libc.Int32FromInt32(1))*24))).Fmajor))
|
|
goto _350
|
|
_12:
|
|
; /* cmd ::= SAVEPOINT nm */
|
|
_sqlite3Savepoint(tls, pParse, SAVEPOINT_BEGIN, yymsp+8)
|
|
goto _350
|
|
_13:
|
|
; /* cmd ::= RELEASE savepoint_opt nm */
|
|
_sqlite3Savepoint(tls, pParse, int32(SAVEPOINT_RELEASE), yymsp+8)
|
|
goto _350
|
|
_14:
|
|
; /* cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */
|
|
_sqlite3Savepoint(tls, pParse, int32(SAVEPOINT_ROLLBACK), yymsp+8)
|
|
goto _350
|
|
_15:
|
|
; /* create_table ::= createkw temp TABLE ifnotexists nm dbnm */
|
|
_sqlite3StartTable(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, yymsp+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), 0, 0, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
goto _350
|
|
_16:
|
|
; /* createkw ::= CREATE */
|
|
_disableLookaside(tls, pParse)
|
|
goto _350
|
|
_18:
|
|
; /* ifnotexists ::= */
|
|
_17:
|
|
;
|
|
_19:
|
|
;
|
|
_20:
|
|
;
|
|
_21:
|
|
;
|
|
_22:
|
|
;
|
|
_23:
|
|
;
|
|
_24:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = 0
|
|
goto _350
|
|
_25:
|
|
; /* ifnotexists ::= IF NOT EXISTS */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = int32(1)
|
|
goto _350
|
|
_26:
|
|
; /* temp ::= TEMP */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = libc.BoolInt32(libc.Int32FromUint8((*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).Finit1.Fbusy) == 0)
|
|
goto _350
|
|
_27:
|
|
; /* create_table_args ::= LP columnlist conslist_opt RP table_option_set */
|
|
_sqlite3EndTable(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, *(*Tu32)(unsafe.Pointer(yymsp + 8)), uintptr(0))
|
|
goto _350
|
|
_28:
|
|
; /* create_table_args ::= AS select */
|
|
_sqlite3EndTable(tls, pParse, uintptr(0), uintptr(0), uint32(0), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
_sqlite3SelectDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_29:
|
|
; /* table_option_set ::= */
|
|
*(*Tu32)(unsafe.Pointer(yymsp + 1*24 + 8)) = uint32(0)
|
|
goto _350
|
|
_30:
|
|
; /* table_option_set ::= table_option_set COMMA table_option */
|
|
*(*Tu32)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = *(*Tu32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) | *(*Tu32)(unsafe.Pointer(yymsp + 8))
|
|
*(*Tu32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*Tu32)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_31:
|
|
; /* table_option ::= WITHOUT nm */
|
|
if *(*uint32)(unsafe.Pointer(yymsp + 8 + 8)) == uint32(5) && Xsqlite3_strnicmp(tls, *(*uintptr)(unsafe.Pointer(yymsp + 8)), __ccgo_ts+17967, int32(5)) == 0 {
|
|
*(*Tu32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = libc.Uint32FromInt32(libc.Int32FromInt32(TF_WithoutRowid) | libc.Int32FromInt32(TF_NoVisibleRowid))
|
|
} else {
|
|
*(*Tu32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = uint32(0)
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+24999, libc.VaList(bp+136, *(*uint32)(unsafe.Pointer(yymsp + 8 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8))))
|
|
}
|
|
goto _350
|
|
_32:
|
|
; /* table_option ::= nm */
|
|
if *(*uint32)(unsafe.Pointer(yymsp + 8 + 8)) == uint32(6) && Xsqlite3_strnicmp(tls, *(*uintptr)(unsafe.Pointer(yymsp + 8)), __ccgo_ts+17903, int32(6)) == 0 {
|
|
*(*Tu32)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = uint32(TF_Strict)
|
|
} else {
|
|
*(*Tu32)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = uint32(0)
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+24999, libc.VaList(bp+136, *(*uint32)(unsafe.Pointer(yymsp + 8 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8))))
|
|
}
|
|
*(*Tu32)(unsafe.Pointer(yymsp + 8)) = *(*Tu32)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_33:
|
|
; /* columnname ::= nm typetoken */
|
|
_sqlite3AddColumn(tls, pParse, *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_35:
|
|
; /* typetoken ::= */
|
|
_34:
|
|
;
|
|
_36:
|
|
;
|
|
*(*uint32)(unsafe.Pointer(yymsp + 1*24 + 8 + 8)) = uint32(0)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_37:
|
|
; /* typetoken ::= typename LP signed RP */
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8 + 8)) = libc.Uint32FromInt32(int32(t__predefined_ptrdiff_t(*(*uintptr)(unsafe.Pointer(yymsp + 8))+uintptr(*(*uint32)(unsafe.Pointer(yymsp + 8 + 8)))) - int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))))
|
|
goto _350
|
|
_38:
|
|
; /* typetoken ::= typename LP signed COMMA signed RP */
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8 + 8)) = libc.Uint32FromInt32(int32(t__predefined_ptrdiff_t(*(*uintptr)(unsafe.Pointer(yymsp + 8))+uintptr(*(*uint32)(unsafe.Pointer(yymsp + 8 + 8)))) - int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)))))
|
|
goto _350
|
|
_39:
|
|
; /* typename ::= typename ID|STRING */
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) = *(*uint32)(unsafe.Pointer(yymsp + 8 + 8)) + libc.Uint32FromInt32(int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + 8)))-int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))))
|
|
goto _350
|
|
_40:
|
|
; /* scanpt ::= */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = yyLookaheadToken.Fz
|
|
goto _350
|
|
_41:
|
|
; /* scantok ::= */
|
|
*(*TToken)(unsafe.Pointer(yymsp + 1*24 + 8)) = yyLookaheadToken
|
|
goto _350
|
|
_43:
|
|
; /* ccons ::= CONSTRAINT nm */
|
|
_42:
|
|
;
|
|
(*(*struct {
|
|
FaddrCrTab int32
|
|
FregRowid int32
|
|
FregRoot int32
|
|
FconstraintName TToken
|
|
})(unsafe.Pointer(pParse + 256))).FconstraintName = *(*TToken)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_44:
|
|
; /* ccons ::= DEFAULT scantok term */
|
|
_sqlite3AddDefaultValue(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))+uintptr(*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8))))
|
|
goto _350
|
|
_45:
|
|
; /* ccons ::= DEFAULT LP expr RP */
|
|
_sqlite3AddDefaultValue(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))+uintptr(1), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_46:
|
|
; /* ccons ::= DEFAULT PLUS scantok term */
|
|
_sqlite3AddDefaultValue(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))+uintptr(*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8))))
|
|
goto _350
|
|
_47:
|
|
; /* ccons ::= DEFAULT MINUS scantok term */
|
|
p = _sqlite3PExpr(tls, pParse, int32(TK_UMINUS), *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0))
|
|
_sqlite3AddDefaultValue(tls, pParse, p, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))+uintptr(*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8))))
|
|
goto _350
|
|
_48:
|
|
; /* ccons ::= DEFAULT scantok ID|INDEXED */
|
|
p1 = _tokenExpr(tls, pParse, int32(TK_STRING), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
if p1 != 0 {
|
|
_sqlite3ExprIdToTrueFalse(tls, p1)
|
|
}
|
|
_sqlite3AddDefaultValue(tls, pParse, p1, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8))+uintptr(*(*uint32)(unsafe.Pointer(yymsp + 8 + 8))))
|
|
goto _350
|
|
_49:
|
|
; /* ccons ::= NOT NULL onconf */
|
|
_sqlite3AddNotNull(tls, pParse, *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_50:
|
|
; /* ccons ::= PRIMARY KEY sortorder onconf autoinc */
|
|
_sqlite3AddPrimaryKey(tls, pParse, uintptr(0), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
goto _350
|
|
_51:
|
|
; /* ccons ::= UNIQUE onconf */
|
|
_sqlite3CreateIndex(tls, pParse, uintptr(0), uintptr(0), uintptr(0), uintptr(0), *(*int32)(unsafe.Pointer(yymsp + 8)), uintptr(0), uintptr(0), 0, 0, uint8(SQLITE_IDXTYPE_UNIQUE))
|
|
goto _350
|
|
_52:
|
|
; /* ccons ::= CHECK LP expr RP */
|
|
_sqlite3AddCheckConstraint(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_53:
|
|
; /* ccons ::= REFERENCES nm eidlist_opt refargs */
|
|
_sqlite3CreateForeignKey(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_54:
|
|
; /* ccons ::= defer_subclause */
|
|
_sqlite3DeferForeignKey(tls, pParse, *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_55:
|
|
; /* ccons ::= COLLATE ID|STRING */
|
|
_sqlite3AddCollateType(tls, pParse, yymsp+8)
|
|
goto _350
|
|
_56:
|
|
; /* generated ::= LP expr RP */
|
|
_sqlite3AddGenerated(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), uintptr(0))
|
|
goto _350
|
|
_57:
|
|
; /* generated ::= LP expr RP ID */
|
|
_sqlite3AddGenerated(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), yymsp+8)
|
|
goto _350
|
|
_58:
|
|
; /* autoinc ::= AUTOINCR */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(1)
|
|
goto _350
|
|
_59:
|
|
; /* refargs ::= */
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = libc.Int32FromInt32(OE_None) * libc.Int32FromInt32(0x0101) /* EV: R-19803-45884 */
|
|
goto _350
|
|
_60:
|
|
; /* refargs ::= refargs refarg */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) & ^*(*int32)(unsafe.Pointer(yymsp + 8 + 4)) | *(*int32)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_61:
|
|
; /* refarg ::= MATCH nm */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = 0
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 4)) = 0x000000
|
|
goto _350
|
|
_62:
|
|
; /* refarg ::= ON INSERT refact */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = 0
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8 + 4)) = 0x000000
|
|
goto _350
|
|
_63:
|
|
; /* refarg ::= ON DELETE refact */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*int32)(unsafe.Pointer(yymsp + 8))
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8 + 4)) = int32(0x0000ff)
|
|
goto _350
|
|
_64:
|
|
; /* refarg ::= ON UPDATE refact */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*int32)(unsafe.Pointer(yymsp + 8)) << int32(8)
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8 + 4)) = int32(0x00ff00)
|
|
goto _350
|
|
_65:
|
|
; /* refact ::= SET NULL */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = int32(OE_SetNull) /* EV: R-33326-45252 */
|
|
goto _350
|
|
_66:
|
|
; /* refact ::= SET DEFAULT */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = int32(OE_SetDflt) /* EV: R-33326-45252 */
|
|
goto _350
|
|
_67:
|
|
; /* refact ::= CASCADE */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Cascade) /* EV: R-33326-45252 */
|
|
goto _350
|
|
_68:
|
|
; /* refact ::= RESTRICT */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Restrict) /* EV: R-33326-45252 */
|
|
goto _350
|
|
_69:
|
|
; /* refact ::= NO ACTION */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = OE_None /* EV: R-33326-45252 */
|
|
goto _350
|
|
_70:
|
|
; /* defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = 0
|
|
goto _350
|
|
_72:
|
|
; /* defer_subclause ::= DEFERRABLE init_deferred_pred_opt */
|
|
_71:
|
|
;
|
|
_73:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*int32)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_75:
|
|
; /* init_deferred_pred_opt ::= INITIALLY DEFERRED */
|
|
_74:
|
|
;
|
|
_76:
|
|
;
|
|
_77:
|
|
;
|
|
_78:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = int32(1)
|
|
goto _350
|
|
_79:
|
|
; /* init_deferred_pred_opt ::= INITIALLY IMMEDIATE */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = 0
|
|
goto _350
|
|
_80:
|
|
; /* tconscomma ::= COMMA */
|
|
(*(*struct {
|
|
FaddrCrTab int32
|
|
FregRowid int32
|
|
FregRoot int32
|
|
FconstraintName TToken
|
|
})(unsafe.Pointer(pParse + 256))).FconstraintName.Fn = uint32(0)
|
|
goto _350
|
|
_81:
|
|
; /* tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */
|
|
_sqlite3AddPrimaryKey(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), 0)
|
|
goto _350
|
|
_82:
|
|
; /* tcons ::= UNIQUE LP sortlist RP onconf */
|
|
_sqlite3CreateIndex(tls, pParse, uintptr(0), uintptr(0), uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)), uintptr(0), uintptr(0), 0, 0, uint8(SQLITE_IDXTYPE_UNIQUE))
|
|
goto _350
|
|
_83:
|
|
; /* tcons ::= CHECK LP expr RP onconf */
|
|
_sqlite3AddCheckConstraint(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_84:
|
|
; /* tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */
|
|
_sqlite3CreateForeignKey(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
_sqlite3DeferForeignKey(tls, pParse, *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_86:
|
|
; /* onconf ::= */
|
|
_85:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = int32(OE_Default)
|
|
goto _350
|
|
_87:
|
|
; /* onconf ::= ON CONFLICT resolvetype */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*int32)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_88:
|
|
; /* resolvetype ::= IGNORE */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Ignore)
|
|
goto _350
|
|
_90:
|
|
; /* resolvetype ::= REPLACE */
|
|
_89:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Replace)
|
|
goto _350
|
|
_91:
|
|
; /* cmd ::= DROP TABLE ifexists fullname */
|
|
_sqlite3DropTable(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), 0, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_92:
|
|
; /* cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */
|
|
_sqlite3CreateView(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(8))*24+8, yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)))
|
|
goto _350
|
|
_93:
|
|
; /* cmd ::= DROP VIEW ifexists fullname */
|
|
_sqlite3DropTable(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), int32(1), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_94:
|
|
; /* cmd ::= select */
|
|
**(**TSelectDest)(__ccgo_up(bp + 16)) = TSelectDest{
|
|
FeDest: uint8(SRT_Output),
|
|
}
|
|
if (*Tsqlite3)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).Fdb)).FmDbFlags&uint32(DBFLAG_EncodingFixed) != uint32(0) || _sqlite3ReadSchema(tls, pParse) == SQLITE_OK {
|
|
_sqlite3Select(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), bp+16)
|
|
}
|
|
_sqlite3SelectDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_95:
|
|
; /* select ::= WITH wqlist selectnowith */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _attachWithToSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_96:
|
|
; /* select ::= WITH RECURSIVE wqlist selectnowith */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _attachWithToSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_97:
|
|
; /* select ::= selectnowith */
|
|
p2 = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
if p2 != 0 {
|
|
_parserDoubleLinkSelect(tls, pParse, p2)
|
|
}
|
|
goto _350
|
|
_98:
|
|
; /* selectnowith ::= selectnowith multiselect_op oneselect */
|
|
pRhs = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
pLhs = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))
|
|
if pRhs != 0 && (*TSelect)(unsafe.Pointer(pRhs)).FpPrior != 0 {
|
|
(**(**TToken)(__ccgo_up(bp + 56))).Fn = uint32(0)
|
|
_parserDoubleLinkSelect(tls, pParse, pRhs)
|
|
pFrom = _sqlite3SrcListAppendFromTerm(tls, pParse, uintptr(0), uintptr(0), uintptr(0), bp+56, pRhs, uintptr(0))
|
|
pRhs = _sqlite3SelectNew(tls, pParse, uintptr(0), pFrom, uintptr(0), uintptr(0), uintptr(0), uintptr(0), uint32(0), uintptr(0))
|
|
}
|
|
if pRhs != 0 {
|
|
(*TSelect)(unsafe.Pointer(pRhs)).Fop = libc.Uint8FromInt32(*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
(*TSelect)(unsafe.Pointer(pRhs)).FpPrior = pLhs
|
|
if pLhs != 0 {
|
|
**(**Tu32)(__ccgo_up(pLhs + 4)) &= ^libc.Uint32FromInt32(SF_MultiValue)
|
|
}
|
|
**(**Tu32)(__ccgo_up(pRhs + 4)) &= ^libc.Uint32FromInt32(SF_MultiValue)
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) != int32(TK_ALL) {
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, libc.Uint32FromInt32(1), 2, 0x4)
|
|
}
|
|
} else {
|
|
_sqlite3SelectDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pLhs)
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = pRhs
|
|
goto _350
|
|
_100:
|
|
; /* multiselect_op ::= UNION */
|
|
_99:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor) /*A-overwrites-OP*/
|
|
goto _350
|
|
_101:
|
|
; /* multiselect_op ::= UNION ALL */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = int32(TK_ALL)
|
|
goto _350
|
|
_102:
|
|
; /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)) = _sqlite3SelectNew(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), libc.Uint32FromInt32(*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8))), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_103:
|
|
; /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(9))*24 + 8)) = _sqlite3SelectNew(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), libc.Uint32FromInt32(*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8))), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(9))*24 + 8)) != 0 {
|
|
(*TSelect)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(9))*24 + 8)))).FpWinDefn = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))
|
|
} else {
|
|
_sqlite3WindowListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
}
|
|
goto _350
|
|
_104:
|
|
; /* values ::= VALUES LP nexprlist RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3SelectNew(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), uintptr(0), uintptr(0), uintptr(0), uintptr(0), uintptr(0), uint32(SF_Values), uintptr(0))
|
|
goto _350
|
|
_105:
|
|
; /* oneselect ::= mvalues */
|
|
_sqlite3MultiValuesEnd(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_107:
|
|
; /* mvalues ::= values COMMA LP nexprlist RP */
|
|
_106:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3MultiValues(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_108:
|
|
; /* distinct ::= DISTINCT */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(SF_Distinct)
|
|
goto _350
|
|
_109:
|
|
; /* distinct ::= ALL */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(SF_All)
|
|
goto _350
|
|
_111:
|
|
; /* sclp ::= */
|
|
_110:
|
|
;
|
|
_112:
|
|
;
|
|
_113:
|
|
;
|
|
_114:
|
|
;
|
|
_115:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_116:
|
|
; /* selcollist ::= sclp scanpt expr scanpt as */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
if *(*uint32)(unsafe.Pointer(yymsp + 8 + 8)) > uint32(0) {
|
|
_sqlite3ExprListSetName(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), yymsp+8, int32(1))
|
|
}
|
|
_sqlite3ExprListSetSpan(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_117:
|
|
; /* selcollist ::= sclp scanpt STAR */
|
|
p3 = _sqlite3Expr(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, int32(TK_ASTERISK), uintptr(0))
|
|
_sqlite3ExprSetErrorOffset(tls, p3, int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + 8)))-int64((*TParse)(unsafe.Pointer(pParse)).FzTail)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), p3)
|
|
goto _350
|
|
_118:
|
|
; /* selcollist ::= sclp scanpt nm DOT STAR */
|
|
pRight = _sqlite3PExpr(tls, pParse, int32(TK_ASTERISK), uintptr(0), uintptr(0))
|
|
_sqlite3ExprSetErrorOffset(tls, pRight, int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + 8)))-int64((*TParse)(unsafe.Pointer(pParse)).FzTail)))
|
|
pLeft = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
pDot = _sqlite3PExpr(tls, pParse, int32(TK_DOT), pLeft, pRight)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), pDot)
|
|
goto _350
|
|
_120:
|
|
; /* as ::= AS nm */
|
|
_119:
|
|
;
|
|
_121:
|
|
;
|
|
_122:
|
|
;
|
|
*(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*TToken)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_124:
|
|
; /* from ::= */
|
|
_123:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_125:
|
|
; /* from ::= FROM seltablist */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
_sqlite3SrcListShiftJoinType(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_126:
|
|
; /* stl_prefix ::= seltablist joinop */
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) != 0 && (*TSrcList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FnSrc > 0 {
|
|
(*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) + 8 + uintptr((*TSrcList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FnSrc-int32(1))*80))).Ffg.Fjointype = libc.Uint8FromInt32(*(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
}
|
|
goto _350
|
|
_127:
|
|
; /* seltablist ::= stl_prefix nm dbnm as on_using */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3SrcListAppendFromTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, uintptr(0), yymsp+8)
|
|
goto _350
|
|
_128:
|
|
; /* seltablist ::= stl_prefix nm dbnm as indexed_by on_using */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3SrcListAppendFromTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, uintptr(0), yymsp+8)
|
|
_sqlite3SrcListIndexedBy(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8)
|
|
goto _350
|
|
_129:
|
|
; /* seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_using */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)) = _sqlite3SrcListAppendFromTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(6))*24+8, yymsp+uintptr(-libc.Int32FromInt32(5))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, uintptr(0), yymsp+8)
|
|
_sqlite3SrcListFuncArgs(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))
|
|
goto _350
|
|
_130:
|
|
; /* seltablist ::= stl_prefix LP select RP as on_using */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3SrcListAppendFromTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), uintptr(0), uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), yymsp+8)
|
|
goto _350
|
|
_131:
|
|
; /* seltablist ::= stl_prefix LP seltablist RP as on_using */
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) == uintptr(0) && *(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) == uint32(0) && *(*uintptr)(unsafe.Pointer(yymsp + 8)) == uintptr(0) && *(*uintptr)(unsafe.Pointer(yymsp + 8 + 8)) == uintptr(0) {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8))
|
|
} else {
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != uintptr(0) && (*TSrcList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))).FnSrc == int32(1) {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3SrcListAppendFromTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), uintptr(0), uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, uintptr(0), yymsp+8)
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) != 0 {
|
|
pNew = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) + 8 + uintptr((*TSrcList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)))).FnSrc-int32(1))*80
|
|
pOld = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) + 8
|
|
(*TSrcItem)(unsafe.Pointer(pNew)).FzName = (*TSrcItem)(unsafe.Pointer(pOld)).FzName
|
|
if int32(*(*uint32)(unsafe.Pointer(pOld + 24 + 4))&0x4>>2) != 0 {
|
|
libc.SetBitFieldPtr32Uint32(pNew+24+4, libc.Uint32FromInt32(1), 2, 0x4)
|
|
*(*uintptr)(unsafe.Pointer(pNew + 72)) = *(*uintptr)(unsafe.Pointer(pOld + 72))
|
|
*(*uintptr)(unsafe.Pointer(pOld + 72)) = uintptr(0)
|
|
libc.SetBitFieldPtr32Uint32(pOld+24+4, libc.Uint32FromInt32(0), 2, 0x4)
|
|
if (*TSelect)(unsafe.Pointer((*TSubquery)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(pNew + 72)))).FpSelect)).FselFlags&uint32(SF_NestedFrom) != uint32(0) {
|
|
libc.SetBitFieldPtr32Uint32(pNew+24+4, libc.Uint32FromInt32(1), 14, 0x4000)
|
|
}
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(pNew + 72)) = *(*uintptr)(unsafe.Pointer(pOld + 72))
|
|
*(*uintptr)(unsafe.Pointer(pOld + 72)) = uintptr(0)
|
|
}
|
|
if int32(*(*uint32)(unsafe.Pointer(pOld + 24 + 4))&0x8>>3) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(pNew + 48)) = *(*uintptr)(unsafe.Pointer(pOld + 48))
|
|
*(*uintptr)(unsafe.Pointer(pOld + 48)) = uintptr(0)
|
|
libc.SetBitFieldPtr32Uint32(pOld+24+4, libc.Uint32FromInt32(0), 3, 0x8)
|
|
libc.SetBitFieldPtr32Uint32(pNew+24+4, libc.Uint32FromInt32(1), 3, 0x8)
|
|
}
|
|
(*TSrcItem)(unsafe.Pointer(pOld)).FzName = uintptr(0)
|
|
}
|
|
_sqlite3SrcListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))
|
|
} else {
|
|
_sqlite3SrcListShiftJoinType(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))
|
|
pSubquery = _sqlite3SelectNew(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), uintptr(0), uintptr(0), uintptr(0), uintptr(0), uint32(SF_NestedFrom), uintptr(0))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3SrcListAppendFromTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), uintptr(0), uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, pSubquery, yymsp+8)
|
|
}
|
|
}
|
|
goto _350
|
|
_133:
|
|
; /* dbnm ::= */
|
|
_132:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
*(*uint32)(unsafe.Pointer(yymsp + 1*24 + 8 + 8)) = uint32(0)
|
|
goto _350
|
|
_135:
|
|
; /* fullname ::= nm */
|
|
_134:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3SrcListAppend(tls, pParse, uintptr(0), yymsp+8, uintptr(0))
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) && *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) != 0 {
|
|
_sqlite3RenameTokenMap(tls, pParse, (*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 8))).FzName, yymsp+8)
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_137:
|
|
; /* fullname ::= nm DOT nm */
|
|
_136:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3SrcListAppend(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+8)
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) && *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) != 0 {
|
|
_sqlite3RenameTokenMap(tls, pParse, (*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 8))).FzName, yymsp+8)
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_138:
|
|
; /* xfullname ::= nm AS nm */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3SrcListAppend(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) != 0 {
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenMap(tls, pParse, (*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 8))).FzName, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8)
|
|
} else {
|
|
(*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 8))).FzAlias = _sqlite3NameFromToken(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, yymsp+8)
|
|
}
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_139:
|
|
; /* xfullname ::= nm DOT nm AS nm */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3SrcListAppend(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8)
|
|
if *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) != 0 {
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenMap(tls, pParse, (*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 8))).FzName, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8)
|
|
} else {
|
|
(*(*TSrcItem)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 8))).FzAlias = _sqlite3NameFromToken(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, yymsp+8)
|
|
}
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_140:
|
|
; /* joinop ::= COMMA|JOIN */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(JT_INNER)
|
|
goto _350
|
|
_141:
|
|
; /* joinop ::= JOIN_KW JOIN */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = _sqlite3JoinType(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, uintptr(0), uintptr(0)) /*X-overwrites-A*/
|
|
goto _350
|
|
_142:
|
|
; /* joinop ::= JOIN_KW nm JOIN */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3JoinType(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, uintptr(0)) /*X-overwrites-A*/
|
|
goto _350
|
|
_143:
|
|
; /* joinop ::= JOIN_KW nm nm JOIN */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3JoinType(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8) /*X-overwrites-A*/
|
|
goto _350
|
|
_144:
|
|
; /* on_using ::= ON expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) = uintptr(0)
|
|
goto _350
|
|
_145:
|
|
; /* on_using ::= USING LP idlist RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = uintptr(0)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_146:
|
|
; /* on_using ::= */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8 + 8)) = uintptr(0)
|
|
goto _350
|
|
_147:
|
|
; /* indexed_by ::= INDEXED BY nm */
|
|
*(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*TToken)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_148:
|
|
; /* indexed_by ::= NOT INDEXED */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = uintptr(0)
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) = uint32(1)
|
|
goto _350
|
|
_150:
|
|
; /* orderby_opt ::= ORDER BY sortlist */
|
|
_149:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_151:
|
|
; /* sortlist ::= sortlist COMMA expr sortorder nulls */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
_sqlite3ExprListSetSortOrder(tls, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_152:
|
|
; /* sortlist ::= expr sortorder nulls */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))) /*A-overwrites-Y*/
|
|
_sqlite3ExprListSetSortOrder(tls, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_153:
|
|
; /* sortorder ::= ASC */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = SQLITE_SO_ASC
|
|
goto _350
|
|
_154:
|
|
; /* sortorder ::= DESC */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(SQLITE_SO_DESC)
|
|
goto _350
|
|
_156:
|
|
; /* sortorder ::= */
|
|
_155:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = -int32(1)
|
|
goto _350
|
|
_157:
|
|
; /* nulls ::= NULLS FIRST */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = SQLITE_SO_ASC
|
|
goto _350
|
|
_158:
|
|
; /* nulls ::= NULLS LAST */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = int32(SQLITE_SO_DESC)
|
|
goto _350
|
|
_160:
|
|
; /* having_opt ::= */
|
|
_159:
|
|
;
|
|
_161:
|
|
;
|
|
_162:
|
|
;
|
|
_163:
|
|
;
|
|
_164:
|
|
;
|
|
_165:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_167:
|
|
; /* having_opt ::= HAVING expr */
|
|
_166:
|
|
;
|
|
_168:
|
|
;
|
|
_169:
|
|
;
|
|
_170:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_171:
|
|
; /* limit_opt ::= LIMIT expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_LIMIT), *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0))
|
|
goto _350
|
|
_172:
|
|
; /* limit_opt ::= LIMIT expr OFFSET expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_LIMIT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_173:
|
|
; /* limit_opt ::= LIMIT expr COMMA expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_LIMIT), *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
goto _350
|
|
_174:
|
|
; /* cmd ::= with DELETE FROM xfullname indexed_opt where_opt_ret */
|
|
_sqlite3SrcListIndexedBy(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8)
|
|
_sqlite3DeleteFrom(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0), uintptr(0))
|
|
goto _350
|
|
_175:
|
|
; /* where_opt_ret ::= RETURNING selcollist */
|
|
_sqlite3AddReturning(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_176:
|
|
; /* where_opt_ret ::= WHERE expr RETURNING selcollist */
|
|
_sqlite3AddReturning(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))
|
|
goto _350
|
|
_177:
|
|
; /* cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt_ret */
|
|
_sqlite3SrcListIndexedBy(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8)
|
|
_sqlite3ExprListCheckLength(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), __ccgo_ts+25026)
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) != 0 {
|
|
pFromClause = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
if (*TSrcList)(unsafe.Pointer(pFromClause)).FnSrc > int32(1) {
|
|
pSubquery1 = _sqlite3SelectNew(tls, pParse, uintptr(0), pFromClause, uintptr(0), uintptr(0), uintptr(0), uintptr(0), uint32(SF_NestedFrom), uintptr(0))
|
|
(**(**TToken)(__ccgo_up(bp + 72))).Fn = uint32(0)
|
|
(**(**TToken)(__ccgo_up(bp + 72))).Fz = uintptr(0)
|
|
pFromClause = _sqlite3SrcListAppendFromTerm(tls, pParse, uintptr(0), uintptr(0), uintptr(0), bp+72, pSubquery1, uintptr(0))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3SrcListAppendList(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), pFromClause)
|
|
}
|
|
_sqlite3Update(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), uintptr(0), uintptr(0), uintptr(0))
|
|
goto _350
|
|
_178:
|
|
; /* setlist ::= setlist COMMA nm EQ expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
_sqlite3ExprListSetName(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, int32(1))
|
|
goto _350
|
|
_179:
|
|
; /* setlist ::= setlist COMMA LP idlist RP EQ expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)) = _sqlite3ExprListAppendVector(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_180:
|
|
; /* setlist ::= nm EQ expr */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
_sqlite3ExprListSetName(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, int32(1))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_181:
|
|
; /* setlist ::= LP idlist RP EQ expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppendVector(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_182:
|
|
; /* cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */
|
|
_sqlite3Insert(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_183:
|
|
; /* cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES returning */
|
|
_sqlite3Insert(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), uintptr(0))
|
|
goto _350
|
|
_184:
|
|
; /* upsert ::= */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_185:
|
|
; /* upsert ::= RETURNING selcollist */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = uintptr(0)
|
|
_sqlite3AddReturning(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_186:
|
|
; /* upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt upsert */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(11))*24 + 8)) = _sqlite3UpsertNew(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_187:
|
|
; /* upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING upsert */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)) = _sqlite3UpsertNew(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), uintptr(0), uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_188:
|
|
; /* upsert ::= ON CONFLICT DO NOTHING returning */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3UpsertNew(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, uintptr(0), uintptr(0), uintptr(0), uintptr(0), uintptr(0))
|
|
goto _350
|
|
_189:
|
|
; /* upsert ::= ON CONFLICT DO UPDATE SET setlist where_opt returning */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)) = _sqlite3UpsertNew(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, uintptr(0), uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), uintptr(0))
|
|
goto _350
|
|
_190:
|
|
; /* returning ::= RETURNING selcollist */
|
|
_sqlite3AddReturning(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_191:
|
|
; /* idlist_opt ::= */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_192:
|
|
; /* idlist_opt ::= LP idlist RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_193:
|
|
; /* idlist ::= idlist COMMA nm */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3IdListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), yymsp+8)
|
|
goto _350
|
|
_194:
|
|
; /* idlist ::= nm */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _sqlite3IdListAppend(tls, pParse, uintptr(0), yymsp+8) /*A-overwrites-Y*/
|
|
goto _350
|
|
_195:
|
|
; /* expr ::= LP expr RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_196:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + 8))) /*A-overwrites-X*/
|
|
goto _350
|
|
_197:
|
|
; /* expr ::= nm DOT nm */
|
|
temp1 = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
temp2 = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3PExpr(tls, pParse, int32(TK_DOT), temp1, temp2)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_198:
|
|
; /* expr ::= nm DOT nm DOT nm */
|
|
temp11 = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
temp21 = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
temp3 = _tokenExpr(tls, pParse, int32(TK_ID), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
temp4 = _sqlite3PExpr(tls, pParse, int32(TK_DOT), temp21, temp3)
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) {
|
|
_sqlite3RenameTokenRemap(tls, pParse, uintptr(0), temp11)
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3PExpr(tls, pParse, int32(TK_DOT), temp11, temp4)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_200:
|
|
; /* term ::= NULL|FLOAT|BLOB */
|
|
_199:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _tokenExpr(tls, pParse, libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor), *(*TToken)(unsafe.Pointer(yymsp + 8))) /*A-overwrites-X*/
|
|
goto _350
|
|
_201:
|
|
; /* term ::= INTEGER */
|
|
if _sqlite3GetInt32(tls, *(*uintptr)(unsafe.Pointer(yymsp + 8)), bp+88) == 0 {
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprAlloc(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, int32(TK_INTEGER), yymsp+8, 0)
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprInt32(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, **(**int32)(__ccgo_up(bp + 88)))
|
|
}
|
|
if *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) != 0 {
|
|
*(*int32)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) + 52)) = int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + 8))) - int64((*TParse)(unsafe.Pointer(pParse)).FzTail))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_202:
|
|
; /* expr ::= VARIABLE */
|
|
if !(int32(**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(yymsp + 8))))) == int32('#') && libc.Int32FromUint8(_sqlite3CtypeMap[libc.Uint8FromInt8(**(**int8)(__ccgo_up(*(*uintptr)(unsafe.Pointer(yymsp + 8)) + 1)))])&int32(0x04) != 0) {
|
|
n = *(*uint32)(unsafe.Pointer(yymsp + 8 + 8))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _tokenExpr(tls, pParse, int32(TK_VARIABLE), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
_sqlite3ExprAssignVarNumber(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), n)
|
|
} else {
|
|
/* When doing a nested parse, one can include terms in an expression
|
|
** that look like this: #1 #2 ... These terms refer to registers
|
|
** in the virtual machine. #N is the N-th register. */
|
|
**(**TToken)(__ccgo_up(bp + 96)) = *(*TToken)(unsafe.Pointer(yymsp + 8)) /*A-overwrites-X*/
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).Fnested) == 0 {
|
|
_parserSyntaxError(tls, pParse, bp+96)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = uintptr(0)
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_REGISTER), uintptr(0), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + 8)) != 0 {
|
|
_sqlite3GetInt32(tls, (**(**TToken)(__ccgo_up(bp + 96))).Fz+1, *(*uintptr)(unsafe.Pointer(yymsp + 8))+44)
|
|
}
|
|
}
|
|
}
|
|
goto _350
|
|
_203:
|
|
; /* expr ::= expr COLLATE ID|STRING */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3ExprAddCollateToken(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), yymsp+8, int32(1))
|
|
goto _350
|
|
_204:
|
|
; /* expr ::= CAST LP expr AS typetoken RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3ExprAlloc(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, int32(TK_CAST), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, int32(1))
|
|
_sqlite3ExprAttachSubtrees(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), uintptr(0))
|
|
goto _350
|
|
_205:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW LP distinct exprlist RP */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_206:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW LP distinct exprlist ORDER BY sortlist RP */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(7))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)))
|
|
_sqlite3ExprAddFunctionOrderBy(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_207:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW LP STAR RP */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, 0)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_208:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW LP distinct exprlist RP filter_over */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(5))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))
|
|
_sqlite3WindowAttach(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_209:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW LP distinct exprlist ORDER BY sortlist RP filter_over */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(8))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)))
|
|
_sqlite3WindowAttach(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
_sqlite3ExprAddFunctionOrderBy(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_210:
|
|
; /* expr ::= ID|INDEXED|JOIN_KW LP STAR RP filter_over */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, 0)
|
|
_sqlite3WindowAttach(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_211:
|
|
; /* term ::= CTIME_KW */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, uintptr(0), yymsp+8, 0)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_212:
|
|
; /* expr ::= LP nexprlist COMMA expr RP */
|
|
pList = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_VECTOR), uintptr(0), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) + 32)) = pList
|
|
i = 0
|
|
for {
|
|
if !(i < (*TExprList)(unsafe.Pointer(pList)).FnExpr) {
|
|
break
|
|
}
|
|
**(**Tu32)(__ccgo_up(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) + 4)) |= (*TExpr)(unsafe.Pointer((*(*TExprList_item)(unsafe.Pointer(pList + 8 + uintptr(i)*32))).FpExpr)).Fflags & libc.Uint32FromInt32(libc.Int32FromInt32(EP_Collate)|libc.Int32FromInt32(EP_Subquery)|libc.Int32FromInt32(EP_HasFunc))
|
|
goto _351
|
|
_351:
|
|
;
|
|
i = i + 1
|
|
}
|
|
} else {
|
|
_sqlite3ExprListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pList)
|
|
}
|
|
goto _350
|
|
_213:
|
|
; /* expr ::= expr AND expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3ExprAnd(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_215:
|
|
; /* expr ::= expr OR expr */
|
|
_214:
|
|
;
|
|
_216:
|
|
;
|
|
_217:
|
|
;
|
|
_218:
|
|
;
|
|
_219:
|
|
;
|
|
_220:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3PExpr(tls, pParse, libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(-libc.Int32FromInt32(1))*24))).Fmajor), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_221:
|
|
; /* likeop ::= NOT LIKE_KW|MATCH */
|
|
*(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*TToken)(unsafe.Pointer(yymsp + 8))
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) |= uint32(0x80000000) /*yymsp[-1].minor.yy0-overwrite-yymsp[0].minor.yy0*/
|
|
goto _350
|
|
_222:
|
|
; /* expr ::= expr likeop expr */
|
|
bNot = libc.Int32FromUint32(*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) & uint32(0x80000000))
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) &= uint32(0x7fffffff)
|
|
pList1 = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
pList1 = _sqlite3ExprListAppend(tls, pParse, pList1, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3ExprFunction(tls, pParse, pList1, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, 0)
|
|
if bNot != 0 {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_NOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), uintptr(0))
|
|
}
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) != 0 {
|
|
**(**Tu32)(__ccgo_up(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) + 4)) |= uint32(EP_InfixFunc)
|
|
}
|
|
goto _350
|
|
_223:
|
|
; /* expr ::= expr likeop expr ESCAPE expr */
|
|
bNot1 = libc.Int32FromUint32(*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8 + 8)) & uint32(0x80000000))
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8 + 8)) &= uint32(0x7fffffff)
|
|
pList2 = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
pList2 = _sqlite3ExprListAppend(tls, pParse, pList2, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
pList2 = _sqlite3ExprListAppend(tls, pParse, pList2, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprFunction(tls, pParse, pList2, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, 0)
|
|
if bNot1 != 0 {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_NOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
}
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) != 0 {
|
|
**(**Tu32)(__ccgo_up(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) + 4)) |= uint32(EP_InfixFunc)
|
|
}
|
|
goto _350
|
|
_224:
|
|
; /* expr ::= expr ISNULL|NOTNULL */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = _sqlite3PExprIsNull(tls, pParse, libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_225:
|
|
; /* expr ::= expr NOT NULL */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3PExprIsNull(tls, pParse, int32(TK_NOTNULL), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
goto _350
|
|
_226:
|
|
; /* expr ::= expr IS expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3PExprIs(tls, pParse, int32(TK_IS), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_227:
|
|
; /* expr ::= expr IS NOT expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3PExprIs(tls, pParse, int32(TK_ISNOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_228:
|
|
; /* expr ::= expr IS NOT DISTINCT FROM expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3PExprIs(tls, pParse, int32(TK_IS), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_229:
|
|
; /* expr ::= expr IS DISTINCT FROM expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExprIs(tls, pParse, int32(TK_ISNOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_231:
|
|
; /* expr ::= NOT expr */
|
|
_230:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = _sqlite3PExpr(tls, pParse, libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(-libc.Int32FromInt32(1))*24))).Fmajor), *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0)) /*A-overwrites-B*/
|
|
goto _350
|
|
_232:
|
|
; /* expr ::= PLUS|MINUS expr */
|
|
p4 = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
op = libc.Uint8FromInt32(libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(-libc.Int32FromInt32(1))*24))).Fmajor) + (libc.Int32FromInt32(TK_UPLUS) - libc.Int32FromInt32(TK_PLUS)))
|
|
if p4 != 0 && libc.Int32FromUint8((*TExpr)(unsafe.Pointer(p4)).Fop) == int32(TK_UPLUS) {
|
|
(*TExpr)(unsafe.Pointer(p4)).Fop = op
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = p4
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = _sqlite3PExpr(tls, pParse, libc.Int32FromUint8(op), p4, uintptr(0))
|
|
/*A-overwrites-B*/
|
|
}
|
|
goto _350
|
|
_233:
|
|
; /* expr ::= expr PTR expr */
|
|
pList3 = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
pList3 = _sqlite3ExprListAppend(tls, pParse, pList3, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3ExprFunction(tls, pParse, pList3, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, 0)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_235:
|
|
; /* between_op ::= BETWEEN */
|
|
_234:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = 0
|
|
goto _350
|
|
_236:
|
|
; /* expr ::= expr between_op expr AND expr */
|
|
pList4 = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
pList4 = _sqlite3ExprListAppend(tls, pParse, pList4, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_BETWEEN), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) + 32)) = pList4
|
|
_sqlite3ExprSetHeightAndFlags(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
} else {
|
|
_sqlite3ExprListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, pList4)
|
|
}
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_NOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
}
|
|
goto _350
|
|
_237:
|
|
; /* expr ::= expr in_op LP exprlist RP */
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) == uintptr(0) {
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
v352 = __ccgo_ts + 8182
|
|
} else {
|
|
v352 = __ccgo_ts + 8187
|
|
}
|
|
/* Expressions of the form
|
|
**
|
|
** expr1 IN ()
|
|
** expr1 NOT IN ()
|
|
**
|
|
** simplify to constants 0 (false) and 1 (true), respectively.
|
|
**
|
|
** Except, do not apply this optimization if expr1 contains a function
|
|
** because that function might be an aggregate (we don't know yet whether
|
|
** it is or not) and if it is an aggregate, that could change the meaning
|
|
** of the whole query.
|
|
*/
|
|
pB = _sqlite3Expr(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, int32(TK_STRING), v352)
|
|
if pB != 0 {
|
|
_sqlite3ExprIdToTrueFalse(tls, pB)
|
|
}
|
|
if !((*TExpr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))).Fflags&libc.Uint32FromInt32(libc.Int32FromInt32(EP_HasFunc)) != libc.Uint32FromInt32(0)) {
|
|
_sqlite3ExprUnmapAndDelete(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = pB
|
|
} else {
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
v353 = int32(TK_OR)
|
|
} else {
|
|
v353 = int32(TK_AND)
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, v353, pB, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
}
|
|
} else {
|
|
pRHS = (*(*TExprList_item)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) + 8))).FpExpr
|
|
if (*TExprList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FnExpr == int32(1) && _sqlite3ExprIsConstant(tls, pParse, pRHS) != 0 && libc.Int32FromUint8((*TExpr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))).Fop) != int32(TK_VECTOR) {
|
|
(*(*TExprList_item)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) + 8))).FpExpr = uintptr(0)
|
|
_sqlite3ExprListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
pRHS = _sqlite3PExpr(tls, pParse, int32(TK_UPLUS), pRHS, uintptr(0))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_EQ), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), pRHS)
|
|
} else {
|
|
if (*TExprList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FnExpr == int32(1) && libc.Int32FromUint8((*TExpr)(unsafe.Pointer(pRHS)).Fop) == int32(TK_SELECT) {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_IN), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
_sqlite3PExprAddSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(pRHS + 32)))
|
|
*(*uintptr)(unsafe.Pointer(pRHS + 32)) = uintptr(0)
|
|
_sqlite3ExprListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_IN), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) == uintptr(0) {
|
|
_sqlite3ExprListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
} else {
|
|
if libc.Int32FromUint8((*TExpr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))).FpLeft)).Fop) == int32(TK_VECTOR) {
|
|
nExpr = (*TExprList)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer((*TExpr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))).FpLeft + 32)))).FnExpr
|
|
pSelectRHS = _sqlite3ExprListToValues(tls, pParse, nExpr, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
if pSelectRHS != 0 {
|
|
_parserDoubleLinkSelect(tls, pParse, pSelectRHS)
|
|
_sqlite3PExprAddSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), pSelectRHS)
|
|
}
|
|
} else {
|
|
*(*uintptr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) + 32)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
_sqlite3ExprSetHeightAndFlags(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_NOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
}
|
|
}
|
|
goto _350
|
|
_238:
|
|
; /* expr ::= LP select RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_SELECT), uintptr(0), uintptr(0))
|
|
_sqlite3PExprAddSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_239:
|
|
; /* expr ::= expr in_op LP select RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_IN), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
_sqlite3PExprAddSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_NOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
}
|
|
goto _350
|
|
_240:
|
|
; /* expr ::= expr in_op nm dbnm paren_exprlist */
|
|
pSrc = _sqlite3SrcListAppend(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8)
|
|
pSelect = _sqlite3SelectNew(tls, pParse, uintptr(0), pSrc, uintptr(0), uintptr(0), uintptr(0), uintptr(0), uint32(0), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + 8)) != 0 {
|
|
if pSelect != 0 {
|
|
v352 = pSrc
|
|
} else {
|
|
v352 = uintptr(0)
|
|
}
|
|
_sqlite3SrcListFuncArgs(tls, pParse, v352, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_IN), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
_sqlite3PExprAddSelect(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), pSelect)
|
|
if *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_NOT), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uintptr(0))
|
|
}
|
|
goto _350
|
|
_241:
|
|
; /* expr ::= EXISTS LP select RP */
|
|
v352 = _sqlite3PExpr(tls, pParse, int32(TK_EXISTS), uintptr(0), uintptr(0))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = v352
|
|
p5 = v352
|
|
_sqlite3PExprAddSelect(tls, pParse, p5, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_242:
|
|
; /* expr ::= CASE case_operand case_exprlist case_else END */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_CASE), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) != 0 {
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) != 0 {
|
|
v352 = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
} else {
|
|
v352 = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) + 32)) = v352
|
|
_sqlite3ExprSetHeightAndFlags(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
} else {
|
|
_sqlite3ExprListDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
_sqlite3ExprDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
}
|
|
goto _350
|
|
_243:
|
|
; /* case_exprlist ::= case_exprlist WHEN expr THEN expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_244:
|
|
; /* case_exprlist ::= WHEN expr THEN expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_245:
|
|
; /* nexprlist ::= nexprlist COMMA expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3ExprListAppend(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_246:
|
|
; /* nexprlist ::= expr */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _sqlite3ExprListAppend(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + 8))) /*A-overwrites-Y*/
|
|
goto _350
|
|
_248:
|
|
; /* paren_exprlist ::= LP exprlist RP */
|
|
_247:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_249:
|
|
; /* cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */
|
|
_sqlite3CreateIndex(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(7))*24+8, yymsp+uintptr(-libc.Int32FromInt32(6))*24+8, _sqlite3SrcListAppend(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, uintptr(0)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(10))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(11))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + 8)), SQLITE_SO_ASC, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)), uint8(SQLITE_IDXTYPE_APPDEF))
|
|
if libc.Int32FromUint8((*TParse)(unsafe.Pointer(pParse)).FeParseMode) >= int32(PARSE_MODE_RENAME) && (*TParse)(unsafe.Pointer(pParse)).FpNewIndex != 0 {
|
|
_sqlite3RenameTokenMap(tls, pParse, (*TIndex)(unsafe.Pointer((*TParse)(unsafe.Pointer(pParse)).FpNewIndex)).FzName, yymsp+uintptr(-libc.Int32FromInt32(4))*24+8)
|
|
}
|
|
goto _350
|
|
_251:
|
|
; /* uniqueflag ::= UNIQUE */
|
|
_250:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Abort)
|
|
goto _350
|
|
_252:
|
|
; /* uniqueflag ::= */
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = OE_None
|
|
goto _350
|
|
_253:
|
|
; /* eidlist ::= eidlist COMMA nm collate sortorder */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _parserAddExprIdListTerm(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_254:
|
|
; /* eidlist ::= nm collate sortorder */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _parserAddExprIdListTerm(tls, pParse, uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + 8))) /*A-overwrites-Y*/
|
|
goto _350
|
|
_255:
|
|
; /* cmd ::= DROP INDEX ifexists fullname */
|
|
_sqlite3DropIndex(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_256:
|
|
; /* cmd ::= VACUUM vinto */
|
|
_sqlite3Vacuum(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_257:
|
|
; /* cmd ::= VACUUM nm vinto */
|
|
_sqlite3Vacuum(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_258:
|
|
; /* cmd ::= PRAGMA nm dbnm */
|
|
_sqlite3Pragma(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, yymsp+8, uintptr(0), 0)
|
|
goto _350
|
|
_259:
|
|
; /* cmd ::= PRAGMA nm dbnm EQ nmnum */
|
|
_sqlite3Pragma(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+8, 0)
|
|
goto _350
|
|
_260:
|
|
; /* cmd ::= PRAGMA nm dbnm LP nmnum RP */
|
|
_sqlite3Pragma(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, 0)
|
|
goto _350
|
|
_261:
|
|
; /* cmd ::= PRAGMA nm dbnm EQ minus_num */
|
|
_sqlite3Pragma(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+8, int32(1))
|
|
goto _350
|
|
_262:
|
|
; /* cmd ::= PRAGMA nm dbnm LP minus_num RP */
|
|
_sqlite3Pragma(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, int32(1))
|
|
goto _350
|
|
_263:
|
|
; /* cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */
|
|
(**(**TToken)(__ccgo_up(bp + 112))).Fz = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8))
|
|
(**(**TToken)(__ccgo_up(bp + 112))).Fn = libc.Uint32FromInt32(int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + 8)))-int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8))))) + *(*uint32)(unsafe.Pointer(yymsp + 8 + 8))
|
|
_sqlite3FinishTrigger(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), bp+112)
|
|
goto _350
|
|
_264:
|
|
; /* trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */
|
|
_sqlite3BeginTrigger(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(7))*24+8, yymsp+uintptr(-libc.Int32FromInt32(6))*24+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(10))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)))
|
|
if *(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8 + 8)) == uint32(0) {
|
|
v357 = *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8))
|
|
} else {
|
|
v357 = *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8))
|
|
}
|
|
*(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(10))*24 + 8)) = v357 /*A-overwrites-T*/
|
|
goto _350
|
|
_265:
|
|
; /* trigger_time ::= BEFORE|AFTER */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor) /*A-overwrites-X*/
|
|
goto _350
|
|
_266:
|
|
; /* trigger_time ::= INSTEAD OF */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = int32(TK_INSTEAD)
|
|
goto _350
|
|
_267:
|
|
; /* trigger_time ::= */
|
|
*(*int32)(unsafe.Pointer(yymsp + 1*24 + 8)) = int32(TK_BEFORE)
|
|
goto _350
|
|
_269:
|
|
; /* trigger_event ::= DELETE|INSERT */
|
|
_268:
|
|
;
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor) /*A-overwrites-X*/
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8 + 8)) = uintptr(0)
|
|
goto _350
|
|
_270:
|
|
; /* trigger_event ::= UPDATE OF idlist */
|
|
*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = int32(TK_UPDATE)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_272:
|
|
; /* when_clause ::= */
|
|
_271:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = uintptr(0)
|
|
goto _350
|
|
_274:
|
|
; /* when_clause ::= WHEN expr */
|
|
_273:
|
|
;
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_275:
|
|
; /* trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */
|
|
(*TTriggerStep)(unsafe.Pointer((*TTriggerStep)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))).FpLast)).FpNext = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
(*TTriggerStep)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))).FpLast = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_276:
|
|
; /* trigger_cmd_list ::= trigger_cmd SEMI */
|
|
(*TTriggerStep)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FpLast = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_277:
|
|
; /* tridxby ::= INDEXED BY nm */
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+25035, 0)
|
|
goto _350
|
|
_278:
|
|
; /* tridxby ::= NOT INDEXED */
|
|
_sqlite3ErrorMsg(tls, pParse, __ccgo_ts+25119, 0)
|
|
goto _350
|
|
_279:
|
|
; /* trigger_cmd ::= UPDATE orconf xfullname tridxby SET setlist from where_opt scanpt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3TriggerUpdateStep(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), libc.Uint8FromInt32(*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8))), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_280:
|
|
; /* trigger_cmd ::= scanpt insert_cmd INTO xfullname idlist_opt select upsert scanpt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3TriggerInsertStep(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), libc.Uint8FromInt32(*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8))), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8))) /*yylhsminor.yy427-overwrites-yymsp[-6].minor.yy144*/
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_281:
|
|
; /* trigger_cmd ::= DELETE FROM xfullname tridxby where_opt scanpt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3TriggerDeleteStep(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_282:
|
|
; /* trigger_cmd ::= scanpt select scanpt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3TriggerSelectStep(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8))) /*yylhsminor.yy427-overwrites-yymsp[-1].minor.yy555*/
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_283:
|
|
; /* expr ::= RAISE LP IGNORE RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_RAISE), uintptr(0), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) != 0 {
|
|
(*TExpr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))).FaffExpr = int8(OE_Ignore)
|
|
}
|
|
goto _350
|
|
_284:
|
|
; /* expr ::= RAISE LP raisetype COMMA expr RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3PExpr(tls, pParse, int32(TK_RAISE), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), uintptr(0))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) != 0 {
|
|
(*TExpr)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)))).FaffExpr = int8(*(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))
|
|
}
|
|
goto _350
|
|
_285:
|
|
; /* raisetype ::= ROLLBACK */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Rollback)
|
|
goto _350
|
|
_286:
|
|
; /* raisetype ::= FAIL */
|
|
*(*int32)(unsafe.Pointer(yymsp + 8)) = int32(OE_Fail)
|
|
goto _350
|
|
_287:
|
|
; /* cmd ::= DROP TRIGGER ifexists fullname */
|
|
_sqlite3DropTrigger(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
goto _350
|
|
_288:
|
|
; /* cmd ::= ATTACH database_kw_opt expr AS expr key_opt */
|
|
_sqlite3Attach(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_289:
|
|
; /* cmd ::= DETACH database_kw_opt expr */
|
|
_sqlite3Detach(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_290:
|
|
; /* cmd ::= REINDEX */
|
|
_sqlite3Reindex(tls, pParse, uintptr(0), uintptr(0))
|
|
goto _350
|
|
_291:
|
|
; /* cmd ::= REINDEX nm dbnm */
|
|
_sqlite3Reindex(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, yymsp+8)
|
|
goto _350
|
|
_292:
|
|
; /* cmd ::= ANALYZE */
|
|
_sqlite3Analyze(tls, pParse, uintptr(0), uintptr(0))
|
|
goto _350
|
|
_293:
|
|
; /* cmd ::= ANALYZE nm dbnm */
|
|
_sqlite3Analyze(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8, yymsp+8)
|
|
goto _350
|
|
_294:
|
|
; /* cmd ::= ALTER TABLE fullname RENAME TO nm */
|
|
_sqlite3AlterRenameTable(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), yymsp+8)
|
|
goto _350
|
|
_295:
|
|
; /* cmd ::= alter_add carglist */
|
|
*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)) = libc.Uint32FromInt32(int32(int64((*TParse)(unsafe.Pointer(pParse)).FsLastToken.Fz)-int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))))) + (*TParse)(unsafe.Pointer(pParse)).FsLastToken.Fn
|
|
_sqlite3AlterFinishAddColumn(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(1))*24+8)
|
|
goto _350
|
|
_296:
|
|
; /* alter_add ::= ALTER TABLE fullname ADD kwcolumn_opt nm typetoken */
|
|
_disableLookaside(tls, pParse)
|
|
_sqlite3AlterBeginAddColumn(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
_sqlite3AddColumn(tls, pParse, *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
*(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)) = *(*TToken)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_297:
|
|
; /* cmd ::= ALTER TABLE fullname DROP kwcolumn_opt nm */
|
|
_sqlite3AlterDropColumn(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), yymsp+8)
|
|
goto _350
|
|
_298:
|
|
; /* cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */
|
|
_sqlite3AlterRenameColumn(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+8)
|
|
goto _350
|
|
_299:
|
|
; /* cmd ::= ALTER TABLE fullname DROP CONSTRAINT nm */
|
|
_sqlite3AlterDropConstraint(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), yymsp+8, uintptr(0))
|
|
goto _350
|
|
_300:
|
|
; /* cmd ::= ALTER TABLE fullname ALTER kwcolumn_opt nm DROP NOT NULL */
|
|
_sqlite3AlterDropConstraint(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(3))*24+8)
|
|
goto _350
|
|
_301:
|
|
; /* cmd ::= ALTER TABLE fullname ALTER kwcolumn_opt nm SET NOT NULL onconf */
|
|
_sqlite3AlterSetNotNull(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(7))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8)
|
|
goto _350
|
|
_302:
|
|
; /* cmd ::= ALTER TABLE fullname ADD CONSTRAINT nm CHECK LP expr RP onconf */
|
|
_sqlite3AlterAddConstraint(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(8))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(6))*24+8, yymsp+uintptr(-libc.Int32FromInt32(5))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8))+uintptr(1), int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))-int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))-libc.Int64FromInt32(1)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
goto _350
|
|
_303:
|
|
; /* cmd ::= ALTER TABLE fullname ADD CHECK LP expr RP onconf */
|
|
_sqlite3AlterAddConstraint(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(6))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8))+uintptr(1), int32(int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))-int64(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)))-libc.Int64FromInt32(1)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
goto _350
|
|
_304:
|
|
; /* cmd ::= create_vtab */
|
|
_sqlite3VtabFinishParse(tls, pParse, uintptr(0))
|
|
goto _350
|
|
_305:
|
|
; /* cmd ::= create_vtab LP vtabarglist RP */
|
|
_sqlite3VtabFinishParse(tls, pParse, yymsp+8)
|
|
goto _350
|
|
_306:
|
|
; /* create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */
|
|
_sqlite3VtabBeginParse(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(3))*24+8, yymsp+uintptr(-libc.Int32FromInt32(2))*24+8, yymsp+8, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)))
|
|
goto _350
|
|
_307:
|
|
; /* vtabarg ::= */
|
|
_sqlite3VtabArgInit(tls, pParse)
|
|
goto _350
|
|
_309:
|
|
; /* vtabargtoken ::= ANY */
|
|
_308:
|
|
;
|
|
_310:
|
|
;
|
|
_sqlite3VtabArgExtend(tls, pParse, yymsp+8)
|
|
goto _350
|
|
_312:
|
|
; /* with ::= WITH wqlist */
|
|
_311:
|
|
;
|
|
_sqlite3WithPush(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), uint8(1))
|
|
goto _350
|
|
_313:
|
|
; /* wqas ::= AS */
|
|
*(*Tu8)(unsafe.Pointer(yymsp + 8)) = uint8(M10d_Any)
|
|
goto _350
|
|
_314:
|
|
; /* wqas ::= AS MATERIALIZED */
|
|
*(*Tu8)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = uint8(M10d_Yes)
|
|
goto _350
|
|
_315:
|
|
; /* wqas ::= AS NOT MATERIALIZED */
|
|
*(*Tu8)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = uint8(M10d_No)
|
|
goto _350
|
|
_316:
|
|
; /* wqitem ::= withnm eidlist_opt wqas LP select RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = _sqlite3CteNew(tls, pParse, yymsp+uintptr(-libc.Int32FromInt32(5))*24+8, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*Tu8)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8))) /*A-overwrites-X*/
|
|
goto _350
|
|
_317:
|
|
; /* withnm ::= nm */
|
|
libc.SetBitFieldPtr16Uint32(pParse+40, libc.Uint32FromInt32(1), 6, 0x40)
|
|
goto _350
|
|
_318:
|
|
; /* wqlist ::= wqitem */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = _sqlite3WithAdd(tls, pParse, uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + 8))) /*A-overwrites-X*/
|
|
goto _350
|
|
_319:
|
|
; /* wqlist ::= wqlist COMMA wqitem */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = _sqlite3WithAdd(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
goto _350
|
|
_320:
|
|
; /* windowdefn_list ::= windowdefn_list COMMA windowdefn */
|
|
_sqlite3WindowChain(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)))
|
|
(*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + 8)))).FpNextWin = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8))
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_321:
|
|
; /* windowdefn ::= nm AS LP window RP */
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) != 0 {
|
|
(*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FzName = _sqlite3DbStrNDup(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)), uint64(*(*uint32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8 + 8))))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_322:
|
|
; /* window ::= PARTITION BY nexprlist orderby_opt frame_opt */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = _sqlite3WindowAssemble(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), uintptr(0))
|
|
goto _350
|
|
_323:
|
|
; /* window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3WindowAssemble(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(5))*24+8)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_324:
|
|
; /* window ::= ORDER BY sortlist frame_opt */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = _sqlite3WindowAssemble(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), uintptr(0))
|
|
goto _350
|
|
_325:
|
|
; /* window ::= nm ORDER BY sortlist frame_opt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3WindowAssemble(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), yymsp+uintptr(-libc.Int32FromInt32(4))*24+8)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_326:
|
|
; /* window ::= nm frame_opt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3WindowAssemble(tls, pParse, *(*uintptr)(unsafe.Pointer(yymsp + 8)), uintptr(0), uintptr(0), yymsp+uintptr(-libc.Int32FromInt32(1))*24+8)
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_327:
|
|
; /* frame_opt ::= */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 1*24 + 8)) = _sqlite3WindowAlloc(tls, pParse, 0, int32(TK_UNBOUNDED), uintptr(0), int32(TK_CURRENT), uintptr(0), uint8(0))
|
|
goto _350
|
|
_328:
|
|
; /* frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3WindowAlloc(tls, pParse, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)), int32(TK_CURRENT), uintptr(0), *(*Tu8)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(2))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_329:
|
|
; /* frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3WindowAlloc(tls, pParse, *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8 + 8)), *(*int32)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)), *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8 + 8)), *(*Tu8)(unsafe.Pointer(yymsp + 8)))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(5))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_331:
|
|
; /* frame_bound_s ::= frame_bound */
|
|
_330:
|
|
;
|
|
*(*TFrameBound)(unsafe.Pointer(bp)) = *(*TFrameBound)(unsafe.Pointer(yymsp + 8))
|
|
*(*TFrameBound)(unsafe.Pointer(yymsp + 8)) = *(*TFrameBound)(unsafe.Pointer(bp))
|
|
goto _350
|
|
_333:
|
|
; /* frame_bound_s ::= UNBOUNDED PRECEDING */
|
|
_332:
|
|
;
|
|
_334:
|
|
;
|
|
(*(*TFrameBound)(unsafe.Pointer(bp))).FeType = libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(-libc.Int32FromInt32(1))*24))).Fmajor)
|
|
(*(*TFrameBound)(unsafe.Pointer(bp))).FpExpr = uintptr(0)
|
|
*(*TFrameBound)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*TFrameBound)(unsafe.Pointer(bp))
|
|
goto _350
|
|
_335:
|
|
; /* frame_bound ::= expr PRECEDING|FOLLOWING */
|
|
(*(*TFrameBound)(unsafe.Pointer(bp))).FeType = libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor)
|
|
(*(*TFrameBound)(unsafe.Pointer(bp))).FpExpr = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
*(*TFrameBound)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*TFrameBound)(unsafe.Pointer(bp))
|
|
goto _350
|
|
_336:
|
|
; /* frame_exclude_opt ::= */
|
|
*(*Tu8)(unsafe.Pointer(yymsp + 1*24 + 8)) = uint8(0)
|
|
goto _350
|
|
_337:
|
|
; /* frame_exclude_opt ::= EXCLUDE frame_exclude */
|
|
*(*Tu8)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*Tu8)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_339:
|
|
; /* frame_exclude ::= NO OTHERS */
|
|
_338:
|
|
;
|
|
*(*Tu8)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = uint8((**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(-libc.Int32FromInt32(1))*24))).Fmajor) /*A-overwrites-X*/
|
|
goto _350
|
|
_340:
|
|
; /* frame_exclude ::= GROUP|TIES */
|
|
*(*Tu8)(unsafe.Pointer(yymsp + 8)) = uint8((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor) /*A-overwrites-X*/
|
|
goto _350
|
|
_341:
|
|
; /* window_clause ::= WINDOW windowdefn_list */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
goto _350
|
|
_342:
|
|
; /* filter_over ::= filter_clause over_clause */
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + 8)) != 0 {
|
|
(*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + 8)))).FpFilter = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
} else {
|
|
_sqlite3ExprDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_343:
|
|
; /* filter_over ::= over_clause */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_344:
|
|
; /* filter_over ::= filter_clause */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _sqlite3DbMallocZero(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, uint64(144))
|
|
if *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) != 0 {
|
|
(*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))))).FeFrmType = uint8(TK_FILTER)
|
|
(*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))))).FpFilter = *(*uintptr)(unsafe.Pointer(yymsp + 8))
|
|
} else {
|
|
_sqlite3ExprDelete(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + 8)))
|
|
}
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_345:
|
|
; /* over_clause ::= OVER LP window RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(3))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_346:
|
|
; /* over_clause ::= OVER nm */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) = _sqlite3DbMallocZero(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, uint64(144))
|
|
if *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)) != 0 {
|
|
(*TWindow)(unsafe.Pointer(*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8)))).FzName = _sqlite3DbStrNDup(tls, (*TParse)(unsafe.Pointer(pParse)).Fdb, *(*uintptr)(unsafe.Pointer(yymsp + 8)), uint64(*(*uint32)(unsafe.Pointer(yymsp + 8 + 8))))
|
|
}
|
|
goto _350
|
|
_347:
|
|
; /* filter_clause ::= FILTER LP WHERE expr RP */
|
|
*(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(4))*24 + 8)) = *(*uintptr)(unsafe.Pointer(yymsp + uintptr(-libc.Int32FromInt32(1))*24 + 8))
|
|
goto _350
|
|
_348:
|
|
; /* term ::= QNUMBER */
|
|
*(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))) = _tokenExpr(tls, pParse, libc.Int32FromUint16((**(**TyyStackEntry)(__ccgo_up(yymsp))).Fmajor), *(*TToken)(unsafe.Pointer(yymsp + 8)))
|
|
_sqlite3DequoteNumber(tls, pParse, *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp)))))
|
|
*(*uintptr)(unsafe.Pointer(yymsp + 8)) = *(*uintptr)(unsafe.Pointer(&**(**TYYMINORTYPE)(__ccgo_up(bp))))
|
|
goto _350
|
|
_349:
|
|
;
|
|
goto _350
|
|
/********** End reduce actions ************************************************/
|
|
_350:
|
|
;
|
|
yygoto = libc.Int32FromUint16(_yyRuleInfoLhs[yyruleno])
|
|
yysize = int32(_yyRuleInfoNRhs[yyruleno])
|
|
yyact = _yy_find_reduce_action(tls, (**(**TyyStackEntry)(__ccgo_up(yymsp + uintptr(yysize)*24))).Fstateno, libc.Uint16FromInt32(yygoto))
|
|
/* There are no SHIFTREDUCE actions on nonterminals because the table
|
|
** generator has simplified them to pure REDUCE actions. */
|
|
/* It is not possible for a REDUCE to be followed by an error */
|
|
yymsp = yymsp + uintptr(yysize+int32(1))*24
|
|
(*TyyParser)(unsafe.Pointer(yypParser)).Fyytos = yymsp
|
|
(*TyyStackEntry)(unsafe.Pointer(yymsp)).Fstateno = yyact
|
|
(*TyyStackEntry)(unsafe.Pointer(yymsp)).Fmajor = libc.Uint16FromInt32(yygoto)
|
|
return yyact
|
|
}
|
|
|
|
/*
|
|
** The following code executes when the parse fails
|
|
*/
|