~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drizzle_client.result

  • Committer: lbieber
  • Date: 2010-10-01 12:16:18 UTC
  • mfrom: (1802.1.1 fix-bug-651256)
  • Revision ID: lbieber@orisndriz08-20101001121618-uqcboygpjwbiglem
Merge Vijay - fix bug 651256 - Remove --help-extended

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
1
87
87
1
88
88
ERROR 1064 (42000) at line 4: 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 '' at line 1
89
 
ERROR: USE must be followed by a schema name
 
89
ERROR: USE must be followed by a database name
90
90
create table t17583 (a int);
91
91
insert into t17583 (a) values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
92
92
insert into t17583 select a from t17583;
104
104
Test connect with dbname only => new dbname, old hostname
105
105
ERROR 1064 (42000) at line 2: 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 'connecttest' at line 1
106
106
Test connect with _invalid_ dbname only => new invalid dbname, old hostname
107
 
ERROR 1049 (42000): Unknown schema 'invalid'
108
 
ERROR 1049 (42000): Unknown schema 'invalid'
 
107
ERROR 1049 (42000): Unknown database 'invalid'
 
108
ERROR 1049 (42000): Unknown database 'invalid'
109
109
Test connect with dbname + hostname
110
110
Test connect with dbname + _invalid_ hostname
111
111
End of 5.0 tests