~stewart/drizzle/use-catalog-for-path

« back to all changes in this revision

Viewing changes to tests/suite/mysql_compatibility/r/character_sets.result

  • Committer: Monty Taylor
  • Date: 2011-04-03 16:54:43 UTC
  • mfrom: (2239.5.4 drizzle-ga)
  • Revision ID: mordred@inaugust.com-20110403165443-z8a99f7vc6e9xr2h
MergedĀ inĀ Eliot

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE `test1` (
 
2
`c1` varchar(10) NOT NULL
 
3
) DEFAULT CHARSET=latin1;
 
4
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'latin1' at line 2
 
5
CREATE TABLE `test2` (
 
6
`c1` varchar(10) NOT NULL
 
7
) DEFAULT CHARSET=utf8;
 
8
DROP TABLE test2;
 
9
CREATE TABLE `test2` (
 
10
`c1` varchar(10) NOT NULL
 
11
) DEFAULT CHARSET utf8;
 
12
DROP TABLE test2;
 
13
CREATE TABLE `test2` (
 
14
`c1` varchar(10) NOT NULL
 
15
) DEFAULT CHARSET DEFAULT;
 
16
DROP TABLE test2;