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
2b1f5212
Commit
2b1f5212
authored
Mar 30, 2006
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/home/my/mysql-5.1
parents
98052743
6cbd5791
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
configure.in
configure.in
+2
-1
storage/csv/ha_tina.cc
storage/csv/ha_tina.cc
+2
-1
storage/example/Makefile.am
storage/example/Makefile.am
+2
-3
storage/example/ha_example.cc
storage/example/ha_example.cc
+2
-1
No files found.
configure.in
View file @
2b1f5212
...
...
@@ -2465,7 +2465,8 @@ MYSQL_STORAGE_ENGINE(innobase,,innodb,,,,storage/innobase,ha_innodb.o,[ dnl
MYSQL_STORAGE_ENGINE
(
berkeley,,berkeley-db,,,,storage/bdb,,,[
MYSQL_SETUP_BERKELEY_DB
])
MYSQL_STORAGE_ENGINE
(
example,,,,,no,storage/example,,,[
MYSQL_STORAGE_ENGINE
(
example,,,,,,storage/example,no,
\$
(
top_builddir
)
/storage/example/libexample.a,[
AC_CONFIG_FILES
(
storage/example/Makefile
)
])
MYSQL_STORAGE_ENGINE
(
archive,,,,,,storage/archive,,
...
...
storage/csv/ha_tina.cc
View file @
2b1f5212
...
...
@@ -1380,6 +1380,7 @@ bool ha_tina::check_if_incompatible_data(HA_CREATE_INFO *info,
return
COMPATIBLE_DATA_YES
;
}
#ifdef MYSQL_PLUGIN
mysql_declare_plugin
{
MYSQL_STORAGE_ENGINE_PLUGIN
,
...
...
@@ -1392,4 +1393,4 @@ mysql_declare_plugin
0x0100
/* 1.0 */
,
}
mysql_declare_plugin_end
;
#endif
storage/example/Makefile.am
View file @
2b1f5212
...
...
@@ -26,11 +26,10 @@ INCLUDES = -I$(top_srcdir)/include \
-I
$(srcdir)
WRAPLIBS
=
pkglib_L
TLIBRARIES
=
ha_example.l
a
pkglib_L
IBRARIES
=
libexample.
a
ha_example_la_LDFLAGS
=
-module
noinst_HEADERS
=
ha_example.h
ha_example_l
a_SOURCES
=
ha_example.cc
libexample_
a_SOURCES
=
ha_example.cc
EXTRA_DIST
=
cmakelists.txt
LDADD
=
...
...
storage/example/ha_example.cc
View file @
2b1f5212
...
...
@@ -726,6 +726,7 @@ int ha_example::create(const char *name, TABLE *table_arg,
DBUG_RETURN
(
0
);
}
#ifdef MYSQL_PLUGIN
mysql_declare_plugin
{
MYSQL_STORAGE_ENGINE_PLUGIN
,
...
...
@@ -738,4 +739,4 @@ mysql_declare_plugin
0x0001
/* 0.1 */
,
}
mysql_declare_plugin_end
;
#endif
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