mirror of
https://github.com/MariaDB/server.git
synced 2025-08-04 01:42:00 +03:00
BUILD
BitKeeper
Build-tools
Docs
Images
NEW-RPMS
bdb
client
dbug
div
extra
fs
heap
include
innobase
isam
libmysql
libmysql_r
libmysqld
man
merge
mit-pthreads
myisam
myisammrg
mysql-test
include
misc
r
alias.result
alter_table.result
analyse.result
auto_increment.result
backup.result
bdb-crash.result
bdb.result
bench_count_distinct.result
big_test.require
bigint.result
binary.result
case.result
check.result
comments.result
compare.result
count_distinct.result
count_distinct2.result
create.result
delayed.result
dirty-close.result
distinct.result
drop.result
empty_table.result
explain.result
flush.result
fulltext.result
fulltext_cache.result
fulltext_distinct.result
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result
fulltext_var.result
func_crypt.result
func_date_add.result
func_equal.result
func_group.result
func_in.result
func_like.result
func_math.result
func_misc.result
func_op.result
func_regexp.result
func_set.result
func_str.result
func_system.result
func_test.result
func_time.result
func_timestamp.result
gemini.result
group_by.result
handler.result
have_bdb.require
have_gemini.require
have_innodb.require
have_isam.require
have_raid.require
have_symlink.require
having.result
heap.result
innodb.result
ins000001.result
insert.result
insert_select.result
isolation.result
join.result
join_crash.result
join_outer.result
key.result
key_diff.result
key_primary.result
keywords.result
kill.result
limit.result
lock.result
merge.result
multi_update.result
myisam.result
null.result
null_key.result
odbc.result
order_by.result
order_fill_sortbuf.result
raid.result
range.result
rename.result
replace.result
rollback.result
rpl000001.a.result
rpl000001.b.result
rpl000001.result
rpl000002.result
rpl000003.result
rpl000004.a.result
rpl000004.b.result
rpl000004.result
rpl000005.result
rpl000006.result
rpl000007.result
rpl000008.result
rpl000009.result
rpl000010.result
rpl000011.result
rpl000012.result
rpl000013.result
rpl000014.result
rpl000015.result
rpl000016.result
rpl000017.result
rpl000018.result
rpl_log.result
rpl_magic.result
rpl_sporadic_master.result
sel000001.result
sel000002.result
sel000003.result
sel000031.result
sel000032.result
sel000033.result
sel000100.result
select.result
select_found.result
select_safe.result
show_check.result
slave-running.result
slave-stopped.result
status.result
symlink.result
tablelock.result
temp_table.result
truncate.result
type_blob.result
type_date.result
type_datetime.result
type_decimal.result
type_enum.result
type_float.result
type_ranges.result
type_time.result
type_timestamp.result
type_uint.result
type_year.result
update.result
user_var.result
varbinary.result
variables.result
std_data
t
xml
Makefile.am
README
README.gcov
create-test-result
install_test_db.sh
mysql-test-run.sh
mysys
pstack
readline
regex
repl-tests
scripts
sql
sql-bench
strings
support-files
tests
vio
.bzrignore
.cvsignore
Makefile.am
README
acconfig.h
acinclude.m4
config.guess
config.sub
configure.in
install-sh
ltconfig
ltmain.sh
missing
mkinstalldirs
stamp-h.in
Fixed error number handling bug in mysqltest. Fixed that error number from insert delayed is reported correctly. merged new vio code with old violite code. client/mysqltest.c: Fixed bug that error numbers wasn't tested properly. myisam/mi_check.c: Moved initialization of variables to avoid a bug. myisam/mi_create.c: Fixed bug in symlink handling. myisam/mi_test_all.sh: Fixed script so that it works. myisam/myisamchk.c: Removed --no-symlinks option mysql-test/mysql-test-run.sh: Cleaned up error message mysql-test/t/bdb.test: Fixed wrong error numbers mysql-test/t/err000001.test: Fixed wrong error numbers mysql-test/t/innodb.test: Fixed wrong error numbers mysql-test/t/overflow.test: Fixed wrong error numbers mysql-test/t/status.test: Ensure that we are using myisam tables for the lock test. mysys/my_delete.c: cleanup mysys/my_symlink2.c: Added option to not overwrite files when using symlinks. sql/Makefile.am: Moved vio to avoid link error. sql/ha_myisam.cc: Fixed symlink handling. sql/mysqld.cc: Changed --skip-symlinks to --skip-symlink sql/sql_insert.cc: Fixed that error number from insert delayed is reported correctly sql/sql_parse.cc: Fixed symlink handling. sql/sql_table.cc: Fixed symlink handling. vio/vio.c: cleanup vio/viosocket.c: c
24 lines
584 B
Plaintext
24 lines
584 B
Plaintext
Table Op Msg_type Msg_text
|
|
test.t9 check status OK
|
|
Table Op Msg_type Msg_text
|
|
test.t9 optimize status OK
|
|
Table Op Msg_type Msg_text
|
|
test.t9 repair status OK
|
|
Table Create Table
|
|
t9 CREATE TABLE `t9` (
|
|
`a` int(11) NOT NULL auto_increment,
|
|
`b` char(16) NOT NULL default '',
|
|
`c` int(11) NOT NULL default '0',
|
|
PRIMARY KEY (`a`)
|
|
) TYPE=MyISAM
|
|
count(*)
|
|
16724
|
|
Table Create Table
|
|
t9 CREATE TABLE `t9` (
|
|
`a` int(11) NOT NULL auto_increment,
|
|
`b` char(16) NOT NULL default '',
|
|
`c` int(11) NOT NULL default '0',
|
|
`d` int(11) NOT NULL default '0',
|
|
PRIMARY KEY (`a`)
|
|
) TYPE=MyISAM
|