Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/springmt/mysql-benchmark
https://github.com/springmt/mysql-benchmark
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/springmt/mysql-benchmark
- Owner: SpringMT
- Created: 2019-06-19T14:26:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T01:18:06.000Z (over 5 years ago)
- Last Synced: 2024-04-14T11:51:23.979Z (10 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mysql-benchmark
## sequence table schema
Database : test_seq```
CREATE DATABASE test_seq;
use test_seq;
CREATE TABLE IF NOT EXISTS sequence (
id bigint(20) unsigned DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_bin ROW_FORMAT=DYNAMIC;
INSERT IGNORE INTO sequence VALUES (0);CREATE TABLE IF NOT EXISTS sequence_myiasm (
id bigint(20) unsigned DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_bin ROW_FORMAT=DYNAMIC;
INSERT IGNORE INTO sequence_myiasm VALUES (0);
```### GRANT
```
GRANT ALL PRIVILEGES ON test_seq.* TO root@'127.0.0.1';
```