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
ead98fe5
Commit
ead98fe5
authored
4 years ago
by
Varun Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing a test
parent
127ed74f
Branches unavailable
Tags unavailable
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/main/delete_innodb.result
mysql-test/main/delete_innodb.result
+1
-1
mysql-test/main/delete_innodb.test
mysql-test/main/delete_innodb.test
+1
-1
No files found.
mysql-test/main/delete_innodb.result
View file @
ead98fe5
...
@@ -6,7 +6,7 @@ SET @save_sort_buffer_size= @@sort_buffer_size;
...
@@ -6,7 +6,7 @@ SET @save_sort_buffer_size= @@sort_buffer_size;
SET sort_buffer_size=1024;
SET sort_buffer_size=1024;
CREATE TABLE t1(c1 CHAR(255) PRIMARY KEY) ENGINE=InnoDB;
CREATE TABLE t1(c1 CHAR(255) PRIMARY KEY) ENGINE=InnoDB;
INSERT INTO t1 VALUES (0), ('a'), ('b');
INSERT INTO t1 VALUES (0), ('a'), ('b');
ANALYZE TABLE
T
1 PERSISTENT FOR ALL;
ANALYZE TABLE
t
1 PERSISTENT FOR ALL;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
test.t1 analyze status OK
...
...
This diff is collapsed.
Click to expand it.
mysql-test/main/delete_innodb.test
View file @
ead98fe5
...
@@ -12,7 +12,7 @@ SET sort_buffer_size=1024;
...
@@ -12,7 +12,7 @@ SET sort_buffer_size=1024;
CREATE
TABLE
t1
(
c1
CHAR
(
255
)
PRIMARY
KEY
)
ENGINE
=
InnoDB
;
CREATE
TABLE
t1
(
c1
CHAR
(
255
)
PRIMARY
KEY
)
ENGINE
=
InnoDB
;
INSERT
INTO
t1
VALUES
(
0
),
(
'a'
),
(
'b'
);
INSERT
INTO
t1
VALUES
(
0
),
(
'a'
),
(
'b'
);
ANALYZE
TABLE
T
1
PERSISTENT
FOR
ALL
;
ANALYZE
TABLE
t
1
PERSISTENT
FOR
ALL
;
SELECT
*
FROM
t1
;
SELECT
*
FROM
t1
;
EXPLAIN
DELETE
b
FROM
t1
AS
a
JOIN
t1
AS
b
;
EXPLAIN
DELETE
b
FROM
t1
AS
a
JOIN
t1
AS
b
;
DELETE
b
FROM
t1
AS
a
JOIN
t1
AS
b
;
DELETE
b
FROM
t1
AS
a
JOIN
t1
AS
b
;
...
...
This diff is collapsed.
Click to expand it.
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