persistentstorage/sql/SQLite/opcodes.c
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 16:57:14 +0300
branchRCL_3
changeset 23 26645d81f48d
parent 0 08ec8eefde2f
permissions -rw-r--r--
Revision: 201035 Kit: 201035

/* 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 *sqlite3OpcodeName(int i){
 static const char *const azName[] = { "?",
     /*   1 */ "ReadCookie",
     /*   2 */ "AutoCommit",
     /*   3 */ "Found",
     /*   4 */ "NullRow",
     /*   5 */ "MoveLe",
     /*   6 */ "Variable",
     /*   7 */ "RealAffinity",
     /*   8 */ "Sort",
     /*   9 */ "Affinity",
     /*  10 */ "IfNot",
     /*  11 */ "Gosub",
     /*  12 */ "NotFound",
     /*  13 */ "ResultRow",
     /*  14 */ "MoveLt",
     /*  15 */ "Rowid",
     /*  16 */ "Not",
     /*  17 */ "CreateIndex",
     /*  18 */ "Explain",
     /*  19 */ "Statement",
     /*  20 */ "DropIndex",
     /*  21 */ "Null",
     /*  22 */ "Int64",
     /*  23 */ "LoadAnalysis",
     /*  24 */ "IdxInsert",
     /*  25 */ "VUpdate",
     /*  26 */ "Next",
     /*  27 */ "SetNumColumns",
     /*  28 */ "Rewind",
     /*  29 */ "Last",
     /*  30 */ "MustBeInt",
     /*  31 */ "MoveGe",
     /*  32 */ "IncrVacuum",
     /*  33 */ "String",
     /*  34 */ "VFilter",
     /*  35 */ "ForceInt",
     /*  36 */ "Close",
     /*  37 */ "AggFinal",
     /*  38 */ "RowData",
     /*  39 */ "IdxRowid",
     /*  40 */ "Pagecount",
     /*  41 */ "MoveGt",
     /*  42 */ "OpenPseudo",
     /*  43 */ "Halt",
     /*  44 */ "Compare",
     /*  45 */ "NewRowid",
     /*  46 */ "IdxLT",
     /*  47 */ "MemMax",
     /*  48 */ "Function",
     /*  49 */ "IntegrityCk",
     /*  50 */ "SCopy",
     /*  51 */ "IfNeg",
     /*  52 */ "FifoWrite",
     /*  53 */ "NotExists",
     /*  54 */ "VDestroy",
     /*  55 */ "IdxDelete",
     /*  56 */ "Vacuum",
     /*  57 */ "Copy",
     /*  58 */ "If",
     /*  59 */ "Jump",
     /*  60 */ "Or",
     /*  61 */ "And",
     /*  62 */ "Destroy",
     /*  63 */ "AggStep",
     /*  64 */ "Insert",
     /*  65 */ "IsNull",
     /*  66 */ "NotNull",
     /*  67 */ "Ne",
     /*  68 */ "Eq",
     /*  69 */ "Gt",
     /*  70 */ "Le",
     /*  71 */ "Lt",
     /*  72 */ "Ge",
     /*  73 */ "Clear",
     /*  74 */ "BitAnd",
     /*  75 */ "BitOr",
     /*  76 */ "ShiftLeft",
     /*  77 */ "ShiftRight",
     /*  78 */ "Add",
     /*  79 */ "Subtract",
     /*  80 */ "Multiply",
     /*  81 */ "Divide",
     /*  82 */ "Remainder",
     /*  83 */ "Concat",
     /*  84 */ "Permutation",
     /*  85 */ "VBegin",
     /*  86 */ "OpenEphemeral",
     /*  87 */ "BitNot",
     /*  88 */ "String8",
     /*  89 */ "IdxGE",
     /*  90 */ "Trace",
     /*  91 */ "VRowid",
     /*  92 */ "MakeRecord",
     /*  93 */ "Yield",
     /*  94 */ "SetCookie",
     /*  95 */ "Prev",
     /*  96 */ "ContextPush",
     /*  97 */ "DropTrigger",
     /*  98 */ "VColumn",
     /*  99 */ "Return",
     /* 100 */ "OpenWrite",
     /* 101 */ "Integer",
     /* 102 */ "Transaction",
     /* 103 */ "IfPos",
     /* 104 */ "CollSeq",
     /* 105 */ "VRename",
     /* 106 */ "Sequence",
     /* 107 */ "ContextPop",
     /* 108 */ "VCreate",
     /* 109 */ "CreateTable",
     /* 110 */ "AddImm",
     /* 111 */ "DropTable",
     /* 112 */ "IsUnique",
     /* 113 */ "VOpen",
     /* 114 */ "IfZero",
     /* 115 */ "Noop",
     /* 116 */ "RowKey",
     /* 117 */ "Expire",
     /* 118 */ "FifoRead",
     /* 119 */ "Delete",
     /* 120 */ "Blob",
     /* 121 */ "Move",
     /* 122 */ "Goto",
     /* 123 */ "ParseSchema",
     /* 124 */ "VNext",
     /* 125 */ "Real",
     /* 126 */ "TableLock",
     /* 127 */ "VerifyCookie",
     /* 128 */ "Column",
     /* 129 */ "OpenRead",
     /* 130 */ "ResetCount",
     /* 131 */ "NotUsed_131",
     /* 132 */ "NotUsed_132",
     /* 133 */ "NotUsed_133",
     /* 134 */ "NotUsed_134",
     /* 135 */ "NotUsed_135",
     /* 136 */ "NotUsed_136",
     /* 137 */ "NotUsed_137",
     /* 138 */ "ToText",
     /* 139 */ "ToBlob",
     /* 140 */ "ToNumeric",
     /* 141 */ "ToInt",
     /* 142 */ "ToReal",
  };
  return azName[i];
}
#endif