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
386b3817
Commit
386b3817
authored
Dec 15, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug#19956 Problems with VARCHAR primary key and BLOB fields:added test case
parent
14f7ff00
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
mysql-test/r/ndb_read_multi_range.result
mysql-test/r/ndb_read_multi_range.result
+14
-0
mysql-test/t/ndb_read_multi_range.test
mysql-test/t/ndb_read_multi_range.test
+15
-0
No files found.
mysql-test/r/ndb_read_multi_range.result
View file @
386b3817
...
@@ -367,3 +367,17 @@ a b c
...
@@ -367,3 +367,17 @@ a b c
406994 67 2006-02-27 11:26:46
406994 67 2006-02-27 11:26:46
406995 67 2006-02-28 11:55:00
406995 67 2006-02-28 11:55:00
DROP TABLE t1, t11, t12, t21, t22;
DROP TABLE t1, t11, t12, t21, t22;
CREATE TABLE t1 (id varchar(255) NOT NULL,
tag int(11) NOT NULL,
doc text NOT NULL,
type varchar(150) NOT NULL,
modified timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (id)
) ENGINE=ndbcluster;
INSERT INTO t1 VALUES ('sakila',1,'Some text goes here','text',CURRENT_TIMESTAMP);
SELECT id, tag, doc, type FROM t1 WHERE id IN ('flipper','orka');
id tag doc type
SELECT id, tag, doc, type FROM t1 WHERE id IN ('flipper','sakila');
id tag doc type
sakila 1 Some text goes here text
DROP TABLE t1;
mysql-test/t/ndb_read_multi_range.test
View file @
386b3817
...
@@ -238,3 +238,18 @@ select * from t12 order by 1,2,3;
...
@@ -238,3 +238,18 @@ select * from t12 order by 1,2,3;
select
*
from
t21
order
by
1
,
2
,
3
;
select
*
from
t21
order
by
1
,
2
,
3
;
select
*
from
t22
order
by
1
,
2
,
3
;
select
*
from
t22
order
by
1
,
2
,
3
;
DROP
TABLE
t1
,
t11
,
t12
,
t21
,
t22
;
DROP
TABLE
t1
,
t11
,
t12
,
t21
,
t22
;
# bug#19956
CREATE
TABLE
t1
(
id
varchar
(
255
)
NOT
NULL
,
tag
int
(
11
)
NOT
NULL
,
doc
text
NOT
NULL
,
type
varchar
(
150
)
NOT
NULL
,
modified
timestamp
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
PRIMARY
KEY
(
id
)
)
ENGINE
=
ndbcluster
;
INSERT
INTO
t1
VALUES
(
'sakila'
,
1
,
'Some text goes here'
,
'text'
,
CURRENT_TIMESTAMP
);
SELECT
id
,
tag
,
doc
,
type
FROM
t1
WHERE
id
IN
(
'flipper'
,
'orka'
);
SELECT
id
,
tag
,
doc
,
type
FROM
t1
WHERE
id
IN
(
'flipper'
,
'sakila'
);
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