added belongs to many eager test loading via sql join (progress)
This commit is contained in:
@@ -100,13 +100,13 @@ void postgres_result_reader::read_value(const char * /*id*/, const size_t index,
|
||||
}
|
||||
}
|
||||
|
||||
void postgres_result_reader::read_value(const char * /*id*/, const size_t index, time &value) {
|
||||
void postgres_result_reader::read_value(const char * /*id*/, const size_t index, time &/*value*/) {
|
||||
// if (const auto val = column(index); strlen(val) > 0) {
|
||||
// value = time::parse(val, "%Y-%m-%d %T.%f");
|
||||
// }
|
||||
}
|
||||
|
||||
void postgres_result_reader::read_value(const char * /*id*/, const size_t index, date &value) {
|
||||
void postgres_result_reader::read_value(const char * /*id*/, const size_t index, date &/*value*/) {
|
||||
// if (const auto val = column(index); strlen(val) > 0) {
|
||||
// value.set(val, matador::utils::date_format::ISO8601);
|
||||
// }
|
||||
|
||||
Reference in New Issue
Block a user