From 485b97be9f2f2abf5a40923b5fd85f75714a8c02 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Mon, 24 Sep 2012 10:15:50 +0000 Subject: Imported from /srv/lorry/lorry-area/perl-dbd-sqlite-tarball/DBD-SQLite-1.38_01.tar.gz. --- t/03_create_table.t | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 t/03_create_table.t (limited to 't/03_create_table.t') diff --git a/t/03_create_table.t b/t/03_create_table.t new file mode 100644 index 0000000..4c13449 --- /dev/null +++ b/t/03_create_table.t @@ -0,0 +1,36 @@ +#!/usr/bin/perl + +# Tests simple table creation + +use strict; +BEGIN { + $| = 1; + $^W = 1; +} + +use t::lib::Test; +use Test::More tests => 7; +use Test::NoWarnings; + +my $dbh = connect_ok(); +$dbh->do(<<'END_SQL'); +CREATE TABLE f +( +f1 integer NOT NULL PRIMARY KEY, +f2 integer, +f3 text +) +END_SQL + +# Confirm fix for #34408: Primary key name wrong with newline in CREATE TABLE +my $pkh = $dbh->primary_key_info( undef, undef, 'f' ); +my @pk = $pkh->fetchall_arrayref(); +is_deeply( \@pk, [ [ [ undef, 'main', 'f', 'f1', 1, 'PRIMARY KEY' ] ] ], '->primary_key_info ok' ); + +my $sth = $dbh->prepare("SELECT f.f1, f.* FROM f"); +isa_ok( $sth, 'DBI::st' ); +ok( $sth->execute, '->execute ok' ); +my $names = $sth->{NAME}; +is( scalar(@$names), 4, 'Got 4 columns' ); +is_deeply( $names, [ 'f1', 'f1', 'f2', 'f3' ], 'Table prepending is disabled by default' ); + -- cgit v1.2.1