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
acf9821b
Commit
acf9821b
authored
Jan 23, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patch reverted - USE_RAID is defined in my_config.h
mysql-test/r/derived.result: result updated
parent
2880b07f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/r/derived.result
mysql-test/r/derived.result
+1
-1
mysys/raid.cc
mysys/raid.cc
+2
-2
No files found.
mysql-test/r/derived.result
View file @
acf9821b
...
@@ -254,7 +254,7 @@ CREATE TABLE `t1` (
...
@@ -254,7 +254,7 @@ CREATE TABLE `t1` (
`M` tinyint(1) default '0',
`M` tinyint(1) default '0',
) TYPE=MyISAM DEFAULT CHARSET=latin1;
) TYPE=MyISAM DEFAULT CHARSET=latin1;
Warnings:
Warnings:
Warning 1286 'TYPE=
database_engine' is deprecated. Use 'ENGINE=databas
e_engine' instead.
Warning 1286 'TYPE=
storage_engine' is deprecated. Use 'ENGINE=storag
e_engine' instead.
INSERT INTO `t1` (N, M) VALUES (1, 0),(1, 0),(1, 0),(2, 0),(2, 0),(3, 0);
INSERT INTO `t1` (N, M) VALUES (1, 0),(1, 0),(1, 0),(2, 0),(2, 0),(3, 0);
UPDATE `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N SET P1.M = 2;
UPDATE `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N SET P1.M = 2;
select * from t1;
select * from t1;
...
...
mysys/raid.cc
View file @
acf9821b
...
@@ -70,8 +70,6 @@
...
@@ -70,8 +70,6 @@
tonu@mysql.com & monty@mysql.com
tonu@mysql.com & monty@mysql.com
*/
*/
#if defined(USE_RAID) && !defined(MYSQL_CLIENT)
#ifdef __GNUC__
#ifdef __GNUC__
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
@@ -81,6 +79,8 @@
...
@@ -81,6 +79,8 @@
#include <m_string.h>
#include <m_string.h>
#include <assert.h>
#include <assert.h>
#if defined(USE_RAID) && !defined(MYSQL_CLIENT)
#define RAID_SEEK_DONE ~(off_t) 0
#define RAID_SEEK_DONE ~(off_t) 0
#define RAID_SIZE_UNKNOWN ~(my_off_t) 0
#define RAID_SIZE_UNKNOWN ~(my_off_t) 0
...
...
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