- 04 Dec, 2002 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
LIMIT clause when filesort had to be used. In that case LIMIT was applied to filesort of one of the tables, although it could not be. This fix solved problems with LEFT JOIN too...
-
- 03 Dec, 2002 4 commits
-
-
Sinisa@sinisa.nasamreza.org authored
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
-
heikki@hundin.mysql.fi authored
Fix a hang introduced in 4.0.5 in INSERT INTO ... SELECT ... when binlogging is not on
-
Sinisa@sinisa.nasamreza.org authored
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
-
monty@hundin.mysql.fi authored
Optimized SELECT DISTINCT ... ORDER BY ... LIMIT Fixed reference to uninitalized variable
-
- 02 Dec, 2002 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
-
- 30 Nov, 2002 4 commits
-
-
monty@hundin.mysql.fi authored
-
monty@mashka.mysql.fi authored
More tests for multi-table-update & timestamp handling
-
monty@hundin.mysql.fi authored
-
Sinisa@sinisa.nasamreza.org authored
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
-
- 29 Nov, 2002 5 commits
-
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
New (simpler) internal timestamp handling. More debuging to heap tables. Small cleanups to multi-table-delete false -> 0 and true -> 1 (We should use TRUE and FALSE)
-
walrus@mysql.com authored
into mysql.com:/home/walrus/bk/40
-
walrus@mysql.com authored
-
heikki@hundin.mysql.fi authored
Make copies of all string-type start/up options in case C-sharp moves them around; remove the need to specify innodb_log_arch_dir in my.cnf, since it has no relevance anyway
-
- 28 Nov, 2002 5 commits
-
-
pem@mysql.com authored
into mysql.com:/home/pem/work/mysql-4.0
-
pem@mysql.com authored
-
walrus@mysql.com authored
into mysql.com:/home/walrus/bk/40
-
walrus@mysql.com authored
for column,table and named constarints. Now constraint test produces exactly one line in report, with "yes","no" or syntax only". add /odbc to server-version if benchmark/crash-me works over odbc
-
pem@mysql.com authored
-
- 27 Nov, 2002 1 commit
-
-
pem@mysql.com authored
-
- 26 Nov, 2002 2 commits
-
-
walrus@mysql.com authored
-
lenz@mysql.com authored
-
- 25 Nov, 2002 2 commits
-
-
lenz@mysql.com authored
- reverted some incompatible/non-portable modifications
-
lenz@mysql.com authored
into mysql.com:/space/my/mysql-4.0
-
- 24 Nov, 2002 6 commits
-
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
Added CEIL as an alias for CEILING Cleaned up CHECK constraint handling. (We don't anymore require braces after CHECK) Added casting to CHAR.
-
lenz@mysql.com authored
into mysql.com:/space/my/mysql-4.0
-
- 23 Nov, 2002 3 commits
-
-
Sinisa@sinisa.nasamreza.org authored
His explanation: The socket on which MySQL listens for new connections on a blocking socket most of the time but is set to non-blocking during the accept() of the new connection. Due to a bug in the kernel, the new socket returned by accept() is a blocking socket but returns the O_NONBLOCK flag when queried via fcntl(F_GETFL). That is, the file descriptor and the underlying socket don't agree on the blocking mode. Since MySQL determines via fcntl(F_GETFL) that the socket is non-blocking, it expects the first read() in my_real_read to not block, so it doesn't enable the timeout alarm. However, the read does block, and thus there's no timeout alarm. The thread kill (which relies on rescheduling the timeout alarm) also does not work as a consequence. The bug shows itself if you build MySQL with LinuxThreads support (needed for SMP on FreeBSD). Issuing a KILL command in MySQL won't be "noticed" by the "killed" thread until it runs another query--that makes KILL pretty useless. And the wait_timeout doesn't work either.
-
Sinisa@sinisa.nasamreza.org authored
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
-
Sinisa@sinisa.nasamreza.org authored
-
- 22 Nov, 2002 6 commits
-
-
lenz@mysql.com authored
- fixed some typos and wording (merged from 3.23 tree) - fixed parsing the correct section in /etc/my.cnf ([mysql_server] -> [mysql.server]) as documented in the manual
-
lenz@mysql.com authored
- fix setting of niceness level support-files/mysql.server.sh - applied some fixes from 4.0 mysql.server script - fix my.cnf parsing
-
lenz@mysql.com authored
into mysql.com:/space/my/mysql-3.23
-
heikki@hundin.mysql.fi authored
Flush stderr if we run out of memory, so that the error message more probably finds its way to the error log
-
monty@mashka.mysql.fi authored
-
Sinisa@sinisa.nasamreza.org authored
-