From ddf229c4329392d62dac22018a4a9be15022cc38 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Fri, 27 Dec 2024 15:38:44 -0500 Subject: [PATCH] Update COMPAT.md --- COMPAT.md | 2 +- core/vdbe/explain.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/COMPAT.md b/COMPAT.md index 71a00290b..1cdc475a8 100644 --- a/COMPAT.md +++ b/COMPAT.md @@ -395,7 +395,7 @@ Feature support of [sqlite expr syntax](https://www.sqlite.org/lang_expr.html). | ReadCookie | No | | Real | Yes | | RealAffinity | Yes | -| Remainder | No | +| Remainder | Yes | | ResetCount | No | | ResultRow | Yes | | Return | Yes | diff --git a/core/vdbe/explain.rs b/core/vdbe/explain.rs index 28a87b2d6..a17ababcf 100644 --- a/core/vdbe/explain.rs +++ b/core/vdbe/explain.rs @@ -83,7 +83,7 @@ pub fn insn_to_str( format!("r[{}]=~r[{}]", dest, reg), ), Insn::Remainder { lhs, rhs, dest } => ( - "Modulus", + "Remainder", *lhs as i32, *rhs as i32, *dest as i32,