diff options
author | tsmith@sita.local <> | 2007-07-09 03:27:03 -0600 |
---|---|---|
committer | tsmith@sita.local <> | 2007-07-09 03:27:03 -0600 |
commit | 5f12f35c3424127f8b80c6b6ecc658c24650ea8e (patch) | |
tree | a96c6f8f663f3241acd88553098532553c33ed17 /mysql-test/r/csv.result | |
parent | b37c24c439282ed2497534b1515cde1fdf32057e (diff) | |
parent | eac626bde6dfa170254290d2fb0c73f9dd49d06d (diff) | |
download | mariadb-git-5f12f35c3424127f8b80c6b6ecc658c24650ea8e.tar.gz |
Merge sita.local:/Users/tsmith/m/bk/51
into sita.local:/Users/tsmith/m/bk/maint/51
This merge requires a post-merge fix to remove rpl_udf from
suite/rpl/t/disabled.def.
Diffstat (limited to 'mysql-test/r/csv.result')
-rw-r--r-- | mysql-test/r/csv.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/csv.result b/mysql-test/r/csv.result index 6335d890a95..65677e75ceb 100644 --- a/mysql-test/r/csv.result +++ b/mysql-test/r/csv.result @@ -5259,6 +5259,14 @@ CREATE TABLE `bug21328` ( insert into bug21328 values (1,NULL,NULL); alter table bug21328 engine=myisam; drop table bug21328; +create table t1(a blob, b int) engine=csv; +insert into t1 values('a', 1); +flush tables; +update t1 set b=2; +select * from t1; +a b +a 2 +drop table t1; create table t1(a int) engine=csv; insert into t1 values(-1), (-123.34), (2), (-23); select * from t1; |