Skip to content

Commit

Permalink
test: enable integration tests for GlareDB
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Oct 27, 2023
1 parent f22ebce commit 06a096c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions prqlc/prql-compiler/src/sql/dialect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,11 @@ impl Dialect {
| Dialect::Postgres
| Dialect::MySql
| Dialect::Generic
| Dialect::ClickHouse => SupportLevel::Supported,
Dialect::MsSql
| Dialect::GlareDb
| Dialect::Ansi
| Dialect::BigQuery
| Dialect::Snowflake => SupportLevel::Unsupported,
| Dialect::ClickHouse => SupportLevel::Supported,
Dialect::MsSql | Dialect::Ansi | Dialect::BigQuery | Dialect::Snowflake => {
SupportLevel::Unsupported
}
}
}

Expand Down
1 change: 1 addition & 0 deletions prqlc/prql-compiler/tests/integration/queries/loop.prql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# clickhouse:skip (DB::Exception: Syntax error)
# glaredb:skip
from [{n = 1}]
select n = n - 2
loop (filter n < 4 | select n = n + 1)
Expand Down

0 comments on commit 06a096c

Please sign in to comment.