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
07494006
Commit
07494006
authored
Aug 22, 2023
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.5 into 10.6
parents
a60462d9
f9cc2982
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
mysql-test/lib/My/Debugger.pm
mysql-test/lib/My/Debugger.pm
+1
-1
mysql-test/suite/innodb/r/row_size_error_log_warnings_3.result
...-test/suite/innodb/r/row_size_error_log_warnings_3.result
+3
-4
mysql-test/suite/innodb/t/row_size_error_log_warnings_3.test
mysql-test/suite/innodb/t/row_size_error_log_warnings_3.test
+3
-4
No files found.
mysql-test/lib/My/Debugger.pm
View file @
07494006
...
...
@@ -94,7 +94,7 @@ py
import
subprocess
,
shlex
,
time
valg
=
subprocess
.
Popen
(
shlex
.
split
("""
valgrind --tool=memcheck --show-reachable=yes --leak-check=yes --num-callers=16 --quiet --suppressions=valgrind.supp --vgdb-error=0 {exe} {args} --loose-wait-for-pos-timeout=1500
"""))
time
.
sleep
(
2
)
gdb
.
execute
("
target remote |
/usr/lib64/valgrind/../../bin/
vgdb --pid=
"
+
str
(
valg
.
pid
))
gdb
.
execute
("
target remote | vgdb --pid=
"
+
str
(
valg
.
pid
))
EEE
pre
=>
sub
{
my
$debug_libraries_path
=
"
/usr/lib/debug
";
...
...
mysql-test/suite/innodb/r/row_size_error_log_warnings_3.result
View file @
07494006
...
...
@@ -51,14 +51,13 @@ set global innodb_compression_level=1;
CREATE TABLE t1(
f1 INT, f2 CHAR(200), f3 CHAR(200),
f4 CHAR(200), f5 CHAR(200), f6 CHAR(200),
f7 CHAR(200), f8 CHAR(200), f9 CHAR(
200
),
f10 CHAR(200),
PRIMARY KEY(f1, f2(20), f3(20), f4(20))
f7 CHAR(200), f8 CHAR(200), f9 CHAR(
106
),
PRIMARY KEY(f1, f2(20), f3(20), f4(20))
) ROW_FORMAT=COMPRESSED, ENGINE=InnoDB;
INSERT INTO t1 SELECT seq, repeat('a', 200), repeat('b', 200),
repeat('c', 200), repeat('d', 200),
repeat('d', 200), repeat('e', 200),
repeat('e', 200), repeat('f', 200),
repeat('g', 200) FROM seq_1_to_20;
repeat('f', 200), repeat('g', 106) FROM seq_1_to_20;
DROP TABLE t1;
set global innodb_compression_level=default;
CREATE TABLE t1(f1 char(200), f2 char(200), f3 char(200),
...
...
mysql-test/suite/innodb/t/row_size_error_log_warnings_3.test
View file @
07494006
...
...
@@ -49,15 +49,14 @@ set global innodb_compression_level=1;
CREATE
TABLE
t1
(
f1
INT
,
f2
CHAR
(
200
),
f3
CHAR
(
200
),
f4
CHAR
(
200
),
f5
CHAR
(
200
),
f6
CHAR
(
200
),
f7
CHAR
(
200
),
f8
CHAR
(
200
),
f9
CHAR
(
200
),
f10
CHAR
(
200
),
PRIMARY
KEY
(
f1
,
f2
(
20
),
f3
(
20
),
f4
(
20
))
f7
CHAR
(
200
),
f8
CHAR
(
200
),
f9
CHAR
(
106
),
PRIMARY
KEY
(
f1
,
f2
(
20
),
f3
(
20
),
f4
(
20
))
)
ROW_FORMAT
=
COMPRESSED
,
ENGINE
=
InnoDB
;
INSERT
INTO
t1
SELECT
seq
,
repeat
(
'a'
,
200
),
repeat
(
'b'
,
200
),
repeat
(
'c'
,
200
),
repeat
(
'd'
,
200
),
repeat
(
'd'
,
200
),
repeat
(
'e'
,
200
),
repeat
(
'e'
,
200
),
repeat
(
'f'
,
200
),
repeat
(
'g'
,
200
)
FROM
seq_1_to_20
;
repeat
(
'f'
,
200
),
repeat
(
'g'
,
106
)
FROM
seq_1_to_20
;
DROP
TABLE
t1
;
set
global
innodb_compression_level
=
default
;
...
...
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