An error occurred fetching the project authors.
- 14 Sep, 2005 2 commits
-
-
pem@mysql.com authored
-
petr@mysql.com authored
-
- 13 Sep, 2005 3 commits
-
-
pem@mysql.com authored
get strange result according to Monty's suggestions, fixing the SELECT behaviour on errors with SP handlers. Note that some warnings from SELECT still shows up when the handler has caught - this is an effect of another known bug (BUG#7049).
-
petr@mysql.com authored
-
pem@mysql.com authored
Have to init. all local variables in their frames, not just once at the beginning of invocation.
-
- 08 Sep, 2005 1 commit
-
-
petr@mysql.com authored
(recommit with the right Bug#)
-
- 07 Sep, 2005 1 commit
-
-
sergefp@mysql.com authored
* Allocate thd->user_var_events elements on appropriate mem_root * If several SP statements are binlogged as a single statement, collect all user var accesses they make (grep for StoredRoutinesBinlogging for details)
-
- 27 Aug, 2005 2 commits
-
-
andrey@lmy004. authored
(already approved)
-
acurtis@xiphis.org authored
"Creating a function with char binary IN parameter fails" Parse BINARY as part of type declaration, not as a column attribute.
-
- 25 Aug, 2005 1 commit
-
-
petr@mysql.com authored
-
- 24 Aug, 2005 1 commit
-
-
petr@mysql.com authored
-
- 19 Aug, 2005 1 commit
-
-
konstantin@mysql.com authored
NOT FOUND ...' in conditional handled incorrectly". Whenever we remove an instruction during optimization, we need to adjust instruction numbers (ip - instruction pointer) stored in all instructions. In addition to that, sp_instr_hpush_jump, which corresponds to DECLARE CONTINUE HANDLER needs adjustment for m_handler, which holds the number of instruction with the continue handler. In the bug report, a wrong ip stored in m_handler was pointing at FETCH, which resulted in an error message and abnormal SP termination. The fix is to just remove m_handler member from sp_instr_hpush_jump, as it's always points to the instruction next to the DECLARE statement itself (m_ip+1).
-
- 18 Aug, 2005 1 commit
-
-
petr@mysql.com authored
and Bug#12297 SP crashes the server if data inserted inside a lon loop Third commit attempt. With fixes to the issues, showed up after full rebuild and tests on other hosts.
-
- 08 Aug, 2005 1 commit
-
-
dlenev@mysql.com authored
result set". To enable full access to contents of I_S tables from stored functions or statements that use them, we manipulate with thread's open tables state and ensure that we won't cause deadlock when we open tables by ignoring flushes and name-locks. Building of contents of I_S.TABLES no longer requires locking of tables since we use use handler::info() method with HA_STATUS_AUTO flag instead of handler::update_auto_increment() for obtaining information about auto-increment values. But this also means that handlers have to implement support for HA_STATUS_AUTO flag (particularly InnoDB needs it).
-
- 03 Aug, 2005 1 commit
-
-
sergefp@mysql.com authored
* Don't activate prelocking mode for evaluating procedure arguments when it is not necessary. * Code structure simplification and cleanup. * Cleanup in .test files
-
- 30 Jul, 2005 1 commit
-
-
sergefp@mysql.com authored
its body, but lets each statement to get/release its own locks. This allows a broader set of statements to be executed inside PROCEDUREs (but breaks replication) This patch should fix BUG#8072, BUG#8766, BUG#9563, BUG#11126
-
- 29 Jul, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 22 Jul, 2005 1 commit
-
-
georg@lmy002.wdf.sap.corp authored
-
- 16 Jul, 2005 1 commit
-
-
konstantin@mysql.com authored
-
- 15 Jul, 2005 3 commits
-
-
pem@mysql.com authored
-
pem@mysql.com authored
using @@var_name in proc Made sure we don't lose the tokenizer state when swapping lex in during SET parsing.
-
dlenev@mysql.com authored
sub-sequent procedure is called" which was fixed by the same patch as bug #9597 "read lock stays when querying view from stored procedure".
-
- 09 Jul, 2005 1 commit
-
-
dlenev@mysql.com authored
crash if referencing a table" and several other related bugs. Fix for bug #11834 "Re-execution of prepared statement with dropped function crashes server." which was spotted during work on previous bugs. Also couple of nice cleanups: - Replaced two separate hashes for stored routines used by statement with one. - Now instead of doing one pass through all routines used in statement for caching them and then doing another pass for adding their tables to table list, we do only one pass during which do both things.
-
- 06 Jul, 2005 2 commits
-
-
pem@mysql.com authored
-
pem@mysql.com authored
We used 'IDENT' for labels as a temporary fix for the parser conflicts introduced if the proper rule 'ident' was used. Now a specially tailored 'label_ident' rule is used for labels instead.
-
- 01 Jul, 2005 2 commits
-
-
pem@mysql.com authored
We want to have the defacto standard syntax for labels ("L:" instead of "label L;"), and fix some known bugs, before we enable this again. The code is left intact (#ifdef'ed SP_GOTO) and the test cases are kept in sp-goto.test, for the future...
-
dlenev@brandersnatch.localdomain authored
"Stored procedures: crash with function calling itself". Disallow recursive stored routines until we either make Item's and LEX reentrant safe or will use spearate sp_head instances (and thus separate LEX objects and Item trees) for each routine invocation.
-
- 30 Jun, 2005 1 commit
-
-
pem@mysql.comhem.se authored
Make sure to cleanup the items for a cursor query after each open, otherwise it's done too late, after the run-time mem_root is freed.
-
- 21 Jun, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 10 Jun, 2005 1 commit
-
-
pem@mysql.comhem.se authored
Fixed valgrind complaints. This fixes the memory leak problems for procedured, and partially for functions. There's still a leak involving results from functions that turned out to be too involved, so it will be fixed separately.
-
- 06 Jun, 2005 1 commit
-
-
igor@rurik.mysql.com authored
Added a test case for bug #6866. sql_select.cc: Fixed bug #6866. Bug was due to the fact that on_expr was not backed up for the second execution of the stored procedure.
-
- 01 Jun, 2005 1 commit
-
-
pem@mysql.comhem.se authored
Have to catch errors from SELECT when opening a cursor.
-
- 27 May, 2005 1 commit
-
-
pem@mysql.comhem.se authored
results. Actually a problem when converting decimal to int for user variables.
-
- 08 May, 2005 1 commit
-
-
bell@book.sanja.is.com.ua authored
Item::fix_field need correct pointer on item reference to chnge it if itis need, so support of correct item address added to SP commands (BUG#5963) some optimisation of IF/NOT IF ptomised to Pem
-
- 07 May, 2005 1 commit
-
-
joerg@trift-lap.fambruehe authored
-
- 05 May, 2005 2 commits
-
-
holyfoot@hf-ibm.(none) authored
-
dlenev@brandersnatch.localdomain authored
a stored procedure" (version 2). To handle updates and inserts into view in SP properly we should set lock types for tables of the view's main select when we are opening view for prelocking purproses.
-
- 28 Apr, 2005 1 commit
-
-
jimw@mysql.com authored
The bug appears to have already been fixed. (Bug #7293)
-
- 22 Apr, 2005 1 commit
-
-
pem@mysql.comhem.se authored
-
- 21 Apr, 2005 1 commit
-
-
acurtis@xiphis.org authored
Bug partially fixed by 9775/9102 work on SP function return.
-