DOCSUP-10513: Add EN

This commit is contained in:
romanzhukov 2021-07-16 19:13:09 +03:00
parent 181f20cfe1
commit 64ca3e140a

View File

@ -7,7 +7,7 @@ toc_title: MaterializeMySQL
Creates ClickHouse database with all the tables existing in MySQL, and all the data in those tables. Creates ClickHouse database with all the tables existing in MySQL, and all the data in those tables.
ClickHouse server works as MySQL replica. It reads binlog and performs DDL and DML queries. ClickHouse server works as MySQL replica. It reads binlog and performs DDL and DML queries. ClickHouse database created with MaterializeMySQL now contains all column comments from the MySQL database that materialized
This feature is experimental. This feature is experimental.
@ -82,6 +82,8 @@ MySQL DDL queries are converted into the corresponding ClickHouse DDL queries ([
- If `_sign` is not specified in the `SELECT` query, `WHERE _sign=1` is used by default. So the deleted rows are not included into the result set. - If `_sign` is not specified in the `SELECT` query, `WHERE _sign=1` is used by default. So the deleted rows are not included into the result set.
- The result includes columns comments from the MySQL database that materialized (if they exist).
### Index Conversion {#index-conversion} ### Index Conversion {#index-conversion}
MySQL `PRIMARY KEY` and `INDEX` clauses are converted into `ORDER BY` tuples in ClickHouse tables. MySQL `PRIMARY KEY` and `INDEX` clauses are converted into `ORDER BY` tuples in ClickHouse tables.