124
120
if (_year_part_index > 1)
126
size_t year_start= match_vector[_year_part_index];
127
size_t year_len= match_vector[_year_part_index + 1] - match_vector[_year_part_index];
122
size_t year_start= _match_vector[_year_part_index];
123
size_t year_len= _match_vector[_year_part_index + 1] - _match_vector[_year_part_index];
128
124
to->_years= atoi(copy_data.substr(year_start, year_len).c_str());
129
125
if (year_len == 2)
130
126
to->_years+= (to->_years >= DRIZZLE_YY_PART_YEAR ? 1900 : 2000);
132
128
if (_month_part_index > 1)
134
size_t month_start= match_vector[_month_part_index];
135
size_t month_len= match_vector[_month_part_index + 1] - match_vector[_month_part_index];
130
size_t month_start= _match_vector[_month_part_index];
131
size_t month_len= _match_vector[_month_part_index + 1] - _match_vector[_month_part_index];
136
132
to->_months= atoi(copy_data.substr(month_start, month_len).c_str());
138
134
if (_day_part_index > 1)
140
size_t day_start= match_vector[_day_part_index];
141
size_t day_len= match_vector[_day_part_index + 1] - match_vector[_day_part_index];
136
size_t day_start= _match_vector[_day_part_index];
137
size_t day_len= _match_vector[_day_part_index + 1] - _match_vector[_day_part_index];
142
138
to->_days= atoi(copy_data.substr(day_start, day_len).c_str());
144
140
if (_hour_part_index > 1)
146
size_t hour_start= match_vector[_hour_part_index];
147
size_t hour_len= match_vector[_hour_part_index + 1] - match_vector[_hour_part_index];
142
size_t hour_start= _match_vector[_hour_part_index];
143
size_t hour_len= _match_vector[_hour_part_index + 1] - _match_vector[_hour_part_index];
148
144
to->_hours= atoi(copy_data.substr(hour_start, hour_len).c_str());
150
146
if (_minute_part_index > 1)
152
size_t minute_start= match_vector[_minute_part_index];
153
size_t minute_len= match_vector[_minute_part_index + 1] - match_vector[_minute_part_index];
148
size_t minute_start= _match_vector[_minute_part_index];
149
size_t minute_len= _match_vector[_minute_part_index + 1] - _match_vector[_minute_part_index];
154
150
to->_minutes= atoi(copy_data.substr(minute_start, minute_len).c_str());
156
152
if (_second_part_index > 1)
158
size_t second_start= match_vector[_second_part_index];
159
size_t second_len= match_vector[_second_part_index + 1] - match_vector[_second_part_index];
154
size_t second_start= _match_vector[_second_part_index];
155
size_t second_len= _match_vector[_second_part_index + 1] - _match_vector[_second_part_index];
160
156
to->_seconds= atoi(copy_data.substr(second_start, second_len).c_str());
162
158
if (_usecond_part_index > 1)
164
size_t usecond_start= match_vector[_usecond_part_index];
165
size_t usecond_len= match_vector[_usecond_part_index + 1] - match_vector[_usecond_part_index];
160
size_t usecond_start= _match_vector[_usecond_part_index];
161
size_t usecond_len= _match_vector[_usecond_part_index + 1] - _match_vector[_usecond_part_index];
167
163
* For microseconds, which are millionth of 1 second,
168
164
* we must ensure that we produce a correct result,
233
230
{"^(\\d{4})(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})\\.(\\d{1,6})$", 1, 2, 3, 4, 5, 6, 7, 0} /* YYYYMMDDHHmmSS.uuuuuu */
234
231
, {"^(\\d{4})(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})$", 1, 2, 3, 4, 5, 6, 0, 0} /* YYYYMMDDHHmmSS */
235
232
, {"^(\\d{4})[-/.](\\d{1,2})[-/.](\\d{1,2})[T|\\s+](\\d{2}):(\\d{2}):(\\d{2})\\.(\\d{1,6})$", 1, 2, 3, 4, 5, 6, 7, 0} /* YYYY[/-.]MM[/-.]DD[T]HH:mm:SS.uuuuuu */
236
, {"^(\\d{4})[-/.](\\d{1,2})[-/.](\\d{1,2})[T|\\s+](\\d{2}):(\\d{2}):(\\d{2})$", 1, 2, 3, 4, 5, 6, 0, 0} /* YYYY[/-.][M]M[/-.][D]D[T]HH:mm:SS */
237
, {"^(\\d{2})[-/.](\\d{1,2})[-/.](\\d{1,2})[\\s+](\\d{2}):(\\d{2}):(\\d{2})$", 1, 2, 3, 4, 5, 6, 0, 0} /* YY[/-.][M]M[/-.][D]D HH:mm:SS */
238
, {"^(\\d{2})[-/.](\\d{1,2})[-/.](\\d{1,2})[\\s+](\\d{2}):(\\d{2})$", 1, 2, 3, 4, 5, 0, 0, 0} /* YY[/-.][M]M[/-.][D]D HH:mm */
239
, {"^(\\d{4})[-/.](\\d{1,2})[-/.](\\d{1,2})[\\s+](\\d{2}):(\\d{2})$", 1, 2, 3, 4, 5, 0, 0, 0} /* YYYY[/-.][M]M[/-.][D]D HH:mm */
240
, {"^(\\d{4})[-/.](\\d{1,2})[-/.](\\d{1,2})$", 1, 2, 3, 0, 0, 0, 0, 0} /* YYYY-[M]M-[D]D, YYYY.[M]M.[D]D, YYYY/[M]M/[D]D */
233
, {"^(\\d{4})[-/.](\\d{1,2})[-/.](\\d{1,2})[T|\\s+](\\d{2}):(\\d{2}):(\\d{2})$", 1, 2, 3, 4, 5, 6, 0, 0} /* YYYY[/-.]MM[/-.]DD[T]HH:mm:SS */
234
, {"^(\\d{2})[-/.](\\d{1,2})[-/.](\\d{1,2})[\\s+](\\d{2}):(\\d{2}):(\\d{2})$", 1, 2, 3, 4, 5, 6, 0, 0} /* YY[/-.]MM[/-.]DD HH:mm:SS */
235
, {"^(\\d{4})[-/.](\\d{1,2})[-/.](\\d{1,2})$", 1, 2, 3, 0, 0, 0, 0, 0} /* YYYY-MM-DD, YYYY.MM.DD, YYYY/MM/DD */
241
236
, {"^(\\d{4})(\\d{2})(\\d{2})$", 1, 2, 3, 0, 0, 0, 0, 0} /* YYYYMMDD */
242
237
, {"^(\\d{2})[-/.]*(\\d{2})[-/.]*(\\d{4})$", 3, 1, 2, 0, 0, 0, 0, 0} /* MM[-/.]DD[-/.]YYYY (US common format)*/
243
238
, {"^(\\d{2})[-/.]*(\\d{2})[-/.]*(\\d{2})$", 1, 2, 3, 0, 0, 0, 0, 0} /* YY[-/.]MM[-/.]DD */
251
246
, {"^(\\d{1,2})\\.(\\d{1,6})$", 0, 0, 0, 0, 0, 1, 2, 0} /* [S]S.uuuuuu */
254
vector<TemporalFormat *> known_datetime_formats;
255
vector<TemporalFormat *> known_date_formats;
256
vector<TemporalFormat *> known_time_formats;
257
vector<TemporalFormat *> all_temporal_formats;
249
std::vector<drizzled::TemporalFormat*> known_datetime_formats;
250
std::vector<drizzled::TemporalFormat*> known_date_formats;
251
std::vector<drizzled::TemporalFormat*> known_time_formats;
260
254
* We allocate and initialize all known date/time formats.