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
cf2b6a97
Commit
cf2b6a97
authored
Sep 07, 2007
by
kent/mysqldev@mysql.com/production.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ha_partition.cc, listener.h, listener.cc, ha_partition.h:
Initiate static const outside class definition
parent
76c99a07
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
server-tools/instance-manager/listener.cc
server-tools/instance-manager/listener.cc
+1
-0
server-tools/instance-manager/listener.h
server-tools/instance-manager/listener.h
+1
-1
sql/ha_partition.cc
sql/ha_partition.cc
+2
-0
sql/ha_partition.h
sql/ha_partition.h
+1
-1
No files found.
server-tools/instance-manager/listener.cc
View file @
cf2b6a97
...
@@ -56,6 +56,7 @@ static void set_no_inherit(int socket)
...
@@ -56,6 +56,7 @@ static void set_no_inherit(int socket)
#endif
#endif
}
}
const
int
Listener
::
LISTEN_BACK_LOG_SIZE
=
5
;
/* standard backlog size */
Listener
::
Listener
(
Thread_registry
*
thread_registry_arg
,
Listener
::
Listener
(
Thread_registry
*
thread_registry_arg
,
User_map
*
user_map_arg
)
User_map
*
user_map_arg
)
...
...
server-tools/instance-manager/listener.h
View file @
cf2b6a97
...
@@ -39,7 +39,7 @@ protected:
...
@@ -39,7 +39,7 @@ protected:
virtual
void
run
();
virtual
void
run
();
private:
private:
static
const
int
LISTEN_BACK_LOG_SIZE
=
5
;
/* standard backlog size */
static
const
int
LISTEN_BACK_LOG_SIZE
;
private:
private:
Thread_info
thread_info
;
Thread_info
thread_info
;
...
...
sql/ha_partition.cc
View file @
cf2b6a97
...
@@ -145,6 +145,8 @@ static uint alter_table_flags(uint flags __attribute__((unused)))
...
@@ -145,6 +145,8 @@ static uint alter_table_flags(uint flags __attribute__((unused)))
HA_FAST_CHANGE_PARTITION
);
HA_FAST_CHANGE_PARTITION
);
}
}
const
uint
ha_partition
::
NO_CURRENT_PART_ID
=
0xFFFFFFFF
;
/*
/*
Constructor method
Constructor method
...
...
sql/ha_partition.h
View file @
cf2b6a97
...
@@ -468,7 +468,7 @@ public:
...
@@ -468,7 +468,7 @@ public:
virtual
int
reset
(
void
);
virtual
int
reset
(
void
);
private:
private:
static
const
uint
NO_CURRENT_PART_ID
=
0xFFFFFFFF
;
static
const
uint
NO_CURRENT_PART_ID
;
int
loop_extra
(
enum
ha_extra_function
operation
);
int
loop_extra
(
enum
ha_extra_function
operation
);
void
late_extra_cache
(
uint
partition_id
);
void
late_extra_cache
(
uint
partition_id
);
void
late_extra_no_cache
(
uint
partition_id
);
void
late_extra_no_cache
(
uint
partition_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