Re: Doing select @a does not work in replication.

2003-04-02 Thread Sinisa Milivojevic
Scott Wong writes: > I'm not sure if this is a feature or not so i'll just report it as a possible bug. > I couldnt find anything in the documentation. > > > How to repeat: > > create table t1(id int); > insert into t1 set id=0; > select @a:max(id)+1 from t1; > insert into t1 [EMAIL PROTECTED]

Re: Doing select @a does not work in replication.

2003-04-02 Thread Gelu Gogancea
TED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 6:53 PM Subject: Doing select @a does not work in replication. I'm not sure if this is a feature or not so i'll just report it as a possible bug. I couldnt find anything in the documentation. How to repeat: create table

Doing select @a does not work in replication.

2003-04-02 Thread Scott Wong
I'm not sure if this is a feature or not so i'll just report it as a possible bug. I couldnt find anything in the documentation. How to repeat: create table t1(id int); insert into t1 set id=0; select @a:max(id)+1 from t1; insert into t1 [EMAIL PROTECTED]; Result on master: mysql> select *