Hi all,
I stumbled probably over some bug when joining a series.
When appending a gdt-dataset, the description of a series gets shipped.
However, when joining a series, this meta-information gets lost.
Here an example:
<hansl>
clear
set verbose off
nulldata 3
series y = normal()
setinfo y --description="Some desciption of y"
store "foo.gdt"
/*
# Works: description for y is shipped
nulldata 3
series x = normal()
append foo.gdt
*/
# Failed: description for y is missing
nulldata 3
series x = normal()
join foo.gdt y
</hansl>
This is with latest git on linux.
Thanks
Artur