While debugging the Julia wrapper of openPMD-api, I received the error message below. It is incomplete, and it does not give any information about the second type.
LoadError: [ADIOS2] Trying to access a dataset with wrong type (trying to access dataset with type int64_t, but has type )
I would have expected to see a type name there, of if there is somehow no type information, say why it is missing.
Software Environment
ADIOS2 reports datatypes as strings, and when a datatype cannot be found (e.g. when a variable is not found), it returns an empty string, which is what you're seeing here.
The error message seems a bit cryptic as a result, I'll look into making this more understandable.
Fixed with #1036