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
9c026273
Commit
9c026273
authored
Nov 06, 2018
by
Anel Husakovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add implementation in .h and delete unneccessery printing
parent
db55b39f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
24 deletions
+2
-24
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+0
-11
storage/innobase/handler/ha_innodb.h
storage/innobase/handler/ha_innodb.h
+1
-1
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+0
-11
storage/xtradb/handler/ha_innodb.h
storage/xtradb/handler/ha_innodb.h
+1
-1
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
9c026273
...
...
@@ -9039,17 +9039,6 @@ ha_innobase::ft_read(
return
(
HA_ERR_END_OF_FILE
);
}
/*************************************************************************
*/
void
ha_innobase
::
ft_end
()
{
fprintf
(
stderr
,
"ft_end()
\n
"
);
rnd_end
();
}
/*********************************************************************//**
Stores a reference to the current row to 'ref' field of the handle. Note
that in the case where we have generated the clustered index for the
...
...
storage/innobase/handler/ha_innodb.h
View file @
9c026273
...
...
@@ -153,7 +153,7 @@ class ha_innobase: public handler
int
rnd_pos
(
uchar
*
buf
,
uchar
*
pos
);
int
ft_init
();
void
ft_end
()
;
void
ft_end
()
{
rnd_end
();
}
FT_INFO
*
ft_init_ext
(
uint
flags
,
uint
inx
,
String
*
key
);
int
ft_read
(
uchar
*
buf
);
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
9c026273
...
...
@@ -9810,17 +9810,6 @@ ha_innobase::ft_read(
return
(
HA_ERR_END_OF_FILE
);
}
/*************************************************************************
*/
void
ha_innobase
::
ft_end
()
{
fprintf
(
stderr
,
"ft_end()
\n
"
);
rnd_end
();
}
/*********************************************************************//**
Stores a reference to the current row to 'ref' field of the handle. Note
that in the case where we have generated the clustered index for the
...
...
storage/xtradb/handler/ha_innodb.h
View file @
9c026273
...
...
@@ -156,7 +156,7 @@ class ha_innobase: public handler
int
rnd_pos
(
uchar
*
buf
,
uchar
*
pos
);
int
ft_init
();
void
ft_end
()
;
void
ft_end
()
{
rnd_end
();
}
FT_INFO
*
ft_init_ext
(
uint
flags
,
uint
inx
,
String
*
key
);
int
ft_read
(
uchar
*
buf
);
...
...
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