Update of /cvsroot/lxr/lxr
In directory sc8-pr-cvs1:/tmp/cvs-serv7177
Modified Files:
initdb-mysql
Log Message:
Fix bad SQL syntax
Index: initdb-mysql
===================================================================
RCS file: /cvsroot/lxr/lxr/initdb-mysql,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- initdb-mysql 29 Jul 2002 01:06:02 -0000 1.8
+++ initdb-mysql 2 May 2003 22:58:34 -0000 1.9
@@ -1,7 +1,7 @@
/* Read this into mysql with "\. initdb-mysql" when logged in as root
to delete the old lxr database and create a new */
-drop if exists database lxr;
+drop database if exists lxr;
create database lxr;
use lxr;
|