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
74ffcbc1
Commit
74ffcbc1
authored
Oct 17, 2017
by
Olivier Bertrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Typo (from 10.1) Modified: storage/connect/value.cpp
parent
c83e2a63
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
39 deletions
+38
-39
storage/connect/value.cpp
storage/connect/value.cpp
+38
-39
No files found.
storage/connect/value.cpp
View file @
74ffcbc1
...
...
@@ -1659,15 +1659,16 @@ bool TYPVAL<PSZ>::Compute(PGLOBAL g, PVAL *vp, int np, OPVAL op)
if
(
trace
)
htrc
(
"Compute: np=%d op=%d
\n
"
,
np
,
op
);
for
(
i
=
0
;
i
<
np
;
i
++
)
{
p
[
i
]
=
vp
[
i
]
->
IsNull
()
?
NULL
:
vp
[
i
]
->
GetCharString
(
val
[
i
]);
for
(
i
=
0
;
i
<
np
;
i
++
)
if
(
!
vp
[
i
]
->
IsNull
())
{
p
[
i
]
=
vp
[
i
]
->
GetCharString
(
val
[
i
]);
if
(
trace
)
htrc
(
"p[%d]=%s
\n
"
,
i
,
p
[
i
]);
}
// endfor i
}
else
return
false
;
if
(
p
[
0
]
&&
p
[
np
-
1
])
{
switch
(
op
)
{
case
OP_CNC
:
assert
(
np
==
1
||
np
==
2
);
...
...
@@ -1697,8 +1698,6 @@ bool TYPVAL<PSZ>::Compute(PGLOBAL g, PVAL *vp, int np, OPVAL op)
}
// endswitch op
Null
=
false
;
}
// endif p[i]
return
false
;
}
// end of Compute
...
...
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