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
ccc92383
Commit
ccc92383
authored
Apr 07, 2013
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/st_ha_create_information/HA_CREATE_INFO/
parent
e7277416
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
3 additions
and
12 deletions
+3
-12
sql/handler.h
sql/handler.h
+2
-2
sql/sql_db.h
sql/sql_db.h
+0
-1
sql/sql_partition.h
sql/sql_partition.h
+0
-1
sql/sql_show.h
sql/sql_show.h
+0
-2
sql/sql_table.h
sql/sql_table.h
+1
-1
sql/unireg.h
sql/unireg.h
+0
-2
storage/myisam/ha_myisam.h
storage/myisam/ha_myisam.h
+0
-3
No files found.
sql/handler.h
View file @
ccc92383
...
@@ -1284,7 +1284,7 @@ struct st_partition_iter;
...
@@ -1284,7 +1284,7 @@ struct st_partition_iter;
enum
ha_choice
{
HA_CHOICE_UNDEF
,
HA_CHOICE_NO
,
HA_CHOICE_YES
};
enum
ha_choice
{
HA_CHOICE_UNDEF
,
HA_CHOICE_NO
,
HA_CHOICE_YES
};
typedef
struct
st_ha_create_information
struct
HA_CREATE_INFO
{
{
CHARSET_INFO
*
table_charset
,
*
default_table_charset
;
CHARSET_INFO
*
table_charset
,
*
default_table_charset
;
LEX_STRING
connect_string
;
LEX_STRING
connect_string
;
...
@@ -1324,7 +1324,7 @@ typedef struct st_ha_create_information
...
@@ -1324,7 +1324,7 @@ typedef struct st_ha_create_information
ha_table_option_struct
*
option_struct
;
///< structure with parsed table options
ha_table_option_struct
*
option_struct
;
///< structure with parsed table options
ha_field_option_struct
**
fields_option_struct
;
///< array of field option structures
ha_field_option_struct
**
fields_option_struct
;
///< array of field option structures
ha_index_option_struct
**
indexes_option_struct
;
///< array of index option structures
ha_index_option_struct
**
indexes_option_struct
;
///< array of index option structures
}
HA_CREATE_INFO
;
};
typedef
struct
st_key_create_information
typedef
struct
st_key_create_information
...
...
sql/sql_db.h
View file @
ccc92383
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#include "hash.h"
/* HASH */
#include "hash.h"
/* HASH */
class
THD
;
class
THD
;
typedef
struct
st_ha_create_information
HA_CREATE_INFO
;
int
mysql_create_db
(
THD
*
thd
,
char
*
db
,
HA_CREATE_INFO
*
create
,
bool
silent
);
int
mysql_create_db
(
THD
*
thd
,
char
*
db
,
HA_CREATE_INFO
*
create
,
bool
silent
);
bool
mysql_alter_db
(
THD
*
thd
,
const
char
*
db
,
HA_CREATE_INFO
*
create
);
bool
mysql_alter_db
(
THD
*
thd
,
const
char
*
db
,
HA_CREATE_INFO
*
create
);
...
...
sql/sql_partition.h
View file @
ccc92383
...
@@ -32,7 +32,6 @@ class partition_info;
...
@@ -32,7 +32,6 @@ class partition_info;
struct
TABLE
;
struct
TABLE
;
struct
TABLE_LIST
;
struct
TABLE_LIST
;
typedef
struct
st_bitmap
MY_BITMAP
;
typedef
struct
st_bitmap
MY_BITMAP
;
typedef
struct
st_ha_create_information
HA_CREATE_INFO
;
typedef
struct
st_key
KEY
;
typedef
struct
st_key
KEY
;
typedef
struct
st_key_range
key_range
;
typedef
struct
st_key_range
key_range
;
...
...
sql/sql_show.h
View file @
ccc92383
...
@@ -27,9 +27,7 @@ class String;
...
@@ -27,9 +27,7 @@ class String;
class
THD
;
class
THD
;
class
sp_name
;
class
sp_name
;
struct
TABLE_LIST
;
struct
TABLE_LIST
;
struct
st_ha_create_information
;
typedef
class
st_select_lex
SELECT_LEX
;
typedef
class
st_select_lex
SELECT_LEX
;
typedef
st_ha_create_information
HA_CREATE_INFO
;
struct
LEX
;
struct
LEX
;
typedef
struct
st_mysql_show_var
SHOW_VAR
;
typedef
struct
st_mysql_show_var
SHOW_VAR
;
typedef
struct
st_schema_table
ST_SCHEMA_TABLE
;
typedef
struct
st_schema_table
ST_SCHEMA_TABLE
;
...
...
sql/sql_table.h
View file @
ccc92383
...
@@ -26,7 +26,7 @@ class THD;
...
@@ -26,7 +26,7 @@ class THD;
struct
TABLE
;
struct
TABLE
;
struct
handlerton
;
struct
handlerton
;
typedef
struct
st_ha_check_opt
HA_CHECK_OPT
;
typedef
struct
st_ha_check_opt
HA_CHECK_OPT
;
typedef
struct
st_ha_create_information
HA_CREATE_INFO
;
struct
HA_CREATE_INFO
;
typedef
struct
st_key
KEY
;
typedef
struct
st_key
KEY
;
typedef
struct
st_key_cache
KEY_CACHE
;
typedef
struct
st_key_cache
KEY_CACHE
;
typedef
struct
st_lock_param_type
ALTER_PARTITION_PARAM_TYPE
;
typedef
struct
st_lock_param_type
ALTER_PARTITION_PARAM_TYPE
;
...
...
sql/unireg.h
View file @
ccc92383
...
@@ -23,8 +23,6 @@
...
@@ -23,8 +23,6 @@
/* Extra functions used by unireg library */
/* Extra functions used by unireg library */
typedef
struct
st_ha_create_information
HA_CREATE_INFO
;
#ifndef NO_ALARM_LOOP
#ifndef NO_ALARM_LOOP
#define NO_ALARM_LOOP
/* lib5 and popen can't use alarm */
#define NO_ALARM_LOOP
/* lib5 and popen can't use alarm */
#endif
#endif
...
...
storage/myisam/ha_myisam.h
View file @
ccc92383
...
@@ -26,9 +26,6 @@
...
@@ -26,9 +26,6 @@
#include "handler.h"
/* handler */
#include "handler.h"
/* handler */
#include "table.h"
/* TABLE_SHARE */
#include "table.h"
/* TABLE_SHARE */
struct
TABLE_SHARE
;
typedef
struct
st_ha_create_information
HA_CREATE_INFO
;
#define HA_RECOVER_DEFAULT 1
/* Automatic recover active */
#define HA_RECOVER_DEFAULT 1
/* Automatic recover active */
#define HA_RECOVER_BACKUP 2
/* Make a backupfile on recover */
#define HA_RECOVER_BACKUP 2
/* Make a backupfile on recover */
#define HA_RECOVER_FORCE 4
/* Recover even if we loose rows */
#define HA_RECOVER_FORCE 4
/* Recover even if we loose rows */
...
...
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