Created
November 8, 2016 08:24
-
-
Save do-aki/928a3f5c29178d9cf06d0c9223fe11dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# スレッドA,B 生成前に実行 | |
> create table t1( id int not null auto_increment, hoge varchar(255) not null, primary key(id) )engine=innodb; | |
> insert into t1 values (1, "hoge"); | |
スレッドA | |
> drop table t1; | |
> create table t1( id int not null auto_increment, primary key(id) )engine=innodb; | |
> insert into t1 values (1); | |
スレッドB | |
> select * from t1 where id = 1; | |
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'hoge' in 'field list' <- タイミングによって発生? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment