Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0b8d7d83
Commit
0b8d7d83
authored
Jun 11, 2004
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test suite for bug Bug#3969 (commited separetely because it took too long time to parse it on 3.23)
parent
3bf0b972
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
1 deletion
+32
-1
client/mysqltest.c
client/mysqltest.c
+1
-1
mysql-test/r/rpl_free_items.result
mysql-test/r/rpl_free_items.result
+10
-0
mysql-test/t/rpl_free_items-slave.opt
mysql-test/t/rpl_free_items-slave.opt
+1
-0
mysql-test/t/rpl_free_items.test
mysql-test/t/rpl_free_items.test
+20
-0
No files found.
client/mysqltest.c
View file @
0b8d7d83
...
...
@@ -59,7 +59,7 @@
#include <sys/stat.h>
#include <violite.h>
#define MAX_QUERY
65536
#define MAX_QUERY
131072
#define MAX_COLUMNS 256
#define PAD_SIZE 128
#define MAX_CONS 128
...
...
mysql-test/r/rpl_free_items.result
0 → 100644
View file @
0b8d7d83
slave stop;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
slave start;
create table t1 (a int);
create table t2 (a int);
drop table t1;
drop table t2;
mysql-test/t/rpl_free_items-slave.opt
0 → 100644
View file @
0b8d7d83
--replicate-wild-ignore-table=test.%
mysql-test/t/rpl_free_items.test
0 → 100644
View file @
0b8d7d83
source
include
/
master
-
slave
.
inc
;
create
table
t1
(
a
int
);
create
table
t2
(
a
int
);
disable_query_log
;
SET
@
query
=
"INSERT INTO t2 SELECT * FROM t1 WHERE a REGEXP
\"
0
\"
"
;
let
$
1
=
2000
;
while
(
$
1
)
{
eval
SET
@
query
=
concat
(
@
query
,
" OR a REGEXP '$1'"
);
dec
$
1
;
}
let
$
1
=
`select @query`
;
eval
$
1
;
enable_query_log
;
# I have seen the slave crash either now or at shutdown
sync_slave_with_master
;
connection
master
;
drop
table
t1
;
drop
table
t2
;
sync_slave_with_master
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment