Commit 7aa2873a authored by Marco De Marco's avatar Marco De Marco
Browse files

Typo on protocol manager

parent 4238f6e9
Loading
Loading
Loading
Loading
+14 −14
Original line number Diff line number Diff line
@@ -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();