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
07a3ae23
Commit
07a3ae23
authored
Mar 26, 2008
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor complaints of Marc Alff, for patch against B-g#15776.
parent
3185f004
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
mysql-test/t/type_blob.test
mysql-test/t/type_blob.test
+4
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
mysql-test/t/type_blob.test
View file @
07a3ae23
...
...
@@ -449,6 +449,9 @@ set @@sql_mode='';
# raise ER_TOO_BIG_DISPLAYWIDTH
# BLOB and TEXT types
--
disable_warnings
drop
table
if
exists
b15776
;
--
enable_warnings
create
table
b15776
(
data
blob
(
2147483647
));
drop
table
b15776
;
--
error
ER_PARSE_ERROR
...
...
@@ -570,7 +573,7 @@ explain select cast(1 as binary(4294967296));
explain
select
cast
(
1
as
decimal
(
-
1
));
explain
select
cast
(
1
as
decimal
(
64
,
30
));
# It's not as important which errors are raised for these, since the
# limit is nowhere near
3
**32. We may fix these eventually to take
# limit is nowhere near
2
**32. We may fix these eventually to take
# 4294967295 and still reject it because it's greater than 64 or 30,
# but that's not a high priority and the parser needn't worry about
# such a weird case.
...
...
sql/sql_yacc.yy
View file @
07a3ae23
...
...
@@ -3010,7 +3010,7 @@ udf_type:
field_list:
field_list_item
| field_list ',' field_list_item;
/* FIXME: Should this be backward? */
| field_list ',' field_list_item;
field_list_item:
...
...
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