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
c9c689e1
Commit
c9c689e1
authored
Aug 14, 2019
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated prototype of ha_s3::write_row() to get s3 to compile
parent
fa490e80
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/maria/ha_s3.cc
storage/maria/ha_s3.cc
+1
-1
storage/maria/ha_s3.h
storage/maria/ha_s3.h
+1
-1
No files found.
storage/maria/ha_s3.cc
View file @
c9c689e1
...
...
@@ -239,7 +239,7 @@ void ha_s3::register_handler(MARIA_HA *file)
When table is moved to S3, writes are not allowed.
*/
int
ha_s3
::
write_row
(
uchar
*
buf
)
int
ha_s3
::
write_row
(
const
uchar
*
buf
)
{
if
(
in_alter_table
)
return
ha_maria
::
write_row
(
buf
);
...
...
storage/maria/ha_s3.h
View file @
c9c689e1
...
...
@@ -30,7 +30,7 @@ class ha_s3 :public ha_maria
int
create
(
const
char
*
name
,
TABLE
*
table_arg
,
HA_CREATE_INFO
*
ha_create_info
);
int
open
(
const
char
*
name
,
int
mode
,
uint
open_flags
);
int
write_row
(
uchar
*
buf
);
int
write_row
(
const
uchar
*
buf
);
int
update_row
(
const
uchar
*
old_data
,
const
uchar
*
new_data
)
{
return
HA_ERR_WRONG_COMMAND
;
...
...
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