~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb-autoinc.test

  • Committer: Brian Aker
  • Date: 2010-12-09 20:06:21 UTC
  • mfrom: (1991 build)
  • mto: (2017.3.1 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2073.
  • Revision ID: brian@tangent.org-20101209200621-bjflgmj82j4bcnvq
Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
SHOW CREATE TABLE t1;
77
77
DROP TABLE t1;
78
78
 
 
79
###
 
80
## 55277: Failing assertion: auto_inc > 0
 
81
##
 
82
#DROP TABLE IF EXISTS t1;
 
83
#CREATE TABLE t1(c1 BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY) ENGINE=InnoDB;
 
84
#INSERT INTO t1 VALUES (NULL);
 
85
#INSERT INTO t1 VALUES (18446744073709551615);
 
86
## Restart the server
 
87
#-- source include/restart_mysqld.inc
 
88
#SHOW CREATE TABLE t1;
 
89
#DROP TABLE t1;
 
90
 
79
91
 
80
92
#
81
93
# restore environment to the state it was before this test execution