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
3d203da0
Commit
3d203da0
authored
Feb 28, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes to make the code compile with gcc 2.95
BitKeeper/etc/ignore: Added include/openssl to the ignore list
parent
594ba86b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
46 deletions
+23
-46
.bzrignore
.bzrignore
+1
-0
sql/partition_element.h
sql/partition_element.h
+1
-5
sql/partition_info.cc
sql/partition_info.cc
+4
-0
sql/partition_info.h
sql/partition_info.h
+17
-41
No files found.
.bzrignore
View file @
3d203da0
...
@@ -1616,3 +1616,4 @@ zlib/*.ds?
...
@@ -1616,3 +1616,4 @@ zlib/*.ds?
zlib/*.vcproj
zlib/*.vcproj
libmysqld/partition_info.cc
libmysqld/partition_info.cc
storage/ndb/src/common/util/testBitmask.cpp
storage/ndb/src/common/util/testBitmask.cpp
include/openssl
sql/partition_element.h
View file @
3d203da0
...
@@ -14,10 +14,6 @@
...
@@ -14,10 +14,6 @@
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
/**
/**
* An enum and a struct to handle partitioning and subpartitioning.
* An enum and a struct to handle partitioning and subpartitioning.
*/
*/
...
...
sql/partition_info.cc
View file @
3d203da0
...
@@ -16,6 +16,10 @@
...
@@ -16,6 +16,10 @@
/* Some general useful functions */
/* Some general useful functions */
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation
#endif
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "ha_partition.h"
#include "ha_partition.h"
...
...
sql/partition_info.h
View file @
3d203da0
...
@@ -224,8 +224,18 @@ public:
...
@@ -224,8 +224,18 @@ public:
}
}
~
partition_info
()
{}
~
partition_info
()
{}
bool
is_sub_partitioned
();
/* Answers the question if subpartitioning is used for a certain table */
uint
get_tot_partitions
();
bool
is_sub_partitioned
()
{
return
(
subpart_type
==
NOT_A_PARTITION
?
FALSE
:
TRUE
);
}
/* Returns the total number of partitions on the leaf level */
uint
get_tot_partitions
()
{
return
no_parts
*
(
is_sub_partitioned
()
?
no_subparts
:
1
);
}
bool
set_up_defaults_for_partitioning
(
handler
*
file
,
ulonglong
max_rows
,
bool
set_up_defaults_for_partitioning
(
handler
*
file
,
ulonglong
max_rows
,
uint
start_no
);
uint
start_no
);
char
*
has_unique_names
();
char
*
has_unique_names
();
...
@@ -238,40 +248,6 @@ private:
...
@@ -238,40 +248,6 @@ private:
bool
has_unique_name
(
partition_element
*
element
);
bool
has_unique_name
(
partition_element
*
element
);
};
};
/*
Answers the question if subpartitioning is used for a certain table
SYNOPSIS
is_sub_partitioned()
part_info A reference to the partition_info struct
RETURN VALUE
Returns true if subpartitioning used and false otherwise
DESCRIPTION
A routine to check for subpartitioning for improved readability of code
*/
inline
bool
partition_info
::
is_sub_partitioned
()
{
return
(
subpart_type
==
NOT_A_PARTITION
?
FALSE
:
TRUE
);
}
/*
Returns the total number of partitions on the leaf level.
SYNOPSIS
get_tot_partitions()
part_info A reference to the partition_info struct
RETURN VALUE
Returns the number of partitions
DESCRIPTION
A routine to check for number of partitions for improved readability
of code
*/
inline
uint
partition_info
::
get_tot_partitions
()
{
return
no_parts
*
(
is_sub_partitioned
()
?
no_subparts
:
1
);
}
uint32
get_next_partition_id_range
(
struct
st_partition_iter
*
part_iter
);
uint32
get_next_partition_id_range
(
struct
st_partition_iter
*
part_iter
);
/* Initialize the iterator to return a single partition with given part_id */
/* Initialize the iterator to return a single partition with given part_id */
...
...
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