Skip to content

Commit 2fa2149

Browse files
Updated readme file
1 parent ae3dff5 commit 2fa2149

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Random data generator for MySQL
22
[![Build Status](https://travis-ci.org/Percona-Lab/mysql_random_data_load.svg?branch=master)](https://travis-ci.org/Percona-Lab/mysql_random_data_load)
33

4-
Many times in my job i need to generate random data for a specific table in order to reproduce an issue.
4+
Many times in my job I need to generate random data for a specific table in order to reproduce an issue.
55
After writing many random generators for every table, I decided to write a random data generator, able to get the table structure and generate random data for it.
66
Plase take into consideration that this is the first version and it doesn't support all field types yet!
77

@@ -119,7 +119,7 @@ CREATE TABLE `test`.`t3` (
119119
```
120120
To generate 100K random rows, just run:
121121
```
122-
random-data-load test t3 100000 --max-threads=8 --user=root --password=root
122+
mysql_random-data-load test t3 100000 --user=root --password=root
123123
```
124124
```
125125
mysql> select * from t3 limit 1\G
@@ -162,21 +162,18 @@ There are binaries available for each version for Linux and Darwin. You can find
162162

163163
https://github.com/Percona-Lab/mysql_random_data_load/releases
164164

165-
You can copy a link for the binary you want (in this case for 1.0.5), and use wget to download:
166-
167-
```
168-
cd ~/bin/
169-
wget https://github.com/Percona-Lab/mysql_random_data_load/releases/download/0.1.5/mysql_random_data_load_linux_amd64
170-
chmod +x mysql_random_data_load_linux_amd64
171-
```
172-
173165
## To do
174166
- [ ] Add suport for all data types.
175167
- [X] Add supporrt for foreign keys.
176168
- [ ] Support config files to override default values/ranges.
177169
- [ ] Support custom functions via LUA plugins.
178170

179-
## Versions history
171+
## Version history
172+
173+
#### 0.1.8
174+
- Fixed error for triggers created with MySQL 5.6
175+
- Added Travis-CI
176+
- Code clean up
180177

181178
#### 0.1.7
182179
- Support for MySQL 8.0

0 commit comments

Comments
 (0)