summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
authorunknown <jimw@mysql.com>2005-08-04 16:33:29 -0700
committerunknown <jimw@mysql.com>2005-08-04 16:33:29 -0700
commitb7ab93001d50bc2db7c1f06c8040ec79a35b170b (patch)
treec9bbebce74284ec32c2aa47c2a8ee58441c53bfe /mysql-test/r/view.result
parent86258948a2af837925982fa8553df67c7c098a8d (diff)
downloadmariadb-git-b7ab93001d50bc2db7c1f06c8040ec79a35b170b.tar.gz
Fix out-of-order results in view results file
mysql-test/r/view.result: Update results file
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r--mysql-test/r/view.result22
1 files changed, 11 insertions, 11 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 20c6b7782b7..f6b5018cf3a 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -2007,17 +2007,6 @@ A
B
DROP VIEW v1;
DROP TABLE t1;
-create table t1 (f1 tinyint(1), f2 char(1), f3 varchar(1), f4 geometry, f5 datetime);
-create view v1 as select * from t1;
-desc v1;
-Field Type Null Key Default Extra
-f1 tinyint(1) YES NULL
-f2 char(1) YES NULL
-f3 varchar(1) YES NULL
-f4 geometry YES NULL
-f5 datetime YES NULL
-drop view v1;
-drop table t1;
CREATE TABLE t1 ( bug_table_seq INTEGER NOT NULL);
CREATE OR REPLACE VIEW v1 AS SELECT * from t1;
DROP PROCEDURE IF EXISTS p1;
@@ -2032,6 +2021,17 @@ CALL p1();
DROP PROCEDURE p1;
DROP VIEW v1;
DROP TABLE t1;
+create table t1 (f1 tinyint(1), f2 char(1), f3 varchar(1), f4 geometry, f5 datetime);
+create view v1 as select * from t1;
+desc v1;
+Field Type Null Key Default Extra
+f1 tinyint(1) YES NULL
+f2 char(1) YES NULL
+f3 varchar(1) YES NULL
+f4 geometry YES NULL
+f5 datetime YES NULL
+drop view v1;
+drop table t1;
create table t1(f1 datetime);
insert into t1 values('2005.01.01 12:0:0');
create view v1 as select f1, subtime(f1, '1:1:1') as sb from t1;