Skip to content

Commit 5bf15b2

Browse files
committed
Mention versions require allow_experimental_(kusto|prql)_dialect
1 parent c63583f commit 5bf15b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/en/guides/developer/alternative-query-languages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SET dialect = 'clickhouse'
3030
To enable PRQL:
3131

3232
```sql
33-
SET allow_experimental_prql_dialect = 1;
33+
SET allow_experimental_prql_dialect = 1; -- this SET statement is required only for ClickHouse versions >= v25.1
3434
SET dialect = 'prql'
3535
```
3636

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

5656
```sql
57-
SET allow_experimental_kusto_dialect = 1;
57+
SET allow_experimental_kusto_dialect = 1; -- this SET statement is required only for ClickHouse versions >= 25.1
5858
SET dialect = 'kusto'
5959
```
6060

0 commit comments

Comments
 (0)