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
383d354c
Commit
383d354c
authored
Jun 24, 2003
by
hf@deer.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test case for bug #666
parent
27c67fbf
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
mysql-test/r/func_str.result
mysql-test/r/func_str.result
+13
-0
mysql-test/t/func_str.test
mysql-test/t/func_str.test
+12
-0
No files found.
mysql-test/r/func_str.result
View file @
383d354c
...
...
@@ -234,3 +234,16 @@ INSERT INTO t1 VALUES (1, 'a545f661efdd1fb66fdee3aab79945bf');
SELECT 1 FROM t1 WHERE tmp=AES_DECRYPT(tmp,"password");
1
DROP TABLE t1;
CREATE TABLE t1 (
wid int(10) unsigned NOT NULL auto_increment,
data_podp date default NULL,
status_wnio enum('nowy','podp','real','arch') NOT NULL default 'nowy',
PRIMARY KEY(wid),
);
INSERT INTO t1 VALUES (8,NULL,'real');
INSERT INTO t1 VALUES (9,NULL,'nowy');
SELECT elt(status_wnio,data_podp) FROM t1 GROUP BY wid;
elt(status_wnio,data_podp)
NULL
NULL
DROP TABLE t1;
mysql-test/t/func_str.test
View file @
383d354c
...
...
@@ -125,3 +125,15 @@ CREATE TABLE t1 (id int(11) NOT NULL auto_increment, tmp text NOT NULL, KEY id (
INSERT
INTO
t1
VALUES
(
1
,
'a545f661efdd1fb66fdee3aab79945bf'
);
SELECT
1
FROM
t1
WHERE
tmp
=
AES_DECRYPT
(
tmp
,
"password"
);
DROP
TABLE
t1
;
CREATE
TABLE
t1
(
wid
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
data_podp
date
default
NULL
,
status_wnio
enum
(
'nowy'
,
'podp'
,
'real'
,
'arch'
)
NOT
NULL
default
'nowy'
,
PRIMARY
KEY
(
wid
),
);
INSERT
INTO
t1
VALUES
(
8
,
NULL
,
'real'
);
INSERT
INTO
t1
VALUES
(
9
,
NULL
,
'nowy'
);
SELECT
elt
(
status_wnio
,
data_podp
)
FROM
t1
GROUP
BY
wid
;
DROP
TABLE
t1
;
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