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
df6b8516
Commit
df6b8516
authored
Aug 23, 2006
by
tsmith/tim@siva.hindu.god
Browse files
Options
Browse Files
Download
Plain Diff
Merge siva.hindu.god:/usr/home/tim/m/bk/b21531-41
into siva.hindu.god:/usr/home/tim/m/bk/beef-50
parents
0831d404
45460bd0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
mysql-test/r/func_misc.result
mysql-test/r/func_misc.result
+5
-0
mysql-test/t/func_misc.test
mysql-test/t/func_misc.test
+10
-2
No files found.
mysql-test/r/func_misc.result
View file @
df6b8516
...
...
@@ -87,6 +87,10 @@ SELECT IS_USED_LOCK('bug16501');
IS_USED_LOCK('bug16501')
NULL
DROP TABLE t1;
select export_set(3, _latin1'foo', _utf8'bar', ',', 4);
export_set(3, _latin1'foo', _utf8'bar', ',', 4)
foo,foo,bar,bar
End of 4.1 tests
create table t1 as select uuid(), length(uuid());
show create table t1;
Table Create Table
...
...
@@ -130,3 +134,4 @@ timediff(b, a) >= '00:00:03'
drop table t2;
drop table t1;
set global query_cache_size=default;
End of 5.0 tests
mysql-test/t/func_misc.test
View file @
df6b8516
...
...
@@ -78,7 +78,13 @@ connection default;
DROP
TABLE
t1
;
# End of 4.1 tests
#
# Bug #21531: EXPORT_SET() doesn't accept args with coercible character sets
#
select
export_set
(
3
,
_latin1
'foo'
,
_utf8
'bar'
,
','
,
4
);
--
echo
End
of
4.1
tests
#
# Test for BUG#9535
...
...
@@ -87,7 +93,9 @@ create table t1 as select uuid(), length(uuid());
show
create
table
t1
;
drop
table
t1
;
#
# Bug #6760: Add SLEEP() function
#
create
table
t1
(
a
timestamp
default
'2005-05-05 01:01:01'
,
b
timestamp
default
'2005-05-05 01:01:01'
);
insert
into
t1
set
a
=
now
();
...
...
@@ -117,4 +125,4 @@ drop table t2;
drop
table
t1
;
set
global
query_cache_size
=
default
;
#
End of 5.0 tests
--
echo
End
of
5.0
tests
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