From d13abad4b1ccb6b785fcaaa1a4fc17e456ecc7d3 Mon Sep 17 00:00:00 2001 From: krishvishal Date: Fri, 6 Jun 2025 20:08:18 +0530 Subject: [PATCH] Handle Blob type together with Text type in op_seek --- core/vdbe/execute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vdbe/execute.rs b/core/vdbe/execute.rs index 219b87b23..49f27ffa4 100644 --- a/core/vdbe/execute.rs +++ b/core/vdbe/execute.rs @@ -2692,7 +2692,7 @@ pub fn op_seek( op } } - Value::Text(_) => { + Value::Text(_) | Value::Blob(_) => { match op { SeekOp::GT | SeekOp::GE => { // No integers are > or >= non-numeric text, jump to target (empty result)