~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/jp/r/jp_ps_sjis.result

  • Committer: Brian Aker
  • Date: 2009-12-01 23:52:10 UTC
  • mfrom: (1235.1.4 push)
  • Revision ID: brian@gaz-20091201235210-rb720ykhz8e06fda
Merge Brian + Monty. This has the HEAP -> MEMORY change in it, so some
breakage for wrong table name is expected.

Show diffs side-by-side

added added

removed removed

Lines of Context:
446
446
DROP TABLE t2;
447
447
DROP TABLE t3;
448
448
DROP TABLE t4;
449
 
CREATE TABLE t1(c1 char(3)) DEFAULT CHARSET = sjis ENGINE = HEAP;
450
 
CREATE TABLE t2(c1 char(3)) DEFAULT CHARSET = sjis ENGINE = HEAP;
 
449
CREATE TABLE t1(c1 char(3)) DEFAULT CHARSET = sjis ENGINE = MEMORY;
 
450
CREATE TABLE t2(c1 char(3)) DEFAULT CHARSET = sjis ENGINE = MEMORY;
451
451
CREATE TABLE t3(
452
452
`�` char(1),
453
453
`��` char(1),
454
454
`�\` char(1)
455
 
)DEFAULT CHARSET = sjis ENGINE = HEAP;
456
 
CREATE TABLE t4(c1 char(1)) DEFAULT CHARSET = sjis ENGINE =HEAP;
 
455
)DEFAULT CHARSET = sjis ENGINE = MEMORY;
 
456
CREATE TABLE t4(c1 char(1)) DEFAULT CHARSET = sjis ENGINE =MEMORY;
457
457
INSERT INTO t1 VALUES ('xxx');
458
458
INSERT INTO t2 VALUES ('����\');
459
459
INSERT INTO t3 VALUES ('x','x','x'),('x','x','x'),('y','y','y'),('y','y','y'),('z','z','z'),('z','z','z');