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
082ac987
Commit
082ac987
authored
Jan 31, 2013
by
Chaithra Gopalareddy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#14096619: UNABLE TO RESTORE DATABASE DUMP
Backport of Bug#13581962
parent
08b0d549
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
7 deletions
+41
-7
mysql-test/r/cast.result
mysql-test/r/cast.result
+18
-0
mysql-test/t/cast.test
mysql-test/t/cast.test
+13
-0
sql/item_func.h
sql/item_func.h
+10
-7
No files found.
mysql-test/r/cast.result
View file @
082ac987
...
@@ -477,4 +477,22 @@ WHERE CAST(a as BINARY)=x'62736D697468'
...
@@ -477,4 +477,22 @@ WHERE CAST(a as BINARY)=x'62736D697468'
AND CAST(a AS BINARY)=x'65736D697468';
AND CAST(a AS BINARY)=x'65736D697468';
a
a
DROP TABLE t1;
DROP TABLE t1;
#
# Bug#13581962 HIGH MEMORY USAGE ATTEMPT, THEN CRASH WITH
# LONGTEXT, UNION, USER VARIABLE
# Bug#14096619 UNABLE TO RESTORE DATABASE DUMP
#
CREATE TABLE t1 AS SELECT CONCAT(CAST(REPEAT('9', 1000) AS SIGNED)),
CONCAT(CAST(REPEAT('9', 1000) AS UNSIGNED));
Warnings:
Warning 1292 Truncated incorrect INTEGER value: '99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999'
Warning 1292 Truncated incorrect INTEGER value: '99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999'
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`CONCAT(CAST(REPEAT('9', 1000) AS SIGNED))` varbinary(21) NOT NULL DEFAULT '',
`CONCAT(CAST(REPEAT('9', 1000) AS UNSIGNED))` varbinary(21) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1;
# End of test for Bug#13581962, Bug#14096619
End of 5.1 tests
End of 5.1 tests
mysql-test/t/cast.test
View file @
082ac987
...
@@ -309,4 +309,17 @@ WHERE CAST(a as BINARY)=x'62736D697468'
...
@@ -309,4 +309,17 @@ WHERE CAST(a as BINARY)=x'62736D697468'
DROP
TABLE
t1
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# Bug#13581962 HIGH MEMORY USAGE ATTEMPT, THEN CRASH WITH
--
echo
# LONGTEXT, UNION, USER VARIABLE
--
echo
# Bug#14096619 UNABLE TO RESTORE DATABASE DUMP
--
echo
#
CREATE
TABLE
t1
AS
SELECT
CONCAT
(
CAST
(
REPEAT
(
'9'
,
1000
)
AS
SIGNED
)),
CONCAT
(
CAST
(
REPEAT
(
'9'
,
1000
)
AS
UNSIGNED
));
SHOW
CREATE
TABLE
t1
;
DROP
TABLE
t1
;
--
echo
# End of test for Bug#13581962, Bug#14096619
--
echo
End
of
5.1
tests
--
echo
End
of
5.1
tests
sql/item_func.h
View file @
082ac987
...
@@ -403,12 +403,17 @@ class Item_func_connection_id :public Item_int_func
...
@@ -403,12 +403,17 @@ class Item_func_connection_id :public Item_int_func
class
Item_func_signed
:
public
Item_int_func
class
Item_func_signed
:
public
Item_int_func
{
{
public:
public:
Item_func_signed
(
Item
*
a
)
:
Item_int_func
(
a
)
{}
Item_func_signed
(
Item
*
a
)
:
Item_int_func
(
a
)
{
unsigned_flag
=
0
;
}
const
char
*
func_name
()
const
{
return
"cast_as_signed"
;
}
const
char
*
func_name
()
const
{
return
"cast_as_signed"
;
}
longlong
val_int
();
longlong
val_int
();
longlong
val_int_from_str
(
int
*
error
);
longlong
val_int_from_str
(
int
*
error
);
void
fix_length_and_dec
()
void
fix_length_and_dec
()
{
max_length
=
args
[
0
]
->
max_length
;
unsigned_flag
=
0
;
}
{
max_length
=
min
(
args
[
0
]
->
max_length
,
MY_INT64_NUM_DECIMAL_DIGITS
);
}
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
uint
decimal_precision
()
const
{
return
args
[
0
]
->
decimal_precision
();
}
uint
decimal_precision
()
const
{
return
args
[
0
]
->
decimal_precision
();
}
};
};
...
@@ -417,13 +422,11 @@ class Item_func_signed :public Item_int_func
...
@@ -417,13 +422,11 @@ class Item_func_signed :public Item_int_func
class
Item_func_unsigned
:
public
Item_func_signed
class
Item_func_unsigned
:
public
Item_func_signed
{
{
public:
public:
Item_func_unsigned
(
Item
*
a
)
:
Item_func_signed
(
a
)
{}
Item_func_unsigned
(
Item
*
a
)
:
Item_func_signed
(
a
)
const
char
*
func_name
()
const
{
return
"cast_as_unsigned"
;
}
void
fix_length_and_dec
()
{
{
max_length
=
min
(
args
[
0
]
->
max_length
,
DECIMAL_MAX_PRECISION
+
2
);
unsigned_flag
=
1
;
unsigned_flag
=
1
;
}
}
const
char
*
func_name
()
const
{
return
"cast_as_unsigned"
;
}
longlong
val_int
();
longlong
val_int
();
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
};
};
...
...
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