An error occurred fetching the project authors.
- 07 Jun, 2005 1 commit
-
-
konstantin@mysql.com authored
error for LIMIT placeholder". The patch adds grammar support for LIMIT ?, ? and changes the type of ST_SELECT_LEX::select_limit,offset_limit from ha_rows to Item*, so that it can point to Item_param.
-
- 02 Jun, 2005 4 commits
-
-
mskold@mysql.com authored
-
mskold@mysql.com authored
Modified handling of guarded predicates at condition pushdown to storage engine, to make valgrind happy
-
kent@mysql.com authored
Set #pragma implementation" earlier Many files: Need to include <my_global.h> before #ifdef USE_PRAGMA_IMPLEMENTATION
-
brian@zim.(none) authored
Mainly cleanups for gcc 4.0. Some small pieces from looking at -Wall. Removed a number of dumb things in ha_tina.
-
- 01 Jun, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 30 May, 2005 3 commits
-
-
konstantin@mysql.com authored
"the server side preparedStatement error for LIMIT placeholder", which moves all uses of LIMIT clause from PREPARE to OPTIMIZE and later steps. After-review fixes.
-
igor@rurik.mysql.com authored
Post-review modifications for the fix of bug #7894.
-
igor@rurik.mysql.com authored
Added test cases for bug #7894. sql_select.cc: Fixed bug #7894: GROUP BY queries with ROLLUP returned wrong results for expressions containing group by columns. The fix ensured correct results by replacement of all occurrences of group by fields in non-aggregate expressions for corresponding ref objects and preventing creation of fields in temporary tables for expression containing group by fields.
-
- 29 May, 2005 1 commit
-
-
evgen@moonbone.local authored
server" Bug appears only on Windows platform. Freeing memory in TMP_TABLE_PARAM::cleanup() allocated by new Copy_fields[0] in setup_copy_fields() results in memory destruction. In test IF used instead of CONCAT because IF have more stable crash.
-
- 26 May, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
Added some more ifdefs for "#pragma interface"
-
- 25 May, 2005 1 commit
-
-
monty@mysql.com authored
Added ASSERT() to detect wrongly packed fields
-
- 21 May, 2005 2 commits
-
-
igor@rurik.mysql.com authored
Added missing comment for fix of #10561.
-
igor@rurik.mysql.com authored
Added test cases for optimization request #10561. opt_range.cc, sql_select.cc: Fixed bug #10561: an optimization request to allow range analysis for NOT IN and NOT BETWEEN.
-
- 20 May, 2005 3 commits
-
-
kent@mysql.com authored
Fixes for valgrind errors and compatiblity issues by Monty
-
monty@mysql.com authored
Fixed errors reported by valgrind (some errors in NDB remains)
-
bell@sanja.is.com.ua authored
-
- 18 May, 2005 3 commits
-
-
konstantin@mysql.com authored
-
igor@rurik.mysql.com authored
Added test cases for bug #7914. sql_select.cc: Fixed bug #7914: rollup over expresssions such as sum(a)+1.
-
sergefp@mysql.com authored
-
- 16 May, 2005 1 commit
-
-
monty@mysql.com authored
Fixed bug in mysql_stmt_fetch() when retrieving rows to return
-
- 12 May, 2005 1 commit
-
-
konstantin@mysql.com authored
(crash on attempt to re-execute a statement with an open cursor) + post-review fixes.
-
- 10 May, 2005 1 commit
-
-
igor@rurik.mysql.com authored
Fixed bug #8528. Representation for single-table views was made similar to representation for multi-table views. view.test: Added test case for bug #8528. view.result: Added test case for bug #8528. Fixed other test cases.
-
- 09 May, 2005 1 commit
-
-
mskold@mysql.com authored
-
- 08 May, 2005 1 commit
-
-
mskold@mysql.com authored
-
- 07 May, 2005 1 commit
-
-
mskold@mysql.com authored
-
- 06 May, 2005 1 commit
-
-
monty@mishka.local authored
Added option --count to mysqlshow (to show number of rows) Fixed possible core dump in information schema
-
- 05 May, 2005 2 commits
-
-
bar@noter.(none) authored
We cannot propagate constants with tricky collations.
-
holyfoot@hf-ibm.(none) authored
Mostly about precision/decimals of the results of the operations
-
- 30 Apr, 2005 1 commit
-
-
konstantin@mysql.com authored
with cursor". The patch refactors do_select/sub_select functions, which implement the nested loop algorithm, and reuses them to fetch rows for cursors as well. Pushing with view.test failing (--ps-protocol).
-
- 29 Apr, 2005 1 commit
-
-
evgen@moonbone.local authored
Reset old error if tmp table was successfully created. Test data is large and can be found in bug report along with test query.
-
- 28 Apr, 2005 1 commit
-
-
sergefp@mysql.com authored
Make get_quick_select_for_ref() accept estimated # records as parameter and set QUICK_RANGE_SELECT::records, as this value is used to allocate buffers in Multi-Range Read.
-
- 26 Apr, 2005 2 commits
-
-
serg@serg.mylan authored
that merges ON and WHERE (BUG#10162)
-
monty@mysql.com authored
-
- 19 Apr, 2005 1 commit
-
-
igor@rurik.mysql.com authored
Fixed bug #9681. The bug happened with queries using derived tables specified by a SELECT with ROLLUP, such as: SELECT * FROM (SELECT a, SUM(a) FROM t1 GROUP BY a WITH ROLLUP) t2, if column a of table t1 is declared as NOT NULL. This was to the fact that the first column of the temporary table created to contain the derived table erroneously inherited the NOT NULL attribute from column a. olap.result, olap.test: Added a test case for bug #9681.
-
- 18 Apr, 2005 1 commit
-
-
sergefp@mysql.com authored
Don't produce data truncation warnings from within cp_buffer_from_ref(). This function is only used to make index search tuples and data truncation that occurs here has no relation with truncated values being saved into tables.
-
- 16 Apr, 2005 1 commit
-
-
igor@rurik.mysql.com authored
Added a test case for bug #9338. sql_select.cc: Fixed bug #9338. When an occurence of a field reference has to be replaced by another field reference the whole Item_field must be replaced. item.cc: Fixed bug #9338. The method Item_field::replace_equal_field_processor was replaced by Item_field::replace_equal_field. The new method is used to replace the occurences of Item_field objects. item.h: Fixed bug #9338. The virtual function replace_equal_field_processor was replaced by replace_equal_field. The latter is supposed to be used as a callback function in calls of the method transform.
-
- 15 Apr, 2005 1 commit
-
-
konstantin@mysql.com authored
-
- 07 Apr, 2005 2 commits
-
-
monty@mysql.com authored
Fixed warnings by valgrind for sum_distinct.test Enable buffered-record-reads after filesort for InnoDB tables with short primary key Enabled sort-with-data for MyISAM temporary files
-
sergefp@mysql.com authored
-