Hi! i’ve got a question regarding the C# driver. I’ve been trying to build an export tool for Cassandra based on your C# driver. I’m encountering an issue where, when tables have data with special characters, I dont receive these information within C#. Am I doing something wrong here, or is this a bug?
I’ve tried this on different environments (native cassandra on linux centos 7, docker setup on a windows vm). Both give the same result.
This is the data i put in cassandra:
t*\x10r>\nw@S=
This is what i get out:
t*x10r>nw@S=
Is there a way to get the backslashes as well?
EDIT: When I use the COPY command in cqlsh it does output the special characters.