diff options
author | mjl <mjl> | 2002-02-14 16:02:50 +0000 |
---|---|---|
committer | mjl <mjl> | 2002-02-14 16:02:50 +0000 |
commit | 3b05be10942e727b6d65d3524915c0c221f15a51 (patch) | |
tree | 6d4a65f915b695e480aca71b6f58ee83f32f4c9f /databases/p5-SQL-Statement | |
parent | 2420e7b35f4ac59ab93efddfff8bd5adade84822 (diff) | |
download | pkgsrc-3b05be10942e727b6d65d3524915c0c221f15a51.tar.gz |
Update p5-SQL-Statement to 1.002
Added backwards compatiblity: both SQL::Statement and SQL::Parser now
work in perl version 5.004 and above.
Changed defaults for DBD::CSV so it now accepts new SQL without adding
extra flags to scripts
Added support for SQL comments
Fixed bugs in qualified column names (e.g. tableA.*), and in joins
using ON or WHERE
Fixed bug in UPDATE that caused the new value to be a hash rather
than a scalar.
New features:
Explicit and implicit joins
Table name aliases
Set functions
String functions
String concatenation
Numeric expressions
IN predicate
BETWEEN predicate
Alphabetic comparison in WHERE clauses
Ordering of text that looks like a number
Verbose error messages for both Parsing and Execution errors
Pure perl, new maintainer.
Diffstat (limited to 'databases/p5-SQL-Statement')
-rw-r--r-- | databases/p5-SQL-Statement/Makefile | 4 | ||||
-rw-r--r-- | databases/p5-SQL-Statement/distinfo | 7 | ||||
-rw-r--r-- | databases/p5-SQL-Statement/patches/patch-aa | 15 |
3 files changed, 21 insertions, 5 deletions
diff --git a/databases/p5-SQL-Statement/Makefile b/databases/p5-SQL-Statement/Makefile index 7c99fb994b7..100d69c4f9d 100644 --- a/databases/p5-SQL-Statement/Makefile +++ b/databases/p5-SQL-Statement/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2001/11/30 14:19:59 mjl Exp $ +# $NetBSD: Makefile,v 1.8 2002/02/14 16:02:50 mjl Exp $ # -DISTNAME= SQL-Statement-0.1021 +DISTNAME= SQL-Statement-1.002 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5sqs CATEGORIES= databases perl5 diff --git a/databases/p5-SQL-Statement/distinfo b/databases/p5-SQL-Statement/distinfo index 16d038039be..4e88eca17b1 100644 --- a/databases/p5-SQL-Statement/distinfo +++ b/databases/p5-SQL-Statement/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.4 2001/11/30 14:19:59 mjl Exp $ +$NetBSD: distinfo,v 1.5 2002/02/14 16:02:51 mjl Exp $ -SHA1 (SQL-Statement-0.1021.tar.gz) = e4250aacc549c01b0b9cccffb1386c2c33e8c663 -Size (SQL-Statement-0.1021.tar.gz) = 87328 bytes +SHA1 (SQL-Statement-1.002.tar.gz) = b1784d69d1b48ae2af6d24da79090650471d8a3c +Size (SQL-Statement-1.002.tar.gz) = 43478 bytes +SHA1 (patch-aa) = 18142d097cd213ffe4d377732119254ea3825f87 diff --git a/databases/p5-SQL-Statement/patches/patch-aa b/databases/p5-SQL-Statement/patches/patch-aa new file mode 100644 index 00000000000..4ac30fa474e --- /dev/null +++ b/databases/p5-SQL-Statement/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2002/02/14 16:02:51 mjl Exp $ + +--- Makefile.PL.orig Thu Feb 14 16:57:52 2002 ++++ Makefile.PL Thu Feb 14 16:58:16 2002 +@@ -18,8 +18,8 @@ + + END_OF_WARNING + print "Press enter to continue ... "; +-my $x = <STDIN>; +-last if $x; ++#my $x = <STDIN>; ++#last if $x; + } + }; + |