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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
7c1b675e
Commit
7c1b675e
authored
Dec 05, 2006
by
bar@mysql.com/bar.intranet.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merging bug#22645 "LC_TIME_NAMES: Statement not replicated" from 4.1.
parent
58149eaf
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
331 additions
and
328 deletions
+331
-328
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+1
-0
sql/mysql_priv.h
sql/mysql_priv.h
+3
-1
sql/sql_locale.cc
sql/sql_locale.cc
+327
-327
No files found.
mysql-test/t/disabled.def
View file @
7c1b675e
...
@@ -11,5 +11,6 @@
...
@@ -11,5 +11,6 @@
##############################################################################
##############################################################################
ndb_load : Bug#17233
ndb_load : Bug#17233
rpl_locale : Bug#22645
user_limits : Bug#23921 random failure of user_limits.test
user_limits : Bug#23921 random failure of user_limits.test
sql/mysql_priv.h
View file @
7c1b675e
...
@@ -118,9 +118,11 @@ typedef struct my_locale_st
...
@@ -118,9 +118,11 @@ typedef struct my_locale_st
TYPELIB
*
day_names
;
TYPELIB
*
day_names
;
TYPELIB
*
ab_day_names
;
TYPELIB
*
ab_day_names
;
#ifdef __cplusplus
#ifdef __cplusplus
my_locale_st
(
const
char
*
name_par
,
const
char
*
descr_par
,
bool
is_ascii_par
,
my_locale_st
(
uint
number_par
,
const
char
*
name_par
,
const
char
*
descr_par
,
bool
is_ascii_par
,
TYPELIB
*
month_names_par
,
TYPELIB
*
ab_month_names_par
,
TYPELIB
*
month_names_par
,
TYPELIB
*
ab_month_names_par
,
TYPELIB
*
day_names_par
,
TYPELIB
*
ab_day_names_par
)
:
TYPELIB
*
day_names_par
,
TYPELIB
*
ab_day_names_par
)
:
number
(
number_par
),
name
(
name_par
),
description
(
descr_par
),
is_ascii
(
is_ascii_par
),
name
(
name_par
),
description
(
descr_par
),
is_ascii
(
is_ascii_par
),
month_names
(
month_names_par
),
ab_month_names
(
ab_month_names_par
),
month_names
(
month_names_par
),
ab_month_names
(
ab_month_names_par
),
day_names
(
day_names_par
),
ab_day_names
(
ab_day_names_par
)
day_names
(
day_names_par
),
ab_day_names
(
ab_day_names_par
)
...
...
sql/sql_locale.cc
View file @
7c1b675e
This diff is collapsed.
Click to expand it.
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