~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/r/upgrade.result

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-21 15:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20100621153105-pbbz3t6nyrf9t2zq
Tags: upstream-5.1.48
ImportĀ upstreamĀ versionĀ 5.1.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
f1
113
113
drop database `a-b-c`;
114
114
use test;
 
115
# End of 5.0 tests
 
116
#
 
117
# Bug #53804: serious flaws in the alter database .. upgrade data
 
118
#             directory name command
 
119
#
 
120
ALTER DATABASE `#mysql50#:` UPGRADE DATA DIRECTORY NAME;
 
121
ERROR 42000: Unknown database '#mysql50#:'
 
122
ALTER DATABASE `#mysql50#.` UPGRADE DATA DIRECTORY NAME;
 
123
ERROR 42000: Incorrect database name '#mysql50#.'
 
124
ALTER DATABASE `#mysql50#../` UPGRADE DATA DIRECTORY NAME;
 
125
ERROR 42000: Incorrect database name '#mysql50#../'
 
126
ALTER DATABASE `#mysql50#../..` UPGRADE DATA DIRECTORY NAME;
 
127
ERROR 42000: Incorrect database name '#mysql50#../..'
 
128
ALTER DATABASE `#mysql50#../../` UPGRADE DATA DIRECTORY NAME;
 
129
ERROR 42000: Incorrect database name '#mysql50#../../'
 
130
ALTER DATABASE `#mysql50#./blablabla` UPGRADE DATA DIRECTORY NAME;
 
131
ERROR 42000: Incorrect database name '#mysql50#./blablabla'
 
132
ALTER DATABASE `#mysql50#../blablabla` UPGRADE DATA DIRECTORY NAME;
 
133
ERROR 42000: Incorrect database name '#mysql50#../blablabla'
 
134
ALTER DATABASE `#mysql50#/` UPGRADE DATA DIRECTORY NAME;
 
135
ERROR 42000: Incorrect database name '#mysql50#/'
 
136
ALTER DATABASE `#mysql50#/.` UPGRADE DATA DIRECTORY NAME;
 
137
ERROR 42000: Incorrect database name '#mysql50#/.'
 
138
USE `#mysql50#.`;
 
139
ERROR 42000: Incorrect database name '#mysql50#.'
 
140
USE `#mysql50#../blablabla`;
 
141
ERROR 42000: Incorrect database name '#mysql50#../blablabla'
 
142
# End of 5.1 tests