Changeset: 4eafa029d4c9 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4eafa029d4c9 Modified Files: clients/ChangeLog.Aug2011 clients/perl/DBD/monetdb.pm Branch: Aug2011 Log Message:
Fixed DBD::monetdb table_info and tabletype_info. This fixes bug 2885. With thanks to Rémy Chibois. diffs (32 lines): diff --git a/clients/ChangeLog.Aug2011 b/clients/ChangeLog.Aug2011 --- a/clients/ChangeLog.Aug2011 +++ b/clients/ChangeLog.Aug2011 @@ -1,6 +1,10 @@ # ChangeLog file for clients # This file is updated with Maddlog +* Mon Sep 19 2011 Sjoerd Mullender <[email protected]> +- Perl: Fixed DBD::monetdb table_info and tabletype_info. This fixes + bug 2885. With thanks to Rémy Chibois. + * Tue Sep 13 2011 Sjoerd Mullender <[email protected]> - mclient: fix display of varchar columns with only NULL values. - Fixed a bug in mclient/msqldump where an internal error occurred during diff --git a/clients/perl/DBD/monetdb.pm b/clients/perl/DBD/monetdb.pm --- a/clients/perl/DBD/monetdb.pm +++ b/clients/perl/DBD/monetdb.pm @@ -233,10 +233,10 @@ SQL my $ttp = { - 'TABLE' => 't."istable" = true and t."system" = false and t."temporary" = 0' -,'SYSTEM TABLE' => 't."istable" = true and t."system" = true and t."temporary" = 0' -,'LOCAL TEMPORARY' => 't."istable" = true and t."system" = false and t."temporary" = 1' -,'VIEW' => 't."istable" = false ' + 'TABLE' => 't."type" = 0 and t."system" = false and t."temporary" = 0' +,'SYSTEM TABLE' => 't."type" = 0 and t."system" = true and t."temporary" = 0' +,'LOCAL TEMPORARY' => 't."type" = 0 and t."system" = false and t."temporary" = 1' +,'VIEW' => 't."type" = 1 ' }; _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
