diff options
author | monty@hundin.mysql.fi <> | 2001-11-25 13:50:48 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-11-25 13:50:48 +0200 |
commit | 777fdb5d5cf3d1fd2fb4fe013acec60ef38f5bce (patch) | |
tree | 20c1ecfa7529a49fc978cd3d82ae1115d507a9c0 /libmysqld | |
parent | 7f5f58dc8fbb16e238584c7bb8001ef0fb842569 (diff) | |
download | mariadb-git-777fdb5d5cf3d1fd2fb4fe013acec60ef38f5bce.tar.gz |
Fixes for embedded version.
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/WHITEPAPER | 16 | ||||
-rwxr-xr-x | libmysqld/examples/test-run | 1 |
2 files changed, 1 insertions, 16 deletions
diff --git a/libmysqld/WHITEPAPER b/libmysqld/WHITEPAPER deleted file mode 100644 index 191cdb4e0fd..00000000000 --- a/libmysqld/WHITEPAPER +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY VERSION DESIGN (EMBEDDED SERVER) - - -- The library version of MySQL server is the client library that contains embedded server. - -- This client DLL has name : libmysqlclient_e (.la) - -- The client application that supposed to use MySQL LV need to be rebuilt against libmysqlclient_e.la. The rebuild process is necessary, because libmysqlclient_e is a LIBTOOL object, which has the different LIBS list compared to the original libmysqlclient.la. - -- The client and the server code run in the same process and the same thread; - -- The server code is invoked when client writes the command to the net, and when connection is established; - - - - diff --git a/libmysqld/examples/test-run b/libmysqld/examples/test-run index d525c7a14a3..c7434488259 100755 --- a/libmysqld/examples/test-run +++ b/libmysqld/examples/test-run @@ -78,6 +78,7 @@ if test $clean = 1 then rm -f $datadir/ib_* $datadir/ibdata* rm -f $datadir/log.00* + rm -f $datadir/test/*.db fi rm -f $datadir/../tmp/* rm -f test-gdbinit |