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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
62c79bee
Commit
62c79bee
authored
Oct 03, 2006
by
kroki/tomash@moonlight.intranet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fix.
parent
5f6244c8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
mysql-test/extra/rpl_tests/rpl_insert_id.test
mysql-test/extra/rpl_tests/rpl_insert_id.test
+17
-0
sql/sql_class.cc
sql/sql_class.cc
+3
-1
No files found.
mysql-test/extra/rpl_tests/rpl_insert_id.test
View file @
62c79bee
...
...
@@ -337,6 +337,7 @@ DROP TABLE t1, t2;
DROP
PROCEDURE
IF
EXISTS
p1
;
DROP
FUNCTION
IF
EXISTS
f1
;
DROP
FUNCTION
IF
EXISTS
f2
;
DROP
FUNCTION
IF
EXISTS
f3
;
DROP
TABLE
IF
EXISTS
t1
,
t2
;
--
enable_warnings
...
...
@@ -366,6 +367,12 @@ END |
CREATE
FUNCTION
f2
()
RETURNS
INT
NOT
DETERMINISTIC
RETURN
LAST_INSERT_ID
()
|
CREATE
FUNCTION
f3
()
RETURNS
INT
MODIFIES
SQL
DATA
BEGIN
INSERT
INTO
t2
(
i
)
VALUES
(
LAST_INSERT_ID
());
RETURN
0
;
END
|
delimiter
;
|
INSERT
INTO
t1
VALUES
(
NULL
,
-
1
);
...
...
@@ -380,6 +387,15 @@ INSERT INTO t1 VALUES (NULL, LAST_INSERT_ID()), (NULL, LAST_INSERT_ID(5)),
INSERT
INTO
t1
VALUES
(
NULL
,
0
),
(
NULL
,
LAST_INSERT_ID
());
UPDATE
t1
SET
j
=
-
1
WHERE
i
IS
NULL
;
# Test statement-based replication of function calls.
INSERT
INTO
t1
(
i
)
VALUES
(
NULL
);
connection
master1
;
INSERT
INTO
t1
(
i
)
VALUES
(
NULL
);
connection
master
;
SELECT
f3
();
SELECT
*
FROM
t1
;
SELECT
*
FROM
t2
;
...
...
@@ -391,6 +407,7 @@ connection master;
DROP
PROCEDURE
p1
;
DROP
FUNCTION
f1
;
DROP
FUNCTION
f2
;
DROP
FUNCTION
f3
;
DROP
TABLE
t1
,
t2
;
...
...
sql/sql_class.cc
View file @
62c79bee
...
...
@@ -637,7 +637,7 @@ bool THD::store_globals()
THD::cleanup_after_query()
DESCRIPTION
This function is used to reset thread data to it
'
s default state.
This function is used to reset thread data to its default state.
NOTE
This function is not suitable for setting thread data to some
...
...
@@ -645,6 +645,7 @@ bool THD::store_globals()
different master threads may overwrite data of each other on
slave.
*/
void
THD
::
cleanup_after_query
()
{
if
(
!
in_sub_stmt
)
/* stored functions and triggers are a special case */
...
...
@@ -668,6 +669,7 @@ void THD::cleanup_after_query()
where
=
THD
::
DEFAULT_WHERE
;
}
/*
Convert a string to another character set
...
...
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