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
8eba6be5
Commit
8eba6be5
authored
Dec 09, 2005
by
ramil@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug #15602: 5.0.17 test case 'create' failure.
parent
e4821e3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
sql/table.cc
sql/table.cc
+1
-2
No files found.
sql/table.cc
View file @
8eba6be5
...
@@ -1403,13 +1403,12 @@ File create_frm(THD *thd, my_string name, const char *db,
...
@@ -1403,13 +1403,12 @@ File create_frm(THD *thd, my_string name, const char *db,
if
(
create_info
->
options
&
HA_LEX_CREATE_TMP_TABLE
)
if
(
create_info
->
options
&
HA_LEX_CREATE_TMP_TABLE
)
create_flags
|=
O_EXCL
|
O_NOFOLLOW
;
create_flags
|=
O_EXCL
|
O_NOFOLLOW
;
#if SIZEOF_OFF_T > 4
/* Fix this when we have new .frm files; Current limit is 4G rows (QQ) */
/* Fix this when we have new .frm files; Current limit is 4G rows (QQ) */
if
(
create_info
->
max_rows
>
UINT_MAX32
)
if
(
create_info
->
max_rows
>
UINT_MAX32
)
create_info
->
max_rows
=
UINT_MAX32
;
create_info
->
max_rows
=
UINT_MAX32
;
if
(
create_info
->
min_rows
>
UINT_MAX32
)
if
(
create_info
->
min_rows
>
UINT_MAX32
)
create_info
->
min_rows
=
UINT_MAX32
;
create_info
->
min_rows
=
UINT_MAX32
;
#endif
/*
/*
Ensure that raid_chunks can't be larger than 255, as this would cause
Ensure that raid_chunks can't be larger than 255, as this would cause
problems with drop database
problems with drop database
...
...
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