From ffd33bb73f24d8d0f7701dde04eb03958f9b3ab2 Mon Sep 17 00:00:00 2001 From: peterxcli Date: Fri, 28 Aug 2026 09:53:48 +0800 Subject: [PATCH] docs: update stale interval multiplication note in expressions.md MultiplyDTInterval routes through the JVM codegen dispatcher since #4900 (CometMultiplyDTInterval extends CometCodegenDispatch), so "Interval multiplication falls back" is no longer accurate. Only YearMonth (MultiplyYMInterval) and Calendar interval multiplication still fall back. Mirror the wording of the `/` row introduced by #4901. Co-Authored-By: Claude Fable 5 --- docs/source/user-guide/latest/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user-guide/latest/expressions.md b/docs/source/user-guide/latest/expressions.md index 192eae807eb..c8b75102340 100644 --- a/docs/source/user-guide/latest/expressions.md +++ b/docs/source/user-guide/latest/expressions.md @@ -414,7 +414,7 @@ The type-name conversion functions (`bigint`, `binary`, `boolean`, `date`, `deci | Function | Status | Implementation | Notes | | --- | --- | --- | --- | | `%` | ✅ | Native | | -| `*` | ✅ | Native | Interval multiplication falls back | +| `*` | ✅ | Native | DayTime interval multiplication routes through the JVM codegen dispatcher; YearMonth and Calendar interval multiplication fall back | | `+` | ✅ | Native | | | `-` | ✅ | Native | | | `/` | ✅ | Native | |