After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 795408 - problem with ssconvert with option --merge-to
problem with ssconvert with option --merge-to
Status: RESOLVED FIXED
Product: Gnumeric
Classification: Applications
Component: General
1.12.x
Other Mac OS
: Normal normal
: ---
Assigned To: Jody Goldberg
Jody Goldberg
Depends on:
Blocks:
 
 
Reported: 2018-04-20 16:34 UTC by giovanma75
Modified: 2018-04-20 20:53 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description giovanma75 2018-04-20 16:34:24 UTC
when I run ssconvert --merge-to=output.xls file1.csv file2.csv
I get error message :
(ssconvert:8373): GLib-CRITICAL **: 18:02:42.884: g_hash_table_foreach: assertion 'version == hash_table->version' failed
Comment 1 Morten Welinder 2018-04-20 18:36:09 UTC
Confirmed.  That used to work.
Comment 2 Morten Welinder 2018-04-20 18:46:21 UTC
This problem has been fixed in our software repository. The fix will go into the next software release. Once that release is available, you may want to check for a software upgrade provided by your Linux distribution.
Comment 3 Morten Welinder 2018-04-20 18:48:24 UTC
That warning relates to defined names and in your usage example can be
ignored.
Comment 4 giovanma75 2018-04-20 20:15:38 UTC
Is there a way to suppress temporarily ( until the next release) the printing of warnings? ( sorry my programming literacy is limited)
Comment 5 Morten Welinder 2018-04-20 20:53:53 UTC
Not easily, but you can ignore them after the fact:

ssconvert --merge-to=output.xls file1.csv file2.csv 2>&1 | grep . | grep -v 'version == hash_table->version'