An error occurred fetching the project authors.
- 01 Jun, 2004 1 commit
-
-
sergefp@mysql.com authored
* The prepared statement query is put into binary log on execution only if it is an update query.
-
- 25 May, 2004 1 commit
-
-
konstantin@mysql.com authored
-
- 24 May, 2004 2 commits
-
-
konstantin@mysql.com authored
after Monty's review. - Item_param was rewritten. - it turns out that we can't convert string data to character set of connection on the fly, because they first should be written to the binary log. To support efficient conversion we need to rewrite prepared statements binlogging code first.
-
sergefp@mysql.com authored
Fixed the problem of previous patch with replication, More post-review fixes
-
- 21 May, 2004 1 commit
-
-
sergefp@mysql.com authored
-
- 18 May, 2004 1 commit
-
-
hf@deer.(none) authored
using of methods like sint2korr() doesn't work on Bigendian machines
-
- 15 May, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 06 May, 2004 1 commit
-
-
konstantin@mysql.com authored
-
- 05 May, 2004 4 commits
-
-
sergefp@mysql.com authored
-
miguel@hegel.local authored
-
monty@mysql.com authored
-
miguel@hegel.local authored
-
- 04 May, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
"mysql_send_long_data() API call is completely broken". Now we are resetting some members (long_data_supplied/null_value...) of Item_param to its initial state after each execution of prepared statement. We also manipulating Item_param::maybe_null/null_value only via Item_param::set_* setters which makes code a bit more robust.
-
- 30 Apr, 2004 1 commit
-
-
sergefp@mysql.com authored
-
- 29 Apr, 2004 1 commit
-
-
konstantin@mysql.com authored
flag is sent to server with placeholder types. There were no need to extend the protocol as one additional byte was reserved for placeholder code, when placeholder code is in range 0-255. So this byte is now used for flags. Post-review fixes added.
-
- 14 Apr, 2004 1 commit
-
-
sergefp@mysql.com authored
-
- 12 Apr, 2004 2 commits
-
-
sergefp@mysql.com authored
Moved PS name to Statement class, Statement_map now handles name-to-statement resolution. Both named and unnamed statements are now executed in one function (sql_prepare.cc:execute_stmt) Fixed a problem: Malformed sequence of commands from client could cause server to use previously deleted objects. Some code cleanup and small fixes
-
sergefp@mysql.com authored
-
- 09 Apr, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 07 Apr, 2004 3 commits
-
-
bell@sanja.is.com.ua authored
fixed IN subselect with basic constant left expression SQLCOM_CREATE_TABLE, SQLCOM_UPDATE_MULTI, SQLCOM_REPLACE_SELECT, SQLCOM_INSERT_SELECT, QLCOM_DELETE_MULTI fixed to be compatible with PS (BUG#3398, BUG#3406) fixed multiupdate privelege check (BUG#3408) fixed multiupdate tables check (BUG#3411) unchecked commands now is rejected by PS protocol to avoid serever crash fixed cleunup procedure to be compatible sith DO/SET (BUG#3393)
-
bell@sanja.is.com.ua authored
-
sergefp@mysql.com authored
-
- 06 Apr, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 05 Apr, 2004 2 commits
-
-
sergefp@mysql.com authored
SQL Syntax for Prepared Statements (WL#1622) ps.test, ps.result: new file
-
monty@mysql.com authored
Fixed bugs in group_concat with ORDER BY and DISTINCT (Bugs #2695, #3381 and #3319) Fixed crash when doing rollback in slave and the io thread catched up with the sql thread Set locked_in_memory properly
-
- 03 Apr, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
fixed aggregate functions in PS (BUG#3360)
-
- 30 Mar, 2004 1 commit
-
-
konstantin@dragonfly.local authored
implemented in the client library and server. Warning: this makes the new client library and server incompatible with all previous versions and 5.0.
-
- 29 Mar, 2004 1 commit
-
-
konstantin@oak.local authored
-
- 15 Mar, 2004 1 commit
-
-
konstantin@mysql.com authored
COM_EXECUTE packet" and #2795 "prepare + execute without bind_param crashes server" and #2473 "seg fault running tests/client_test.c": - length checking added to packet parser - default impelemntation of Item_param::set_param_func will work in case of malformed packet. No test cases are possible in our test suite, as there are no tests operating on protocol layer.
-
- 02 Mar, 2004 1 commit
-
-
konstantin@oak.local authored
reviewed in Saint-Petersbourg (including post-review fixes).
-
- 20 Feb, 2004 2 commits
-
-
bell@sanja.is.com.ua authored
-
bell@sanja.is.com.ua authored
-
- 18 Feb, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
after merge fix
-
- 16 Feb, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 12 Feb, 2004 3 commits
-
-
bell@sanja.is.com.ua authored
-
acurtis@pcgem.rdg.cyberkinetica.com authored
"MySQL server does not detect if garbage chara at the end of query" Allow the parser to see the garbage characters. Garbage should cause the parser to report an error.
-
bell@sanja.is.com.ua authored
-
- 11 Feb, 2004 1 commit
-
-
guilhem@gbichot2.local authored
"MySQL server does not detect if garbage chars at the end of query": Detect garbage chars at the end of the query or at the end of a query for a prepared statement (which happens if mysql_real_query() or mysql_prepare() were called with a too big 'length' parameter (bigger than the real intended length of the query: then we receive a query + garbage characters from the client). This resulted in garbage chars written into the binlog. Now instead the client receives something like: 'You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '!stmt' at line 1' i.e. the server is pointing at the weird tail of the query (this '!stmt' are the garbage chars sent by the client). All tests pass, except mysqldump.test and ctype_utf8.test but they failed before the patch.
-
- 09 Feb, 2004 1 commit
-
-
monty@mysql.com authored
Fixed output from mysqlbinlog when using --skip-comments Fixed warnings from valgrind Fixed ref_length when used with HEAP tables More efficent need_conversion() Fixed error handling in UPDATE with not updateable tables Fixed bug in null handling in CAST to signed/unsigned
-
- 08 Feb, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
fixed UNION preparation
-