aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/runtime/instructions.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/vm/sqlvm/runtime/instructions.go')
-rw-r--r--core/vm/sqlvm/runtime/instructions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/sqlvm/runtime/instructions.go b/core/vm/sqlvm/runtime/instructions.go
index 4b179f4aa..b6b37052e 100644
--- a/core/vm/sqlvm/runtime/instructions.go
+++ b/core/vm/sqlvm/runtime/instructions.go
@@ -347,7 +347,7 @@ func bool2Raw(b bool) (r *Raw) {
}
func value2ColIdx(v decimal.Decimal) (idx uint16) {
- if v.GreaterThan(dec.UInt16Max) {
+ if v.GreaterThan(dec.MaxUint16) {
panic(errors.New("field index greater than uint16 max"))
} else if v.LessThan(decimal.Zero) {
panic(errors.New("field index less than 0"))