File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
internal/storage/bucket/migrations Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -461,7 +461,7 @@ begin
461
461
case
462
462
when previousHash is null
463
463
then marshalledAsJSON::bytea
464
- else ' "' || encode(previousHash::bytea , ' base64' )::bytea || E' "\n ' || convert_to(marshalledAsJSON, ' LATIN1 ' )::bytea
464
+ else ' "' || encode(previousHash::bytea , ' base64' )::bytea || E' "\n ' || convert_to(marshalledAsJSON, ' UTF-8 ' )::bytea
465
465
end || E' \n ' , ' sha256' ::text
466
466
)
467
467
);
Original file line number Diff line number Diff line change 20
20
limit _batch_size
21
21
)
22
22
update logs
23
- set memento = convert_to(data::varchar , ' LATIN1 ' )::bytea
23
+ set memento = convert_to(data::varchar , ' UTF-8 ' )::bytea
24
24
from _outdated_logs
25
25
where logs .seq in (_outdated_logs .seq );
26
26
You can’t perform that action at this time.
0 commit comments