Skip to content

Commit ca29d7d

Browse files
Adding improvements from Nikita's review
1 parent f199743 commit ca29d7d

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/content/docs/r2-sql/platform/pricing.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ head:
99

1010
---
1111

12-
13-
R2 SQL is currently not billed during open beta, but will eventually be billed on the amount of data queried.
14-
1512
During the first phase of the R2 SQL open beta, you will not be billed for R2 SQL usage. You will only be billed for R2 usage.
1613

1714
We plan to price based on the volume of data queried by R2 SQL. We will provide at least 30 days notice and exact pricing before charging.

src/content/docs/r2-sql/reference/limitations-best-practices.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sidebar:
1111
## Overview
1212

1313
:::note
14-
R2 SQL is in public beta. Limitations and best practices will change over time.
14+
R2 SQL is in open beta. Limitations and best practices will change over time.
1515
:::
1616

1717
R2 SQL is designed for querying **partitioned** Apache Iceberg tables in your R2 data catalog. This document outlines the supported features, limitations, and best practices of R2 SQL.

src/content/docs/r2-sql/reference/sql-reference.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ This page documents the R2 SQL syntax based on the currently supported grammar i
2525
```sql
2626
SELECT column_list
2727
FROM table_name
28-
WHERE conditions
29-
[ORDER BY column_name [DESC, ASC]]
28+
WHERE conditions --optional
29+
[ORDER BY column_name [DESC | ASC]]
3030
[LIMIT number]
3131
```
3232

@@ -220,8 +220,9 @@ LIMIT 500
220220
| `integer` | Whole numbers | `1`, `42`, `-10`, `0` |
221221
| `float` | Decimal numbers | `1.5`, `3.14`, `-2.7`, `0.0` |
222222
| `string` | Text values | `'hello'`, `'GET'`, `'2024-01-01'` |
223-
| `boolean` | boolean values | `true`, `false` |
223+
| `boolean` | Boolean values | `true`, `false` |
224224
| `timestamp` | RFC3339 | `'2025-09-24T01:00:00Z'` |
225+
| `date` | 'YYYY-MM-DD' | `'2025-09-24'` |
225226

226227
### Type Usage in Conditions
227228

0 commit comments

Comments
 (0)