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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d0edf322
Commit
d0edf322
authored
Sep 04, 2008
by
He Zhenxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use MyISAM for all tables created in mtr_warnings.sql
parent
6b9e2b9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
mysql-test/include/mtr_warnings.sql
mysql-test/include/mtr_warnings.sql
+5
-5
No files found.
mysql-test/include/mtr_warnings.sql
View file @
d0edf322
...
...
@@ -8,7 +8,7 @@ use mtr||
--
CREATE
TABLE
suspicious_patterns
(
pattern
VARCHAR
(
255
)
)
||
)
ENGINE
=
MyISAM
||
--
...
...
@@ -46,7 +46,7 @@ INSERT INTO suspicious_patterns VALUES
--
CREATE
TABLE
test_supressions
(
pattern
VARCHAR
(
255
)
)
||
)
ENGINE
=
MyISAM
||
--
...
...
@@ -69,7 +69,7 @@ END
--
CREATE
TABLE
global_supressions
(
pattern
VARCHAR
(
255
)
)
||
)
ENGINE
=
MyISAM
||
-- Declare a trigger that makes sure
...
...
@@ -227,7 +227,7 @@ BEGIN
CREATE
TEMPORARY
TABLE
error_log
(
row
INT
AUTO_INCREMENT
PRIMARY
KEY
,
line
mediumtext
NULL
);
)
ENGINE
=
MyISAM
;
SELECT
variable_value
INTO
@
log_error
FROM
information_schema
.
global_variables
...
...
@@ -255,7 +255,7 @@ BEGIN
WHERE
line
REGEXP
"^CURRENT_TEST:"
;
DELETE
FROM
error_log
WHERE
row
<
@
max_row
;
CREATE
TEMPORARY
TABLE
suspect_lines
AS
CREATE
TEMPORARY
TABLE
suspect_lines
ENGINE
=
MyISAM
AS
SELECT
DISTINCT
el
.
line
,
0
as
"supressed"
FROM
error_log
el
,
suspicious_patterns
ep
WHERE
el
.
line
REGEXP
ep
.
pattern
;
...
...
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