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
a7bcf8ad
Commit
a7bcf8ad
authored
Feb 02, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into chilla.local:/home/mydev/mysql-4.1-axmrg
parents
978a1883
aea9a675
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletion
+19
-1
mysql-test/Makefile.am
mysql-test/Makefile.am
+1
-1
sql/examples/ha_tina.cc
sql/examples/ha_tina.cc
+12
-0
sql/examples/ha_tina.h
sql/examples/ha_tina.h
+2
-0
sql/handler.cc
sql/handler.cc
+4
-0
No files found.
mysql-test/Makefile.am
View file @
a7bcf8ad
...
...
@@ -33,7 +33,7 @@ endif
benchdir_root
=
$(prefix)
testdir
=
$(benchdir_root)
/mysql-test
EXTRA_SCRIPTS
=
mysql-test-run-shell.sh install_test_db.sh
\
$(PRESCRIPTS)
valgrind.supp
$(PRESCRIPTS)
EXTRA_DIST
=
$(EXTRA_SCRIPTS)
GENSCRIPTS
=
mysql-test-run-shell mysql-test-run install_test_db mtr
PRESCRIPTS
=
mysql-test-run.pl
...
...
sql/examples/ha_tina.cc
View file @
a7bcf8ad
...
...
@@ -220,6 +220,18 @@ static int free_share(TINA_SHARE *share)
}
bool
tina_end
()
{
if
(
tina_init
)
{
hash_free
(
&
tina_open_tables
);
VOID
(
pthread_mutex_destroy
(
&
tina_mutex
));
}
tina_init
=
0
;
return
FALSE
;
}
/*
Finds the end of a line.
Currently only supports files written on a UNIX OS.
...
...
sql/examples/ha_tina.h
View file @
a7bcf8ad
...
...
@@ -136,3 +136,5 @@ class ha_tina: public handler
int
find_current_row
(
byte
*
buf
);
int
chain_append
();
};
bool
tina_end
();
sql/handler.cc
View file @
a7bcf8ad
...
...
@@ -340,6 +340,10 @@ int ha_panic(enum ha_panic_function flag)
#ifdef HAVE_ARCHIVE_DB
if
(
have_archive_db
==
SHOW_OPTION_YES
)
error
|=
archive_db_end
();
#endif
#ifdef HAVE_CSV_DB
if
(
have_csv_db
==
SHOW_OPTION_YES
)
error
|=
tina_end
();
#endif
return
error
;
}
/* ha_panic */
...
...
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