diff options
author | unknown <monty@donna.mysql.com> | 2000-11-18 23:13:48 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-11-18 23:13:48 +0200 |
commit | 7014505576f88955b1dbf4f2edbea30daaf0d4f9 (patch) | |
tree | 287897ebd815b64a05c0ca7076beccd5245a2f8d /vio | |
parent | 77a1a9124092a6c152b91c627dcc4ed9dbca919a (diff) | |
download | mariadb-git-7014505576f88955b1dbf4f2edbea30daaf0d4f9.tar.gz |
Fixed some reported bugs
BUILD/compile-alpha-cxx:
Building on Alpha with Compaq C and C+++
Docs/manual.texi:
Changelogs and update of links
myisam/mi_key.c:
Fixed multi_part keys where first part where of TEXT/BLOB type
mysys/Makefile.am:
Makefile.am now works with Compaq make
sql-bench/Results/ATIS-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/RUN-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/alter-table-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/big-tables-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/connect-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/create-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/insert-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/select-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/Results/wisconsin-mysql-Linux_2.2.13_SMP_alpha:
New benchmark results
sql-bench/test-select.sh:
Made the count_distinct_big test a bit smaller
sql/log.cc:
Changed the slow log format to have more information by default
sql/mysqld.cc:
false->FALSE
sql/share/german/errmsg.sys:
Update of messages
sql/share/german/errmsg.txt:
Update of messages
sql/sql_base.cc:
Fixed SELECT DISTINCT *
sql/sql_insert.cc:
Cleanup
sql/sql_table.cc:
Added logging of DROP of temporary tables
vio/VioFd.cc:
false -> FALSE
vio/VioSSL.cc:
false -> FALSE
vio/VioSSLFactoriesFd.cc:
false -> FALSE
vio/VioSocket.cc:
false -> FALSE
Diffstat (limited to 'vio')
-rw-r--r-- | vio/VioFd.cc | 4 | ||||
-rw-r--r-- | vio/VioSSL.cc | 4 | ||||
-rw-r--r-- | vio/VioSSLFactoriesFd.cc | 4 | ||||
-rw-r--r-- | vio/VioSocket.cc | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/vio/VioFd.cc b/vio/VioFd.cc index 3c6b0108fee..da59798fc25 100644 --- a/vio/VioFd.cc +++ b/vio/VioFd.cc @@ -82,13 +82,13 @@ VioFd::keepalive(boolonoff) bool VioFd::fcntl() const { - return false; + return FALSE; } bool VioFd::should_retry() const { - return false; + return FALSE; } int diff --git a/vio/VioSSL.cc b/vio/VioSSL.cc index a8efacf912f..15964c09aba 100644 --- a/vio/VioSSL.cc +++ b/vio/VioSSL.cc @@ -48,7 +48,7 @@ report_errors() VioSSL::VioSSL(int fd, vio_ptr ssl_context, int state) - : bio_(0), ssl_con_(0), open_(false), sd_(new VioSocket(fd)) + : bio_(0), ssl_con_(0), open_(FALSE), sd_(new VioSocket(fd)) { DBUG_ENTER("VioSSL::VioSSL"); DBUG_PRINT("enter", ("this=%p, fd=%d, ssl_context=%p, state=%d", @@ -66,7 +66,7 @@ VioSSL::VioSSL(int fd, VioSSL::VioSSL(VioSocket* sd, vio_ptr ssl_context, int state) - :bio_(0), ssl_con_(0), open_(false), sd_(sd) + :bio_(0), ssl_con_(0), open_(FALSE), sd_(sd) { DBUG_ENTER("VioSSL::VioSSL"); DBUG_PRINT("enter", diff --git a/vio/VioSSLFactoriesFd.cc b/vio/VioSSLFactoriesFd.cc index 3fa660c049c..bd64202770a 100644 --- a/vio/VioSSLFactoriesFd.cc +++ b/vio/VioSSLFactoriesFd.cc @@ -24,8 +24,8 @@ VIO_NS_BEGIN #define this_ssl_context my_static_cast(SSL_CTX*)(this->ssl_context_) typedef unsigned char* ssl_data_ptr_t; -static bool ssl_algorithms_added = false; -static bool ssl_error_strings_loaded= false; +static bool ssl_algorithms_added = FALSE; +static bool ssl_error_strings_loaded= FALSE; static int verify_depth = 0; static int verify_error = X509_V_OK; diff --git a/vio/VioSocket.cc b/vio/VioSocket.cc index cefb0b4bdc1..e8390edb98a 100644 --- a/vio/VioSocket.cc +++ b/vio/VioSocket.cc @@ -73,7 +73,7 @@ VIO_NS_BEGIN VioSocket::VioSocket(vio_socket sd, enum_vio_type type, bool localhost) :sd_(sd), localhost_(localhost), fcntl_(0), - fcntl_set_(false), cipher_description_(0) + fcntl_set_(FALSE), cipher_description_(0) { DBUG_ENTER("VioSocket::VioSocket"); DBUG_PRINT("enter", ("sd=%d", sd)); |