mirror of
https://github.com/goharbor/harbor
synced 2025-04-06 04:59:21 +00:00
Add the encoding to the data converter script
This commit is to fix bug reported by community to upgrade v1.6.0, for the details just refer to #5788. The fix is to add the encoding(utf-8) for the converter when to convert the mysql data to pqsql data. Already passed on test with Chinese/Japanese. Signed-off-by: wang yan <wangyan@vmware.com> update
This commit is contained in:
parent
c4fc79ef75
commit
b3918fe748
|
@ -129,7 +129,7 @@ def write_table(pgsql_dump, table_lines):
|
|||
|
||||
def write_insert(pgsql_dump, insert_lines):
|
||||
for item in insert_lines:
|
||||
pgsql_dump.write("%s\n" % item)
|
||||
pgsql_dump.write("%s\n" % item.encode('utf-8'))
|
||||
|
||||
def write_foreign_key(pgsql_dump):
|
||||
pgsql_dump.write('\n')
|
||||
|
|
Loading…
Reference in New Issue
Block a user