Skip to content
Open
Show file tree
Hide file tree
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
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ Whether you're:

## ✨ Features

✅ Translate dbt models across popular SQL dialects:
 `Snowflake`, `Redshift`, `PostgreSQL`, `MySQL`, `Oracle`, `BigQuery`, `Spark-SQL`, `SQL Server`
✅ Translate dbt models across supported SQL dialects
✅ Retains dbt Jinja templating: `{{ ref('...') }}`, `{{ var('...') }}`
✅ Bulk model conversion support
✅ Intuitive CLI: `dbt run -m`-like syntax
Expand Down Expand Up @@ -313,6 +312,20 @@ LLM_Name = 'mistral-small-latest'
LLM_Provider_Key = 'a2**************************ya0'
```

## 🧪 Supported Dialects (so far)
Here’s what’s currently supported:

* Redshift
* Snowflake
* BigQuery
* Postgres
* MySQL
* Oracle
* Spark-SQL
* SQL-Server
* Db2
* ClickHouse


> **⚠️ Important Notes**
>- `dbt-sqlx` uses LLM models — do not use if your code is under strict data security policies.
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
test=0.1.25
prod=1.0.0
test=0.2.2
prod=1.0.1
2 changes: 1 addition & 1 deletion src/dbt_sqlx/support.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SUPPORTED_SQL_TYPES = {'oracle', 'sql-server', 'snowflake', 'redshift', 'postgres', 'mysql', 'bigquery','spark-sql'}
SUPPORTED_SQL_TYPES = {'oracle', 'sql-server', 'snowflake', 'redshift', 'postgres', 'mysql', 'bigquery','spark-sql', 'clickhouse', 'db2'}
SUPPORTED_PROVIDERS = ['OpenAI', 'Groq','Anthropic','MistralAI','Google_GenAI']
PROVIDER_API_KEY_PREFIX = {
'mistralai': 'mistralai'
Expand Down