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
6ddb61b4
Commit
6ddb61b4
authored
Mar 31, 2010
by
Vasil Dimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove files that are SVN-specific.
parent
c75d70fd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
110 deletions
+0
-110
subdir/compile-innodb
subdir/compile-innodb
+0
-9
subdir/compile-innodb-debug
subdir/compile-innodb-debug
+0
-9
subdir/export.sh
subdir/export.sh
+0
-61
subdir/revert_gen.sh
subdir/revert_gen.sh
+0
-8
subdir/setup.sh
subdir/setup.sh
+0
-23
No files found.
subdir/compile-innodb
deleted
100755 → 0
View file @
c75d70fd
#! /bin/sh
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$pentium_cflags
$fast_cflags
-g"
extra_configs
=
"
$pentium_configs
$static_link
--with-plugins=innobase"
.
"
$path
/FINISH.sh"
subdir/compile-innodb-debug
deleted
100755 → 0
View file @
c75d70fd
#! /bin/sh
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
$@
--with-debug
=
full
extra_flags
=
"
$pentium_cflags
$debug_cflags
"
extra_configs
=
"
$pentium_configs
$debug_configs
--with-plugins=innobase"
.
"
$path
/FINISH.sh"
subdir/export.sh
deleted
100755 → 0
View file @
c75d70fd
#!/bin/bash
#
# export current working directory in a format suitable for sending to MySQL
# as a snapshot. also generates the actual snapshot and sends it to MySQL.
set
-eu
die
()
{
echo
$*
exit
1
}
if
[
$#
-ne
2
]
;
then
die
"Usage: export.sh revision-number-of-last-snapshot current-revision-number"
fi
START_REV
=
$((
$1
+
1
))
END_REV
=
$2
set
+u
if
test
-z
$EDITOR
;
then
die
"
\$
EDITOR is not set"
fi
set
-u
BRANCH
=
$(
basename
$(
svn info .|grep ^URL: |cut
-f
2
-d
' '
))
rm
-rf
to-mysql
mkdir
to-mysql
{
,/storage,/patches,/mysql-test
{
,/t,/r,/include
}}
svn log
-v
-r
"
$START_REV
:BASE"
>
to-mysql/log
svn
export
-q
.
to-mysql/storage/innobase
for
REV
in
$(
svn log
-q
-r
$START_REV
:
$END_REV
|grep ^r |cut
-f
1
-d
' '
|cut
-b
2-
)
do
PATCH
=
to-mysql/patches/r
$REV
.patch
svn log
-v
-r
$REV
>
$PATCH
svn diff
-r
$((
$REV
-
1
))
:
$REV
>>
$PATCH
done
cd
to-mysql/storage/innobase
mv
mysql-test/
*
.test mysql-test/
*
.opt ../../mysql-test/t
mv
mysql-test/
*
.result ../../mysql-test/r
mv
mysql-test/
*
.inc ../../mysql-test/include
rmdir
mysql-test
||
:
rm
setup.sh export.sh revert_gen.sh compile-innodb-debug compile-innodb
||
:
cd
../..
$EDITOR
log
cd
..
fname
=
"innodb-
$BRANCH
-ss
$2
.tar.gz"
rm
-f
$fname
tar
czf
$fname
to-mysql
scp
$fname
mysql:snapshots
rm
$fname
rm
-rf
to-mysql
echo
"Sent
$fname
to MySQL"
subdir/revert_gen.sh
deleted
100755 → 0
View file @
c75d70fd
#!/bin/bash
#
# revert changes to all generated files. this is useful in some situations
# when merging changes between branches.
set
-eu
svn revert include/pars0grm.h pars/pars0grm.h pars/lexyy.c pars/pars0grm.c
subdir/setup.sh
deleted
100755 → 0
View file @
c75d70fd
#!/bin/sh
#
# Prepare the MySQL source code tree for building
# with checked-out InnoDB Subversion directory.
# This script assumes that the current directory is storage/innobase.
set
-eu
TARGETDIR
=
../storage/innobase
# link the build scripts
BUILDSCRIPTS
=
"compile-innodb compile-innodb-debug"
for
script
in
$BUILDSCRIPTS
;
do
ln
-sf
$TARGETDIR
/
$script
../../BUILD/
done
cd
../../mysql-test/t
ln
-sf
../
$TARGETDIR
/mysql-test/
*
.test ../
$TARGETDIR
/mysql-test/
*
.opt
.
cd
../r
ln
-sf
../
$TARGETDIR
/mysql-test/
*
.result
.
cd
../include
ln
-sf
../
$TARGETDIR
/mysql-test/
*
.inc
.
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