OwnedValue -> Value

This commit is contained in:
Pekka Enberg
2025-05-15 11:43:23 +03:00
parent ef65275bda
commit 9303262dfd
2 changed files with 7 additions and 5 deletions

View File

@@ -179,7 +179,7 @@ Note that for other functions it might be implemented in other location in vdbe
```diff
// file vdbe/datetime.rs
// ...
+ pub fn exec_date(values: &[OwnedValue]) -> OwnedValue {
+ pub fn exec_date(values: &[Value]) -> Value {
+ // ... implementation
+ }
@@ -238,4 +238,4 @@ An example:
- | date() | No | |
+ | date() | Yes | partially supports modifiers |
...
```
```