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
38d0256b
Commit
38d0256b
authored
Jul 28, 2022
by
Thirunarayanan Balathandayuthapani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fixed the change_column_collation test case to avoid the
loss of debug sync signal
parent
2658410a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/suite/innodb/r/change_column_collation.result
mysql-test/suite/innodb/r/change_column_collation.result
+1
-1
mysql-test/suite/innodb/t/change_column_collation.test
mysql-test/suite/innodb/t/change_column_collation.test
+1
-1
No files found.
mysql-test/suite/innodb/r/change_column_collation.result
View file @
38d0256b
...
...
@@ -40,9 +40,9 @@ INSERT INTO t1 VALUES (4, 'AAA');
UPDATE t1 set msg = "ddd" where id = 2;
DELETE FROM t1 WHERE id= 3;
SET DEBUG_SYNC = 'now SIGNAL go_ahead';
SET DEBUG_SYNC = 'RESET';
connection default;
ERROR 23000: Duplicate entry 'NULL' for key 'msg'
SET DEBUG_SYNC = 'RESET';
SELECT * FROM t1;
id msg
4 AAA
...
...
mysql-test/suite/innodb/t/change_column_collation.test
View file @
38d0256b
...
...
@@ -63,13 +63,13 @@ INSERT INTO t1 VALUES (4, 'AAA');
UPDATE
t1
set
msg
=
"ddd"
where
id
=
2
;
DELETE
FROM
t1
WHERE
id
=
3
;
SET
DEBUG_SYNC
=
'now SIGNAL go_ahead'
;
SET
DEBUG_SYNC
=
'RESET'
;
connection
default
;
--
error
ER_DUP_ENTRY
reap
;
SET
DEBUG_SYNC
=
'RESET'
;
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
...
...
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