Re: C# and -1 null_count

2022-10-21 Thread Antoine Pitrou
Hello, Le 20/10/2022 à 17:32, John Muehlhausen a écrit :             if (fieldNullCount < 0)             {                 throw new InvalidDataException("Null count length must be >= 0"); // TODO:Localize exception message             } Above from Ipc/ArrowReaderImplementation.cs.

C# and -1 null_count

2022-10-20 Thread John Muehlhausen
if (fieldNullCount < 0) { throw new InvalidDataException("Null count length must be >= 0"); // TODO:Localize exception message } Above from Ipc/ArrowReaderImplementation.cs. pyarrow is fine with -1, probably due to the following. It would be