-
Updated
Jun 19, 2020 - 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 23,082 public repositories matching this topic...
-
Updated
Jun 21, 2020 - Java
Feature Request
Is your feature request related to a problem? Please describe:
This is a really minor nit, but the EXPLAIN output on binary strings is different from what I expected:
CREATE TABLE t1 (
id INT NOT NULL PRIMARY KEY auto_increment,
b varchar(255) not null,
c varbinary(255) not null,
index (b),
index (c)
);
INSERT INTO t1 (b,c) VALUES ('a', 'a'),('b
When adding a new data store database in Metabase it tries to connect first with SSL (if the driver supports SSL), and then without, in that order. If either connection succeeds, the database details are accepted as valid. Yes, you can add driver specific JDBC options to use SSL, but there is no good feed
Issue type:
[x] question
[ ] bug report
[ ] feature request
[x] documentation issue
Database system/driver:
[ ] cordova
[x] mongodb
[ ] mssql
[ ] mysql
/ mariadb
[ ] oracle
[ ] postgres
[ ] cockroachdb
[ ] sqlite
[ ] sqljs
[ ] react-native
[ ] expo
TypeORM version:
[x] latest
[ ] @next
[ ] 0.x.x
(or put your version here)
@madAndroid was kind enough to provide instructions on how to configure Redash with Auth0/SAML on the forum: https://discuss.redash.io/t/auth0-integration/586/5.
We should port this over to the Knowledge Base (either as a section in the Authentication Options page or a dedicated one).
I am making a health check endpoint for kubernetes (google cloud's service to host containerized applications) for my mySql application.
right now I am using this package https://www.npmjs.com/package/health-check-mysql
But is there something built into the package itself, something like a isConnected method. ie:
connection.isConnected() ? throw new Error('not connected to mysql') : null
-
Updated
Jun 19, 2020 - Java
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
I learned this by digging through the code base for a while, and uncovered:
From which I deduce that in the same directory where I might have a config/config.ini.php
file, I can also have a config/blog.example.org.config.ini.php
file - which, if it exists will be used instead.
Environment
Knex version: 0.20.10
Database + version: Postgres 12
Bug
- Explain what kind of behaviour you are getting and how you think it should do
knex.raw("?", [
knex.insert({ id: "b", fields: { a: undefined } }).into("test"),
])
- Error message
Hi everyone. Welcome your joining!
Content: Update the configuration of the sharding algorithm for Sharding SpringBoot with the new API.
Difficulty rating: ★☆☆☆☆
Note: To make each ISSUE simple, we split a bulky ISSUE into a few small ones. Just follow the comment below to create your PR.
Overview of the Issue
docker/test/run.sh
doesn't work on macOS.
The script is trying to mount /dev/log
that doesn't exist on macOS. We should probably use /var/run/syslog
.
Reproduction Steps
Run docker/test/run.sh mysql57 "make build"
on macOS.
Operating sy
Feature request description
For now the only way to add TLS validation is though code with RegisterTLSConfig. With providing certificate path though DSN (like pq is doing it) all existing applications will receive TLS certificate validation out of the
Multi-line queries have a prompt_continuation (or not currently, due to issue 681, but that's beside the point). But even with prompt_continuation set to an empty string, it starts the next line indented, even when it's just due to wrapping at the edge of the terminal window:
db> select "example text that wraps onto the nex
t line";
I often copy/paste my query fr
If I were to deploy cube.js using AWS serverless architecture, is athena required?
The docs https://cube.dev/docs/deployment#serverless do not mention whether Athena is optional or required. But when reading it, I assume it is required because there are athena keys in the serverless.yml config. I'm evaluating the idea of using Postgres RDS as the sole datasource for cubejs.
Not really an issue, but rather another use of the tool that could be advertised in the documentation.
We have slaves that have discrepancies (missing rows, rows with some different values) as highlighted by a very long run of pt-table-checksum. We tried fixing these tables with pt-table-sync with no success.
By running gh-ost on a master using RBR (does not work with statement based replica
Description
A clear and concise description of what the bug is.
Steps To Reproduce
- Go here: https://sequelpro.com/docs/get-started/get-connected/local-mysql
- Click on "Where are MySQL's Files?" here:
Let's support at least reading "b3" header from a single string, most commonly traceid-spanid-1
It would also be nice to support optionally writing this, especially in message providers or others with constrained environments.
Expected behavior
As discussed on openzipkin/b3-propagation#21 and first implemented here: https://github.com/openzipkin/brave/blob/master/brave/src/main/java/bra
We already have most of our Directus API 2.x endpoints/params within Paw for testing. We could finish adding all of these and then potentially use their code generators to create SDKs for our secondary languages.
https://paw.cloud/docs/extensions/create-code-generator
We also have a Swagger file for 98% of API 1.1 — so we could update that (and make sure that OpenAPI allows for our filteri
-
Updated
Jun 20, 2020 - Java
-
Updated
Apr 3, 2020 - Go
Currently PyMySQL determines SSL/TLS verify_mode automatically here. https://github.com/PyMySQL/PyMySQL/blob/master/pymysql/connections.py#L337
Related issues: (it is not a PyMySQL bug.) PyMySQL/PyMySQL#430
My suggestion is to add configuration so that users can specify any of the verify_mode (ssl.CERT_NONE, ssl.CERT_OPTIONAL, ssl.CERT_REQUIRED) defined in ssl.py.
In the tutorial events there is this example:
const User = bookshelf.model('User', {
tableName: 'users',
initialize() {
this.on('saving', (model) => {
return User.forge({email: model.get('email')}).fetch().then((user) => {
if (user)
throw new Error('That email address already exists')
-
Updated
Jun 20, 2020 - Go
Created by David Axmark, Allan Larsson and Michael "Monty" Widenius
Released May 23, 1995
- Organization
- mysql
- Website
- www.mysql.com
- Wikipedia
- Wikipedia
Steps to reproduce:
On a template variable with multi-select:
Actual Result:
The space bar input is appended or prepended to the search text.
Expected Result
The search text should remained unchanged, since focus is on a dropdown item.
**Releva