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
df35bde8
Commit
df35bde8
authored
Apr 27, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/bug9911
into neptunus.(none):/home/msvensson/mysql/mysql-4.1
parents
19b216f6
6afb3ef4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
2 deletions
+52
-2
mysql-test/r/archive.result
mysql-test/r/archive.result
+15
-1
mysql-test/t/archive.test
mysql-test/t/archive.test
+12
-1
sql/examples/ha_archive.cc
sql/examples/ha_archive.cc
+24
-0
sql/examples/ha_archive.h
sql/examples/ha_archive.h
+1
-0
No files found.
mysql-test/r/archive.result
View file @
df35bde8
...
...
@@ -2601,4 +2601,18 @@ auto fld1 companynr fld3 fld4 fld5 fld6
2 011401 37 breaking dreaded Steinberg W
3 011402 37 Romans scholastics jarring
4 011403 37 intercepted audiology tinily
drop table t1, t2;
create table t3 engine=archive select * from t2;
select * from t3 where fld3='bonfire';
auto fld1 companynr fld3 fld4 fld5 fld6
1191 068504 00 bonfire corresponds positively
select count(*) from t3;
count(*)
1203
rename table t3 to t4;
select * from t4 where fld3='bonfire';
auto fld1 companynr fld3 fld4 fld5 fld6
1191 068504 00 bonfire corresponds positively
select count(*) from t4;
count(*)
1203
drop table t1, t2, t4;
mysql-test/t/archive.test
View file @
df35bde8
...
...
@@ -1299,4 +1299,15 @@ INSERT INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
SELECT
*
FROM
t2
;
OPTIMIZE
TABLE
t2
;
SELECT
*
FROM
t2
;
drop
table
t1
,
t2
;
#
# Test rename of table
#
create
table
t3
engine
=
archive
select
*
from
t2
;
select
*
from
t3
where
fld3
=
'bonfire'
;
select
count
(
*
)
from
t3
;
rename
table
t3
to
t4
;
select
*
from
t4
where
fld3
=
'bonfire'
;
select
count
(
*
)
from
t4
;
drop
table
t1
,
t2
,
t4
;
sql/examples/ha_archive.cc
View file @
df35bde8
...
...
@@ -427,6 +427,30 @@ const char **ha_archive::bas_ext() const
{
static
const
char
*
ext
[]
=
{
ARZ
,
ARN
,
ARM
,
NullS
};
return
ext
;
}
/*
Rename all files that this handler defines in bas_ext list
NOTE Don't care if the .arn file is missing
*/
int
ha_archive
::
rename_table
(
const
char
*
from
,
const
char
*
to
)
{
DBUG_ENTER
(
"ha_archive::rename_table"
);
for
(
const
char
**
ext
=
bas_ext
();
*
ext
;
ext
++
)
{
if
(
rename_file_ext
(
from
,
to
,
*
ext
))
{
if
(
my_errno
==
ENOENT
&&
!
my_strcasecmp
(
system_charset_info
,
*
ext
,
ARN
))
continue
;
DBUG_RETURN
(
my_errno
);
}
}
DBUG_RETURN
(
0
);
}
/*
When opening a file we:
Create/get our shared structure.
...
...
sql/examples/ha_archive.h
View file @
df35bde8
...
...
@@ -124,6 +124,7 @@ class ha_archive: public handler
int
optimize
(
THD
*
thd
,
HA_CHECK_OPT
*
check_opt
);
THR_LOCK_DATA
**
store_lock
(
THD
*
thd
,
THR_LOCK_DATA
**
to
,
enum
thr_lock_type
lock_type
);
int
rename_table
(
const
char
*
from
,
const
char
*
to
);
};
bool
archive_db_init
(
void
);
...
...
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