Commit 1a0226e7 authored by monty@donna.mysql.com's avatar monty@donna.mysql.com
Browse files

Merge

parents 72a1acce e05df20d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -185,3 +185,4 @@ mysqld.sym
sql-bench/output/*
sql-bench/Results-linux/ATIS-mysql_bdb-Linux_2.2.14_my_SMP_i686
Docs/my_sys.doc
tmp/*
+3 −2
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@ fi

$make $AM_MAKEFLAGS
if [ "x$strip" = "xyes" ]; then
  nm --numeric-sort sql/mysqld  > mysqld.sym
  objdump -d sql/mysqld > mysqld.S 
  mkdir -p tmp
  nm --numeric-sort sql/mysqld  > tmp/mysqld.sym
  objdump -d sql/mysqld > tmp/mysqld.S
  strip sql/mysqld
fi  
+1 −0
Original line number Diff line number Diff line
mwagner@work.mysql.com
mwagner@evoq.home.mwagner.org
monty@donna.mysql.com
+8 −0
Original line number Diff line number Diff line
@@ -18274,6 +18274,9 @@ exist.
@code{RESTRICT} and @code{CASCADE} are allowed to make porting easier.
For the moment they don't do anything.
@strong{NOTE}: @code{DROP TABLE} is not transaction safe and will
automaticly commit any active transactions.
@cindex tables, defragment
@cindex tables, fragmentation
@findex OPTIMIZE TABLE
@@ -21276,6 +21279,9 @@ You can also lock all tables in all databases with read locks with the
convinient way to get backups if you have a file system, like Veritas,
that can take snapshots in time.
@strong{NOTE}: @code{LOCK TABLES} is not transaction safe and will
automaticly commit any active transactions before attempting to lock the
tables.
@findex SET OPTION
@node SET OPTION, GRANT, LOCK TABLES, Reference
@@ -40018,6 +40024,8 @@ though, so Version 3.23 is not released as a stable version yet.
@appendixsubsec Changes in release 3.23.30
@itemize @bullet
@item
@code{LOCK TABLES} will now automaticly start a new transaction.
@item
Changed BDB tables to not use internal subtransactions and reuse open files to
get more speed.
@item
+4 −4
Original line number Diff line number Diff line
@@ -68,12 +68,12 @@
/* READLINE: */
#undef HAVE_GETPW_DECLS

/* In OSF 4.0f the 3'd argument to gethostname_r is hostent_data * */
#undef HAVE_GETHOSTBYNAME_R_WITH_HOSTENT_DATA

/* Solaris define gethostbyname_r with 5 arguments. glibc2 defines
   this with 6 arguments */
#undef HAVE_GLIBC2_STYLE_GETHOSTBYNAME_R
#undef HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE

/* In OSF 4.0f the 3'd argument to gethostname_r is hostent_data * */
#undef HAVE_GETHOSTBYNAME_R_RETURN_INT

/* Define if int8, int16 and int32 types exist */
#undef HAVE_INT_8_16_32
Loading