The Wayback Machine - https://web.archive.org/web/20211023211931/https://github.com/topics/mariadb
Skip to content
#

mariadb

Here are 2,139 public repositories matching this topic...

prisma
binary64
binary64 commented Aug 2, 2021

Bug description

On windows, I run prisma format and note the unusual file ending. The lines are all LF, but the very last line is CRLF.

This causes issue on my Linux CI where it formats it ending in LF's only, causing a diff to occur and the build to fail.

How to reproduce

  1. On windows do prisma format
  2. Open in HxD or similar
  3. See attached:

![image](https://user-images.g

philippeitis
philippeitis commented Oct 20, 2021

sqlx provides functionality for setting the persistence of Query, but not QueryAs, QueryScalar.

In my case, I'm using caching to store parsed data from SQLite, and I only load data which is not in the cache, using WHERE ... IN (uncached_ids). However, each of these statements is very likely to be unique, which causes sqlx to cache a lot of similar statements and bloat memory usage in my appl

jods4
jods4 commented Oct 18, 2021

This is not a bug, everything works fine. It's a small SQL codegen improvement.

linq2db uses nvl to translate ??, which is nice because it's shorter than SQL standard coalesce.

The trick with nvl is that it only accepts 2 parameters, whereas coalesce accepts many.

In our codebase, we have a query that computes an error message based on a list of checks, it looks like this:
![im

Improve this page

Add a description, image, and links to the mariadb topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mariadb topic, visit your repo's landing page and select "manage topics."

Learn more