Below is the list of changes that have just been committed into a local
5.1 repository of hf. When hf does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-01-09 11:18:27+04:00, holyfoot@hfmain.(none) +1 -0
Merge bk@stripped:mysql-5.1
into mysql.com:/d2/hf/opt/my51-opt
MERGE: 1.2372.1.6
mysql-test/t/csv.test@stripped, 2007-01-09 11:18:25+04:00, holyfoot@hfmain.(none) +0 -0
Auto merged
MERGE: 1.18.1.1
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: holyfoot
# Host: hfmain.(none)
# Root: /d2/hf/opt/my51-opt/RESYNC
--- 1.19/mysql-test/t/csv.test 2007-01-09 11:18:31 +04:00
+++ 1.20/mysql-test/t/csv.test 2007-01-09 11:18:31 +04:00
@@ -1596,7 +1596,7 @@ insert into bug22080_1 values(2,'string'
insert into bug22080_1 values(3,'string');
# Currupt the file as described in the bug report
---exec sed -e 's/"2"/2"/' $MYSQLTEST_VARDIR/master-data/test/bug22080_1.CSV > $MYSQLTEST_VARDIR/master-data/test/bug22080_2.CSV
+--exec sed -e 's/2/2"/' $MYSQLTEST_VARDIR/master-data/test/bug22080_1.CSV > $MYSQLTEST_VARDIR/master-data/test/bug22080_2.CSV
--exec sed -e 's/2","/2",/' $MYSQLTEST_VARDIR/master-data/test/bug22080_1.CSV > $MYSQLTEST_VARDIR/master-data/test/bug22080_3.CSV
--exec cat $MYSQLTEST_VARDIR/master-data/test/bug22080_2.CSV
@@ -1606,3 +1606,17 @@ check table bug22080_2;
check table bug22080_3;
drop tables bug22080_1,bug22080_2,bug22080_3;
+
+#
+# Testing float type
+#
+create table float_test (id float,string varchar(64)) Engine=CSV;
+insert into float_test values(1.0,'string');
+insert into float_test values(2.23,'serg.g');
+insert into float_test values(0.03,'string');
+insert into float_test values(0.19,'string');
+insert into float_test values(.67,'string');
+insert into float_test values(9.67,'string');
+select * from float_test;
+
+drop table float_test;
| Thread |
|---|
| • bk commit into 5.1 tree (holyfoot:1.2381) | holyfoot | 9 Jan |