-
Updated
Jun 24, 2022 - Java
MySQL

MySQL is an open source relational database management system. Based in Structured Query Language (SQL), MySQL can run on most platforms and is mainly used for web-based applications. It is written in C and C++.
Here are 42,629 public repositories matching this topic...
-
Updated
Jun 22, 2022 - Java
Describe the bug
At the time of registration, email has not been validated correctly http://localhost:1337/admin/auth/register
Expected behavior
An email should be valid in all aspect like
- should check valid domain, well-formed and valid mailbox
Enhancement
Actual:
mysql> CREATE TABLE t1 (a BINARY(16) PRIMARY KEY);
Query OK, 0 rows affected (0.02 sec)
mysql> INSERT INTO t1 VALUES (AES_ENCRYPT('a','a'));
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO t1 VALUES (AES_ENCRYPT('a','a'));
ERROR 1062 (23000): Duplicate entry '{ W]�u����.�٧t' for key 'PRIMARY'
Expected:
mysql> CREATE TABLE t1 (a BI
-
Updated
Jun 24, 2022 - Clojure
-
Updated
Jun 24, 2022 - TypeScript
Node: v12.22.12
Arch: x64
Platform: linux (QNAP TS-251)
Docker: true
Database: mysql2
ProjectOnRootDB: false
RootDB: mysql2
PackageVersion: 0.91.10
DataBase Version: MariaDB 10.5.8
Steps To Reproduce
- In table "Arztadressen" set pictures of doctors
- Create link from "Impfbuch Werner" to "Arztadressen"
- Set column in table "Impfbuch Wern
Sometimes it is needed to store compressed data in the DB. Unfortunately not all the DBs have built-in compression and FUSE compressed FSes are not available for every OS. So it may make sense to store compressed binary blobs in the DB.
Unfortunately when one sees them in DBeaver he sees them compressed, but often they are needed uncompressed. So it'd be nice to have a feature to decompress the
If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'
sequelize translates it to this for mysql
CREATE TABLE IF NOT EXISTS
tablename ... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;
On stepping through the code, it seems that the issu
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
- On windows do prisma format
- Open in HxD or similar
- See attached:
![image](https://user-images.g
-
Updated
May 29, 2022 - Java
-
Updated
Jun 24, 2022 - Python
-
Updated
Mar 14, 2022 - JavaScript
-
Updated
Jun 24, 2022 - PHP
Describe the Bug
Currently, if sending the email notification fails, no notification record is created. The record should be created first in case email sending fails for whatever reason.
Maybe if it does fail, that could be another notification record to the admin with a high alert level?
To Reproduce
As above.
Errors Shown
No response
What version of Directus are you u
Hi community:
Now,the ShardingSphere can print exception log when we want to excute error SQL.
For example Cause: com.google.common.util.concurrent.UncheckedExecutionException: org.apache.shardingsphere.sql.parser.exception.SQLParsingException: You have an error in your SQL syntax.
However, when throwing error sql exception, the shardingSphere cant print error sql needing to parse
-
Updated
May 18, 2022
Currently we only support Upsert for CockroachDB. Implementing same for MySQL should be pretty straightforward as well.
Wonder if we can also use INSERT ON CONFLICT UPDATE for PostgreSQL to ensure operation with same signature also works.
Our parser outputs all aggregations functions using the general sqlparser.FuncExpr
. This is a little clunky and requires us to do additional checks before we are sure that the aggregation we have is valid and what it is aggregating.
I suggest we instead introduce one struct type per aggregation, and have them all implement some interface. This would help clean up the code.
Example:
-
Updated
Jun 23, 2022 - Java
Describe the bug
Using a time dimension on a runningTotal measure on Snowflake mixes quoted and unquoted columns in the query. This fails the query, because Snowflake has specific rules about quoted columns. Specifically:
- All unquoted column names are treated as upper case
- Quoted column names are case sensitive.
So "date_from" <> date_from
To Reproduce
Steps to reproduce
-
Updated
Jun 24, 2022 - Java
-
Updated
Jun 21, 2022 - Java
Issue description
This option will improve performance in many scenarios
https://dev.mysql.com/worklog/task/?id=8134
https://www.facebook.com/weixiang.zhai/posts/678596755543802
-
Updated
Jun 19, 2022 - Java
FEAT: IN operator
Created by David Axmark, Allan Larsson and Michael "Monty" Widenius
Released May 23, 1995
- Organization
- mysql
- Website
- www.mysql.com
- Wikipedia
- Wikipedia
Some files that are maintained by logs squad have snake_case name. According to convention https://github.com/grafana/grafana/blob/765b995b1bcafe8b94d0bbe53737ea6c751d63c9/contribute/style-guides/frontend.md#file-and-directory-naming-conventions we should use
camelCase
. We should go trough the files and update names, so they use correct convention.Files in
grafana/grafana
repo