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
6bcf87db
Commit
6bcf87db
authored
Aug 15, 2013
by
Andrew McDonnell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change table option struct to use const as per ha_example.cc
parent
25f1875e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
storage/oqgraph/ha_oqgraph.cc
storage/oqgraph/ha_oqgraph.cc
+4
-4
No files found.
storage/oqgraph/ha_oqgraph.cc
View file @
6bcf87db
...
...
@@ -109,11 +109,11 @@ static const char *latchToCode(int latch) {
struct
oqgraph_table_option_struct
{
char
*
table_name
;
c
onst
c
har
*
table_name
;
char
*
origid
;
// name of the origin id column
char
*
destid
;
// name of the target id column
char
*
weight
;
// name of the weight column (optional)
c
onst
c
har
*
origid
;
// name of the origin id column
c
onst
c
har
*
destid
;
// name of the target id column
c
onst
c
har
*
weight
;
// name of the weight column (optional)
};
#define ha_table_option_struct oqgraph_table_option_struct
...
...
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