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
0af6a5fa
Commit
0af6a5fa
authored
Aug 28, 2007
by
tsmith@ramayana.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix another compiler warning on Windows in InnoDB.
parent
88b8ad10
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
0af6a5fa
...
@@ -7324,7 +7324,7 @@ ha_innobase::get_auto_increment(
...
@@ -7324,7 +7324,7 @@ ha_innobase::get_auto_increment(
/* Called for the first time ? */
/* Called for the first time ? */
if
(
prebuilt
->
trx
->
n_autoinc_rows
==
0
)
{
if
(
prebuilt
->
trx
->
n_autoinc_rows
==
0
)
{
prebuilt
->
trx
->
n_autoinc_rows
=
nb_desired_values
;
prebuilt
->
trx
->
n_autoinc_rows
=
(
ulint
)
nb_desired_values
;
/* It's possible for nb_desired_values to be 0:
/* It's possible for nb_desired_values to be 0:
e.g., INSERT INTO T1(C) SELECT C FROM T2; */
e.g., INSERT INTO T1(C) SELECT C FROM T2; */
...
...
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