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
af7a0895
Commit
af7a0895
authored
Jun 25, 2021
by
Olivier Bertrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix clang compile error in tabjson.cpp and tabbson.cpp
parent
6239e2a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/connect/tabbson.cpp
storage/connect/tabbson.cpp
+1
-1
storage/connect/tabjson.cpp
storage/connect/tabjson.cpp
+1
-1
No files found.
storage/connect/tabbson.cpp
View file @
af7a0895
...
...
@@ -676,7 +676,7 @@ PBVAL BTUTIL::MakeTopTree(PGLOBAL g, int type)
if
(
!
Tp
->
Row
)
{
// Parse and allocate Objpath item(s)
char
*
p
,
*
objpath
=
PlugDup
(
g
,
Tp
->
Objname
);
char
*
sep
=
(
Tp
->
Sep
==
':'
)
?
":["
:
".["
;
char
*
sep
=
(
char
*
)(
Tp
->
Sep
==
':'
?
":["
:
".["
)
;
int
i
;
bool
bp
=
false
,
b
=
false
;
PBVAL
objp
=
NULL
;
...
...
storage/connect/tabjson.cpp
View file @
af7a0895
...
...
@@ -1179,7 +1179,7 @@ int TDBJSN::MakeTopTree(PGLOBAL g, PJSON jsp)
if
(
!
Val
)
{
// Parse and allocate Objname item(s)
char
*
p
,
*
objpath
=
PlugDup
(
g
,
Objname
);
char
*
sep
=
(
Sep
==
':'
)
?
":["
:
".["
;
char
*
sep
=
(
char
*
)(
Sep
==
':'
?
":["
:
".["
)
;
int
i
;
bool
bp
=
false
,
b
=
false
;
PJOB
objp
;
...
...
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