An error occurred fetching the project authors.
- 03 Sep, 2008 1 commit
-
-
Martin Hansson authored
This patch also fixes bugs 36963 and 35600. - In many places a view was confused with an anonymous derived table, i.e. access checking was skipped. Fixed by introducing a predicate to tell the difference between named and anonymous derived tables. - When inserting fields for "SELECT * ", there was no distinction between base tables and views, where one should be made. View privileges are checked elsewhere.
-
- 24 May, 2007 1 commit
-
-
mleich@four.local.lan authored
This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache - Create "--ps-protocol" and no "--<whatever>-protocol" variants of the former tests t/grant_cache.test and t/query_cache_sql_prepare.test. - Some additional subtest and fixes of bugs - Minor improvements
-
- 09 Mar, 2007 1 commit
-
-
guilhem@gbichot3.local authored
Cache". WL#1569 "Prepared Statements: implement support of Query Cache". Prepared SELECTs did not look up in the query cache, and their results were not stored in the query cache. This made them slower than non-prepared SELECTs in some cases. The fix is to re-use the expanded query (the prepared query where "?" placeholders are replaced by their values, at execution time) for searching/storing in the query cache. It works fine for statements prepared via mysql_stmt_prepare(), which are the most commonly used and were the scope of this bugfix and WL. It works less fine for statements prepared via the SQL command PREPARE...FROM, which are still not using the query cache if they have at least one parameter (because then the expanded query contains names of user variables, and user variables don't work with the query cache, even in non-prepared queries). Note that results from prepared SELECTs, which are in the binary protocol, and results from normal SELECTs, which are in the text protocol, ignore each other in the query cache, because a result in the binary protocol should never be served to a SELECT expecting the text protocol and vice-versa. Note, after this patch, bug 25843 starts applying to query cache ("changing default database between PREPARE and EXECUTE of statement breaks binlog"), we need to fix it.
-
- 26 Feb, 2007 1 commit
-
-
msvensson@pilot.blaudden authored
- Use mysql_system_tables.sql to create MySQL system tables in all places where we create them(mysql_install_db, mysql-test-run-pl and mysql_fix_privilege_tables.sql)
-
- 19 Dec, 2006 1 commit
-
-
df@kahlann.erinye.com authored
-
- 28 Jul, 2005 1 commit
-
-
monty@mysql.com authored
-
- 18 May, 2005 1 commit
-
-
bell@book.sanja.is.com.ua authored
-
- 29 Mar, 2005 1 commit
-
-
jimw@mysql.com authored
mysql-test-run to the tests themselves.
-
- 12 Aug, 2004 1 commit
-
-
guilhem@mysql.com authored
do not use '' as user in tests, because it picks the Unix login (which gives unexpected results if it is 'root') (such behaviour is a feature of mysql_real_connect(), see the manual).
-
- 15 Jul, 2004 1 commit
-
-
monty@mysql.com authored
Note: The following tests fails - fulltext (Sergei has promised to fix) - rpl_charset (Guilhem should fix) - rpl_timezone (Dimitray has promised to fix) Sanja needs to check out the calling of close_thread_tables() in sp_head.cc
-
- 08 Jul, 2004 1 commit
-
-
bar@mysql.com authored
-
- 05 Apr, 2004 1 commit
-
-
gluh@gluh.mysql.r18.ru authored
'SHOW GRANTS' syntax is added 'SHOW GRANTS FOR CURRENT_USER' syntax is added 'SHOW GRANTS FOR CURRENT_USER()' syntax is added CURRENT_USER without parens in expressions(SELECT CURRENT_USER;)
-
- 21 Mar, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 03 Jul, 2003 1 commit
-
-
monty@narttu.mysql.fi authored
Tests cleanup (put drop database first in tests)
-
- 28 Jan, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Call pthread_mutex_destroy() on not used mutex. Changed comments in .h and .c files from // -> /* */ Added detection of mutex on which one didn't call pthread_mutex_destroy() Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression" Added optimisation for ORDER BY NULL
-
- 05 Jan, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
-
- 22 Mar, 2002 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 22 Dec, 2001 1 commit
-
-
monty@hundin.mysql.fi authored
Change tests to use database 'mysqltest' instead of 'foo' Add option to not print access denied messages to check_table_access()
-