Re: Replication update bug/error/problem.

2004-12-08 Thread Jay Ess
Eric Bergen wrote: Jay, Are you using the replicate-do-db option on the slave? This option relies on 'use' being set correctly when the query is issued. A quote from the manual explains it better than I can: Tells the slave to restrict replication to statements where the default database (that

Re: Replication update bug/error/problem.

2004-12-08 Thread Ware Adams
On Dec 8, 2004, at 9:12 AM, Jay Ess wrote: I am not using cross database updates. It is all on one database but the update uses two tables. The query update content_review_site as a,site_rating_factors as b set a.overall_rating = 77 where a.content_id=243 is a stripped down version of a bigger

Replication update bug/error/problem.

2004-12-07 Thread Jay Ess
I have a problem with an update query not replicating through to the slave. The query is update content_review_site as a,site_rating_factors as b set a.overall_rating = 77 where a.content_id=243 Version : 4.0.22 OS : Linux X86 How to replicate the error. CREATE TABLE content_review_site (

Re: Replication update bug/error/problem.

2004-12-07 Thread Eric Bergen
Jay, Are you using the replicate-do-db option on the slave? This option relies on 'use' being set correctly when the query is issued. A quote from the manual explains it better than I can: Tells the slave to restrict replication to statements where the default database (that is, the one

Re: update bug with limit syntax - MySQL Ver 4.011

2003-03-08 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: Description: It is unbelievable that the MySQL ver 4.0 have so many bug, I have been reported 2 bugs just a few days ago. Now, I have found a bug again. The bug is : When I execute select * from old_topic where FID=4 and

Re: update bug with limit syntax - MySQL Ver 4.011

2003-03-08 Thread Paul DuBois
At 9:45 -0600 3/8/03, Mark Matthews wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: Description: It is unbelievable that the MySQL ver 4.0 have so many bug, I have been reported 2 bugs just a few days ago. Now, I have found a bug again. The bug is : When I execute

update bug with limit syntax - MySQL Ver 4.011

2003-03-07 Thread miniwar
support | extended email support ] Synopsis: update bug with limit syntax Severity: Priority: Category: mysql Class: Release: mysql-4.0.11-gamma (Official MySQL RPM) C compiler:2.95.3 C++ compiler: 2.95.3 Environment: System: Linux ip-83-99-134-202

update bug again on Ver4.011.

2003-03-06 Thread miniwar
### How-To-Repeat: Fix: Submitter-Id: [EMAIL PROTECTED] Originator:root Organization: MySQL support: [none | licence | email support | extended email support ] Synopsis: update bug Severity: Priority: Category: mysql Class

update bug

2001-11-28 Thread Daniele Gasperini
I am using mysql 3.23.41 and I discovered this bug. Imagine you have a varchar column named nick. If you send this query it correctly fails: select * from users where nick = 0; because data types are different but if you issue this one: update users set psw = mypsw where nick = 0; it modifies all

UPDATE bug

2001-09-07 Thread nep
Description: Ok, I know I submitted an earlier bug report about this, but I've actually had it happen from the mysql monitor. Essentially, UPDATE queries are executing, but not actually updating, unless I SELECT data from the table first. How-To-Repeat: Simple as that. I have yet

Re: UPDATE bug

2001-09-07 Thread Jeremy Zawodny
On Wed, Jul 04, 2001 at 07:16:50PM -0500, [EMAIL PROTECTED] wrote: Ok, I know I submitted an earlier bug report about this, but I've actually had it happen from the mysql monitor. Essentially, UPDATE queries are executing, but not actually updating, unless I SELECT data from the table first.

UPDATE Bug fixed or not?

2001-05-28 Thread Manuel Trunk
Hi, regarding http://ep33.tp4.ruhr-uni-bochum.de/mlists/MySQL/May.2000/index.html#2025 , I had the same problem with MySQL 3.23.30. The following statement Update Tree set left=left+2 where (left$right and right=$right); sometimes (not reproducable) locked up MySQL completely. The left value in

Re: Possible UPDATE bug

2001-05-23 Thread Sinisa Milivojevic
locks rows involved, which is all. If the UPDATE is not working then it could be a bug, but we need more data to establish that. There was an update bug in the version you are using, so I suggest you upgrade to our 3.23.38 binary for your OS. Regards, Sinisa

Possible UPDATE bug

2001-05-22 Thread nep
Description: When updating a table after it has been selected with a LEFT JOIN, some UPDATE queries execute normally without actually updating the data, unless the data to be updated is selected normally first. This script is written in mod_perl, using DBI::mysql to connect to the

Update bug?

2001-04-13 Thread Maciek Dobrzanski
Hi, There might be some kind of bug in UPDATE. Let's say there is a 4 row table, which looks like this: | fd_01 | int(11) unsigned | | PRI | 0 | | | fd_02 | text | | | | | | fd_03 | varchar(4) | | |

Re: Update bug?

2001-04-13 Thread Timothy Smith
On 2001 Apr 13, Maciek Dobrzanski [EMAIL PROTECTED] wrote: | fd_10 | varchar(20) | | MUL | | | | fd_11 | varchar(20) | | | | | Now when I do this update: UPDATE test SET fd_11='value' WHERE fd_10='some_value' it usually

Re: Update bug?

2001-04-13 Thread Maciek Dobrzanski
This is because with the first query it can use the index. With the second query, it has to check the whole table. Why? Because obviously you're using numbers. And let's make some_value == 10. I thought that maybe MySQL should check the field type and do the conversion to string.

Re: Update bug?

2001-04-13 Thread Timothy Smith
On 2001 Apr 13, Maciek Dobrzanski [EMAIL PROTECTED] wrote: This is because with the first query it can use the index. With the second query, it has to check the whole table. Why? Because obviously you're using numbers. And let's make some_value == 10. I thought that maybe MySQL

log-update bug

2001-03-19 Thread Jerry . Zhao
Hi, Can you guys confirm that "create database" statements are not logged in the log-update log? The version I am using is 3.22.32. Regards, Jerry. - Before posting, please check: http://www.mysql.com/manual.php (the