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
* feat(feat-config-connection-charset): support config connection charset
* feat(feat-config-connection-charset): feat-config-connection-charset
The ability to specify character set and collation is supported.
---------
Co-authored-by: shaohoukun <[email protected]>
Copy file name to clipboardexpand all lines: doc/command-line-flags.md
+3
Original file line number
Diff line number
Diff line change
@@ -261,6 +261,9 @@ But RocksDB currently lacks a few features support compared to InnoDB:
261
261
262
262
When `--storage-engine=rocksdb`, `gh-ost` will make some changes necessary (e.g. sets isolation level to `READ_COMMITTED`) to support RocksDB.
263
263
264
+
### charset
265
+
The default charset for the database connection is utf8mb4, utf8, latin1. The ability to specify character set and collation is supported, eg: utf8mb4_general_ci,utf8_general_ci,latin1.
266
+
264
267
### test-on-replica
265
268
266
269
Issue the migration on a replica; do not modify data on master. Useful for validating, testing and benchmarking. See [`testing-on-replica`](testing-on-replica.md)
Copy file name to clipboardexpand all lines: go/cmd/gh-ost/main.go
+3
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ func main() {
57
57
flag.StringVar(&migrationContext.CliMasterPassword, "master-password", "", "MySQL password on master, if different from that on replica. Requires --assume-master-host")
0 commit comments