~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-updates

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2015-06-13 21:09:48 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20150613210948-tkboqdfc3y9ifptl
Tags: 5.5.44-1ubuntu0.14.10.1
* SECURITY UPDATE: Update to 5.5.44 to fix security issues (LP: #1464895):
  - CVE-2015-3152
* Upstream also includes lots of line ending changes (from CRLF -> LF)
* Removed hotfix patch now included in upstream release (MDEV-8115)

Show diffs side-by-side

added added

removed removed

Lines of Context:
316
316
mysqlcheck test t.1
317
317
test.t.1                                           OK
318
318
drop table test.`t.1`;
 
319
create view v1 as select 1;
 
320
mysqlcheck --process-views test
 
321
test.v1                                            OK
 
322
mysqlcheck --process-views --extended test
 
323
test.v1                                            OK
 
324
mysqlcheck --process-views --fast test
 
325
mysqlcheck --process-views --quick test
 
326
test.v1                                            OK
 
327
mysqlcheck --process-views --check-only-changed test
 
328
mysqlcheck --process-views --medium-check test
 
329
test.v1                                            OK
 
330
mysqlcheck --process-views --check-upgrade test
 
331
test.v1                                            OK
 
332
drop view v1;
 
333
create table t1(a int);
 
334
mysqlcheck --process-views --check-upgrade --auto-repair test
 
335
test.t1                                            OK
 
336
test.v1                                            Needs upgrade
 
337
 
 
338
Repairing views
 
339
test.v1                                            OK
 
340
drop view v1;
 
341
drop table t1;