1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
#!/usr/bin/env perl
## This is a test file, used by the DBD::Pg developers to duplicate and debug issues
BEGIN {
use lib '.', 'blib/lib', 'blib/arch';
system 'make';
}
use 5.008001;
use strict;
use warnings;
use DBI ':sql_types';
use utf8;
use Data::Dumper;
use YAML;
use DBD::Pg qw/:pg_types/;
use Data::Peek;
use Devel::Leak;
use Time::HiRes qw/ sleep /;
my $DBPORT = shift || 6432;
our ($sth, $info, $count, $SQL);
my $tracelevel = shift || 0;
$ENV{DBI_TRACE} = $tracelevel;
my $DSN = "DBI:Pg:dbname=postgres;port=$DBPORT";
my $dbh = DBI->connect($DSN, '', '', {AutoCommit=>0,RaiseError=>1,PrintError=>0})
or die "Connection failed!\n";
my $me = $dbh->{Driver}{Name};
my $sversion = $dbh->{pg_server_version};
print "DBI is version $DBI::VERSION, I am $me, version of DBD::Pg is $DBD::Pg::VERSION, server is $sversion\n";
my $port = $dbh->{pg_port};
print "Port: $port\n";
print "Name: $dbh->{Name}\n";
$dbh->{RaiseError} = 0;
$dbh->{PrintError} = 1;
$dbh->{AutoCommit} = 1;
update_rule_return();
exit;
#column_types_github_issue_24();
#read_only_arrays();
# bad_string_length();
# jsonb_placeholder();
#fatal_client();
#user_arrays();
#commit_return_test();
#utf8_print_test();
#memory_leak_test_bug_65734();
#memory_leak_arrays();
sub update_rule_return {
my @statements = (
q[DROP TABLE IF EXISTS test CASCADE],
q[CREATE TABLE test(id int primary key, animal text, sound text)],
q[CREATE VIEW test_view AS SELECT * FROM test],
q[CREATE OR REPLACE RULE test_fallback AS ON UPDATE TO test_view
DO INSTEAD NOTHING],
q[CREATE RULE test_deny AS ON UPDATE TO test_view
WHERE NEW.animal = OLD.animal
DO INSTEAD (SELECT true)],
q[CREATE OR REPLACE RULE test_allow AS ON UPDATE TO test_view
WHERE NEW.animal <> OLD.animal
DO INSTEAD (
UPDATE test SET animal = NEW.animal,
sound = NEW.sound
WHERE id = OLD.id;
SELECT true;
)],
q[INSERT into test VALUES (1,'rabbit','purr'),(2,'fox','shriek')],
);
foreach my $statement (@statements) {
$dbh->do($statement);
}
sub is {
my ($got, $expected, $name) = @_;
warn "OK: $name\n" and return if $got eq $expected;
warn "Failed test: got ($got) expected ($expected) for $name\n";
}
my ($found,$animal,$sound);
my $sth_s = $dbh->prepare('SELECT animal,sound FROM test WHERE id = ?');
my $sth_u = $dbh->prepare('UPDATE test_view SET animal = ?, sound = ? WHERE id = ?', {});
#,{ pg_server_prepare => 0} makes a difference ???
## PGRES_TUPLES_OK vs PGRES_COMMAND_OK
## How does psql do the right thing?
# Test update that will be allowed by rule
print "Normal UPDATE\n";
my ($rv2) = $sth_u->execute('bear','roar',1);
$sth_s->execute(1);
($animal,$sound) = $sth_s->fetchrow_array();
$sth_s->finish;
is($animal,'bear','animal ok');
is($sound,'roar','sound was changed');
is($sth_u->state,'','state ok');
is($sth_u->rows,1,'1 rows');
is($rv2,1,'rv is 1');
is($sth_u->{Active},1,'Sth active');
is($sth_u->fetch->[0],1,'Row was found: TWO');
$sth_u->finish();
exit;
# Test update that will be denied by rule
# psql> kalidb_test=# UPDATE test_view SET animal = 'rabbit', sound = 'roar' WHERE id = 1;
# psql> bool
# psql> ------
# psql> t
# psql> (1 row)
# psql>
# psql> UPDATE 0
my ($rv1) = $sth_u->execute('rabbit','roar',1);
#$sth_s->execute(1);
#($animal,$sound) = $sth_s->fetchrow_array();
#$sth_s->finish;is($animal,'rabbit','animal ok');
#is($sound,'purr','sound was not changed');
is($sth_u->state,'','state ok');
is($sth_u->rows,0,'0 rows');
is($rv1,'0E0','rv is 0E0');
is($sth_u->{Active},1,'Sth active');
is($sth_u->fetch->[0],1,'Row was found');
# dies here
# DBD::Pg::st fetch failed: no statement executing
$sth_u->finish();
#die "Made it past!\n";
# Test update that will be acepted
# psql> kalidb_test=# UPDATE test_view SET animal = 'bear', sound = 'roar' WHERE id = 1;
# psql> bool
# psql> ------
# psql> t
# psql> (1 row)
# psql>
# psql> UPDATE 1
my ($rv2) = $sth_u->execute('bear','roar',1);
$sth_s->execute(1);
($animal,$sound) = $sth_s->fetchrow_array();
$sth_s->finish;
is($animal,'bear','animal ok');
is($sound,'roar','sound was changed');
is($sth_u->state,'','state ok');
is($sth_u->rows,1,'1 rows');
is($rv2,1,'rv is 1');
is($sth_u->{Active},1,'Sth active');
is($sth_u->fetch->[0],1,'Row was found: TWO');
$sth_u->finish();
exit;
# Test update on non-existant record
# psql> kalidb_test=# UPDATE test_view SET animal = 'wolf', sound = 'howl' WHERE id = 99;
# psql> bool
# psql> ------
# psql> (0 rows)
# psql>
# psql> UPDATE 0
my ($rv3) = $sth_u->execute('wolf','howl',99);
$sth_s->execute(3);
($animal,$sound) = $sth_s->fetchrow_array();
$sth_s->finish;
is($animal,undef,'no animal');
is($sth_u->state,'','state ok');
is($sth_u->rows,0,'0 rows');
is($rv3,'0E0','rv is 0E0');
is($sth_u->{Active},'','Sth active');
$sth_u->finish();
}
sub column_types_github_issue_24 {
## Code from https://gist.githubusercontent.com/jef-sure/9a28e7c12f0c03d32080456afd4dafd3/raw/4ada2362371d930c9b035bd749f7b93a6d75cfc1/column-types.pl
sub table_columns {
my $table = $_[0];
my @columnlist;
my $cih = $dbh->column_info(undef, undef, $table, undef) or die "no table $table";
my $i = 0;
while (my $chr = $cih->fetchrow_hashref) {
my $cn = $chr->{COLUMN_NAME};
$cn =~ s/\"//g;
push @columnlist, [$cn, $chr->{TYPE_NAME}];
}
return \@columnlist;
}
sub query_columns {
my $query = $_[0];
my $sth = $dbh->prepare($query) or die "query $query error: " . $dbh->errstr;
$sth->execute or die "query $query error: " . $dbh->errstr;
my @columnlist;
for (my $cn = 0; $cn < @{$sth->{NAME}}; ++$cn) {
my $ti = $dbh->type_info($sth->{TYPE}->[$cn]);
my $cn = $sth->{NAME}->[$cn];
$cn =~ s/\"//g;
push @columnlist, [$cn, $ti->{TYPE_NAME} // 'UNKNOWN'];
}
return \@columnlist;
}
sub print_columns {
my ($name, $cref) = @_;
print "\n$name:\n";
for my $ci (@$cref) {
print "$ci->[0]: $ci->[1]\n";
}
}
#anton=> \d todo
# Table "public.todo"
# Column | Type | Modifiers
#-----------+---------+---------------------------------------------------
# id | integer | not null default nextval('todo_id_seq'::regclass)
# title | text |
# completed | boolean |
# misc | jsonb |
#Indexes:
# "todo_pkey" PRIMARY KEY, btree (id)
$SQL = 'CREATE TABLE todo ( id SERIAL PRIMARY KEY, title text, completed boolean, misc jsonb )';
$dbh->do($SQL);
print_columns("todo", table_columns("todo"));
print_columns("select * from todo", query_columns("select * from todo"));
#output:
#
#todo:
#id: integer
#title: text
#completed: boolean
#misc: jsonb
#
#select * from todo:
#id: int4
#title: UNKNOWN
#completed: bool
#misc: unknown
exit;
} ## end of column_types_github_issue_24
sub read_only_arrays {
## For RT ticket #107556
$SQL = 'SELECT 5, NULL, ARRAY[1,2,3], ARRAY[1,NULL,3]';
$sth = $dbh->prepare($SQL);
$sth->execute;
while( my $row = $sth->fetchrow_arrayref ) {
$row->[0] += 0; # ok
$row->[1] += 0; # ok
$_ += 0 foreach @{ $row->[2] }; # ok
$_ += 0 foreach @{ $row->[3] }; # error: Modification of a read-only value attempted
}
exit;
} ## end of read_only_arrays
sub bad_string_length {
## RT Ticket 114548
$SQL = 'SELECT md5(x::text) FROM generate_series(1,5) x';
$sth = $dbh->prepare($SQL);
$sth->execute();
my $md5size;
$sth->bind_columns(\$md5size);
while ($sth->fetch()) {
print "\n";
DDump $md5size;
print $md5size , "\n";
printf "%vx\n", $md5size;
print '.' x 32, '-' x 32 . "\n";
print substr($md5size, 0, 32), " (" . length($md5size) . ' -- ' . length(substr($md5size, 0, 32)) . ")\n";
}
} ## end of bad_string_length
sub jsonb_placeholder {
## Github #33
## https://github.com/bucardo/dbdpg/issues/33
print "Starting jsonb placeholder test\n";
$SQL = q{ SELECT '{"a":1}'::jsonb \? 'abc' and 1=$1 };
for ( my $i=0; $i<100; $i++ ) {
print "$i.. ";
$sth = $dbh->prepare($SQL);
$sth->execute(2);
$sth->finish();
}
print "\n";
}
sub fatal_client {
## RT 109591
print "Test of client_min_messages FATAL and resulting errstr\n";
$dbh->do(q{SET client_min_messages = 'FATAL'});
eval {
$dbh->do('SELECT 1 FROM nonesuch');
};
printf "\$@ is: %s\n", $@;
printf "errstr is: %s\n", $dbh->errstr;
printf "state is: %s\n", $dbh->state;
exit;
} ## end of fatal_client
sub memory_leak_arrays {
# $dbh->{pg_expand_array} = 0;
$dbh->do('CREATE TABLE leaktest ( id TEXT, arr TEXT[] )');
$dbh->do('TRUNCATE TABLE leaktest');
for my $var (qw/ a b c/ ) {
$dbh->do(qq{INSERT INTO leaktest VALUES ( '$var', '{"a","b","c"}' )});
}
my $sth = $dbh->prepare( 'SELECT arr FROM leaktest' );
my $count0 = 0;
{
my $handle;
my $count1 = Devel::Leak::NoteSV( $handle );
$sth->execute();
my $r = $sth->fetchall_arrayref( {} );
my $count2 = Devel::Leak::NoteSV( $handle );
$count0 ||= $count1;
my $diff = $count2 - $count0;
printf "New SVs: %4d Total: %d\n", $diff, $count2;
sleep 0.2;
last if $diff > 100;
redo;
}
} ## end of memory_leak_arrays
sub user_arrays {
print "User arrays!\n";
print Dumper $dbh->type_info(-5);
$dbh->do ("create table xx_test (c_test bigint)");
my $sth = $dbh->prepare ("select * from xx_test");
$sth->execute;
DDumper ($sth->{TYPE}[0], $dbh->type_info ($sth->{TYPE}[0]));
$dbh->do ("drop table xx_test");
exit;
$dbh->do('drop table if exists domodomo');
$dbh->do('create domain domo as int[][]');
$dbh->do('create table domodomo (id serial, foo domo)');
$SQL = 'INSERT INTO domodomo(foo) VALUES (?)';
$sth = $dbh->prepare($SQL);
$sth->execute(q!{{1},{2}}!);
$SQL = 'SELECT foo FROM domodomo';
my $f = $dbh->prepare($SQL);
$f->execute();
my $res = $f->fetchall_arrayref();
print Dumper $res;
print $res->[0];
$dbh->do("CREATE TYPE customint AS ENUM('1','2')");
my $q2 = $dbh->prepare("SELECT '{1,2}'::customint[]");
$q2->execute();
print Dumper $q2->fetchrow_array(); # prints "{1,2}", not an array
exit;
} ## end of user_arrays
sub commit_return_test {
$dbh->{RaiseError} = 0;
$dbh->{PrintError} = 1;
$dbh->{AutoCommit} = 0;
## Test value returned by the commit() method
my $res = $dbh->commit();
print "-->Initial commit returns a value of $res\n";
$res = $dbh->commit();
print "-->When called twice, commit returns a value of $res\n";
$dbh->do('SELECT 123');
$dbh->do('SELECT fail');
$dbh->do('SELECT 111');
$res = $dbh->commit();
print "-->After exception, commit returns a value of $res\n";
$dbh->do('SELECT 456');
return;
} ## end of commit_return_test
sub utf8_print_test {
## Set things up
$dbh->do('CREATE TEMPORARY TABLE ctest (c TEXT)');
## Add some UTF-8 content
$dbh->do("INSERT INTO ctest VALUES ('*JIHOMORAVSKÝ*')");
$dbh->do("INSERT INTO ctest VALUES ('*Špindlerův Mlýn*')");
## Pull data back out via execute/bind/fetch
$SQL = 'SELECT c FROM ctest';
my $result;
for my $loop (1..4) {
my $onoff = 'off';
if ($loop == 1 or $loop==3) {
$dbh->{pg_enable_utf8} = 0;
}
else {
$dbh->{pg_enable_utf8} = 1;
$onoff = 'on';
}
if ($loop>2) {
binmode STDOUT, ':utf8';
}
$sth = $dbh->prepare($SQL);
$sth->execute();
$sth->bind_columns(\$result);
while ($sth->fetch() ) {
print DPeek $result;
print "\n Print with pg_enable_utf8 $onoff: $result\n";
warn " Warn with pg_enable_utf8 $onoff: $result\n\n";
utf8::upgrade($result);
print DPeek $result; print "\n\n";
}
}
} ## end of utf8_print_test
sub memory_leak_test_bug_65734 {
## Memory leak when an array appears in the bind variables
## Set things up
$dbh->do('CREATE TEMPORARY TABLE tbl1 (id SERIAL PRIMARY KEY, val INTEGER[])');
$dbh->do('CREATE TEMPORARY TABLE tbl2 (id SERIAL PRIMARY KEY, val INTEGER)');
## Subroutine that performs the leaking action
sub leakmaker1 {
$dbh->do('INSERT INTO tbl1(val) VALUES (?)', undef, [123]);
}
## Control subroutine that does not leak
sub leakmaker2 {
$dbh->do('INSERT INTO tbl2(val) VALUES (?)', undef, 123);
}
leakcheck(\&leakmaker1,1000);
exit;
} ## end of memory_leak_test_bug_65734
sub leakcheck {
my $sub = shift;
my $count = shift || 1000;
my $maxsize = shift || 100000;
## Safety check:
if (exists $ENV{DBI_TRACE} and $ENV{DBI_TRACE} != 0 and $ENV{DBI_TRACE} != 42) {
$maxsize = 1;
}
my $runs = 0;
while (1) {
last if $runs++ >= $maxsize;
&$sub();
unless ($runs % $count) {
printf "Cycles: %d\tProc size: %uK\n",
$runs,
(-f "/proc/$$/stat")
? do { local @ARGV="/proc/$$/stat"; (split (/\s/, <>))[22] / 1024 }
: -1;
}
}
} ## end of leakcheck
__END__
|