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
2347c18c
Commit
2347c18c
authored
May 27, 2020
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed maria_* source files for executables to aria_*
parent
c52e62a7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
storage/maria/CMakeLists.txt
storage/maria/CMakeLists.txt
+5
-5
storage/maria/aria_chk.c
storage/maria/aria_chk.c
+0
-0
storage/maria/aria_dump_log.c
storage/maria/aria_dump_log.c
+0
-0
storage/maria/aria_ftdump.c
storage/maria/aria_ftdump.c
+0
-0
storage/maria/aria_pack.c
storage/maria/aria_pack.c
+0
-0
storage/maria/aria_read_log.c
storage/maria/aria_read_log.c
+4
-4
No files found.
storage/maria/CMakeLists.txt
View file @
2347c18c
...
...
@@ -55,20 +55,20 @@ MYSQL_ADD_PLUGIN(aria ${ARIA_SOURCES} STORAGE_ENGINE MANDATORY
LINK_LIBRARIES myisam mysys mysys_ssl
RECOMPILE_FOR_EMBEDDED
)
MYSQL_ADD_EXECUTABLE
(
aria_ftdump
m
aria_ftdump.c COMPONENT Server
)
MYSQL_ADD_EXECUTABLE
(
aria_ftdump aria_ftdump.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
aria_ftdump aria
)
MYSQL_ADD_EXECUTABLE
(
aria_chk
m
aria_chk.c COMPONENT Server
)
MYSQL_ADD_EXECUTABLE
(
aria_chk aria_chk.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
aria_chk aria
)
MYSQL_ADD_EXECUTABLE
(
aria_read_log
m
aria_read_log.c COMPONENT Server
)
MYSQL_ADD_EXECUTABLE
(
aria_read_log aria_read_log.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
aria_read_log aria
)
MYSQL_ADD_EXECUTABLE
(
aria_dump_log
m
aria_dump_log.c unittest/ma_loghandler_examples.c COMPONENT Server
)
MYSQL_ADD_EXECUTABLE
(
aria_dump_log aria_dump_log.c unittest/ma_loghandler_examples.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
aria_dump_log aria
)
SET_TARGET_PROPERTIES
(
aria_dump_log PROPERTIES COMPILE_FLAGS
"-DMARIA_DUMP_LOG"
)
MYSQL_ADD_EXECUTABLE
(
aria_pack
m
aria_pack.c COMPONENT Server
)
MYSQL_ADD_EXECUTABLE
(
aria_pack aria_pack.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
aria_pack aria
)
IF
(
WITH_UNIT_TESTS
)
...
...
storage/maria/
m
aria_chk.c
→
storage/maria/aria_chk.c
View file @
2347c18c
File moved
storage/maria/
m
aria_dump_log.c
→
storage/maria/aria_dump_log.c
View file @
2347c18c
File moved
storage/maria/
m
aria_ftdump.c
→
storage/maria/aria_ftdump.c
View file @
2347c18c
File moved
storage/maria/
m
aria_pack.c
→
storage/maria/aria_pack.c
View file @
2347c18c
File moved
storage/maria/
m
aria_read_log.c
→
storage/maria/aria_read_log.c
View file @
2347c18c
...
...
@@ -50,11 +50,11 @@ static MY_TMPDIR maria_chk_tmpdir;
static
ulonglong
get_lsn
(
const
char
*
lsn_str
)
{
ulong
file
;
ulong
long
pos
;
if
(
sscanf
(
lsn_str
,
" %lu,0x%
L
x"
,
&
file
,
&
pos
)
==
2
)
ulong
pos
;
if
(
sscanf
(
lsn_str
,
" %lu,0x%
l
x"
,
&
file
,
&
pos
)
==
2
)
return
MAKE_LSN
(
file
,
pos
);
if
(
sscanf
(
lsn_str
,
" %
L
u"
,
&
pos
)
==
1
)
return
pos
;
if
(
sscanf
(
lsn_str
,
" %
l
u"
,
&
pos
)
==
1
)
return
(
ulonglong
)
pos
;
return
~
(
ulonglong
)
0
;
/* Error */
}
...
...
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