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

mariadb

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

xaragen
xaragen commented Aug 10, 2021

Working on a project I ran into the documentation for customizing the Foreign Key.
The docs read:

// https://sequelize.org/master/manual/assocs.html
// For example, to use UUID as the foreign key data type instead of the default (INTEGER), you can simply do:

const { DataTypes } = require("Sequelize");

Foo.hasOne(Bar, {
  foreignKey: {
    // name: 'myFooId'
    type: D
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

ChrisHSandN
ChrisHSandN commented Nov 9, 2021

Is your feature request related to a problem? Please describe.

FKs are assigned an automatic name which ends with a numeric suffix _1, _2 etc, Once this goes over _10 PMAs orders them e.g. 1, 10, 2, 3 etc.

To Replicate

# create a table
CREATE TABLE `2_test` (
  `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB;

# create an
AleVul
AleVul commented Mar 25, 2021

I have trouble using (or understanding how to use) sqlx::Type. I have derived it for a wrapper around a String.
As far as I understand, this should implement Encode and Decode traits for the wrapper type and as a consequence I should be able to pass an instance of the wrapper type to query! macro, but I get an error stating that the drivers expects an &str instead of the wrapper type.

rioshaz
rioshaz commented Oct 29, 2021

when u click on the notification bell icon ,, u can see all notifications in a list and when u click any notication the notificaiton list doesnt auto disappear then we have to manually click anywhere else on the screen for it to go away..

this gets worst when in mobile view.... as the notification pop up when clicked on bell icon take all space and one doesnt realise clicking the notifcaiotn h

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