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
e1288e07
Commit
e1288e07
authored
May 16, 2002
by
arjen@fred.bitbike.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql_fix_extensions.sh tool copied from 4.0 tree (referenced in manual).
parent
8f0f951b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
scripts/mysql_fix_extensions.sh
scripts/mysql_fix_extensions.sh
+16
-0
No files found.
scripts/mysql_fix_extensions.sh
0 → 100644
View file @
e1288e07
#!@PERL@
# This is a utility for MySQL. It is not needed by any standard part
# of MySQL.
# Usage: mysql_fix_extentions datadir
# does not work with RAID, with InnoDB or BDB tables
# makes .frm lowercase and .MYI/MYD/ISM/ISD uppercase
# useful when datafiles are copied from windows
die
"Usage:
$0
datadir
\n
"
unless
-d
$ARGV
[
0]
;
for
$a
(
<
$ARGV
[
0]/
*
/
*
.
*
>)
{
$_
=
$a
;
s/
\.
frm
$/
.frm/i
;
s/
\.
(
is[md]|my[id]
)
$/
\U
$&
/i
;
rename
(
$a
,
$_
)
||
warn
"Cannot rename
$a
=>
$_
:
$!
"
;
}
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