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
c21c89cd
Commit
c21c89cd
authored
Dec 23, 2000
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
raid.h moved my_raid_type() out of #ifdef USE_RAID
sql_show.cc #define USE_RAID removed
parent
4949aea3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
include/raid.h
include/raid.h
+13
-6
sql/sql_show.cc
sql/sql_show.cc
+0
-2
No files found.
include/raid.h
View file @
c21c89cd
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
...
...
@@ -18,14 +18,22 @@
/* Parser needs these defines always, even if USE_RAID is not defined */
#define RAID_TYPE_0 1 // Striping
#define RAID_TYPE_x 2 // Some new modes
#define RAID_TYPE_y 3 //
#define RAID_TYPE_y 3 //
#define RAID_DEFAULT_CHUNKS 4
#define RAID_DEFAULT_CHUNKSIZE 256*1024
/* 256kB */
extern
const
char
*
raid_type_string
[];
#if defined(USE_RAID)
#ifdef __cplusplus
extern
"C"
{
#endif
const
char
*
my_raid_type
(
int
raid_type
);
#ifdef __cplusplus
}
#endif
#ifdef USE_RAID
#ifdef __GNUC__
#pragma interface
/* gcc class implementation */
...
...
@@ -84,7 +92,6 @@ extern "C" {
int
my_raid_close
(
File
,
myf
MyFlags
);
int
my_raid_fstat
(
int
Filedes
,
struct
stat
*
buf
,
myf
MyFlags
);
const
char
*
my_raid_type
(
int
raid_type
);
#ifdef __cplusplus
}
...
...
sql/sql_show.cc
View file @
c21c89cd
...
...
@@ -21,8 +21,6 @@
#include "sql_select.h" // For select_describe
#include "sql_acl.h"
#include <my_dir.h>
#undef USE_RAID
#define USE_RAID
#ifdef HAVE_BERKELEY_DB
#include "ha_berkeley.h" // For berkeley_show_logs
...
...
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