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
57672a85
Commit
57672a85
authored
Mar 13, 2017
by
Sergei Petrunia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MariaRocks: make partition.test work on any platform
parent
69387c68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
storage/rocksdb/mysql-test/rocksdb/r/partition.result
storage/rocksdb/mysql-test/rocksdb/r/partition.result
+5
-0
storage/rocksdb/mysql-test/rocksdb/t/partition.test
storage/rocksdb/mysql-test/rocksdb/t/partition.test
+5
-2
No files found.
storage/rocksdb/mysql-test/rocksdb/r/partition.result
View file @
57672a85
...
...
@@ -51,6 +51,11 @@ Table Op Msg_type Msg_text
test.t1 repair status OK
Table Op Msg_type Msg_text
test.t1 check status OK
select lower(table_name) as tname
from information_schema.tables
where table_schema=database()
order by tname;
tname
t1
temp0
var_pop
...
...
storage/rocksdb/mysql-test/rocksdb/t/partition.test
View file @
57672a85
...
...
@@ -77,8 +77,11 @@ CREATE TABLE TEMP0 (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 3;
CREATE
TABLE
VAR_SAMP
(
a
int
)
ENGINE
=
ROCKSDB
PARTITION
BY
HASH
(
a
)
PARTITIONS
10
;
--
enable_query_log
--
lowercase_result
SHOW
TABLES
;
select
lower
(
table_name
)
as
tname
from
information_schema
.
tables
where
table_schema
=
database
()
order
by
tname
;
SELECT
*
FROM
t1
ORDER
BY
i
LIMIT
10
;
SELECT
COUNT
(
*
)
FROM
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