diff --git a/cmd/dbc/docs.go b/cmd/dbc/docs.go index a7ef0080..8a656299 100644 --- a/cmd/dbc/docs.go +++ b/cmd/dbc/docs.go @@ -26,16 +26,16 @@ var dbcDocsUrl = "https://docs.columnar.tech/dbc/" // Support drivers without a docs URL defined in the index var fallbackDriverDocsUrl = map[string]string{ - "bigquery": "https://docs.adbc-drivers.org/drivers/bigquery", + "bigquery": "https://adbc-drivers.org/drivers/bigquery/", "duckdb": "https://duckdb.org/docs/stable/clients/adbc", "flightsql": "https://arrow.apache.org/adbc/current/driver/flight_sql.html", - "mssql": "https://docs.adbc-drivers.org/drivers/mssql", - "mysql": "https://docs.adbc-drivers.org/drivers/mysql", + "mssql": "https://adbc-drivers.org/drivers/mssql/", + "mysql": "https://adbc-drivers.org/drivers/mysql/", "postgresql": "https://arrow.apache.org/adbc/current/driver/postgresql.html", - "redshift": "https://docs.adbc-drivers.org/drivers/redshift", + "redshift": "https://adbc-drivers.org/drivers/redshift", "snowflake": "https://arrow.apache.org/adbc/current/driver/snowflake.html", "sqlite": "https://arrow.apache.org/adbc/current/driver/sqlite.html", - "trino": "https://docs.adbc-drivers.org/drivers/trino", + "trino": "https://adbc-drivers.org/drivers/trino/", } var openBrowserFunc = browser.OpenURL