> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-home-button.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Tabela de sistema que contém descrições dos motores de tabela compatíveis com o servidor e dos recursos que eles suportam.

# system.table_engines

<div id="description">
  ## Descrição
</div>

Contém a descrição dos motores de tabela compatíveis com o servidor e informações sobre os recursos compatíveis com cada um deles.

Esta tabela contém as seguintes colunas (o tipo da coluna é mostrado entre colchetes):

* `name` ([String](/pt-BR/reference/data-types)) — O nome do motor de tabela.
* `supports_settings` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte à cláusula SETTINGS.
* `supports_skipping_indices` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte a skipping indices.
* `supports_projections` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte a projeções.
* `supports_sort_order` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte às cláusulas PARTITION\_BY, PRIMARY\_KEY, ORDER\_BY e SAMPLE\_BY.
* `supports_ttl` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte a TTL.
* `supports_replication` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte à replicação de dados.
* `supports_deduplication` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte à desduplicação de dados.
* `supports_parallel_insert` ([UInt8](/pt-BR/reference/data-types)) — Indicador que informa se o motor de tabela oferece suporte à inserção paralela (consulte a configuração max\_insert\_threads).

<div id="example">
  ## Exemplo
</div>

```sql title="Query" theme={null}
SELECT *
FROM system.table_engines
WHERE name IN ('Kafka', 'MergeTree', 'ReplicatedCollapsingMergeTree')
```

```text title="Response" theme={null}
┌─name──────────────────────────┬─supports_settings─┬─supports_skipping_indices─┬─supports_sort_order─┬─supports_ttl─┬─supports_replication─┬─supports_deduplication─┬─supports_parallel_insert─┐
│ MergeTree                     │                 1 │                         1 │                   1 │            1 │                    0 │                      0 │                        1 │
│ Kafka                         │                 1 │                         0 │                   0 │            0 │                    0 │                      0 │                        0 │
│ ReplicatedCollapsingMergeTree │                 1 │                         1 │                   1 │            1 │                    1 │                      1 │                        1 │
└───────────────────────────────┴───────────────────┴───────────────────────────┴─────────────────────┴──────────────┴──────────────────────┴────────────────────────┴──────────────────────────┘
```

<div id="see-also">
  ## Veja também
</div>

* família MergeTree [cláusulas de consulta](/pt-BR/reference/engines/table-engines/mergetree-family/mergetree#mergetree-query-clauses)
* Kafka [configurações](/pt-BR/reference/engines/table-engines/integrations/kafka#creating-a-table)
* Join [configurações](/pt-BR/reference/engines/table-engines/special/join#join-limitations-and-settings)
