Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fe1b3b94
Commit
fe1b3b94
authored
Mar 19, 2009
by
Horst Hunger
Browse files
Options
Browse Files
Download
Plain Diff
due to merge.
parents
667a004c
6725f3ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
25 deletions
+53
-25
sql/tztime.cc
sql/tztime.cc
+53
-25
No files found.
sql/tztime.cc
View file @
fe1b3b94
...
...
@@ -1825,6 +1825,13 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
#ifdef ABBR_ARE_USED
char
chars
[
max
(
TZ_MAX_CHARS
+
1
,
(
2
*
(
MY_TZNAME_MAX
+
1
)))];
#endif
/*
Used as a temporary tz_info until we decide that we actually want to
allocate and keep the tz info and tz name in tz_storage.
*/
TIME_ZONE_INFO
tmp_tz_info
;
memset
(
&
tmp_tz_info
,
0
,
sizeof
(
TIME_ZONE_INFO
));
DBUG_ENTER
(
"tz_load_from_open_tables"
);
/* Prepare tz_info for loading also let us make copy of time zone name */
...
...
@@ -1866,7 +1873,8 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
Most probably user has mistyped time zone name, so no need to bark here
unless we need it for debugging.
*/
sql_print_error
(
"Can't find description of time zone '%s'"
,
tz_name_buff
);
sql_print_error
(
"Can't find description of time zone '%.*s'"
,
tz_name
->
length
(),
tz_name
->
ptr
());
#endif
goto
end
;
}
...
...
@@ -1895,8 +1903,8 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
/* If Uses_leap_seconds == 'Y' */
if
(
table
->
field
[
1
]
->
val_int
()
==
1
)
{
t
z_info
->
leapcnt
=
tz_leapcnt
;
t
z_info
->
lsis
=
tz_lsis
;
t
mp_tz_info
.
leapcnt
=
tz_leapcnt
;
t
mp_tz_info
.
lsis
=
tz_lsis
;
}
(
void
)
table
->
file
->
ha_index_end
();
...
...
@@ -1932,18 +1940,18 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
#ifdef ABBR_ARE_USED
// FIXME should we do something with duplicates here ?
table
->
field
[
4
]
->
val_str
(
&
abbr
,
&
abbr
);
if
(
t
z_info
->
charcnt
+
abbr
.
length
()
+
1
>
sizeof
(
chars
))
if
(
t
mp_tz_info
.
charcnt
+
abbr
.
length
()
+
1
>
sizeof
(
chars
))
{
sql_print_error
(
"Error while loading time zone description from "
"mysql.time_zone_transition_type table: not enough "
"room for abbreviations"
);
goto
end
;
}
ttis
[
ttid
].
tt_abbrind
=
t
z_info
->
charcnt
;
memcpy
(
chars
+
t
z_info
->
charcnt
,
abbr
.
ptr
(),
abbr
.
length
());
t
z_info
->
charcnt
+=
abbr
.
length
();
chars
[
t
z_info
->
charcnt
]
=
0
;
t
z_info
->
charcnt
++
;
ttis
[
ttid
].
tt_abbrind
=
t
mp_tz_info
.
charcnt
;
memcpy
(
chars
+
t
mp_tz_info
.
charcnt
,
abbr
.
ptr
(),
abbr
.
length
());
t
mp_tz_info
.
charcnt
+=
abbr
.
length
();
chars
[
t
mp_tz_info
.
charcnt
]
=
0
;
t
mp_tz_info
.
charcnt
++
;
DBUG_PRINT
(
"info"
,
(
"time_zone_transition_type table: tz_id=%u tt_id=%u tt_gmtoff=%ld "
...
...
@@ -1956,9 +1964,9 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
#endif
/* ttid is increasing because we are reading using index */
DBUG_ASSERT
(
ttid
>=
t
z_info
->
typecnt
);
DBUG_ASSERT
(
ttid
>=
t
mp_tz_info
.
typecnt
);
t
z_info
->
typecnt
=
ttid
+
1
;
t
mp_tz_info
.
typecnt
=
ttid
+
1
;
res
=
table
->
file
->
index_next_same
(
table
->
record
[
0
],
table
->
field
[
0
]
->
ptr
,
4
);
...
...
@@ -1990,14 +1998,14 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
ttime
=
(
my_time_t
)
table
->
field
[
1
]
->
val_int
();
ttid
=
(
uint
)
table
->
field
[
2
]
->
val_int
();
if
(
t
z_info
->
timecnt
+
1
>
TZ_MAX_TIMES
)
if
(
t
mp_tz_info
.
timecnt
+
1
>
TZ_MAX_TIMES
)
{
sql_print_error
(
"Error while loading time zone description from "
"mysql.time_zone_transition table: "
"too much transitions"
);
goto
end
;
}
if
(
ttid
+
1
>
t
z_info
->
typecnt
)
if
(
ttid
+
1
>
t
mp_tz_info
.
typecnt
)
{
sql_print_error
(
"Error while loading time zone description from "
"mysql.time_zone_transition table: "
...
...
@@ -2005,9 +2013,9 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
goto
end
;
}
ats
[
t
z_info
->
timecnt
]
=
ttime
;
types
[
t
z_info
->
timecnt
]
=
ttid
;
t
z_info
->
timecnt
++
;
ats
[
t
mp_tz_info
.
timecnt
]
=
ttime
;
types
[
t
mp_tz_info
.
timecnt
]
=
ttid
;
t
mp_tz_info
.
timecnt
++
;
DBUG_PRINT
(
"info"
,
(
"time_zone_transition table: tz_id: %u tt_time: %lu tt_id: %u"
,
...
...
@@ -2031,6 +2039,34 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
(
void
)
table
->
file
->
ha_index_end
();
table
=
0
;
/*
Let us check how correct our time zone description is. We don't check for
tz->timecnt < 1 since it is ok for GMT.
*/
if
(
tmp_tz_info
.
typecnt
<
1
)
{
sql_print_error
(
"loading time zone without transition types"
);
goto
end
;
}
/* Allocate memory for the timezone info and timezone name in tz_storage. */
if
(
!
(
alloc_buff
=
(
char
*
)
alloc_root
(
&
tz_storage
,
sizeof
(
TIME_ZONE_INFO
)
+
tz_name
->
length
()
+
1
)))
{
sql_print_error
(
"Out of memory while loading time zone description"
);
return
0
;
}
/* Move the temporary tz_info into the allocated area */
tz_info
=
(
TIME_ZONE_INFO
*
)
alloc_buff
;
memcpy
(
tz_info
,
&
tmp_tz_info
,
sizeof
(
TIME_ZONE_INFO
));
tz_name_buff
=
alloc_buff
+
sizeof
(
TIME_ZONE_INFO
);
/*
By writing zero to the end we guarantee that we can call ptr()
instead of c_ptr() for time zone name.
*/
strmake
(
tz_name_buff
,
tz_name
->
ptr
(),
tz_name
->
length
());
/*
Now we will allocate memory and init TIME_ZONE_INFO structure.
*/
...
...
@@ -2062,15 +2098,7 @@ tz_load_from_open_tables(const String *tz_name, TABLE_LIST *tz_tables)
tz_info
->
ttis
=
(
TRAN_TYPE_INFO
*
)
alloc_buff
;
memcpy
(
tz_info
->
ttis
,
ttis
,
tz_info
->
typecnt
*
sizeof
(
TRAN_TYPE_INFO
));
/*
Let us check how correct our time zone description and build
reversed map. We don't check for tz->timecnt < 1 since it ok for GMT.
*/
if
(
tz_info
->
typecnt
<
1
)
{
sql_print_error
(
"loading time zone without transition types"
);
goto
end
;
}
/* Build reversed map. */
if
(
prepare_tz_info
(
tz_info
,
&
tz_storage
))
{
sql_print_error
(
"Unable to build mktime map for time zone"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment