diff options
author | unknown <monty@donna.mysql.com> | 2000-09-02 07:58:42 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-09-02 07:58:42 +0300 |
commit | 40f6a9a9da1b6aeda9a850e468cb3f584caaa254 (patch) | |
tree | 28fa78a52ce90f0133e1275fabcefa57cfc8fa02 /Build-tools | |
parent | 5a95cfdd68544f1728f7c2d3e92220bcafb7ac1a (diff) | |
download | mariadb-git-40f6a9a9da1b6aeda9a850e468cb3f584caaa254.tar.gz |
Quoting of TIMESTAMP columns and small optimizations
Build-tools/Do-compile:
Fixes for remote build
Docs/manual.texi:
Mainly updates for Access 2000
client/mysqldump.c:
Added quoting of TIMESTAMP columns
include/mysql.h:
Added quoting of TIMESTAMP columns
include/mysql_com.h:
Added quoting of TIMESTAMP columns
libmysql/libmysql.c:
Added quoting of TIMESTAMP columns
scripts/mysql_install_db.sh:
Fixed http address
sql-bench/Results/ATIS-mysql-NT_4.0:
New test results
sql-bench/Results/RUN-mysql-NT_4.0:
New test results
sql-bench/Results/alter-table-mysql-NT_4.0:
New test results
sql-bench/Results/big-tables-mysql-NT_4.0:
New test results
sql-bench/Results/connect-mysql-NT_4.0:
New test results
sql-bench/Results/create-mysql-NT_4.0:
New test results
sql-bench/Results/insert-mysql-NT_4.0:
New test results
sql-bench/Results/select-mysql-NT_4.0:
New test results
sql-bench/Results/wisconsin-mysql-NT_4.0:
New test results
sql/ChangeLog:
Changelog
sql/field.h:
Added quoting of TIMESTAMP columns
sql/mysql_priv.h:
Optimizing
sql/mysqld.cc:
Optimizing
sql/sql_class.cc:
Optimizing
sql/sql_parse.cc:
Added use of new 'localhost' variable
sql/violite.c:
Fixed print bug
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 50d2fcd7977..5dc43658231 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -4,8 +4,8 @@ use Getopt::Long; $opt_distribution=$opt_user=$opt_result=$opt_config_options=$opt_config_env=""; $opt_dbd_options=$opt_perl_options=""; $opt_tmp=""; -$opt_help=$opt_Information=$opt_no_delete=$opt_debug=$opt_stage=$opt_rsh_mail=$opt_no_test=$opt_no_perl=$opt_with_low_memory=$opt_fast_benchmark=$opt_static_client=$opt_static_server=$opt_static_perl=$opt_sur=$opt_with_small_disk=$opt_local_perl=0; -GetOptions("Information","help","distribution=s","user=s","result=s","no-delete","no-test","perl-files=s","debug","config-options=s","config-env=s","stage=i","rsh-mail","with-low-memory","fast-benchmark","tmp=s","static-client","static-server","static-perl","no-perl","local-perl","perl-options=s","sur","with-small-disk","dbd-options=s") || usage(); +$opt_help=$opt_Information=$opt_no_delete=$opt_debug=$opt_stage=$opt_rsh_mail=$opt_no_test=$opt_no_perl=$opt_with_low_memory=$opt_fast_benchmark=$opt_static_client=$opt_static_server=$opt_static_perl=$opt_sur=$opt_with_small_disk=$opt_local_perl=$opt_tcpip=0; +GetOptions("Information","help","distribution=s","user=s","result=s","no-delete","no-test","perl-files=s","debug","config-options=s","config-env=s","stage=i","rsh-mail","with-low-memory","fast-benchmark","tmp=s","static-client","static-server","static-perl","no-perl","local-perl","perl-options=s","sur","with-small-disk","dbd-options=s","tcpip") || usage(); usage() if ($opt_help || $opt_Information); usage() if (!$opt_distribution); @@ -20,6 +20,7 @@ $log="$pwd/Logs/$host.log"; $opt_distribution =~ /(mysql-[^\/]*)\.tar/; $ver=$1; $gcc_version=which("gcc"); +$connect_option= ($opt_tcpip ? "--host=$host" : ""); if (defined($gcc_version) && ! $opt_config_env) { $tmp=`$gcc_version -v 2>&1`; @@ -185,7 +186,7 @@ if ($opt_stage <= 7 && !$opt_no_test) { safe_cd("$test_dir/sql-bench"); log_system("rm -f limits/mysql.cfg"); - safe_system("perl ./crash-me --force --batch-mode"); + safe_system("perl ./crash-me --force --batch-mode $connect_option"); } if ($opt_stage <= 8 && !$opt_no_test) @@ -193,7 +194,7 @@ if ($opt_stage <= 8 && !$opt_no_test) safe_cd("$test_dir/sql-bench"); log_system("rm -f output/*"); $tmp= $opt_fast_benchmark ? "--fast --user root --small-test" : ""; - check_system("perl ./run-all-tests --log --die-on-errors $tmp","RUN-mysql"); + check_system("perl ./run-all-tests --log --die-on-errors $connect_option $tmp","RUN-mysql"); } if ($opt_stage <= 9 && $opt_result) |