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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b4018d28
Commit
b4018d28
authored
Apr 26, 2010
by
Horst.Hunger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
only This is a backport of the patch for 47739 into trunk.
parent
dbbcafb8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
54 additions
and
10 deletions
+54
-10
mysql-test/include/have_archive_plugin.inc
mysql-test/include/have_archive_plugin.inc
+5
-0
mysql-test/r/archive_plugin.result
mysql-test/r/archive_plugin.result
+15
-0
mysql-test/t/archive_plugin-master.opt
mysql-test/t/archive_plugin-master.opt
+1
-0
mysql-test/t/archive_plugin.test
mysql-test/t/archive_plugin.test
+23
-0
storage/archive/Makefile.am
storage/archive/Makefile.am
+10
-10
No files found.
mysql-test/include/have_archive_plugin.inc
0 → 100644
View file @
b4018d28
if
(
`select plugin_library IS NULL from information_schema.plugins where plugin_name LIKE '%archive%'`
)
{
--
skip
archive
plugin
not
available
}
mysql-test/r/archive_plugin.result
0 → 100644
View file @
b4018d28
CREATE TABLE t1(a int) ENGINE=ARCHIVE;
Warnings:
Warning 1286 Unknown storage engine 'ARCHIVE'
Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
INSTALL PLUGIN archive SONAME 'ha_archive.so';
INSTALL PLUGIN ARCHIVE SONAME 'ha_archive.so';
ERROR HY000: Function 'ARCHIVE' already exists
UNINSTALL PLUGIN archive;
INSTALL PLUGIN archive SONAME 'ha_archive.so';
CREATE TABLE t1(a int) ENGINE=ARCHIVE;
DROP TABLE t1;
UNINSTALL PLUGIN archive;
UNINSTALL PLUGIN archive;
ERROR 42000: PLUGIN archive does not exist
mysql-test/t/archive_plugin-master.opt
0 → 100644
View file @
b4018d28
--plugin_dir=../storage/archive/.libs
mysql-test/t/archive_plugin.test
0 → 100644
View file @
b4018d28
--
source
include
/
not_windows
.
inc
--
source
include
/
have_archive_plugin
.
inc
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
ARCHIVE
;
DROP
TABLE
t1
;
INSTALL
PLUGIN
archive
SONAME
'ha_archive.so'
;
--
error
1125
INSTALL
PLUGIN
ARCHIVE
SONAME
'ha_archive.so'
;
UNINSTALL
PLUGIN
archive
;
INSTALL
PLUGIN
archive
SONAME
'ha_archive.so'
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
ARCHIVE
;
DROP
TABLE
t1
;
UNINSTALL
PLUGIN
archive
;
--
error
ER_SP_DOES_NOT_EXIST
UNINSTALL
PLUGIN
archive
;
storage/archive/Makefile.am
View file @
b4018d28
...
@@ -71,24 +71,23 @@ EXTRA_DIST = CMakeLists.txt plug.in
...
@@ -71,24 +71,23 @@ EXTRA_DIST = CMakeLists.txt plug.in
if
HAVE_DTRACE_DASH_G
if
HAVE_DTRACE_DASH_G
# The object for static and dynamic linking of archive differ
# The object for static and dynamic linking of archive differ
# For static linkage of archive to mysqld
# For static linkage of archive to mysqld
libarchive_a_LIBADD
=
probes_mysql.o
libarchive_a_LIBADD
=
probes_mysql.o
libarchive_a_DEPENDENCIES
=
probes_mysql.o dtrace_files dtrace_providers
libarchive_a_DEPENDENCIES
=
probes_mysql.o dtrace_files dtrace_providers
# For archive as shared library
# For archive as shared library
ha_archive_la_LIBADD
=
probes_sh_mysql.o
ha_archive_la_LIBADD
=
probes_sh_mysql.o
ha_archive_la_DEPENDENCIES
=
probes_sh_mysql.o dtrace_shared_files dtrace_providers
CLEANFILES
=
$(DTRACEPROVIDER)
dtrace_files dtrace_providers dtrace_shared_files dtrace_sources
DTRACEFILES
=
libarchive_a-ha_archive.o
DTRACESHAREDFILES
=
.libs/ha_archive_la-ha_archive.o
# Hack: We "depend" on ".libs/" but have no rule for it,
# Hack: We "depend" on ".libs/" but have no rule for it,
# but it is created as a byproduct of the ".lo"
# but it is created as a byproduct of the ".lo"
DTRACESHAREDDEPEND
=
ha_archive_la-ha_archive.lo
DTRACESHAREDDEPS
=
ha_archive_la-ha_archive.lo
DTRACESHAREDFILES
=
ha_archive_la-ha_archive.o
DTRACEPROVIDER
=
probes_mysql.d
DTRACEPROVIDER
=
probes_mysql.d
ha_archive_la_DEPENDENCIES
=
probes_sh_mysql.o
$(DTRACESHAREDDEPS)
dtrace_providers
CLEANFILES
=
$(DTRACEPROVIDER)
dtrace_files dtrace_providers
$(DTRACESHAREDFILES)
DTRACEFILES
=
libarchive_a-ha_archive.o
dtrace_files
:
dtrace_files
:
echo
$(DTRACEFILES)
>
$@
echo
$(DTRACEFILES)
>
$@
dtrace_shared_files
:
echo
$(DTRACESHAREDFILES)
>
$@
dtrace_providers
:
probes_mysql.d
dtrace_providers
:
probes_mysql.d
echo
$(DTRACEPROVIDER)
>
$@
echo
$(DTRACEPROVIDER)
>
$@
probes_mysql.d
:
probes_mysql.d
:
...
@@ -96,11 +95,12 @@ probes_mysql.d:
...
@@ -96,11 +95,12 @@ probes_mysql.d:
$(CP)
$(top_srcdir)
/include/probes_mysql.d.base probes_mysql.d
$(CP)
$(top_srcdir)
/include/probes_mysql.d.base probes_mysql.d
echo
timestamp
>
dtrace_sources
echo
timestamp
>
dtrace_sources
probes_sh_mysql.o
:
$(DTRACEPROVIDER) $(DTRACESHAREDDEP
END
)
probes_sh_mysql.o
:
$(DTRACEPROVIDER) $(DTRACESHAREDDEP
S
)
$(DTRACE)
$(DTRACEFLAGS)
-G
-s
$(DTRACEPROVIDER)
$(DTRACESHAREDFILES)
-o
$@
$(DTRACE)
$(DTRACEFLAGS)
-G
-s
$(DTRACEPROVIDER)
$(DTRACESHAREDFILES)
-o
$@
$(CP)
$(DTRACESHAREDFILES)
.libs
probes_mysql.o
:
$(DTRACEPROVIDER) $(DTRACEFILES)
probes_mysql.o
:
$(DTRACEPROVIDER) $(DTRACEFILES)
$(DTRACE)
$(DTRACEFLAGS)
-G
-s
$(DTRACEPROVIDER)
$(DTRACEFILES)
-o
$@
$(DTRACE)
$(DTRACEFLAGS)
-G
-s
$(DTRACEPROVIDER)
$(DTRACEFILES)
-o
$@
endif
endif
# Don't update the files from bitkeeper
# Don't update the files from bitkeeper
...
...
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