Hi all, I have serialized a ResultSet with:
> new TSVOutput().format( > new FileOutputStream(repositoryPath > + File.pathSeparator + "output.tsv"), results); Then, I try to unserialize it by using: > ResultSet set = > ResultSetFactory.load(new FileInputStream(repositoryPath > + File.pathSeparator + "output.tsv"), ResultSetFormat.syntaxTSV); But I am getting: > Unknown result set syntax: symbol:RS_TSV Is there a means of unserializing a ResultSet that has been serialized using the TSV format? Why is there no TSVInput class as for JSONInput? Kind Regards, Laurent
