Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
208e7fb0
Commit
208e7fb0
authored
Jun 23, 2016
by
Tomek Mrugalski
🛰
Browse files
[master] addressed cpp-check issues detected on Jenkins.
parent
fe5cacaf
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/dhcpsrv/cql_connection.cc
View file @
208e7fb0
...
...
@@ -150,7 +150,6 @@ CqlConnection::openDatabase() {
void
CqlConnection
::
prepareStatements
(
CqlTaggedStatement
*
statements
)
{
CassError
rc
=
CASS_OK
;
CassFuture
*
future
=
NULL
;
uint32_t
size
=
0
;
tagged_statements_
=
statements
;
for
(;
tagged_statements_
[
size
].
params_
;
size
++
);
...
...
@@ -158,7 +157,7 @@ CqlConnection::prepareStatements(CqlTaggedStatement *statements) {
for
(
uint32_t
i
=
0
;
i
<
size
;
i
++
)
{
const
char
*
query
=
tagged_statements_
[
i
].
text_
;
future
=
cass_session_prepare
(
session_
,
query
);
CassFuture
*
future
=
cass_session_prepare
(
session_
,
query
);
cass_future_wait
(
future
);
std
::
string
error
;
checkStatementError
(
error
,
future
,
i
,
"could not prepare statement"
);
...
...
src/lib/dhcpsrv/cql_lease_mgr.cc
View file @
208e7fb0
...
...
@@ -1185,7 +1185,6 @@ CqlLeaseMgr::bindData(CassStatement* statement, const StatementIndex stindex,
void
CqlLeaseMgr
::
getData
(
const
CassRow
*
row
,
const
int
pindex
,
CqlDataArray
&
data
,
CqlDataArray
&
size
,
const
int
dindex
,
const
SqlExchange
&
exchange
)
{
const
CassValue
*
value
;
if
(
pindex
>=
exchange
.
parameters_
.
size
())
{
return
;
}
...
...
@@ -1194,7 +1193,7 @@ CqlLeaseMgr::getData(const CassRow* row, const int pindex, CqlDataArray& data,
if
(
std
::
distance
(
range
.
first
,
range
.
second
)
>
0
)
{
std
::
string
name
=
(
*
range
.
first
)
->
name_
;
ExchangeDataType
type
=
(
*
range
.
first
)
->
type_
;
value
=
cass_row_get_column_by_name
(
row
,
name
.
c_str
());
const
CassValue
*
value
=
cass_row_get_column_by_name
(
row
,
name
.
c_str
());
if
(
NULL
==
value
)
{
isc_throw
(
BadValue
,
"column name "
<<
name
<<
" doesn't exist"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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