mariadb/sql
Chaithra Gopalareddy 7615cb0890 Bug#13344643:Format function in view looses locale information
Problem description:
When a view is created using function FORMAT and if FORMAT function uses locale
option,definition of view saved into server doesn't contain that locale information,
Ex:
create  table test2 (bb decimal (10,2));
insert into test2 values (10.32),(10009.2),(12345678.21);
create view test3 as select format(bb,1,'sk_SK') as cc from test2;
select * from test3;
+--------------+
| cc           |
+--------------+
| 10.3         |
| 10,009.2     |
| 12,345,678.2 |
+--------------+
3 rows in set (0.02 sec)

show create view test3
                View: test3
         Create View: CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost`
SQL SECURITY DEFINER VIEW `test3` AS select format(`test2`.`bb`,1) AS `cc`
from `test2`
character_set_client: latin1
collation_connection: latin1_swedish_ci
1 row in set (0.02 sec)

Problem Analysis:
The function Item_func_format::print() which prints the query string to create
the view does not print the third argument (i.e the locale information). Hence
 view is created without locale information. 

Problem Solution:
If argument count is more than 2 we now print the third argument onto the query string.

Files changed:
sql/item_strfunc.cc
Function call changes: Item_func_format::print()
mysql-test/t/select.test
Added test case to test the bug
mysql-test/r/select.result
Result of the test case appended here
2011-12-15 16:48:40 +05:30
..
examples Updated/added copyright headers 2011-06-30 17:31:31 +02:00
share merge mysql-5.5->mysql-5.5-security 2011-10-12 15:07:15 +03:00
add_errmsg
authors.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
client_settings.h Bug#12897501 REPLICATION DOES NOT SUPPORT WINDOWS AUTH PLUG-IN 2011-09-14 16:10:18 +02:00
CMakeLists.txt Bug#11761576 54082: HANDLE_SEGFAULT MAKES USE OF UNSAFE FUNCTIONS 2011-12-02 14:16:48 +01:00
contributors.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
custom_conf.h
datadict.cc
datadict.h
debug_sync.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
debug_sync.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
derror.cc Merge from 5.1. 2011-05-21 10:21:08 +02:00
derror.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
des_key_file.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
des_key_file.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
discover.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
discover.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_data_objects.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_data_objects.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_db_repository.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
event_db_repository.h Updated/added copyright headers 2011-07-04 01:25:49 +02:00
event_parse_data.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
event_parse_data.h Updated/added copyright headers 2011-07-04 01:25:49 +02:00
event_queue.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_queue.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_scheduler.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_scheduler.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
events.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
events.h
field.cc Backport from trunk of: 2011-08-19 09:06:50 +02:00
field.h Merge BUG#12997905 from 5.1 to 5.5 2011-11-18 14:53:54 +01:00
field_conv.cc Merge BUG#12997905 from 5.1 to 5.5 2011-11-18 14:53:54 +01:00
filesort.cc Merge 5.1 => 5.5 2011-08-30 10:16:23 +02:00
filesort.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
frm_crypt.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
frm_crypt.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
gen_lex_hash.cc Manual merge from mysql-5.1. 2011-07-22 11:50:44 +04:00
gstream.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
gstream.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
ha_ndbcluster.cc Merging into mysql-5.5.16-release. 2011-08-15 20:12:11 +02:00
ha_ndbcluster.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
ha_ndbcluster_binlog.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
ha_ndbcluster_binlog.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
ha_ndbcluster_cond.cc Remove last traces of HAVE_NDBCLUSTER_DB define - it has not had an effect in a long time and is just confusing. 2011-02-21 11:15:29 +01:00
ha_ndbcluster_cond.h
ha_ndbcluster_tables.h
ha_partition.cc merge mysql-5.5->mysql-5.5-security 2011-10-12 15:07:15 +03:00
ha_partition.h Updated/added copyright headers 2011-07-04 01:25:49 +02:00
handler.cc Merge mysql-5.1-security -> mysql-5.5-security (Fix Bug#12661768) 2011-10-25 16:48:23 +03:00
handler.h Bug#12696518: MEMORY LEAKS IN HA_PARTITION (VALGRIND TESTS ON TRUNK) 2011-09-15 20:49:39 +02:00
hash_filo.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
hash_filo.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
hostname.cc BUG#12377872 ASSERTION FAILED: !_ENTERED WHEN GETHOSTBYADDR_R 2011-04-20 11:32:28 +02:00
hostname.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
init.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
init.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
item.cc Bug#13013970 MORE CRASHES IN FIELD_BLOB::GET_KEY_IMAGE 2011-12-05 15:42:45 +01:00
item.h Auto-merge from mysql-5.5. 2011-10-24 13:21:32 +04:00
item_buff.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
item_cmpfunc.cc Backport from trunk of: 2011-08-19 09:06:50 +02:00
item_cmpfunc.h Backport from trunk of: 2011-08-19 09:06:50 +02:00
item_create.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
item_create.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
item_func.cc Bug#13261955 TRUNCATE(DBL_MAX) RETURNS DBL_MAX RATHER THAN 'INF' 2011-11-15 10:01:29 +01:00
item_func.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
item_geofunc.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
item_geofunc.h weave merge from mysql-5.1 to mysql-5.5 2011-02-08 17:47:33 +02:00
item_row.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
item_row.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
item_strfunc.cc Bug#13344643:Format function in view looses locale information 2011-12-15 16:48:40 +05:30
item_strfunc.h Updated/added copyright headers 2011-07-03 17:47:37 +02:00
item_subselect.cc 5.1 -> 5.5 merge 2011-10-05 13:55:51 +04:00
item_subselect.h 5.1 -> 5.5 merge 2011-10-05 13:55:51 +04:00
item_sum.cc Bug#11750518 41090: ORDER BY TRUNCATES GROUP_CONCAT RESULT 2011-10-12 17:41:25 +04:00
item_sum.h Bug#11750518 41090: ORDER BY TRUNCATES GROUP_CONCAT RESULT 2011-10-12 17:41:25 +04:00
item_timefunc.cc 5.1 -> 5.5 merge 2011-07-27 12:51:55 +04:00
item_timefunc.h Updated/added copyright headers 2011-07-03 17:47:37 +02:00
item_xmlfunc.cc Merge from mysql-5.5.14-release 2011-07-06 01:13:50 +02:00
item_xmlfunc.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
key.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
key.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
keycaches.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
keycaches.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
lex.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
lex_symbol.h
lock.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
lock.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
log.cc Build broken for gcc 4.5.1 in optimized mode. 2011-11-29 15:52:47 +01:00
log.h BUG#11745230: 12133: MASTER.INDEX FILE KEEPS MYSQLD FROM STARTING IF 2011-11-24 17:15:58 +00:00
log_event.cc BUG#11760927 2011-11-15 14:38:58 +00:00
log_event.h BUG#11760927: 53375: RBR + NO PK => HIGH LOAD ON SLAVE (TABLE 2011-11-11 17:26:56 +00:00
log_event_old.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
log_event_old.h
main.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
mdl.cc Fix for bug#12695572 - "IMPROVE MDL PERFORMANCE IN PRE-VISTA 2011-11-15 22:00:14 +04:00
mdl.h Fix for bug#12695572 - "IMPROVE MDL PERFORMANCE IN PRE-VISTA 2011-11-15 22:00:14 +04:00
message.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
message.mc
message.rc
mf_iocache.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
MSG00001.bin
my_decimal.cc Updated/added copyright headers 2011-07-03 17:47:37 +02:00
my_decimal.h merge 5.1-security => 5.5-security 2011-10-14 11:14:44 +02:00
mysqld.cc Bug#11754011: 45546: START WINDOWS SERVICE, THEN EXECUTE WHAT IS NEEDED. 2011-12-13 17:44:19 +02:00
mysqld.h BUG#11745230: 12133: MASTER.INDEX FILE KEEPS MYSQLD FROM STARTING IF 2011-11-24 17:15:58 +00:00
mysqld_suffix.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
net_serv.cc Updated/added copyright headers 2011-06-30 17:31:31 +02:00
nt_servc.cc Bug#11754011: 45546: START WINDOWS SERVICE, THEN EXECUTE WHAT IS NEEDED. 2011-12-13 17:44:19 +02:00
nt_servc.h Bug#11754011: 45546: START WINDOWS SERVICE, THEN EXECUTE WHAT IS NEEDED. 2011-12-13 17:44:19 +02:00
opt_range.cc Bug#12540545 61101: ASSERTION FAILURE IN THREAD 1256741184 IN FILE /BUILDDIR/BUILD/BUILD/MYSQ 2011-10-19 16:07:14 +04:00
opt_range.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
opt_sum.cc Updated/added copyright headers 2011-07-03 17:47:37 +02:00
parse_file.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
parse_file.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
partition_element.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
partition_info.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
partition_info.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
password.c Updated/added copyright headers 2011-07-04 01:25:49 +02:00
procedure.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
procedure.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
protocol.cc Auto-merge from mysql-5.1. 2011-07-15 16:29:07 +04:00
protocol.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
records.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
records.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
repl_failsafe.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
repl_failsafe.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
replication.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_constants.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_filter.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_filter.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_handler.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_handler.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_injector.cc Bug#11763573 - 56299: MUTEX DEADLOCK WITH COM_BINLOG_DUMP, BINLOG PURGE, AND PROCESSLIST/KILL 2011-10-27 17:14:41 +03:00
rpl_injector.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_mi.cc BUG#11809016 - NO WAY TO DISCOVER AN INSTANCE IS NO LONGER A SLAVE FOLLOWING MYSQL BUG#28796 2011-07-18 18:18:03 +01:00
rpl_mi.h BUG#11809016 - NO WAY TO DISCOVER AN INSTANCE IS NO LONGER A SLAVE FOLLOWING MYSQL BUG#28796 2011-07-18 18:18:03 +01:00
rpl_record.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_record.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_record_old.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_record_old.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_reporting.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_reporting.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_rli.cc BUG#11760927 2011-11-16 01:18:03 +00:00
rpl_rli.h BUG#11760927: 53375: RBR + NO PK => HIGH LOAD ON SLAVE (TABLE 2011-11-11 17:26:56 +00:00
rpl_tblmap.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_tblmap.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_utility.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_utility.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
scheduler.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
scheduler.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
set_var.cc Updated/added copyright headers 2011-07-03 17:47:37 +02:00
set_var.h Bug#11761576 54082: HANDLE_SEGFAULT MAKES USE OF UNSAFE FUNCTIONS 2011-12-02 14:16:48 +01:00
sha2.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
signal_handler.cc Bug#11761576 54082: HANDLE_SEGFAULT MAKES USE OF UNSAFE FUNCTIONS 2011-12-02 14:16:48 +01:00
slave.cc reverting the initial patch for bug#13437900 for refinement. 2011-11-29 22:30:04 +02:00
slave.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sp.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_cache.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_cache.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_head.cc Bug12589870 post merge fixes - manual merge 2011-10-19 03:42:09 +01:00
sp_head.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_pcontext.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_pcontext.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_rcontext.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_rcontext.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
spatial.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
spatial.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_acl.cc merge mysql-5.5->mysql-5.5-security 2011-10-12 15:07:15 +03:00
sql_acl.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_admin.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_admin.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_alter.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_alter.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_analyse.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sql_analyse.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_array.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_audit.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_audit.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_base.cc Fix for bug #13116518 - "OPEN_TABLES() SHOULD NOT ALLOCATE AND FREE 2011-10-23 09:37:35 +04:00
sql_base.h Bug #11764779 (former 57649) 2011-03-07 10:08:10 +01:00
sql_binlog.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sql_binlog.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_bitmap.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_builtin.cc.in Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_cache.cc Bug12589870 post merge fixes - manual merge 2011-10-19 03:42:09 +01:00
sql_cache.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_callback.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_class.cc Bug#13437900 - VALGRIND REPORTS A LEAK FOR REPL_IGNORE_SERVER_IDS 2011-12-14 15:33:43 +02:00
sql_class.h BUG#11763882 - 56652: VALGRIND WARNINGS FOR MEMORY LEAK IN 2011-11-10 10:43:34 +04:00
sql_client.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_connect.cc Merge from mysql-5.1.58-release 2011-07-06 00:56:51 +02:00
sql_connect.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_const.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_crypt.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_crypt.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_cursor.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
sql_cursor.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_db.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sql_db.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_delete.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_delete.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_derived.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_derived.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_do.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_do.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_error.cc Bug#12736295 Buffer overflow for variable converted_err with 2011-07-15 08:05:30 -03:00
sql_error.h A patch for Bug#11763166 (55847: SHOW WARNINGS returns empty 2011-04-15 16:02:22 +04:00
sql_handler.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_handler.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_help.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_help.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_hset.h
sql_insert.cc Bug#11748731:SOME 'BIG' TESTS FAILING ON 6.0 2011-11-21 17:07:08 +05:30
sql_insert.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_lex.cc Bug#13437900 - VALGRIND REPORTS A LEAK FOR REPL_IGNORE_SERVER_IDS 2011-12-14 15:33:43 +02:00
sql_lex.h bug#13437900 2011-12-14 17:02:55 +02:00
sql_list.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_list.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_load.cc Bug#12727287: Maintainer mode compilation fails with gcc 4.6 2011-07-07 08:22:43 -03:00
sql_load.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_locale.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_locale.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_manager.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_manager.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_parse.cc Merge from mysql-5.5.18-release 2011-11-17 09:00:58 +01:00
sql_parse.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_partition.cc merge of mysql-5.1->mysql-5.1-security 2011-06-06 16:53:46 +03:00
sql_partition.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_partition_admin.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_partition_admin.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_plist.h Fix for bug#12695572 - "IMPROVE MDL PERFORMANCE IN PRE-VISTA 2011-11-15 22:00:14 +04:00
sql_plugin.cc BUG#11763882 - 56652: VALGRIND WARNINGS FOR MEMORY LEAK IN 2011-11-10 10:43:34 +04:00
sql_plugin.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_plugin_services.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_prepare.cc 5.1 -> 5.5 merge 2011-08-02 11:54:35 +04:00
sql_prepare.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_priv.h Merge from mysql-5.5.14-release 2011-07-06 01:13:50 +02:00
sql_profile.cc Bug#12756017 - PROFILING: SET_THD_PROC_INFO DOES NOT NEED TO CALL DIRNAME_LENGTH EACH TIME 2011-07-20 08:50:47 +02:00
sql_profile.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_reload.cc Merge from mysql-5.5.18-release 2011-11-17 09:00:58 +01:00
sql_reload.h
sql_rename.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_rename.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_repl.cc Bug#13437900 - VALGRIND REPORTS A LEAK FOR REPL_IGNORE_SERVER_IDS 2011-12-14 15:33:43 +02:00
sql_repl.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_select.cc Merge BUG#12997905 from 5.1 to 5.5 2011-11-18 14:53:54 +01:00
sql_select.h Updated/added copyright headers 2011-07-03 17:47:37 +02:00
sql_servers.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_servers.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_show.cc Cherry-picking a patch from Bug 12828477 from mysql-5.5 2011-08-15 18:31:45 +04:00
sql_show.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_signal.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_signal.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_sort.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_state.c
sql_string.cc Bug#12406055 post-push fix: unused variable 'num_chars' in optimized build. 2011-10-31 10:10:04 +01:00
sql_string.h Updated/added copyright headers 2011-07-03 17:47:37 +02:00
sql_table.cc Bug#11748731:SOME 'BIG' TESTS FAILING ON 6.0 2011-11-21 17:07:08 +05:30
sql_table.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_tablespace.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_tablespace.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_test.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_test.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_time.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_time.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_trigger.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sql_trigger.h Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sql_truncate.cc Bug #11764779 (former 57649) 2011-03-07 10:08:10 +01:00
sql_truncate.h
sql_udf.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_udf.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_union.cc merge 5.1-security => 5.5-security 2011-07-11 11:27:52 +02:00
sql_union.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_update.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
sql_update.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_view.cc manual merge 2011-10-06 11:49:58 +01:00
sql_view.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_yacc.yy Bug#13437900 - VALGRIND REPORTS A LEAK FOR REPL_IGNORE_SERVER_IDS 2011-12-14 15:33:43 +02:00
strfunc.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
strfunc.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
structs.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sys_vars.cc Bug#11761576 post-push fix: HAVE_EXPLICIT_TEMPLATE_INSTANTIATION in header file broke Mac build 2011-12-02 15:16:39 +01:00
sys_vars.h Bug#11761576 post-push fix: HAVE_EXPLICIT_TEMPLATE_INSTANTIATION in header file broke Mac build 2011-12-02 15:16:39 +01:00
sys_vars_shared.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
table.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
table.h Updated/added copyright headers 2011-07-04 01:25:49 +02:00
thr_malloc.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
thr_malloc.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
transaction.cc Bug#12352846 - TRANS_XA_START(THD*): 2011-04-14 10:13:28 +02:00
transaction.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
tzfile.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
tztime.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
tztime.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
udf_example.c Updated/added copyright headers 2011-06-30 17:46:53 +02:00
udf_example.def
uniques.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
unireg.cc Updated/added copyright headers 2011-07-04 01:25:49 +02:00
unireg.h merge 5.0-security => 5.1-security 2011-07-15 14:08:14 +02:00