jods
jods
Fix #3535 See #3537 for all details, this is a rebase on v6 `master`. The rebase was rather messy due to the many changes that have been made in v6...
(Sorry for the misclick with empty issue). I'm trying to create the following SQL (Oracle): ```sql select cat, min(name) keep (dense_rank first order by id) from T group by cat...
I saw this while reading source code: https://github.com/linq2db/linq2db/blob/master/Source/LinqToDB/SqlProvider/BasicSqlOptimizer.cs#L2882-L2886 That condition cannot be true, can it? `projectionItems` being the union of `columnItems` + something else, it cannot have less items than...
Linq2db usually evaluates boolean expressions such as `field == 1` correctly but I found a corner case where it did not: in the order by part of an analytical function....
Suppose you have this long chain of `&&`: ```csharp query.Where(x => x.N > 10 && x.N > 11 && x.N > 12 && x.N > 13 && x.N > 14)...
## Problem linq2db implementation of Power only accepts doubles and not decimals, unlike all other Math functions such Log or Round. `Sql.Power`: https://github.com/linq2db/linq2db/blob/master/Source/LinqToDB/Sql/Sql.cs#L1339 `Math.Pow`: https://github.com/linq2db/linq2db/blob/master/Source/LinqToDB/Linq/Expressions.cs#L1014 ## Consequences This can lead...
### Expected Behavior / Situation Here's my context: In a large application, I want to bundle related features into a single chunk. I have a way to know if a...
Naming your file `[...path].vue` generates the router path `:path(.*)`. This is documented here: https://uvr.esm.is/guide/file-based-routing.html#catch-all-404-not-found-route Vue Router documentation recommends using a repeated regex for catch-all routes, i.e. `:path(.*)*` (note extra star...
Is there any support for streaming into blobs? I could not find documentation, tests or issues about it. My scenario is: I receive potentially large files from the network and...
Since I know you're rewriting the LINQ parser for v4, I would like to suggest a refactoring that would simplify query processing and fix some edge cases. Specifically this is...