Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
metadata_exporter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IA2
metadata_exporter
Commits
7aa2873a
Commit
7aa2873a
authored
11 years ago
by
Marco De Marco
Browse files
Options
Downloads
Patches
Plain Diff
Typo on protocol manager
parent
4238f6e9
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ProtocolManager.cpp
+14
-14
14 additions, 14 deletions
src/ProtocolManager.cpp
with
14 additions
and
14 deletions
src/ProtocolManager.cpp
+
14
−
14
View file @
7aa2873a
...
...
@@ -437,8 +437,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
if
(
m_it
->
get_indicator
(
i
)
==
soci
::
i_null
)
{
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow() name
"
<<
name
<<
" null"
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
" null"
<<
endl
;
#endif
continue
;
}
...
...
@@ -450,8 +450,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
std
::
string
value
=
m_it
->
get
<
std
::
string
>
(
i
);
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow() name
"
<<
name
<<
" "
<<
value
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
" "
<<
value
<<
endl
;
#endif
Response
::
Metadata
::
Row
::
DtString
*
dtString
=
row
->
add_strings_list
();
...
...
@@ -465,8 +465,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
double
value
=
m_it
->
get
<
double
>
(
i
);
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow() name
"
<<
name
<<
" "
<<
value
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
" "
<<
value
<<
endl
;
#endif
Response
::
Metadata
::
Row
::
DtDouble
*
dtDouble
=
row
->
add_double_list
();
...
...
@@ -480,8 +480,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
int
value
=
m_it
->
get
<
int
>
(
i
);
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow() name
"
<<
name
<<
" "
<<
value
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
" "
<<
value
<<
endl
;
#endif
Response
::
Metadata
::
Row
::
DtInteger
*
dtInteger
=
row
->
add_integer_list
();
...
...
@@ -495,8 +495,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
long
long
value
=
m_it
->
get
<
long
long
>
(
i
);
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow() name
"
<<
name
<<
" "
<<
value
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
" "
<<
value
<<
endl
;
#endif
Response
::
Metadata
::
Row
::
DtLongLong
*
dtLongLong
=
row
->
add_long_long_list
();
...
...
@@ -510,8 +510,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
unsigned
long
value
=
m_it
->
get
<
unsigned
long
>
(
i
);
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow() name
"
<<
name
<<
" "
<<
value
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
" "
<<
value
<<
endl
;
#endif
Response
::
Metadata
::
Row
::
DtUnsignedLong
*
dtUnsignedLong
=
row
->
add_unsinged_long_list
();
...
...
@@ -526,8 +526,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
boost
::
posix_time
::
ptime
ptValue
=
boost
::
posix_time
::
ptime_from_tm
(
tmValue
);
#ifdef VERBOSE_DEBUG
INFO_STREAM
<<
"ProtocolManager::fillRow()
name
"
<<
name
<<
" "
<<
boost
::
posix_time
::
to_simple_string
(
ptValue
)
<<
endl
;
INFO_STREAM
<<
"ProtocolManager::fillRow()
"
<<
name
<<
"
"
<<
boost
::
posix_time
::
to_simple_string
(
ptValue
)
<<
endl
;
#endif
Response
::
Metadata
::
Row
::
DtDate
*
dtDate
=
row
->
add_date_list
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment