maxlapshin / mysql2postgres

Mysqldump, writing in postgresql format
MIT License
709 stars 156 forks source link

Wrong key "hostname" in documentation #98

Closed raiblue closed 4 years ago

raiblue commented 7 years ago

Given example in README.md, mysql source section:

mysql_data_source: &pii
  hostname: localhost

But there is no "hostname" key there actually, it must be "host". When hostname is used it has no effect and default value for host key is taken (localhost and unix socket usage).

You can fix the example as:

mysql_data_source: &pii
  host: localhost
prezmix commented 6 years ago

Thank you!