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
541ff258
Commit
541ff258
authored
May 19, 2005
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
after merge fix
parent
8044488d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/r/select.result
mysql-test/r/select.result
+1
-1
sql/sql_udf.cc
sql/sql_udf.cc
+1
-1
No files found.
mysql-test/r/select.result
View file @
541ff258
...
@@ -2454,7 +2454,7 @@ select all distinct * from t1;
...
@@ -2454,7 +2454,7 @@ select all distinct * from t1;
ERROR HY000: Incorrect usage of ALL and DISTINCT
ERROR HY000: Incorrect usage of ALL and DISTINCT
select distinct all * from t1;
select distinct all * from t1;
ERROR HY000: Incorrect usage of ALL and DISTINCT
ERROR HY000: Incorrect usage of ALL and DISTINCT
DROP TABLE
t1;
drop table
t1;
CREATE TABLE t1 (
CREATE TABLE t1 (
kunde_intern_id int(10) unsigned NOT NULL default '0',
kunde_intern_id int(10) unsigned NOT NULL default '0',
kunde_id int(10) unsigned NOT NULL default '0',
kunde_id int(10) unsigned NOT NULL default '0',
...
...
sql/sql_udf.cc
View file @
541ff258
...
@@ -195,7 +195,7 @@ void udf_init()
...
@@ -195,7 +195,7 @@ void udf_init()
*/
*/
if
(
strchr
(
dl_name
,
'/'
)
||
if
(
strchr
(
dl_name
,
'/'
)
||
IF_WIN
(
strchr
(
dl_name
,
'\\'
),
0
)
||
IF_WIN
(
strchr
(
dl_name
,
'\\'
),
0
)
||
strlen
(
name
)
>
NAME_LEN
)
strlen
(
name
.
str
)
>
NAME_LEN
)
{
{
sql_print_error
(
"Invalid row in mysql.func table for function '%.64s'"
,
sql_print_error
(
"Invalid row in mysql.func table for function '%.64s'"
,
name
.
str
);
name
.
str
);
...
...
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