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
03aaa7f7
Commit
03aaa7f7
authored
May 18, 2020
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.2 into 10.3
parents
4f26aea5
d0e3b0ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mysql-test/main/udf.result
mysql-test/main/udf.result
+3
-3
mysql-test/main/udf.test
mysql-test/main/udf.test
+1
-1
No files found.
mysql-test/main/udf.result
View file @
03aaa7f7
...
...
@@ -30,9 +30,9 @@ lookup("127.0.0.1")
127.0.0.1
select lookup(127,0,0,1);
ERROR HY000: Can't initialize function 'lookup'; Wrong arguments to lookup; Use the source
select lookup("localhost");
lookup("localhost")
1
27.0.0.1
select lookup("localhost")
rlike '^127\.\\d+\.\\d+.\\d+$'
;
lookup("localhost")
rlike '^127\.\\d+\.\\d+.\\d+$'
1
select reverse_lookup();
ERROR HY000: Can't initialize function 'reverse_lookup'; Wrong number of arguments to reverse_lookup; Use the source
select reverse_lookup("127.0.0.1");
...
...
mysql-test/main/udf.test
View file @
03aaa7f7
...
...
@@ -47,7 +47,7 @@ select lookup();
select
lookup
(
"127.0.0.1"
);
--
error
ER_CANT_INITIALIZE_UDF
select
lookup
(
127
,
0
,
0
,
1
);
select
lookup
(
"localhost"
);
select
lookup
(
"localhost"
)
rlike
'^127\.\\d+\.\\d+.\\d+$'
;
--
error
ER_CANT_INITIALIZE_UDF
select
reverse_lookup
();
...
...
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