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
81df509f
Commit
81df509f
authored
Dec 14, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled archive db for Netware.
parent
910052c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
sql/handler.cc
sql/handler.cc
+3
-3
sql/mysqld.cc
sql/mysqld.cc
+1
-1
No files found.
sql/handler.cc
View file @
81df509f
...
@@ -60,7 +60,7 @@ handlerton example_hton = { "EXAMPLE", SHOW_OPTION_NO,
...
@@ -60,7 +60,7 @@ handlerton example_hton = { "EXAMPLE", SHOW_OPTION_NO,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
HTON_NO_FLAGS
};
HTON_NO_FLAGS
};
#endif
#endif
#if
def HAVE_ARCHIVE_DB
#if
defined(HAVE_ARCHIVE_DB) && !defined(__NETWARE__)
#include "ha_archive.h"
#include "ha_archive.h"
extern
handlerton
archive_hton
;
extern
handlerton
archive_hton
;
#else
#else
...
@@ -314,7 +314,7 @@ handler *get_new_handler(TABLE *table, MEM_ROOT *alloc, enum db_type db_type)
...
@@ -314,7 +314,7 @@ handler *get_new_handler(TABLE *table, MEM_ROOT *alloc, enum db_type db_type)
case
DB_TYPE_EXAMPLE_DB
:
case
DB_TYPE_EXAMPLE_DB
:
return
new
(
alloc
)
ha_example
(
table
);
return
new
(
alloc
)
ha_example
(
table
);
#endif
#endif
#if
def HAVE_ARCHIVE_DB
#if
defined(HAVE_ARCHIVE_DB) && !defined(__NETWARE__)
case
DB_TYPE_ARCHIVE_DB
:
case
DB_TYPE_ARCHIVE_DB
:
return
new
(
alloc
)
ha_archive
(
table
);
return
new
(
alloc
)
ha_archive
(
table
);
#endif
#endif
...
@@ -513,7 +513,7 @@ int ha_panic(enum ha_panic_function flag)
...
@@ -513,7 +513,7 @@ int ha_panic(enum ha_panic_function flag)
if
(
have_federated_db
==
SHOW_OPTION_YES
)
if
(
have_federated_db
==
SHOW_OPTION_YES
)
error
|=
federated_db_end
();
error
|=
federated_db_end
();
#endif
#endif
#if
def HAVE_ARCHIVE_DB
#if
defined(HAVE_ARCHIVE_DB) && !defined(__NETWARE__)
if
(
have_archive_db
==
SHOW_OPTION_YES
)
if
(
have_archive_db
==
SHOW_OPTION_YES
)
error
|=
archive_db_end
();
error
|=
archive_db_end
();
#endif
#endif
...
...
sql/mysqld.cc
View file @
81df509f
...
@@ -6323,7 +6323,7 @@ static void mysql_init_variables(void)
...
@@ -6323,7 +6323,7 @@ static void mysql_init_variables(void)
#else
#else
have_example_db
=
SHOW_OPTION_NO
;
have_example_db
=
SHOW_OPTION_NO
;
#endif
#endif
#if
def HAVE_ARCHIVE_DB
#if
defined(HAVE_ARCHIVE_DB) && !defined(__NETWARE__)
have_archive_db
=
SHOW_OPTION_YES
;
have_archive_db
=
SHOW_OPTION_YES
;
#else
#else
have_archive_db
=
SHOW_OPTION_NO
;
have_archive_db
=
SHOW_OPTION_NO
;
...
...
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