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
7753eae1
Commit
7753eae1
authored
Apr 23, 2022
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-28393 Server crashes in TABLE::mark_default_fields_for_write
test only
parent
1a94d2fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
mysql-test/r/create_select.result
mysql-test/r/create_select.result
+11
-0
mysql-test/t/create_select.test
mysql-test/t/create_select.test
+13
-0
No files found.
mysql-test/r/create_select.result
View file @
7753eae1
...
...
@@ -24,3 +24,14 @@ drop table t1;
#
# End of 4.1 tests
#
#
# MDEV-28393 Server crashes in TABLE::mark_default_fields_for_write
#
create table t1 (a int, b text not null default '');
alter table t1 character set = utf8;
create table t2 select * from t1;
insert into t1 values (1,'');
drop table t1, t2;
#
# End of 10.2 tests
#
mysql-test/t/create_select.test
View file @
7753eae1
...
...
@@ -37,3 +37,16 @@ drop table t1;
--
echo
#
--
echo
# End of 4.1 tests
--
echo
#
--
echo
#
--
echo
# MDEV-28393 Server crashes in TABLE::mark_default_fields_for_write
--
echo
#
create
table
t1
(
a
int
,
b
text
not
null
default
''
);
alter
table
t1
character
set
=
utf8
;
create
table
t2
select
*
from
t1
;
insert
into
t1
values
(
1
,
''
);
drop
table
t1
,
t2
;
--
echo
#
--
echo
# End of 10.2 tests
--
echo
#
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