Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/guides/developer/alternative-query-languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SET dialect = 'clickhouse'
To enable PRQL:

```sql
SET allow_experimental_prql_dialect = 1;
SET allow_experimental_prql_dialect = 1; -- this SET statement is required only for ClickHouse versions >= v25.1
SET dialect = 'prql'
```

Expand All @@ -54,7 +54,7 @@ Under the hood, ClickHouse uses transpilation from PRQL to SQL to run PRQL queri
To enable KQL:

```sql
SET allow_experimental_kusto_dialect = 1;
SET allow_experimental_kusto_dialect = 1; -- this SET statement is required only for ClickHouse versions >= 25.1
SET dialect = 'kusto'
```

Expand Down