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,