Deprecation of .Net Standard 2.0

2022-01-31 Thread kyle minmaxcorp.com
.Net Standard 2.0 is the last version of the framework that will support the .Net Framework 4.6.2+. Currently there is no end of life date set for the .Net Framework 4.6.2+ (although estimated in the next 3 to 5 years). The Avro project currently only tests the .Net Core 3.1, .Net 5 and .Net 6 f

Re: [DISCUSS] dotnet (and others) standards and quality

2022-02-10 Thread kyle minmaxcorp.com
Ryan, thanks for calling this out. I just created https://issues.apache.org/jira/browse/AVRO-3383 to start addressing coding style guidelines. We currently have the editorconfig set to the same standards as the dotnetcore runtime repository https://github.com/dotnet/runtime So to answer #1, th

Schema ToString

2022-02-28 Thread kyle minmaxcorp.com
I am noticing a difference between Java and C# versions of Avro when I call Schema.ToString(). First, is that the C# version adds the namespace to each Named schema. Second, is the order of the output. I would expect across languages that we output the same JSON string. The following took a

Re: Schema ToString

2022-03-07 Thread kyle minmaxcorp.com
ation and doing a bit of prototyping before writing the actual story for implementation. Once I'm done, I want to run the design by you and Ryan (and anyone else that wants to contribute). > On March 3, 2022 1:09 PM Martin Grigorov wrote: > > > > > > On Tue, Mar 1,

Re: Schema ToString

2022-03-08 Thread kyle minmaxcorp.com
t; On March 7, 2022 1:49 PM Martin Grigorov wrote: > > > > > > On Mon, Mar 7, 2022 at 8:46 PM kyle minmaxcorp.com (http://minmaxcorp.com) > wrote: > > What exactly is the value of having the same output in mixed environments ? > > Or: what kind of problems do you

Duration spec change

2022-04-13 Thread kyle minmaxcorp.com
When it comes to a duration type, both years and months are not standard increments. We would have to know the start datetime and end datetime to calculate the actual values. Current Text: Duration The duration logical type represents an amount of time defined by a number of months, days and

Re: Duration spec change

2022-04-13 Thread kyle minmaxcorp.com
mentally breaking change? What value do > weeks have over days? For context in SQL systems there are generally two > different durations (Year-Month) and (Days/Seconds). Some systems combine the > two (e.g. Postgres and BigQuery). > > Cheers, > Micah > > > On Wed

Re: Duration spec change

2022-04-13 Thread kyle minmaxcorp.com
e duration logical type represents an amount of time defined by the > > > > number of weeks, days, and milliseconds. > > > Changing to weeks seems like a fundamentally breaking change? What value > > > do weeks have over days? For context in SQL systems there are gene