diff options
Diffstat (limited to 'src/sqlite/opcodes.c')
-rw-r--r-- | src/sqlite/opcodes.c | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/src/sqlite/opcodes.c b/src/sqlite/opcodes.c new file mode 100644 index 0000000..08cf6a1 --- /dev/null +++ b/src/sqlite/opcodes.c @@ -0,0 +1,135 @@ +/* Automatically generated. Do not edit */ +/* See the mkopcodec.awk script for details. */ +#if !defined(SQLITE_OMIT_EXPLAIN) || !defined(NDEBUG) || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) +const char *const sqlite3OpcodeNames[] = { "?", + /* 1 */ "MemLoad", + /* 2 */ "Column", + /* 3 */ "SetCookie", + /* 4 */ "IfMemPos", + /* 5 */ "MoveGt", + /* 6 */ "AggFocus", + /* 7 */ "RowKey", + /* 8 */ "AggNext", + /* 9 */ "OpenWrite", + /* 10 */ "If", + /* 11 */ "Pop", + /* 12 */ "AggContextPush", + /* 13 */ "CollSeq", + /* 14 */ "OpenRead", + /* 15 */ "Expire", + /* 16 */ "SortReset", + /* 17 */ "AutoCommit", + /* 18 */ "Sort", + /* 19 */ "ListRewind", + /* 20 */ "IntegrityCk", + /* 21 */ "SortInsert", + /* 22 */ "Function", + /* 23 */ "Noop", + /* 24 */ "Return", + /* 25 */ "NewRowid", + /* 26 */ "Variable", + /* 27 */ "String", + /* 28 */ "ParseSchema", + /* 29 */ "AggFunc", + /* 30 */ "Close", + /* 31 */ "ListWrite", + /* 32 */ "CreateIndex", + /* 33 */ "IsUnique", + /* 34 */ "IdxIsNull", + /* 35 */ "NotFound", + /* 36 */ "MustBeInt", + /* 37 */ "Halt", + /* 38 */ "Rowid", + /* 39 */ "IdxLT", + /* 40 */ "AddImm", + /* 41 */ "Statement", + /* 42 */ "RowData", + /* 43 */ "MemMax", + /* 44 */ "Push", + /* 45 */ "NotExists", + /* 46 */ "OpenTemp", + /* 47 */ "MemIncr", + /* 48 */ "Gosub", + /* 49 */ "AggSet", + /* 50 */ "Integer", + /* 51 */ "SortNext", + /* 52 */ "Prev", + /* 53 */ "CreateTable", + /* 54 */ "Last", + /* 55 */ "IdxRowid", + /* 56 */ "ResetCount", + /* 57 */ "Callback", + /* 58 */ "ContextPush", + /* 59 */ "DropTrigger", + /* 60 */ "DropIndex", + /* 61 */ "IdxGE", + /* 62 */ "Or", + /* 63 */ "And", + /* 64 */ "Not", + /* 65 */ "IdxDelete", + /* 66 */ "Vacuum", + /* 67 */ "MoveLe", + /* 68 */ "IsNull", + /* 69 */ "NotNull", + /* 70 */ "Ne", + /* 71 */ "Eq", + /* 72 */ "Gt", + /* 73 */ "Le", + /* 74 */ "Lt", + /* 75 */ "Ge", + /* 76 */ "IfNot", + /* 77 */ "BitAnd", + /* 78 */ "BitOr", + /* 79 */ "ShiftLeft", + /* 80 */ "ShiftRight", + /* 81 */ "Add", + /* 82 */ "Subtract", + /* 83 */ "Multiply", + /* 84 */ "Divide", + /* 85 */ "Remainder", + /* 86 */ "Concat", + /* 87 */ "Negative", + /* 88 */ "DropTable", + /* 89 */ "BitNot", + /* 90 */ "String8", + /* 91 */ "MakeRecord", + /* 92 */ "Delete", + /* 93 */ "AggContextPop", + /* 94 */ "ListRead", + /* 95 */ "ListReset", + /* 96 */ "Dup", + /* 97 */ "Goto", + /* 98 */ "Clear", + /* 99 */ "IdxGT", + /* 100 */ "MoveLt", + /* 101 */ "VerifyCookie", + /* 102 */ "Pull", + /* 103 */ "SetNumColumns", + /* 104 */ "AbsValue", + /* 105 */ "Transaction", + /* 106 */ "AggGet", + /* 107 */ "ContextPop", + /* 108 */ "Next", + /* 109 */ "AggInit", + /* 110 */ "IdxInsert", + /* 111 */ "Distinct", + /* 112 */ "AggReset", + /* 113 */ "Insert", + /* 114 */ "Destroy", + /* 115 */ "ReadCookie", + /* 116 */ "ForceInt", + /* 117 */ "OpenPseudo", + /* 118 */ "Null", + /* 119 */ "Blob", + /* 120 */ "MemStore", + /* 121 */ "Rewind", + /* 122 */ "MoveGe", + /* 123 */ "Found", + /* 124 */ "NullRow", + /* 125 */ "NotUsed_125", + /* 126 */ "NotUsed_126", + /* 127 */ "NotUsed_127", + /* 128 */ "Real", + /* 129 */ "HexBlob", +}; +#endif |