Skip to content
Merged
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
59 changes: 29 additions & 30 deletions docs/src/main/sphinx/connector/exasol.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,36 +75,35 @@ each direction.
Trino supports selecting Exasol database types. This table shows the Exasol to
Trino data type mapping:

```{eval-rst}
.. list-table:: Exasol to Trino type mapping
:widths: 25, 25, 50
:header-rows: 1

* - Exasol database type
- Trino type
- Notes
* - ``BOOLEAN``
- ``BOOLEAN``
-
* - ``DOUBLE PRECISION``
- ``REAL``
-
* - ``DECIMAL(p, s)``
- ``DECIMAL(p, s)``
- See :ref:`exasol-number-mapping`
* - ``CHAR(n)``
- ``CHAR(n)``
-
* - ``VARCHAR(n)``
- ``VARCHAR(n)``
-
* - ``DATE``
- ``DATE``
-
* - ``HASHTYPE``
- ``VARBINARY``
-
```
:::{list-table} Exasol to Trino type mapping
:widths: 25, 25, 50
:header-rows: 1

* - Exasol database type
- Trino type
- Notes
* - `BOOLEAN`
- `BOOLEAN`
-
* - `DOUBLE PRECISION`
- `REAL`
-
* - `DECIMAL(p, s)`
- `DECIMAL(p, s)`
- See {ref}`exasol-number-mapping`
* - `CHAR(n)`
- `CHAR(n)`
-
* - `VARCHAR(n)`
- `VARCHAR(n)`
-
* - `DATE`
- `DATE`
-
* - `HASHTYPE`
- `VARBINARY`
-
:::

No other types are supported.

Expand Down