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
7e36dc1c
Commit
7e36dc1c
authored
Dec 14, 2005
by
joerg@trift-lap.fambruehe
Browse files
Options
Browse Files
Download
Plain Diff
Merge joerg@trift2:/M50/part2-ramil
into trift-lap.fambruehe:/MySQL/M51/merge-5.1
parents
81df985a
51184add
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
mysql-test/t/mysqltest.test
mysql-test/t/mysqltest.test
+2
-2
sql/sp_head.cc
sql/sp_head.cc
+1
-1
sql/table.cc
sql/table.cc
+1
-2
No files found.
mysql-test/t/mysqltest.test
View file @
7e36dc1c
...
@@ -968,9 +968,9 @@ drop table t1;
...
@@ -968,9 +968,9 @@ drop table t1;
--
error
1
--
error
1
--
exec
$MYSQL_TEST
--
record
-
x
$MYSQL_TEST_DIR
/
var
/
tmp
/
bug11731
.
sql
-
R
$MYSQL_TEST_DIR
/
var
/
tmp
/
bug11731
.
out
--
exec
$MYSQL_TEST
--
record
-
x
$MYSQL_TEST_DIR
/
var
/
tmp
/
bug11731
.
sql
-
R
$MYSQL_TEST_DIR
/
var
/
tmp
/
bug11731
.
out
# The .out file should be empty
, cat will fail!
# The .out file should be empty
--
error
1
--
error
1
--
exec
cat
$MYSQL_TEST_DIR
/
var
/
tmp
/
bug11731
.
out
--
exec
test
-
s
$MYSQL_TEST_DIR
/
var
/
tmp
/
bug11731
.
out
drop
table
t1
;
drop
table
t1
;
...
...
sql/sp_head.cc
View file @
7e36dc1c
...
@@ -886,7 +886,7 @@ void sp_head::recursion_level_error()
...
@@ -886,7 +886,7 @@ void sp_head::recursion_level_error()
THD
*
thd
=
current_thd
;
THD
*
thd
=
current_thd
;
my_error
(
ER_SP_RECURSION_LIMIT
,
MYF
(
0
),
my_error
(
ER_SP_RECURSION_LIMIT
,
MYF
(
0
),
thd
->
variables
.
max_sp_recursion_depth
,
thd
->
variables
.
max_sp_recursion_depth
,
m_name
);
m_name
.
str
);
}
}
else
else
my_error
(
ER_SP_NO_RECURSION
,
MYF
(
0
));
my_error
(
ER_SP_NO_RECURSION
,
MYF
(
0
));
...
...
sql/table.cc
View file @
7e36dc1c
...
@@ -1877,13 +1877,12 @@ File create_frm(THD *thd, const char *name, const char *db,
...
@@ -1877,13 +1877,12 @@ File create_frm(THD *thd, const char *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