-
Updated
Jun 30, 2021 - 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 31,436 public repositories matching this topic...
-
Updated
Jun 29, 2021 - Java
-
Updated
Jun 30, 2021 - Go
-
Updated
Jun 30, 2021 - Clojure
-
Updated
Jun 30, 2021 - TypeScript
Issue Description
What are you doing?
I am trying to strongly type my application using Typescript and Sequelize. I have noticed th
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
-
Updated
Jun 27, 2021 - Java
-
Updated
Jun 23, 2021 - Python
-
Updated
Jun 30, 2021 - JavaScript
-
Updated
Jun 30, 2021 - PHP
Feature request
Is there any chance to have a Knex native way to set "DEFERRABLE INITIALLY DEFERRED" on a table with foreign key constraints ?
knex.schema.table('users', function (table) {
table.integer('user_id').unsigned()
table.foreign('user_id').references('Items.user_id_in_items').deferred().
})
λ npx prisma generate
Environment variables loaded from .env
Prisma schema loaded from prisma\schema.prisma
✔ Generated Prisma Client (2.25.0) to .\prisma\foo in 738ms
You can now start using Prisma Client in your code. Reference: https://pris.ly/d/client
```
import { PrismaClient } from './prisma\foo'
const prisma = new PrismaClient()
```
Note the ./prisma\foo
. The path
Hi community,
This issue is for #10887.
Aim
Add unit test for shardingsphere-transaction-core project to test its public functions.
Basic Qualifications
- Java
- Maven
- Junit.Test
Classes
Add unit test for classes to test its public functions.
- ResourceDataSource
Examples FYI
- ResourceIDGeneratorTest
-
Updated
Jun 29, 2021 - Vue
For a query like:
SELECT * FROM test_table WHERE end >= '2001-02-03 04:05:06' limit 1;
VTGate as of v10.0.2 requires backticks around end
, while vanilla MySQL does not.
Specifically:
BEGIN
andEND
are keywords but not reserved, so their use as identifiers does not require quoting.
It seems like these should
The PUBLIC_URL env var is meant to be set to the full public URL of the instance (eg https://example.com
). When it's set to an absolute path (or the default) /
, Directus will mostly work, but can fail in some unexpected ways (eg emails will send with the wrong links, some public assets can't be loaded, etc.
We should show a warning in terminal on startup when PUBLIC_URL is an invalid URL
-
Updated
Jun 30, 2021 - 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
Describe the bug
If I pass 'Next 7 days' into the dateRange in query, the response is not a range over the next 7 days but only the day IN 7 days.
To Reproduce
Steps to reproduce the behavior:
- Build a query like this:
const query: Query = {
measures: [
measure
],
timeDimensions: [
{
dimension: 'Your.Dimension,
dateRange: 'Next 7
-
Updated
Jun 24, 2021 - Java
-
Updated
May 9, 2021 - Python
-
Updated
Jun 29, 2021 - Go
-
Updated
Jun 7, 2021 - Java
-
Updated
Jun 29, 2021 - Go
-
Updated
Jun 7, 2021 - Objective-C
-
Updated
Jun 3, 2021
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
Created by David Axmark, Allan Larsson and Michael "Monty" Widenius
Released May 23, 1995
- Organization
- mysql
- Website
- www.mysql.com
- Wikipedia
- Wikipedia
This is kind of a follow up to #32677 and the PR #34762.
In #34762 we improved the test data source implementation by checking the body of the response from Tempo. The Tempo team is not comfortable making the body of a 404 response part of our stable API, so instead we are currently adding a separate endpoint specifically for testing:
/api/echo
(grafana/tempo#714).