ChangeLog: Changes log for Perl extension SQL::Statement Version 1.15, released 2 February, 2006 ---------------------------------------- * fixed placeholder bug in SQL::Statement::UPDATE thanks for bug report Tanktalus Version 1.14, released 21 April, 2005 ---------------------------------------- * fixed circular dependency in tests (one mistakenly required AnyData) Version 1.13, released 18 April, 2005 ---------------------------------------- * pod fixes Version 1.12, released 18 April, 2005 ---------------------------------------- * added support for GROUP BY (several people sent suggestions for this in the past, please email me so I can credit you, sorry I lost the names) * added support for true LIMIT - if a LIMIT clause is specified and no ORDER BY clause is specified, the SELECT will stop searching when the limit is reached; with an ORDER BY clause it will still search the entire table because we can only ORDER a set; using LIMIT without an ORDER BY will greatly increase speed * added support for CREATE/DROP keyword|operator|type|function * optimized process_predicate to only look up scalars once * completely re-wrote the POD * fixed bug in primary key search optimization thanks for bug report and test scripts: Jim Lambert, <jimlambrtATmac.com> * fixed problem with all_cols slowing inserts thanks for patch and test Cosimo Streppone <cosimoATcpan.org> * cleaned up case of temp table column names thanks for bug report: Dan Wright * added a META.YML and extra tests
19 lines
485 B
Makefile
19 lines
485 B
Makefile
# $NetBSD: Makefile,v 1.22 2008/07/23 22:57:11 rhaen Exp $
|
|
#
|
|
|
|
DISTNAME= SQL-Statement-1.15
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5sqs
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=SQL/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/SQL-Statement
|
|
COMMENT= Small, abstract SQL engine
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PERL5_PACKLIST= auto/SQL/Statement/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|