renamed timestamp to timestamp_type_t

This commit is contained in:
2026-01-07 09:23:47 +01:00
parent f30c250a20
commit c6747074f5
26 changed files with 47 additions and 47 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ void attribute_string_writer::write_value(size_t /*pos*/, const utils::time_type
result_ = "'" + dialect_.prepare_literal(utils::to_string(x)) + "'";
}
void attribute_string_writer::write_value(size_t /*pos*/, const utils::timestamp &/*x*/) {
void attribute_string_writer::write_value(size_t /*pos*/, const utils::timestamp_type_t &/*x*/) {
}
void attribute_string_writer::write_value(size_t pos, const char *x) {
+1 -1
View File
@@ -69,7 +69,7 @@ void value_extractor::write_value(size_t /*pos*/, const utils::time_type_t &x) {
values_.emplace_back(x);
}
void value_extractor::write_value(size_t /*pos*/, const utils::timestamp &x) {
void value_extractor::write_value(size_t /*pos*/, const utils::timestamp_type_t &x) {
values_.emplace_back(x);
}