We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbbaa9 commit 8d87432Copy full SHA for 8d87432
content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-expiration-example.md
@@ -98,7 +98,7 @@ The transformation depends on the data type of the field in the source database:
98
expire:
99
# `time_delta_seconds` Returns the number of seconds between a given dt and now.
100
# A negative value means that the given dt is in the future, so we need to invert it.
101
- # A positive value means that the given dt is in the past, so we set the expiration to -1 (expire immediately).
+ # A positive value means that the given dt is in the past, so set the expiration to -1 (expire immediately).
102
expression: CASE WHEN expire_seconds < 0 THEN -expire_seconds ELSE -1 END
103
language: sql
104
```
0 commit comments