[Groonga-mysql-commit] mroonga/mroonga [fix-for-visual-studio] test: add a space after ", "

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 4 10:39:51 JST 2012


Kouhei Sutou	2012-03-28 11:43:38 +0900 (Wed, 28 Mar 2012)

  New Revision: 0790006ff9689ec862f2ba89610dd54342b0fb34
  https://github.com/mroonga/mroonga/commit/0790006ff9689ec862f2ba89610dd54342b0fb34

  Log:
    test: add a space after ","

  Modified files:
    test/sql/suite/mroonga_storage/r/optimization_skip_count_multithread.result
    test/sql/suite/mroonga_storage/t/optimization_skip_count_multithread.test

  Modified: test/sql/suite/mroonga_storage/r/optimization_skip_count_multithread.result (+6 -6)
===================================================================
--- test/sql/suite/mroonga_storage/r/optimization_skip_count_multithread.result    2012-03-28 11:41:37 +0900 (6386954)
+++ test/sql/suite/mroonga_storage/r/optimization_skip_count_multithread.result    2012-03-28 11:43:38 +0900 (350553a)
@@ -7,11 +7,11 @@ c3 TEXT,
 KEY idx1(c2),
 FULLTEXT INDEX ft(c3)
 );
-INSERT INTO t1 VALUES(1,10,"aa ii uu ee oo");
-INSERT INTO t1 VALUES(2,20,"ka ki ku ke ko");
-INSERT INTO t1 VALUES(3,30,"sa si su se so");
-INSERT INTO t1 VALUES(4,40,"ta ti tu te to");
-INSERT INTO t1 VALUES(5,50,"aa ii uu ee oo");
+INSERT INTO t1 VALUES(1, 10, "aa ii uu ee oo");
+INSERT INTO t1 VALUES(2, 20, "ka ki ku ke ko");
+INSERT INTO t1 VALUES(3, 30, "sa si su se so");
+INSERT INTO t1 VALUES(4, 40, "ta ti tu te to");
+INSERT INTO t1 VALUES(5, 50, "aa ii uu ee oo");
 SHOW STATUS LIKE 'mroonga_count_skip';
 Variable_name	Value
 mroonga_count_skip	0
@@ -21,7 +21,7 @@ COUNT(*)
 SHOW STATUS LIKE 'mroonga_count_skip';
 Variable_name	Value
 mroonga_count_skip	1
-INSERT INTO t1 VALUES(6,60,"");
+INSERT INTO t1 VALUES(6, 60, "");
 SHOW STATUS LIKE 'mroonga_count_skip';
 Variable_name	Value
 mroonga_count_skip	1

  Modified: test/sql/suite/mroonga_storage/t/optimization_skip_count_multithread.test (+7 -7)
===================================================================
--- test/sql/suite/mroonga_storage/t/optimization_skip_count_multithread.test    2012-03-28 11:41:37 +0900 (330eccf)
+++ test/sql/suite/mroonga_storage/t/optimization_skip_count_multithread.test    2012-03-28 11:43:38 +0900 (317a35b)
@@ -30,19 +30,19 @@ CREATE TABLE t1 (
   FULLTEXT INDEX ft(c3)
 );
 
-INSERT INTO t1 VALUES(1,10,"aa ii uu ee oo");
-INSERT INTO t1 VALUES(2,20,"ka ki ku ke ko");
-INSERT INTO t1 VALUES(3,30,"sa si su se so");
-INSERT INTO t1 VALUES(4,40,"ta ti tu te to");
-INSERT INTO t1 VALUES(5,50,"aa ii uu ee oo");
+INSERT INTO t1 VALUES(1, 10, "aa ii uu ee oo");
+INSERT INTO t1 VALUES(2, 20, "ka ki ku ke ko");
+INSERT INTO t1 VALUES(3, 30, "sa si su se so");
+INSERT INTO t1 VALUES(4, 40, "ta ti tu te to");
+INSERT INTO t1 VALUES(5, 50, "aa ii uu ee oo");
 
 SHOW STATUS LIKE 'mroonga_count_skip';
 SELECT COUNT(*) FROM t1 WHERE MATCH(c3) AGAINST("+su" IN BOOLEAN MODE);
 SHOW STATUS LIKE 'mroonga_count_skip';
 
-CONNECT (thread2, localhost, root,,);
+CONNECT (thread2, localhost, root, ,);
 CONNECTION thread2;
-INSERT INTO t1 VALUES(6,60,"");
+INSERT INTO t1 VALUES(6, 60, "");
 DISCONNECT thread2;
 CONNECTION default;
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index