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
188b8931
Commit
188b8931
authored
Oct 28, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-merge fix
parent
7fd2585b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
libmysqld/lib_sql.cc
libmysqld/lib_sql.cc
+1
-1
mysql-test/t/connect.test
mysql-test/t/connect.test
+1
-1
mysql-test/t/rpl_charset.test
mysql-test/t/rpl_charset.test
+3
-3
mysql-test/t/rpl_timezone.test
mysql-test/t/rpl_timezone.test
+1
-1
No files found.
libmysqld/lib_sql.cc
View file @
188b8931
...
...
@@ -664,7 +664,7 @@ bool Protocol::send_fields(List<Item> *list, int flags)
DBUG_RETURN
(
prepare_for_send
(
list
));
err:
send_error
(
thd
,
ER_OUT_OF_RESOURCES
);
/* purecov: inspected */
my_error
(
ER_OUT_OF_RESOURCES
,
MYF
(
0
));
/* purecov: inspected */
DBUG_RETURN
(
1
);
/* purecov: inspected */
}
...
...
mysql-test/t/connect.test
View file @
188b8931
...
...
@@ -49,7 +49,7 @@ flush privileges;
#show tables;
connect
(
con1
,
localhost
,
test
,
gambling2
,
mysql
);
set
password
=
""
;
--
error
137
1
--
error
137
2
set
password
=
'gambling3'
;
set
password
=
old_password
(
'gambling3'
);
show
tables
;
...
...
mysql-test/t/rpl_charset.test
View file @
188b8931
...
...
@@ -112,10 +112,10 @@ sync_slave_with_master;
# Check that we can't change global.collation_server
error
138
6
;
error
138
7
;
set
global
character_set_server
=
latin2
;
connection
master
;
error
138
6
;
error
138
7
;
set
global
character_set_server
=
latin2
;
# Check that SET ONE_SHOT is really one shot
...
...
@@ -129,7 +129,7 @@ select @@character_set_server;
select
@@
character_set_server
;
# ONE_SHOT on not charset/collation stuff is not allowed
error
138
1
;
error
138
2
;
set
one_shot
max_join_size
=
10
;
# Test of wrong character set numbers;
...
...
mysql-test/t/rpl_timezone.test
View file @
188b8931
...
...
@@ -76,7 +76,7 @@ select * from t2;
# replication
#
connection
master
;
--
error
138
6
--
error
138
7
set
global
time_zone
=
'MET'
;
# Clean up
...
...
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