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
4a4aa358
Commit
4a4aa358
authored
Oct 06, 2011
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sort results in tests to make them stable
parent
e513652a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
6 deletions
+8
-6
mysql-test/r/feedback_plugin_install.result
mysql-test/r/feedback_plugin_install.result
+2
-2
mysql-test/r/feedback_plugin_load.result
mysql-test/r/feedback_plugin_load.result
+2
-2
mysql-test/r/feedback_plugin_send.result
mysql-test/r/feedback_plugin_send.result
+2
-2
mysql-test/t/feedback_plugin_install.test
mysql-test/t/feedback_plugin_install.test
+1
-0
mysql-test/t/feedback_plugin_load.test
mysql-test/t/feedback_plugin_load.test
+1
-0
No files found.
mysql-test/r/feedback_plugin_install.result
View file @
4a4aa358
...
...
@@ -5,9 +5,9 @@ ACTIVE
select * from information_schema.feedback where variable_name like 'feed%'
and variable_name not like '%_uid';
VARIABLE_NAME VARIABLE_VALUE
FEEDBACK 1.0
FEEDBACK_SEND_RETRY_WAIT 60
FEEDBACK_USER_INFO mysql-test
FEEDBACK_SEND_TIMEOUT 60
FEEDBACK_URL http://mariadb.org/feedback_plugin/post
FEEDBACK
1.0
FEEDBACK
_USER_INFO mysql-test
uninstall plugin feedback;
mysql-test/r/feedback_plugin_load.result
View file @
4a4aa358
...
...
@@ -4,8 +4,8 @@ ACTIVE
select * from information_schema.feedback where variable_name like 'feed%'
and variable_name not like '%_uid';
VARIABLE_NAME VARIABLE_VALUE
FEEDBACK 1.0
FEEDBACK_SEND_RETRY_WAIT 60
FEEDBACK_USER_INFO mysql-test
FEEDBACK_SEND_TIMEOUT 60
FEEDBACK_URL http://mariadb.org/feedback_plugin/post
FEEDBACK
1.0
FEEDBACK
_USER_INFO mysql-test
mysql-test/r/feedback_plugin_send.result
View file @
4a4aa358
...
...
@@ -4,11 +4,11 @@ ACTIVE
select * from information_schema.feedback where variable_name like 'feed%'
and variable_name not like '%_uid';
VARIABLE_NAME VARIABLE_VALUE
FEEDBACK 1.0
FEEDBACK_SEND_RETRY_WAIT 60
FEEDBACK_USER_INFO mysql-test
FEEDBACK_SEND_TIMEOUT 60
FEEDBACK_URL http://mariadb.org/feedback_plugin/post
FEEDBACK
1.0
FEEDBACK
_USER_INFO mysql-test
feedback plugin: report to 'http://mariadb.org/feedback_plugin/post' was sent
feedback plugin: server replied 'ok'
feedback plugin: report to 'http://mariadb.org/feedback_plugin/post' was sent
...
...
mysql-test/t/feedback_plugin_install.test
View file @
4a4aa358
...
...
@@ -8,6 +8,7 @@ if (`select length('$FEEDBACK_SO') = 0`) {
eval
install
plugin
feedback
soname
'$FEEDBACK_SO'
;
select
plugin_status
from
information_schema
.
plugins
where
plugin_name
=
'feedback'
;
--
replace_result
https
http
--
sorted_result
select
*
from
information_schema
.
feedback
where
variable_name
like
'feed%'
and
variable_name
not
like
'%_uid'
;
uninstall
plugin
feedback
;
...
...
mysql-test/t/feedback_plugin_load.test
View file @
4a4aa358
...
...
@@ -5,5 +5,6 @@ if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'fe
select
plugin_status
from
information_schema
.
plugins
where
plugin_name
=
'feedback'
;
--
replace_result
https
http
--
sorted_result
select
*
from
information_schema
.
feedback
where
variable_name
like
'feed%'
and
variable_name
not
like
'%_uid'
;
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