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

« back to all changes in this revision

Viewing changes to mysql-test/suite/maria/maria_partition.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
34
34
a       a
35
35
drop table t1,t2;
 
36
CREATE TABLE t1 (pk INT PRIMARY KEY) ENGINE=Aria PARTITION BY KEY() PARTITIONS 2;
 
37
CREATE VIEW v1 AS SELECT * FROM t1;
 
38
LOCK TABLE v1 WRITE;
 
39
CREATE TABLE v1 (i INT);
 
40
ERROR HY000: Table 'v1' was not locked with LOCK TABLES
 
41
INSERT INTO v1 VALUES (1);
 
42
UNLOCK TABLES;
 
43
check table t1;
 
44
Table   Op      Msg_type        Msg_text
 
45
test.t1 check   status  OK
 
46
SELECT * FROM t1;
 
47
pk
 
48
1
 
49
drop table t1;
 
50
drop view v1;