diff --git a/docs/concepts/composable-ecosystem.qmd b/docs/concepts/composable-ecosystem.qmd index 7b515af4e4f95..eefa1be720e19 100644 --- a/docs/concepts/composable-ecosystem.qmd +++ b/docs/concepts/composable-ecosystem.qmd @@ -46,7 +46,6 @@ About pandas'"](https://wesmckinney.com/blog/apache-arrow-pandas-internals/). Ibis started as a pandas-like API for Apache Impala, but has since expanded to support many backends. It currently leverages open-source projects like -[SQLAlchemy](https://github.com/sqlalchemy/sqlalchemy) and [SQLGlot](https://github.com/tobymao/sqlglot) to work with many backends. While these projects are great, they rely on backend-specific SQL that does not constitute a standard. Going forward, we expect ADBC and Substrait to be the diff --git a/docs/concepts/internals.qmd b/docs/concepts/internals.qmd index dc80465feb876..5b33e57766bf5 100644 --- a/docs/concepts/internals.qmd +++ b/docs/concepts/internals.qmd @@ -125,11 +125,10 @@ The next major component of Ibis is the compilers. The first few versions of Ibis directly generated strings, but the compiler infrastructure was generalized to support compilation of -[SQLAlchemy](https://docs.sqlalchemy.org/en/latest/tutorial/index.html#unified-tutorial) based -expressions. +[SQLGlot](https://sqlglot.com/)-based expressions. The compiler works by translating the different pieces of SQL expression into a -string or SQLAlchemy expression. +string or SQLGlot expression. The main pieces of a `SELECT` statement are: diff --git a/gen_redirects.py b/gen_redirects.py index ccfaf8678063e..1bfee8e4f7ae9 100644 --- a/gen_redirects.py +++ b/gen_redirects.py @@ -52,12 +52,6 @@ # Untemplated redirects REDIRECTS = { "/api/": "/reference/", - "/api/backends/": "/reference/backends/", - "/api/backends/base/": "/reference/backends/base/", - "/api/backends/pandas/": "/reference/backends/pandas/", - "/api/backends/sql/": "/reference/backends/sql/", - "/api/backends/sqlalchemy/": "/reference/backends/sqlalchemy/", - "/api/config/": "/reference/config/", "/api/datatypes/": "/reference/datatypes/", "/api/expressions/": "/reference/expressions/", "/api/expressions/collections/": "/reference/expressions/collections/", @@ -172,7 +166,6 @@ # TODO: "/how_to/memtable_join/" # TODO: "/reference/backends/base/" # TODO: "/reference/backends/sql/" - # TODO: "/reference/backends/sqlalchemy/" } # Fill in templates