Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/springmt/mysql-benchmark


https://github.com/springmt/mysql-benchmark

Last synced: about 1 month ago
JSON representation

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';
```