mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Fix typos in mysql-test/
This commit is contained in:
committed by
Daniel Black
parent
40c5b62531
commit
1b95e46524
@@ -65,7 +65,7 @@ while(<IN_FILE>) {
|
||||
}
|
||||
close(IN_FILE);
|
||||
close(OUT_FILE);
|
||||
# move the new content from tmp file to the orginal file.
|
||||
# move the new content from tmp file to the original file.
|
||||
move ("$dir/tmp/tmpfile", "$dir/tmp/$file");
|
||||
EOF
|
||||
|
||||
|
@@ -93,7 +93,7 @@ while(<IN_FILE>)
|
||||
}
|
||||
close(IN_FILE);
|
||||
close(OUT_FILE);
|
||||
# move the new content from tmp file to the orginal file.
|
||||
# move the new content from tmp file to the original file.
|
||||
move ("$dir/tmp/innochecksum_3_tempfile", "$dir/tmp/$file");
|
||||
closedir(DIR);
|
||||
EOF
|
||||
@@ -128,7 +128,7 @@ while(<IN_FILE>)
|
||||
}
|
||||
close(IN_FILE);
|
||||
close(OUT_FILE);
|
||||
# move the new content from tmp file to the orginal file.
|
||||
# move the new content from tmp file to the original file.
|
||||
move ("$dir/tmp/innochecksum_3_tempfile", "$dir/tmp/$file");
|
||||
closedir(DIR);
|
||||
EOF
|
||||
@@ -158,7 +158,7 @@ while(<IN_FILE>)
|
||||
}
|
||||
close(IN_FILE);
|
||||
close(OUT_FILE);
|
||||
# move the new content from tmp file to the orginal file.
|
||||
# move the new content from tmp file to the original file.
|
||||
move ("$dir/tmp/innochecksum_3_tempfile", "$dir/tmp/$file");
|
||||
closedir(DIR);
|
||||
EOF
|
||||
|
@@ -586,7 +586,7 @@ DROP TABLE worklog5743;
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Prefix index with utf8 charset
|
||||
# utf8 charcter takes 3 bytes in mysql so prefix index limit is 3072/3 = 1024
|
||||
# utf8 character takes 3 bytes in mysql so prefix index limit is 3072/3 = 1024
|
||||
CREATE TABLE worklog5743 (
|
||||
col_1_text TEXT (4000) CHARACTER SET 'utf8',
|
||||
col_2_text TEXT (4000) CHARACTER SET 'utf8',
|
||||
@@ -624,7 +624,7 @@ SELECT col_1_varchar = REPEAT("c", 4000) FROM worklog5743;
|
||||
DROP TABLE worklog5743;
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# prefinx index on utf8 charset with transaction
|
||||
# prefix index on utf8 charset with transaction
|
||||
CREATE TABLE worklog5743 (
|
||||
col_1_varbinary VARBINARY (4000) ,
|
||||
col_2_varchar VARCHAR (4000) CHARACTER SET 'utf8',
|
||||
@@ -872,7 +872,7 @@ SELECT tbl1.col_1_varchar = tbl2.col_1_varchar
|
||||
FROM worklog5743 tbl1 , worklog5743 tbl2
|
||||
WHERE tbl1.col_1_varchar = tbl2.col_1_varchar ;
|
||||
|
||||
# Select in subquey
|
||||
# Select in subquery
|
||||
SELECT tbl1.col_1_varchar = REPEAT("c", 4000) FROM worklog5743 tbl1
|
||||
WHERE col_1_varchar IN (SELECT tbl2.col_1_varchar FROM worklog5743 tbl2) ;
|
||||
SELECT tbl1.col_1_varchar = REPEAT("c", 4000) FROM worklog5743 tbl1
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#*******************************************************************
|
||||
# This testcase is to test the funcitionality of wl#6344
|
||||
# This testcase is to test the functionality of wl#6344
|
||||
# When the innodb_compression_level=0 create a table with page size
|
||||
# 1K and load data
|
||||
# When the innodb_compression_level=9 create a table with page size
|
||||
|
Reference in New Issue
Block a user