~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/date_formats.test

  • Committer: Brian Aker
  • Date: 2008-10-18 22:47:08 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081018224708-m6339ug8f2k4ajf1
Adding back more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
--enable_ps_protocol
268
268
 
269
269
#
270
 
# Test of locale dependent date format (WL#2928 Date Translation NRE)
271
 
#
272
 
set names latin1;
273
 
select date_format('2004-01-01','%W (%a), %e %M (%b) %Y');
274
 
set lc_time_names=ru_RU;
275
 
set names koi8r;
276
 
select date_format('2004-01-01','%W (%a), %e %M (%b) %Y');
277
 
set lc_time_names=de_DE;
278
 
set names latin1;
279
 
select date_format('2004-01-01','%W (%a), %e %M (%b) %Y');
280
 
set names latin1;
281
 
set lc_time_names=en_US;
282
 
 
283
 
#
284
270
# Bug #14016 
285
271
#
286
272
create table t1 (f1 datetime);