kostja@bodhi.local
d03b39aaab
Fix a test case (proper clean up).
2006-08-14 19:18:33 +04:00
rburnett@bk-internal.mysql.com
4bb7715482
Merge bk-internal.mysql.com:/data0/bk/mysql-5.0
...
into bk-internal.mysql.com:/data0/bk/mysql-5.0-kt
2006-08-14 17:13:31 +02:00
svoj@may.pils.ru
91e94d781f
Merge may.pils.ru:/home/svoj/devel/mysql/BUG18874/mysql-4.1
...
into may.pils.ru:/home/svoj/devel/mysql/BUG18874/mysql-5.0
2006-08-14 18:08:33 +05:00
gkodinov/kgeorge@rakia.(none)
04d86b3fe9
Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
...
into rakia.(none):/home/kgeorge/mysql/autopush/B21302-5.0-opt
2006-08-14 15:58:01 +03:00
gkodinov/kgeorge@macbook.gmz
2d9aa1e61e
Bug #21302 : Result not properly sorted when using an ORDER BY on a second
...
table in a join
The optimizer removes redundant columns in ORDER BY. It is considering
redundant every reference to const table column, e.g b in :
create table t1 (a int, b int, primary key(a));
select 1 from t1 order by b where a = 1
But it must not remove references to const table columns if the
const table is an outer table because there still can be 2 values :
the const value and NULL. e.g.:
create table t1 (a int, b int, primary key(a));
select t2.b c from t1 left join t1 t2 on (t1.a = t2.a and t2.a = 5)
order by c;
2006-08-14 15:45:48 +03:00
svoj@may.pils.ru
d4bdba176f
BUG#18874 - Setting myisam_repair_threads > 1, index cardinality always 1
...
Fixed by moving update_key_parts() down to be after write_index().
2006-08-14 17:05:02 +05:00
brian@zim.(none)
7429c871b9
Fix for bug#20648 We introduce a new field method for knowing "real size", and we now in archive null unused bits of a row to null before writing.
2006-08-14 03:29:17 -07:00
evgen@moonbone.local
612c072b13
Merge moonbone.local:/work/tmp_merge-5.0-mysql
...
into moonbone.local:/work/tmp_merge-5.0-opt-mysql
2006-08-11 15:45:53 +04:00
svoj@may.pils.ru
07a1ed651f
Extended a test case for bug#7391.
2006-08-11 14:41:07 +05:00
svoj@may.pils.ru
827164916c
Merge may.pils.ru:/home/svoj/devel/mysql/BUG7391/mysql-4.1
...
into may.pils.ru:/home/svoj/devel/mysql/BUG7391/mysql-5.0
2006-08-11 14:24:09 +05:00
Reggie@xgeek.
e26aef9f64
Some small cleanups that will help get mysql_client_test passing on Windows
2006-08-10 17:39:01 -05:00
rburnett@bk-internal.mysql.com
6b399a498b
Merge bk-internal.mysql.com:/data0/bk/mysql-5.0
...
into bk-internal.mysql.com:/data0/bk/mysql-5.0-kt
2006-08-10 19:24:46 +02:00
cmiller@zippy.cornsilk.net
f6f7eb851e
Merge updates.
2006-08-10 12:39:18 -04:00
gkodinov/kgeorge@macbook.gmz
415e2de308
Fix for check_cpu to work correctly on MacOSX/Intel.
2006-08-10 17:35:21 +03:00
tnurnberg@salvation.intern.azundris.com
170392850d
Bug#19844: time_format in Union truncates values
...
time_format() claimed %H and %k would return at most two digits
(hours 0-23), but this coincided neither with actual behaviour
nor with docs. this is not visible in simple queries; forcing
a temp-table is probably the easiest way to see this. adjusted
the return-length appropriately; the alternative would be to
adjust the docs to say that behaviour for > 99 hours is undefined.
---
Bug#19844: time_format in Union truncates values
time_format() claimed %H and %k would return at most two digits
(hours 0-23), but this coincided neither with actual behaviour
nor with docs. this is not visible in simple queries; forcing
a temp-table is probably the easiest way to see this. adjusted
the return-length appropriately; the alternative would be to
adjust the docs to say that behaviour for > 99 hours is undefined.
2006-08-10 15:37:24 +02:00
ramil/ram@mysql.com/myoffice.izhnet.ru
50ae5b7989
Fix for bug #20709 : Collation not used in group by on 4.1.
...
myisam/mi_uniue.c:mi_check_unique() should skip trailing spaces comparing
TEXT and VARTTEXT key segments.
2006-08-10 15:06:22 +05:00
holyfoot/hf@mysql.com/deer.(none)
1ada6ca108
bug #20910 (NOT NULL column reported as NULL in SHOW FIELDS)
...
two test results changed after the patch
2006-08-10 14:50:54 +05:00
tnurnberg@salvation.intern.azundris.com
747a86b114
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint
...
into salvation.intern.azundris.com:/home/tnurnberg/work/mysql-5.0-maint-17926
2006-08-10 08:13:14 +02:00
cmiller@zippy.cornsilk.net
364dfae629
Removed Iggy's accidentally-added files.
2006-08-10 01:02:31 -04:00
cmiller@zippy.cornsilk.net
543fcde9b9
Merge zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-4.1
...
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0
2006-08-09 22:23:41 -04:00
tnurnberg@salvation.intern.azundris.com
cbe81c301a
Bug#17926: mysql.exe crashes when ctrl-c is pressed in windows
...
SIGINT is handled in funny ways on windows, which could lead to problems when
Control-C was pressed in the client during a long-running query. Now Control-C
during a query aborts that query (by sending KILL to the server on a second
connexion), while Control-C outside of a running query terminates the client.
2006-08-10 03:46:46 +02:00
pgalbraith/patg@govinda.patg.net
6b96294223
autopush test - sorry for the commit messages, ignore
2006-08-09 17:41:35 -07:00
cmiller@zippy.cornsilk.net
8e4460343f
Removed iggy's accidentally checked-in test files.
2006-08-09 13:41:08 -04:00
hartmut@mysql.com/linux.site
8a2aa3548b
Merge hholzgraefe@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
...
into mysql.com:/home/hartmut/projects/mysql/dev/5.0-bug14995
2006-08-09 18:31:16 +02:00
rburnett@bk-internal.mysql.com
39ab7b0ab7
Merge bk-internal.mysql.com:/data0/bk/mysql-5.0
...
into bk-internal.mysql.com:/data0/bk/mysql-5.0-kt
2006-08-09 18:02:06 +02:00
holyfoot/hf@mysql.com/deer.(none)
ba90c1e9fa
Merge bk@192.168.21.1:mysql-5.0-kt
...
into mysql.com:/home/hf/work/mysql-5.0.20910
2006-08-09 14:57:51 +05:00
svoj@may.pils.ru
6d23dd824c
Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-4.1
...
into may.pils.ru:/home/svoj/devel/mysql/BUG20060/mysql-4.1
2006-08-09 14:35:45 +05:00
svoj@may.pils.ru
5f3d231f57
Merge may.pils.ru:/home/svoj/devel/mysql/BUG20060/mysql-4.1
...
into may.pils.ru:/home/svoj/devel/mysql/BUG20060/mysql-5.0
2006-08-09 14:33:45 +05:00
svoj@may.pils.ru
81b70f9798
BUG#20060 - mysqld option "--flush " doesn't work for update statement
...
Problem described in this bug report affects MyISAM tables only.
Running mysqld --flush instructs mysqld to sync all changes to disk
after each SQL statement. It worked well for INSERT and DELETE
statements, but it did sync for UPDATE only in case if there was
index change (change of colum that has an index). If no updated column
has an index, data wasn't synced to disk.
This fix makes UPDATE statement to sync data to disk even if there is
no index change (that is only data change) and mysqld is run with
--flush option.
2006-08-09 14:28:39 +05:00
evgen@sunlight.local
6691c62310
sql_view.cc:
...
After merge fix
2006-08-09 06:46:06 +04:00
evgen@sunlight.local
95713e9896
Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into sunlight.local:/local_work/leak_fix
2006-08-09 01:45:42 +04:00
evgen@sunlight.local
b5a5cb4ad7
Merge sunlight.local:/home/evgen/bk-trees/mysql-5.0
...
into sunlight.local:/local_work/leak_fix
2006-08-09 01:43:11 +04:00
evgen@sunlight.local
1250b06ac9
sql_base.cc, unireg.h, sql_lex.h, table.cc, sql_view.h, sql_view.cc:
...
Correct memory leak fix
2006-08-09 00:05:42 +04:00
gluh@mysql.com/gluh.(none)
1be93531ee
Bug#16172 DECIMAL data type processed incorrectly
...
issue an error in case of DECIMAL(M,N) if N > M
2006-08-08 14:40:07 +05:00
holyfoot/hf@mysql.com/deer.(none)
de7e53d531
bug #20910 (NOT NULL reported as NULL for TIMESTAMP)
...
we intentionally reported that for TIMESTAMPS, which isn't right
2006-08-08 13:34:27 +05:00
gluh@mysql.com/gluh.(none)
e9b87a1a7f
result fix
2006-08-08 12:50:05 +05:00
msvensson@neptunus.(none)
dee4105ce0
Remove extra whitespace
2006-08-07 19:21:43 +02:00
msvensson@neptunus.(none)
862d5626a5
Add some more code to analyze why the fgets fails.
2006-08-07 17:26:02 +02:00
svoj@may.pils.ru
b5cd11cf0e
After merge fix.
2006-08-07 19:35:02 +05:00
svoj@may.pils.ru
d1cb2c6182
Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-5.0-engines
...
into may.pils.ru:/home/svoj/devel/mysql/BUG14770/mysql-5.0-engines
2006-08-07 18:00:46 +05:00
msvensson@neptunus.(none)
419e4dd46f
Add printouts in test case for bug17667
2006-08-07 14:02:57 +02:00
msvensson@neptunus.(none)
c44118bb97
Merge bk-internal:/home/bk/mysql-5.0-maint
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
2006-08-07 11:32:20 +02:00
msvensson@neptunus.(none)
68168c8e8f
Change the 'sleep' into an explicit FLUSH LOGS command
2006-08-07 11:29:41 +02:00
msvensson@neptunus.(none)
2e4dbadf9f
fflush(NULL) before abort so that all pending writes are performed
2006-08-07 10:16:37 +02:00
bar@mysql.com/bar.intranet.mysql.r18.ru
7ff64de172
Merge mysql.com:/usr/home/bar/mysql-4.1.b19741v0
...
into mysql.com:/usr/home/bar/mysql-4.1.b19741
2006-08-07 13:15:23 +05:00
holyfoot/hf@mysql.com/deer.(none)
eab37de051
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-5.0-kt
...
into mysql.com:/home/hf/work/mysql-5.0.clean
2006-08-07 11:57:53 +05:00
holyfoot/hf@mysql.com/deer.(none)
ffe2a431b5
information_schema_db.test fixed
2006-08-07 11:56:22 +05:00
tnurnberg@salvation.intern.azundris.com
dbf62f252a
Bug #20987 : str_to_date doesn't accept user variable for specification
...
str_to_date() would sometimes render NULL if %D was used as rule other than last.
since this was due to two pointers getting mixed up in the server, this behaviour
seemed somewhat non-deterministic at SQL level.
2006-08-07 07:35:28 +02:00
evgen@sunlight.local
00399c0076
sql_view.cc:
...
Memory leak fix
2006-08-07 07:41:49 +04:00
tnurnberg@mysql.com/salvation.intern.azundris.com
f25bf84cf4
grant.result:
...
manual merge
2006-08-07 04:13:05 +02:00