Wesley Baartman
Wesley Baartman
Probably easiest to solve #45 first.
@pvdstel any ideas what might be causing this? I haven't witnessed this ever happen before, so I kind of want to just throw it on "Overwolf shennanigans" and close it.
The change might have occured in .NET Core 2.2 rather than .NET Core 3.0, since that version also doesn't seem to work for me (except with the fix provided by...
After some tinkering, using my suggested fix breaks some of the unit tests, so that is not a proper solution for this problem.
@lukehutch Thank you for your response. When fiddling with things I came to a similar solution as you proposed, but I wasn't sure if that did not create new degenerate...
@exaexa The definition is only infinite for recursive decent parsering due to the left recursion. Which is the problem that this algorithm/paper tries to solve. Perhaps this specific case is...
@exaexa You're right. I didn't properly inspect my grammar, I assumed it was written as the last snippet you posted. However, I would expect it should be able to detect...
@JurJean Not all possible pg types have a direct equivalent json type. Date/time-like types are usually stored as some string in json, but you probably would want to treat them...
@jeremydmiller is there currently any alternative way of supporting custom types in marten v7? Specifically, we have some strongly typed reference identifiers that for all intents and purposes should just...
@jeremydmiller I was looking into doing that last night, but I ran into the issue that if I only handle it in the `CreateQueryableMember` location it would still fail somewhere...