Skip to content

Commit

Permalink
test: Move glaredb to Unsupported temporarily (#4682)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed Jul 1, 2024
1 parent f9ca9fa commit f32c97d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
7 changes: 5 additions & 2 deletions prqlc/prqlc/src/sql/dialect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,14 @@ impl Dialect {
| Dialect::Postgres
| Dialect::MySql
| Dialect::Generic
| Dialect::GlareDb
// TODO revert to Supported when its `install.sh` is fixed
// https://github.com/GlareDB/glaredb/issues/3063
// | Dialect::GlareDb
| Dialect::ClickHouse => SupportLevel::Supported,
Dialect::MsSql | Dialect::Ansi | Dialect::BigQuery | Dialect::Snowflake => {
SupportLevel::Unsupported
}
},
Dialect::GlareDb => {SupportLevel::Nascent}
}
}

Expand Down
15 changes: 8 additions & 7 deletions prqlc/prqlc/tests/integration/dbs/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ services:
# ClickHouse can load csv only from user_files_path (default `/var/lib/clickhouse/user_files/`)
# https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-user_scripts_path
- ../data/chinook:/var/lib/clickhouse/user_files/chinook/:ro
glaredb:
build:
context: dockerfiles
dockerfile: glaredb.Dockerfile
ports:
- "6543:6543"
volumes: *vol
# TODO: restore when glaredb install.sh works again
# glaredb:
# build:
# context: dockerfiles
# dockerfile: glaredb.Dockerfile
# ports:
# - "6543:6543"
# volumes: *vol

0 comments on commit f32c97d

Please sign in to comment.