aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/runtime/jumptable.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/vm/sqlvm/runtime/jumptable.go')
-rw-r--r--core/vm/sqlvm/runtime/jumptable.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/vm/sqlvm/runtime/jumptable.go b/core/vm/sqlvm/runtime/jumptable.go
index aab57225d..f6cad57e7 100644
--- a/core/vm/sqlvm/runtime/jumptable.go
+++ b/core/vm/sqlvm/runtime/jumptable.go
@@ -2,11 +2,12 @@ package runtime
var jumpTable = [256]OpFunction{
// 0x10
- ADD: opAdd,
- MUL: opMul,
- SUB: opSub,
- DIV: opDiv,
- MOD: opMod,
+ ADD: opAdd,
+ MUL: opMul,
+ SUB: opSub,
+ DIV: opDiv,
+ MOD: opMod,
+ CONCAT: opConcat,
// 0x20
LT: opLt,