An error occurred fetching the project authors.
- 10 Nov, 2005 2 commits
-
-
anozdrin@mysql.com authored
checks on trigger activation)
-
guilhem@mysql.com authored
Indeed now that stored procedures CALL is not binlogged, but instead the invoked substatements are, the restrictions applied by log-bin-trust-routine-creators=0 are superfluous for procedures. They still need to apply to functions where function calls are written to the binlog (for example as "DO myfunc(3)"). We rename the variable to log-bin-trust-function-creators but allow the old name until some future version (and issue a warning if old name is used).
-
- 02 Nov, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 31 Oct, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 27 Oct, 2005 2 commits
-
-
bell@sanja.is.com.ua authored
-
bell@sanja.is.com.ua authored
-
- 21 Oct, 2005 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
information_schema is current database skip the check of I_S tables if table is derived table
-
- 19 Oct, 2005 1 commit
-
-
konstantin@mysql.com authored
without database"
-
- 17 Oct, 2005 1 commit
-
-
guilhem@mysql.com authored
the READ_ONLY global variable now allows statements which are to update only temporary tables (note: if a statement, after parse stage, looks like it will update a non-temp table, it will be rejected, even if at execution it would have turned out that 0 rows would be updated; for example UPDATE my_non_tem_table SET a=1 WHERE 1 = 0; will be rejected).
-
- 13 Oct, 2005 1 commit
-
-
elliot@mysql.com authored
Updated more DDL statements to cause implicit commit.
-
- 12 Oct, 2005 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
-
- 11 Oct, 2005 2 commits
-
-
monty@mysql.com authored
- CHAR() now returns binary string as default - CHAR(X*65536+Y*256+Z) is now equal to CHAR(X,Y,Z) independent of the character set for CHAR() - Test for both ETIMEDOUT and ETIME from pthread_cond_timedwait() (Some old systems returns ETIME and it's safer to test for both values than to try to write a wrapper for each old system) - Fixed new introduced bug in NOT BETWEEN X and X - Ensure we call commit_by_xid or rollback_by_xid for all engines, even if one engine has failed - Use octet2hex() for all conversion of string to hex - Simplify and optimize code
-
hf@deer.(none) authored
-
- 10 Oct, 2005 4 commits
-
-
lars@mysql.com authored
-
lars@mysql.com authored
-
lars@mysql.com authored
-
lars@mysql.com authored
-
- 08 Oct, 2005 2 commits
-
-
serg@serg.mylan authored
(and contain extern "C" when necessary)
-
serg@serg.mylan authored
don't allow STOP SLAVE if global read lock is in taken
-
- 07 Oct, 2005 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
allow select into outfile from I_S tables it is enough to add FILE_ACL for I_S tables only to 'check_table_access' function as we use 'any_db' for 'check_access' function in places where FILE_ACL is required
-
- 06 Oct, 2005 1 commit
-
-
monty@mysql.com authored
Ensure that ccache is also used for C programs mysql: Ensure that 'delimiter' works the same way in batch mode as in normal mode mysqldump: Change to use ;; (instead of //) as a stored procedure/trigger delimiter Fixed test cases by adding missing DROP's and rename views to be of type 'v#' Removed MY_UNIX_PATH from fn_format() Removed current_db_used from TABLE_LIST Removed usage of 'current_thd' in Item_splocal Removed some compiler warnings A bit faster longlong2str code
-
- 05 Oct, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 30 Sep, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 28 Sep, 2005 1 commit
-
-
dlenev@mysql.com authored
--with-embedded-privilege-control options". One more (hopefully last) build failure which was introduced during work on WL#2787 "Add view definer/owner to the view definition..."
-
- 23 Sep, 2005 1 commit
-
-
- 21 Sep, 2005 2 commits
-
-
serg@serg.mylan authored
-
bell@sanja.is.com.ua authored
-
- 20 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
WL#2787 (Add view definer/owner to the view definition (.frm) to check privileges on used tables and stored routines when using a VIEW.) Part 2 postreview fixes.
-
- 19 Sep, 2005 1 commit
-
-
jonas@perch.ndb.mysql.com authored
that dump free list allocation per connection
-
- 15 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 14 Sep, 2005 4 commits
-
-
elliot@mysql.com authored
Fixed by making CREATE/ALTER/DROP PROCEDURE cause implicit commit.
-
sasha@asksasha.com authored
present): the problem originally was that the tables in auxilliary_tables did not have the correct real_name, which caused problems in the second call to tables_ok(). The fix corrects the real_name problem, and also sets the updating flag properly, which makes the second call to tables_ok() unnecessary.
-
bell@sanja.is.com.ua authored
view definer information syntax/storage/replication fixed SOURCE field of .frm
-
gluh@eagle.intranet.mysql.r18.ru authored
-
- 13 Sep, 2005 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
Information_schema DB Bug#9846 Inappropriate error displayed while dropping table from 'INFORMATION_SCHEMA' Bug#10734 Grant of privileges other than 'select' and 'create view' should fail on schema Bug#10708 SP's can use INFORMATION_SCHEMA as ROUTINE_SCHEMA cumulative fix for bugs above(after review, 2nd version) added privilege check for information schema db & tables
-
- 12 Sep, 2005 1 commit
-
-
timour@mysql.com authored
The problem was in that add_table_to_list was testing for duplicate tables in a list of tables that included the created view.
-
- 10 Sep, 2005 2 commits
-
-
lars@mysql.com authored
-
timour@mysql.com authored
The problem was that in the first production in rule 'join_table', that processes simple cross joins, the parser was processing the second join operand before the first one due to unspecified priorities of JOINs. As a result in the case of cross joins the parser constructed a tree with incorrect nesting: the expression "t1 join t2 join t3 on some_cond" was interpreted as "t1 join (t2 join t3 on some_cond)" instead of "(t1 join t2) join t3 on some_cond". Because of this incorrect nesting the method make_join_on_context picked an incorrect table as the first table of the name resolution context. The solution assignes correct priorities to the related production.
-
- 09 Sep, 2005 1 commit
-
-
konstantin@mysql.com authored
-
- 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)
-