| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
tested by mysql-test-run.pl
|
|\
| |
| |
| | |
into mysql.com:/home/my/mysql-5.0
|
| |\
| | |
| | |
| | | |
into mysql.com:/home/my/mysql-5.0
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Removed not used variables and functions
- Added #ifdef around code that is not used
- Renamed variables and functions to avoid conflicts
- Removed some not used arguments
Fixed some class/struct warnings in ndb
Added define IS_LONGDATA() to simplify code in libmysql.c
I did run gcov on the changes and added 'purecov' comments on almost all lines that was not just variable name changes
|
| | |
| | |
| | |
| | |
| | | |
- Additional patch removing check for mysql_errno on already closed
mysql1
|
|\ \ \
| | | |
| | | |
| | | | |
into pilot.mysql.com:/home/msvensson/mysql/mysql-5.0-maint
|
| |\ \ \
| | | | |
| | | | |
| | | | | |
into bodhi.local:/opt/local/work/mysql-5.0-runtime
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
--cursor_protocol": fix a misleading error message in case of
SELECT .. INTO.
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Always reset error when calling mysql_stmt_prepare a second time
- Set stmt->state to MYSQL_STMT_INIT_DONE before closing prepared stmt in server.
- Add test to mysql_client_test
- Remove mysql_stmt_close in mysqltest after each query
- Close all open statements in mysqltest if disable_ps_protocol is called.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Corrected spelling in copyright text
Makefile.am:
Don't update the files from BitKeeper
Many files:
Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
Adjusted year(s) in copyright header
Many files:
Added GPL copyright text
Removed files:
Docs/Support/colspec-fix.pl
Docs/Support/docbook-fixup.pl
Docs/Support/docbook-prefix.pl
Docs/Support/docbook-split
Docs/Support/make-docbook
Docs/Support/make-makefile
Docs/Support/test-make-manual
Docs/Support/test-make-manual-de
Docs/Support/xwf
|
| |_|/ /
|/| | |
| | | |
| | | | |
Changed header to GPL version 2 only
|
|\ \ \ \
| |/ / /
|/| / /
| |/ / |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| |\ \
| | |/
| | |
| | | |
into bodhi.local:/opt/local/work/mysql-5.0-runtime
|
| | | |
|
| |\ \
| | | |
| | | |
| | | | |
into moonlight.intranet:/home/tomash/src/mysql_ab/mysql-5.0-bug21635
|
| | |\ \
| | | | |
| | | | |
| | | | | |
into moonlight.intranet:/home/tomash/src/mysql_ab/mysql-5.0-bug21635
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
expression cols.
The problem was that MYSQL_FIELD::org_name was set for MIN() and MAX()
functions (COUNT() is also mentioned in the bug report but was already
fixed).
After this patch for expressions MYSQL_FIELD::name is set to either
expression itself or its alias, and other data origin fields of
MYSQL_FILED (db, org_table, table, org_name) are empty strings.
|
| |\ \ \ \
| | |/ / /
| |/| | |
| | | | | |
into moonlight.intranet:/home/tomash/src/mysql_ab/mysql-5.0-bug23383
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
mysql_stmt_affected_rows()
The problem was that affected_rows for prepared statement wasn't updated
in the client library on the error. The solution is to always update
affected_rows, which will be equal to -1 on the error.
|
| | |\ \ \
| | | |/ /
| | |/| |
| | | | | |
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-4.1-maint
|
| | | | |
| | | | |
| | | | |
| | | | | |
Fix two memory leaks in mysql_client_test
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Note: bug#21726 does not directly apply to 4.1, as it doesn't have stored
procedures. However, 4.1 had some bugs that were fixed in 5.0 by the
patch for bug#21726, and this patch is a backport of those fixes.
Namely, in 4.1 it fixes:
- LAST_INSERT_ID(expr) didn't return value of expr (4.1 specific).
- LAST_INSERT_ID() could return the value generated by current
statement if the call happens after the generation, like in
CREATE TABLE t1 (i INT AUTO_INCREMENT PRIMARY KEY, j INT);
INSERT INTO t1 VALUES (NULL, 0), (NULL, LAST_INSERT_ID());
- Redundant binary log LAST_INSERT_ID_EVENTs could be generated.
|
|\ \ \ \ \
| | |_|_|/
| |/| | |
| | | | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
(Mostly in DBUG_PRINT() and unused arguments)
Fixed bug in query cache when used with traceing (--with-debug)
Fixed memory leak in mysqldump
Removed warnings from mysqltest scripts (replaced -- with #)
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | | |
- Most likely caused by linking with libmysqlclient using gcc and not g++.
- Removing our "yassl_dummy_link_fix" hacks so some test programs are linked
with gcc
- Remove build of non working test programs in vio
|
| | |
| | |
| | |
| | | |
Remove one warning
|
| | |
| | |
| | |
| | |
| | | |
- Fix check in mysql_client_test to reflect the change of datatype
for DEFAULT column
|
|\ \ \
| | |/
| |/|
| | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| |/
| |
| |
| | |
Flush both stdout and stderr before abort'ing mysql_client_test
|
| |\
| | |
| | |
| | |
| | |
| | | |
zippy.cornsilk.net:/home/cmiller/work/mysql/no-strange-literals/my41-no-strange-literals
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-4.1-maint
|
|\ \ \
| | | |
| | | |
| | | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| | | |
| | | |
| | | |
| | | | |
- Change 'get_unit_column_type" to return the field list for the procedure
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Non-upper-level INSERTs (the ones in the body of stored procedure,
stored function, or trigger) into a table that have AUTO_INCREMENT
column didn't affected the result of LAST_INSERT_ID() on this level.
The problem was introduced with the fix of bug 6880, which in turn was
introduced with the fix of bug 3117, where current insert_id value was
remembered on the first call to LAST_INSERT_ID() (bug 3117) and was
returned from that function until it was reset before the next
_upper-level_ statement (bug 6880).
The fix for bug#21726 brings back the behaviour of version 4.0, and
implements the following: remember insert_id value at the beginning
of the statement or expression (which at that point equals to
the first insert_id value generated by the previous statement), and
return that remembered value from LAST_INSERT_ID() or @@LAST_INSERT_ID.
Thus, the value returned by LAST_INSERT_ID() is not affected by values
generated by current statement, nor by LAST_INSERT_ID(expr) calls in
this statement.
Version 5.1 does not have this bug (it was fixed by WL 3146).
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
tests/mysql_client_test
- Build mysql_client_test from mysql_client_test.c and mysys/my_memmem.c
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
into bk-internal.mysql.com:/data0/bk/mysql-5.0-cmake
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
zippy.cornsilk.net:/home/cmiller/work/mysql/no-strange-literals/my50-no-strange-literals
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint
|
| | |\ \ \ \
| | | | |_|/
| | | |/| |
| | | | | |
| | | | | |
| | | | | | |
zippy.cornsilk.net:/home/cmiller/work/mysql/no-strange-literals/my41-no-strange-literals
into zippy.cornsilk.net:/home/cmiller/work/mysql/no-strange-literals/my50-no-strange-literals
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
single file is a bad practice.
|
| | |\ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| | | | | | | |
|
| | | | | | | |
|
|/ / / / / / |
|
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Use the "%.*b" format when printing prepared and exeuted prepared statements to the log.
- Add test case to check that also prepared statements end up in the query log
Bug#14346 Prepared statements corrupting general log/server memory
- Use "stmt->query" when logging the newly prepared query instead of "packet"
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | | |
into zippy.cornsilk.net:/home/cmiller/work/mysql/merge/mysql-5.0
|
| | | | | |
|