https://bugs.documentfoundation.org/show_bug.cgi?id=124511

--- Comment #1 from Jacek Pliszka <[email protected]> ---
OK, looks like gunzip or less can handle 2 concatenated gzip files and
libreoffice can not. Another example

$ gunzip -c z1.csv.gz 
,a,b
0,1,3
1,2,4
$ gunzip -c z2.csv.gz 
0,3,5
1,4,6
$ cat z1.csv.gz z2.csv.gz  > z3.csv.gz
$ gunzip -c z3.csv.gz 
,a,b
0,1,3
1,2,4
0,3,5
1,4,6

while libreoffice when opens z3.csv.gz shows only z1 contents

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to