An error occurred fetching the project authors.
- 17 Jul, 2005 1 commit
-
-
patg@radha.local authored
WHERE statement"
-
- 16 Jul, 2005 1 commit
-
-
patg@krsna.patg.net authored
deallocation cleanup
-
- 07 Jul, 2005 1 commit
-
-
jimw@mysql.com authored
-
- 29 Jun, 2005 1 commit
-
-
monty@mysql.com authored
nsure that delete works not only on table->record[0] for federated tables
-
- 22 Jun, 2005 1 commit
-
-
patg@radha.local authored
-
- 17 Jun, 2005 1 commit
-
-
jimw@mysql.com authored
-
- 05 Jun, 2005 1 commit
-
-
kent@mysql.com authored
Include "mysql_priv.h" before testing USE_PRAGMA_IMPLEMENTATION
-
- 27 May, 2005 1 commit
-
-
patg@radha.local authored
-
- 25 May, 2005 1 commit
-
-
patg@radha.local authored
changes to fix joins not working (bug #10848). New tests, as well as table->status being set in index_read_idx
-
- 23 May, 2005 1 commit
-
-
kent@mysql.com authored
Added BLACKHOLE and FEDERATED storage engines for max builds Some preparations for including yaSSL ha_federated.cc: Use local seach path for "mysql_priv.h"
-
- 27 Apr, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Remove linking of libsupc++ - Move all local static variables to filescope
-
- 06 Apr, 2005 1 commit
-
-
monty@mysql.com authored
Added suppression file for some valgrind warnings that are not real errors
-
- 17 Mar, 2005 1 commit
-
-
serg@serg.mylan authored
sql/item_cmpfunc.cc: typo fixed
-
- 16 Mar, 2005 2 commits
-
-
monty@mysql.com authored
Removed some optional arguments Fixed portability problem in federated tests
-
patg@krsna. authored
Edits to ha_federated.cc per Monty, cleanup
-
- 15 Mar, 2005 1 commit
-
-
patg@krsna. authored
Konstja and Georg, change sets 1.1806, 1.1805. These changes has been successfully tested on both my own workstation (Suse 9.0) and production.mysql.com.
-
- 23 Feb, 2005 2 commits
-
-
patg@krsna.patg.net authored
Patch #2, all coding style changes per Kostja's review (as requested to keep style changes separate from functionality changes), as well as changes to the test suit to no longer use hard-coded port values in foreign table creation statement
-
patg@krsna.patg.net authored
This is the first changeset of suggested changes recommended in Kostja's review of my patch, 1.1846, which includes only functionality changes. Style changes/Documentation patch to follow.
-
- 20 Feb, 2005 1 commit
-
-
petr@mysql.com authored
-
- 18 Feb, 2005 1 commit
-
-
patg@krsna.patg.net authored
for bugs 8033, 8065, 8535, 8582 This particular changeset contains style changes per code review suggestions and does not contain bug fixes in of itself. ha_federated.h: standardised code style to conform to internals.texi ha_federated.cc: more code standardisation to conform to internals.texi. - casts - declarations - comments - 80 char width also, append using string1.append(string2) and not string1.append(string2.c_ptr_quick())
-
- 17 Feb, 2005 1 commit
-
-
patg@krsna.patg.net authored
This changeset/patch is on top of changesets 1.1814 and 1.1846 (for bugs 8033 and 8065) and now fixes bug 8535. These changes have been built and tested successfully on build.mysql.com handler.cc: Added hooks for federated_db_init() and federated_db_end(), as done with ha_archive_db does, per suggestion by Ingo in code review of patch 1.1846. ha_federated.h: declaration of federated_db_init() and federated_db_end() ha_federated.cc: - Fixed some indentation problems from indent-ex (mainly to do with cases where "variablename += value" - Added federated_db_init() and federated_db_end(), as done with archive, which also handler more elegantly one of the memory leaks from bug 8033 where the federated_mutex was not freed - Removed extrenous debug messages in parse_url() - Fixed bug 8535, caused by NULL being quoted in write_row. This used to work (incorrectly) but a recent change was made in the server that exposed this
-
- 06 Feb, 2005 1 commit
-
-
patg@krsna.patg.net authored
This patch contains all that my previous patch (1.1814) contained, with the addition of using cli_fetch_lengths for handling binary data (Bar noted this on the review of 1.1814, Guilhem suggested using cli_fetch_lenghts by making available via removal of static in method definition and declaration in mysql.h, but Konstantin had some reservations, but he said to commit the patch using this anyway, and I suppose this can be discussed. I abandoned 1.1814 because Monty made a couple fixes to my code as well as formatting changes, and I thought it would just be easier to hand-edit my changes into a fresh clone and then make a patch. The reason for using cli_fetch_lengths is so that I can correctly get the length of the field I am setting into the field. I was previously using 'strlen' but Bar pointed out this won't correctly get the length of binary data and is also less effecient. Upon testing, it was in fact verified that binary data in a blob table was being inserted correctly, but not being retrieved correctly, all due to not having the correct value for the field: (*field)->store(row[x], strlen(row[x]), &my_charset_bin); was changed to: (*field)->store(row[x], lengths[x], &my_charset_bin); lengths being a unsigned long pointer to the values of the field lengths from a MYSQL_ROW. Since the server doesn't have the function "mysql_fetch_lengths" available, I tried to use "result->lengths", but this isn't set, so I finally successfully used cli_fetch_lenghts, which does give the correct lengths, and now the binary data gets retrieved correctly. I've also run the code through indent-ex and am using Brian's vimrc to ensure correct formatting! This code passes the entire test suite, without any errors or warning on both my workstation and build.mysql.com
-
- 02 Feb, 2005 1 commit
-
-
monty@mysql.com authored
-
- 26 Jan, 2005 1 commit
-
-
- 21 Jan, 2005 1 commit
-
-
patg@pc248.lfp.kcls.org authored
-New tests and results logging_ok: Logging to logging@openlogging.org accepted ha_federated.h: removed quote_data and type_quote (now in the Field class) ha_federated.cc: moved quote_data and type_quote to field class field.h: new methods quote_data and needs_quotes declared field.cc: new field class methods quote_data and needs_quotes (per Monty's request) federated.test: more tests, joins, index tests have_federated_db.require: new name of federated system var federated.result: new test results for federated handler have_federated_db.inc: changed name of variable in test due to change in vars sql_analyse.cc: over-ridden append_escaped to take (String *, char *, uint) per requirements of 'create_where_from_key' method in federated handler. mysql_priv.h: define over-ridden append_escaped to take arguments from 'create_where_from_key' method in federated handler ha_federated.cc: implemented "create_where_from_key" to deal properly with two-byte prefix and multi keys. Initial testing shows it works, but I still need to move quoting to field class and also look at changes per Segei's suggestions.
-
- 20 Jan, 2005 1 commit
-
-
tomas@poseidon.ndb.mysql.com authored
No commit message
-
- 14 Jan, 2005 1 commit
-
-
- 12 Jan, 2005 1 commit
-
-
monty@mysql.com authored
-
- 07 Jan, 2005 1 commit
-
-
brian@zim.(none) authored
The test case does not currently work (I am comitting this so that Patrick will have a working copy). I am going to look at the test case next. It is suspected that it is failing do to a change in mysql_test_run.
-
- 05 Jan, 2005 1 commit
-
-
serg@sergbook.mysql.com authored
-
- 04 Jan, 2005 1 commit
-
-
serg@sergbook.mysql.com authored
-
- 17 Dec, 2004 1 commit
-
-
- 11 Dec, 2004 1 commit
-
-
First commit to mysql-5.0 tree to include MySQL Federated Storage Handler. This includes both the source and header files, test (results, test, require), and modifications to server and handler base files, and autoconf modifications to properly build federated handler.
-