An error occurred fetching the project authors.
- 03 Oct, 2006 1 commit
-
-
iggy@rolltop.ignatz42.dyndns.org authored
-
- 18 Sep, 2006 1 commit
-
-
stewart@willster.(none) authored
Change things around so that we add a row for each log file group that lists the free space for that log file group.
-
- 14 Sep, 2006 1 commit
-
-
iggy@rolltop.ignatz42.dyndns.org authored
Bug#21424 mysqldump failing to export/import views. Dumps are created for the tables in each specified database then for the views in each specified database. This bug occurs when any database's views depend on the mysql database's table data while being restored. Added command line option --flush-privileges to the mysqldump utility which causes a FLUSH PRIVILIGES statement to be written to the dump after the mysql database.
-
- 01 Sep, 2006 2 commits
-
-
msvensson@neptunus.(none) authored
-
jimw@rama.(none) authored
so that 4.1 and 5.0 tests are all in the right place and no tests are duplicated.
-
- 28 Aug, 2006 1 commit
-
-
iggy@rolltop.ignatz42.dyndns.org authored
init_dumping now accepts a function pointer to the table or view specific init_dumping function. This allows both tables and views to use the init_dumping function.
-
- 17 Aug, 2006 1 commit
-
-
jimw@rama.(none) authored
The problem was that the error handling was using a too-small buffer to print the error message generated. We fix this by not using a buffer at all, but by using fprintf() directly. There were also some problems with the error handling in table dumping that was exposed by this fix that were also corrected.
-
- 14 Aug, 2006 1 commit
-
-
kostja@bodhi.local authored
-
- 03 Aug, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
-
- 02 Aug, 2006 2 commits
-
-
grog@eucla.lemis.com authored
Quote PKEY.
-
grog@eucla.lemis.com authored
Tidy up style: no space before = or +=.
-
- 24 Jul, 2006 7 commits
-
-
msvensson@neptunus.(none) authored
- Add call to 'safe_exit' function when db query fails.
-
msvensson@neptunus.(none) authored
Don't close connection to mysql before 'safe_exit', that is done in 'safe_exit' if it decides to exit.
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
tFlag => opt_no_create_info dFlag => opt_no_data
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
- Add printout in write_footer to tell that mysqldump has completed. Ex: -- Dump completed 2006-07-24 8:55:05
-
- 17 Jul, 2006 1 commit
-
-
iggy@rolltop.ignatz42.dyndns.org authored
-
- 14 Jul, 2006 1 commit
-
-
mysqldump did not select the correct database before trying to dump views from it. this resulted in an empty result set, which in turn startled mysql-dump into a core-dump. this only happened for views, not for tables, and was only visible with multiple databases that weren't by sheer luck in the order mysqldump required, anyway. this fixes by selecting the correct database before dumping views; it also catches the empty set-condition if it should occur for other reasons.
-
- 13 Jul, 2006 1 commit
-
-
mysqldump did not select the correct database before trying to dump views from it. this resulted in an empty result set, which in turn startled mysql-dump into a core-dump. this only happened for views, not for tables, and was only visible with multiple databases that weren't by sheer luck in the order mysqldump required, anyway. this fixes by selecting the correct database before dumping views; it also catches the empty set-condition if it should occur for other reasons.
-
- 21 Jun, 2006 1 commit
-
-
igreenhoe@mysql.com authored
-
- 06 Jun, 2006 1 commit
-
-
igor@rurik.mysql.com authored
-
- 31 May, 2006 1 commit
-
-
tnurnberg@mysql.com authored
(The above problem only occurs with -T -- create a separate file for each table / view.) This ChangeSet results in correct output of view- information while omitting the information for the view's stand-in table. The rationale is that with -T, the user is likely interested in transferring part of a database, not the db in its entirety (that would be difficult as replay order is obscure, the files being named for the table/view they contain rather than getting a sequence number).
-
- 30 May, 2006 1 commit
-
-
tnurnberg@mysql.com authored
'show create' works even on views that are short of a base-table (this throw a warning though, like you would expect). Unfortunately, this is not what mysqldump uses; it creates stand-in tables and hence requests 'show fields' on the view which fails with missing base-tables. The --force option prevents the dump from stopping at this point; furthermore this patch dumps a comment showing create for the offending view for better diagnostics. This solution was confirmed by submitter as solving their/clients' problem. Problem might become non-issue once mysqldump no longer creates stand-in tables.
-
- 29 May, 2006 2 commits
-
-
ramil@mysql.com authored
-
ramil@mysql.com authored
-
- 25 May, 2006 1 commit
-
-
grog@mysql.com authored
-
- 19 May, 2006 1 commit
-
-
ramil@mysql.com authored
-
- 26 Apr, 2006 1 commit
-
-
mskold@mysql.com authored
-
- 24 Apr, 2006 2 commits
-
-
mskold@mysql.com authored
-
mskold@mysql.com authored
Fix for Bug #17840 mysqldump should not dump tables in database cluster, skip cluster internal database
-
- 18 Apr, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
- Add new function 'ssl_verify_server_cert' which is used if we are connecting to the server with SSL. It will compare the hostname in the server's cert against the hostname that we used when connecting to the server. Will reject the connection if hostname does not match. - Add new option "OPT_SSL_VERIFY_SERVER_CERT" to be passed to mysql_options which will turn on checking of servers cert. - Add new argument "ssl-verify-server-cert" to all mysql* clients which will activate the above option. - Generate a new server cert with 1024 bits that has "localhost" as the server name.
-
- 10 Mar, 2006 1 commit
-
-
anozdrin@mysql.com authored
Now DEFINER-clause in stored routines is expected to appear in 5.0.20 release, not in 5.0.19. as it was supposed before.
-
- 09 Mar, 2006 1 commit
-
-
cmiller@calliope.local authored
the '-E' or '--events' flag. (Closes Bug#16853 and Bug#17714.) WARNING: At present, these tests fail due to b*g number 18078.
-
- 02 Mar, 2006 1 commit
-
-
anozdrin@mysql.com authored
The idea is to add DEFINER-clause in CREATE PROCEDURE and CREATE FUNCTION statements. Almost all support of definer in stored routines had been already done before this patch. NOTE: this patch changes behaviour of dumping stored routines in mysqldump. Before this patch, mysqldump did not dump DEFINER-clause for stored routines and this was documented behaviour. In order to get full information about stored routines, one should have dumped mysql.proc table. This patch changes this behaviour, so that DEFINER-clause is dumped. Since DEFINER-clause is not supported in CREATE PROCEDURE | FUNCTION statements before this patch, the clause is covered by additional version-specific comments.
-
- 23 Feb, 2006 2 commits
-
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
-
- 21 Feb, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
- Add comments with embeded veriosn info around the parts of the view syntax that are only supported by a certain version of MySQL Server
-
- 16 Feb, 2006 1 commit
-
-
serg@serg.mylan authored
-