summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamyan Ivanov <dmn@debian.org>2017-12-02 14:54:27 +0000
committerDamyan Ivanov <dmn@debian.org>2017-12-02 14:54:27 +0000
commitdc8ad6e40e0140bbb2188e3b68afb52315e46175 (patch)
treec7c18b5ffedf05ded3e9da473ba98367d565f14a
parent39f8a501631203f38272d1576458aaba5686b195 (diff)
drop unused column character set definition
if for some reason the character set is not available, the test would fail, but what we are testing here is creation/dropping of tables, nothing related to character sets
-rw-r--r--t/20-createdrop.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/20-createdrop.t b/t/20-createdrop.t
index e75966c..076571a 100644
--- a/t/20-createdrop.t
+++ b/t/20-createdrop.t
@@ -45,7 +45,7 @@ ok($table, qq{Table is '$table'});
my $def =<<"DEF";
CREATE TABLE $table (
id INTEGER NOT NULL PRIMARY KEY,
- name CHAR(64) CHARACTER SET ISO8859_1
+ name CHAR(64)
)
DEF
ok( $dbh->do($def), qq{CREATE TABLE '$table'} );