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
319cd7e4
Commit
319cd7e4
authored
Mar 08, 2008
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge kaamos.(none):/data/src/opt/bug34889/my50
into kaamos.(none):/data/src/opt/mysql-5.0-opt
parents
a104844d
0c1dd98e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
sql/sql_insert.cc
sql/sql_insert.cc
+2
-1
tests/mysql_client_test.c
tests/mysql_client_test.c
+16
-0
No files found.
sql/sql_insert.cc
View file @
319cd7e4
...
...
@@ -3006,7 +3006,8 @@ bool select_insert::send_eof()
((
thd
->
client_capabilities
&
CLIENT_FOUND_ROWS
)
?
info
.
touched
:
info
.
updated
);
id
=
autoinc_value_of_first_inserted_row
>
0
?
autoinc_value_of_first_inserted_row
:
thd
->
last_insert_id
;
autoinc_value_of_first_inserted_row
:
thd
->
insert_id_used
?
thd
->
last_insert_id
:
0
;
::
send_ok
(
thd
,
(
ulong
)
thd
->
row_count_func
,
id
,
buff
);
DBUG_RETURN
(
0
);
}
...
...
tests/mysql_client_test.c
View file @
319cd7e4
...
...
@@ -15241,6 +15241,22 @@ static void test_mysql_insert_id()
myquery
(
rc
);
res
=
mysql_insert_id
(
mysql
);
DIE_UNLESS
(
res
==
0
);
/*
Test for bug #34889: mysql_client_test::test_mysql_insert_id test fails
sporadically
*/
rc
=
mysql_query
(
mysql
,
"create table t2 (f1 int not null primary key auto_increment, f2 varchar(255))"
);
myquery
(
rc
);
rc
=
mysql_query
(
mysql
,
"insert into t2 values (null,'b')"
);
myquery
(
rc
);
rc
=
mysql_query
(
mysql
,
"insert into t1 select 5,'c'"
);
myquery
(
rc
);
res
=
mysql_insert_id
(
mysql
);
DIE_UNLESS
(
res
==
0
);
rc
=
mysql_query
(
mysql
,
"drop table t2"
);
myquery
(
rc
);
rc
=
mysql_query
(
mysql
,
"insert into t1 select null,'d'"
);
myquery
(
rc
);
res
=
mysql_insert_id
(
mysql
);
...
...
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