Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jcamachor committed Dec 3, 2024
1 parent cb15bc3 commit 34ddda0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions site/docs/relations/logical_relations.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,11 @@ The fetch operation eliminates records outside a desired window. Typically corre

### Fetch Properties

| Property | Description | Required |
| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
| Input | A relational input, typically with a desired orderedness property. | Required |
| Offset Expression | An expression which evaluates to a non-negative integer (recommended type is `i64`). Declares the offset for retrieval of records. | Optional, defaults to 0. |
| Count Expression | An expression which evaluates to a non-negative integer or -1 (recommended type is `i64`). Declares the number of records that should be returned. -1 signals that ALL records should be returned. | Required |
| Property | Description | Required |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
| Input | A relational input, typically with a desired orderedness property. | Required |
| Offset Expression | An expression which evaluates to a non-negative integer or null (recommended type is `i64`). Declares the offset for retrieval of records. An expression evaluating to null is treated as 0. | Optional, defaults to 0. |
| Count Expression | An expression which evaluates to a non-negative integer or null (recommended type is `i64`). Declares the number of records that should be returned. An expression evaluating to null indicates that all records should be returned. | Optional, defaults to all. |

=== "FetchRel Message"

Expand Down

0 comments on commit 34ddda0

Please sign in to comment.