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
f9a02811
Commit
f9a02811
authored
Sep 26, 2006
by
brian@zim.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed Field (this came in as an idea from a previous patch by Serg)
parent
97d1b44f
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
12 additions
and
13 deletions
+12
-13
include/mysql/plugin.h
include/mysql/plugin.h
+0
-1
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+1
-1
sql/ha_partition.cc
sql/ha_partition.cc
+1
-1
sql/log.cc
sql/log.cc
+1
-1
storage/archive/ha_archive.cc
storage/archive/ha_archive.cc
+1
-1
storage/blackhole/ha_blackhole.cc
storage/blackhole/ha_blackhole.cc
+1
-1
storage/csv/ha_tina.cc
storage/csv/ha_tina.cc
+1
-1
storage/example/ha_example.cc
storage/example/ha_example.cc
+1
-1
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+1
-1
storage/heap/ha_heap.cc
storage/heap/ha_heap.cc
+1
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
storage/myisam/ha_myisam.cc
storage/myisam/ha_myisam.cc
+1
-1
storage/myisammrg/ha_myisammrg.cc
storage/myisammrg/ha_myisammrg.cc
+1
-1
No files found.
include/mysql/plugin.h
View file @
f9a02811
...
...
@@ -301,7 +301,6 @@ struct st_mysql_ftparser
struct
st_mysql_storage_engine
{
int
interface_version
;
struct
handlerton
*
handlerton
;
};
#endif
...
...
sql/ha_ndbcluster.cc
View file @
f9a02811
...
...
@@ -10749,7 +10749,7 @@ SHOW_VAR ndb_status_variables_export[]= {
};
struct
st_mysql_storage_engine
ndbcluster_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
ndbcluster_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
ndbcluster
)
{
...
...
sql/ha_partition.cc
View file @
f9a02811
...
...
@@ -5632,7 +5632,7 @@ static int free_share(PARTITION_SHARE *share)
#endif
/* NOT_USED */
struct
st_mysql_storage_engine
partition_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
partition_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
partition
)
{
...
...
sql/log.cc
View file @
f9a02811
...
...
@@ -4681,7 +4681,7 @@ err1:
}
struct
st_mysql_storage_engine
binlog_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
binlog_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
binlog
)
{
...
...
storage/archive/ha_archive.cc
View file @
f9a02811
...
...
@@ -1571,7 +1571,7 @@ bool ha_archive::check_and_repair(THD *thd)
}
struct
st_mysql_storage_engine
archive_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
archive_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
archive
)
{
...
...
storage/blackhole/ha_blackhole.cc
View file @
f9a02811
...
...
@@ -212,7 +212,7 @@ static int blackhole_init(void *p)
}
struct
st_mysql_storage_engine
blackhole_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
blackhole_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
blackhole
)
{
...
...
storage/csv/ha_tina.cc
View file @
f9a02811
...
...
@@ -1516,7 +1516,7 @@ bool ha_tina::check_if_incompatible_data(HA_CREATE_INFO *info,
}
struct
st_mysql_storage_engine
csv_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
tina_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
csv
)
{
...
...
storage/example/ha_example.cc
View file @
f9a02811
...
...
@@ -703,7 +703,7 @@ int ha_example::create(const char *name, TABLE *table_arg,
}
struct
st_mysql_storage_engine
example_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
example_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
example
)
...
...
storage/federated/ha_federated.cc
View file @
f9a02811
...
...
@@ -2882,7 +2882,7 @@ int ha_federated::execute_simple_query(const char *query, int len)
}
struct
st_mysql_storage_engine
federated_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
federated_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
federated
)
{
...
...
storage/heap/ha_heap.cc
View file @
f9a02811
...
...
@@ -701,7 +701,7 @@ bool ha_heap::check_if_incompatible_data(HA_CREATE_INFO *info,
}
struct
st_mysql_storage_engine
heap_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
heap_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
heap
)
{
...
...
storage/innobase/handler/ha_innodb.cc
View file @
f9a02811
...
...
@@ -7607,7 +7607,7 @@ SHOW_VAR innodb_status_variables_export[]= {
};
struct
st_mysql_storage_engine
innobase_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
innobase_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
innobase
)
{
...
...
storage/myisam/ha_myisam.cc
View file @
f9a02811
...
...
@@ -1801,7 +1801,7 @@ static int myisam_init(void *p)
}
struct
st_mysql_storage_engine
myisam_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
myisam_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
myisam
)
{
...
...
storage/myisammrg/ha_myisammrg.cc
View file @
f9a02811
...
...
@@ -568,7 +568,7 @@ static int myisammrg_init(void *p)
}
struct
st_mysql_storage_engine
myisammrg_storage_engine
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
myisammrg_hton
};
{
MYSQL_HANDLERTON_INTERFACE_VERSION
};
mysql_declare_plugin
(
myisammrg
)
{
...
...
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