Skip to content

Commit f7def75

Browse files
authored
Update README.md
1 parent bb2a34b commit f7def75

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ mysql-image-plugin
55

66
Build
77
-----
8+
cd /usr/local/src/
9+
git clone https://github.com/netkiller/mysql-image-plugin.git
10+
cd mysql-image-plugin/
11+
yum install cmake
12+
813
cmake .
914
make && make install
1015

@@ -24,18 +29,23 @@ Test
2429

2530
Plugin
2631
------
27-
drop function image_check;
28-
drop function image_remove;
29-
drop function image_rename;
30-
drop function image_crc32;
31-
drop function image_move;
32+
33+
### Install
3234

3335
create function image_check returns string soname 'libimage.so';
3436
create function image_remove returns string soname 'libimage.so';
3537
create function image_rename returns string soname 'libimage.so';
3638
create function image_crc32 returns string soname 'libimage.so';
3739
create function image_move returns string soname 'libimage.so';
3840

41+
### Uninstall
42+
43+
drop function image_check;
44+
drop function image_remove;
45+
drop function image_rename;
46+
drop function image_crc32;
47+
drop function image_move;
48+
3949
Example
4050
-------
4151
select image_check('/path/filename.ext');

0 commit comments

Comments
 (0)