Skip to content

Commit 4547223

Browse files
committed
update mysql_image.so to image.so
1 parent 51a778b commit 4547223

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ mysql-image-plugin
33

44
Build
55
-----
6-
gcc -I/usr/include/mysql -I./ -fPIC -shared -o mysql_image.so image.c
7-
sudo mv mysql_image.so /usr/lib/mysql/plugin/
6+
gcc -I/usr/include/mysql -I./ -fPIC -shared -o image.so image.c
7+
sudo mv image.so /usr/lib/mysql/plugin/
88

99
Setup
1010
-----
11-
mysql> create function image_check returns string soname 'mysql_image.so';
11+
mysql> create function image_check returns string soname 'image.so';
1212
Query OK, 0 rows affected (0.44 sec)
1313

1414
Test
@@ -21,9 +21,9 @@ Plugin
2121
drop function image_remove;
2222
drop function image_rename;
2323

24-
create function image_check returns string soname 'mysql_image.so';
25-
create function image_remove returns string soname 'mysql_image.so';
26-
create function image_rename returns string soname 'mysql_image.so';
24+
create function image_check returns string soname 'image.so';
25+
create function image_remove returns string soname 'image.so';
26+
create function image_rename returns string soname 'image.so';
2727

2828
select image_check('/tmp/filename');
2929
select image_remove('/tmp/filename');

0 commit comments

Comments
 (0)