diff options
author | unknown <monty@donna.mysql.com> | 2001-01-08 00:04:30 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-08 00:04:30 +0200 |
commit | fc4a3ef7c11446ba1159e4873c3323d6fa2fcc60 (patch) | |
tree | 500feaf42e43ee02e3822a280b03319bcd8f3abe /scripts | |
parent | 92a3aedc05dd07e1d00986f237a2097af595e584 (diff) | |
download | mariadb-git-fc4a3ef7c11446ba1159e4873c3323d6fa2fcc60.tar.gz |
Fixed bug when having many binary log files
Fixed bug when deleting keys with possible NULL values
many changes to mysqltest
Docs/Makefile.am:
Don't print warnings when making ..dvi
Docs/manual.texi:
Documented changes
acinclude.m4:
Fixed bug in detecting BDB version 3.2.3g
client/mysqltest.c:
Added TODO
Cleanups
Free all memory and close all files on exit
configure.in:
New release
include/my_sys.h:
Added new function needed for mysqltest.c
myisam/mi_create.c:
Cleanup
myisam/mi_delete.c:
Fixed bug when deleting keys with NULL
myisam/mi_search.c:
cleanup
myisam/myisamchk.c:
Added info about fulltext to -D
mysql-test/mysql-test-run.sh:
Use less memory for mysqld
Don't remove timefile if only testing one test
Send option --debug to mysqltest
mysql-test/r/fulltext.result:
New tests
mysql-test/r/func_math.result:
Make test portable
mysql-test/t/fulltext.test:
New tests
mysql-test/t/func_math.test:
Make test portable
mysys/mf_iocache2.c:
Fixed bug when reading over buffers
mysys/string.c:
Added new function needed for mysqltest.c
mysys/typelib.c:
cleanup
scripts/make_binary_distribution.sh:
Added option suffix
Removed some warnings for missing files
scripts/mysql_install_db.sh:
Fixed type
scripts/safe_mysqld.sh:
Also read options from 'server' group
sql-bench/Results/ATIS-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/RUN-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/alter-table-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/big-tables-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/connect-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/create-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/insert-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/select-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/Results/wisconsin-mysql-Linux_2.2.13_SMP_alpha:
New benchmark run
sql-bench/bench-init.pl.sh:
Added missing option '--silent'
sql/mysqld.cc:
Added warnings
Print backtraces even if 'current_thd' is not active
support-files/mysql.spec.sh:
Removed duplicate entry
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_binary_distribution.sh | 33 | ||||
-rw-r--r-- | scripts/mysql_install_db.sh | 2 | ||||
-rw-r--r-- | scripts/safe_mysqld.sh | 2 |
3 files changed, 25 insertions, 12 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 48057b43a76..14c4b616dec 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -18,6 +18,14 @@ then shift 1 fi +# Get optional suffix for distribution +SUFFIX="" +if test $# -gt 0 -a x$1 != x"-debug" +then + SUFFIX=$1 + shift 1 +fi + if test x$1 = x"-debug" then DEBUG=1 @@ -33,7 +41,7 @@ fi BASE=$TMP/my_dist if [ -d $BASE ] ; then - rm -rf $BASE + rm -r -f $BASE fi mkdir $BASE $BASE/bin $BASE/data $BASE/data/mysql $BASE/data/test \ @@ -56,7 +64,10 @@ for i in extra/comp_err extra/replace extra/perror extra/resolveip \ client/mysqladmin client/mysqldump client/mysqlimport client/mysqltest \ client/.libs/mysql client/.libs/mysqlshow client/.libs/mysqladmin client/.libs/mysqldump client/.libs/mysqlimport client/.libs/mysqltest do - cp -p $i $BASE/bin + if [ -f $i ] + then + cp -p $i $BASE/bin + fi done cp -p config.h include/* $BASE/include @@ -67,10 +78,8 @@ cp -p support-files/* $BASE/support-files cp -p libmysql/.libs/libmysqlclient.a libmysql/.libs/libmysqlclient.so* libmysql/libmysqlclient.* libmysql_r/.libs/libmysqlclient_r.a libmysql_r/.libs/libmysqlclient_r.so* libmysql_r/libmysqlclient_r.* mysys/libmysys.a strings/libmystrings.a dbug/libdbug.a $BASE/lib cp -r -p sql/share/* $BASE/share/mysql rm -f $BASE/share/mysql/Makefile* $BASE/share/mysql/*/*.OLD -rm -rf $BASE/share/SCCS $BASE/share/*/SCCS cp -p mysql-test/mysql-test-run mysql-test/install_test_db $BASE/mysql-test/ -cp -p mysql-test/create-test-result $BASE/mysql-test cp -p mysql-test/README $BASE/mysql-test/README cp -p mysql-test/include/*.inc $BASE/mysql-test/include cp -p mysql-test/std_data/*.dat mysql-test/std_data/*.frm \ @@ -89,13 +98,17 @@ mv $BASE/support-files/binary-configure $BASE/configure chmod a+x $BASE/bin/* $BASE/scripts/* $BASE/support-files/mysql-* $BASE/configure cp -r -p sql-bench/* $BASE/sql-bench rm -f $BASE/sql-bench/*.sh $BASE/sql-bench/Makefile* $BASE/lib/*.la -rm -rf `find $BASE/sql-bench -name SCCS` -rm -rf `find $BASE/share -name SCCS` -# Change the distribution to a long descreptive name -NEW_NAME=mysql-$version-$system-$machine +# Clean up if we did this from a bk tree +if [ -d $BASE/sql-bench/SCCS ] ; then + find $BASE/share -name SCCS -print | xargs rm -r -f + find $BASE/sql-bench -name SCCS -print | xargs rm -r -f +fi + +# Change the distribution to a long descriptive name +NEW_NAME=mysql-$version-$system-$machine$SUFFIX BASE2=$TMP/$NEW_NAME -rm -rf $BASE2 +rm -r -f $BASE2 mv $BASE $BASE2 BASE=$BASE2 # @@ -160,6 +173,6 @@ cd $SOURCE echo "Compressing archive" gzip -9 $NEW_NAME.tar echo "Removing temporary directory" -rm -rf $BASE +rm -r -f $BASE echo "$NEW_NAME.tar.gz created" diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index efb92bb7f62..068fc4a384a 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -10,7 +10,7 @@ IN_RPM=0 case "$1" in -IN-RPM) - IN_RPM="$1"; shift + IN_RPM="1"; shift ;; esac defaults= diff --git a/scripts/safe_mysqld.sh b/scripts/safe_mysqld.sh index 0265dcdeeb9..fc89f0c7848 100644 --- a/scripts/safe_mysqld.sh +++ b/scripts/safe_mysqld.sh @@ -110,7 +110,7 @@ else fi args= -parse_arguments `$print_defaults $defaults mysqld safe_mysqld` +parse_arguments `$print_defaults $defaults mysqld server safe_mysqld` parse_arguments PICK-ARGS-FROM-ARGV "$@" if test ! -x $ledir/$MYSQLD |