You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-7Lines changed: 31 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ pip install clickhouse-driver
45
45
46
46
Also the following (at least one of) MySQL privileges are required for this operation: `SUPER`, `REPLICATION CLIENT`
47
47
48
-
```sql
48
+
```mysql
49
49
CREATEUSER 'reader'@'localhost' IDENTIFIED BY 'qwerty';
50
50
CREATEUSER 'reader'@'127.0.0.1' IDENTIFIED BY 'qwerty';
51
51
CREATEUSER 'reader'@'*' IDENTIFIED BY 'qwerty';
@@ -65,7 +65,7 @@ Also the following MySQL config options are required:
65
65
```ini
66
66
[mysqld]
67
67
server-id = 1
68
-
log_bin = /var/log/mysql/mysql-bin.log
68
+
log_bin = /var/lib/mysql/bin.log
69
69
expire_logs_days = 10
70
70
max_binlog_size = 100M
71
71
binlog-format = row #Very important if you want to receive write, update and delete row events
@@ -293,7 +293,7 @@ We have to separate test table into several ones because of this error, produced
293
293
ERROR 1118 (42000): Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
0 commit comments