2015-10-04 08:19:52 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.5.3:
Version 3.5.3 Released October 1, 2015 (git commit \
62ddf200106467ce9ad31d85715a4cdf63e8be14)
- Minor fix in the test file t/03dbmethod.t
|
2015-09-30 21:23:08 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.5.2:
Version 3.5.2 Released September 29, 2015 (git commit \
be8026c9160c4a29580a97dab57cb595c5448949)
- Fix enum value ordering on Postgres servers 9.1 and greater
[Dagfinn Ilmari Mannsåker]
- Return bigint values as plain integer values when they fit
[Dagfinn Ilmari Mannsåker]
- Fix typo in sprintf for get_info() SQL_DATA_SOURCE_NAME
[Craig A. James]
(CPAN bug #106604)
- Set the repository in META.yml to github
|
2015-07-12 20:56:37 by Thomas Klausner | Files touched by this commit (405) |
Log message:
Comment out dependencies of the style
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS
since pkgsrc enforces the newest perl version anyway, so they
should always pick perl, but sometimes (pkg_add) don't due to the
design of the {,} syntax.
No effective change for the above reason.
Ok joerg
|
2015-06-12 12:52:19 by Thomas Klausner | Files touched by this commit (3152) |
Log message:
Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.
|
2015-02-19 14:19:16 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.5.1:
Version 3.5.1 Released February 17, 2015 (git commit \
6c3457ee20c19ae492d29c490af6800e7e6a0774)
- Prevent core dump if the second argument to the quote() method
is anything but a hashref
[Greg Sabino Mullane]
(CPAN bug #101980)
- Better "support" for SQL_ASCII servers in the tests.
Allow env var DBDPG_TEST_ALWAYS_ENV to force use of DBI_DSN and DBI_USER in \
tests.
[Greg Sabino Mullane]
- Fix client_encoding detection on pre-9.1 servers
[Dagfinn Ilmari Mannsåker]
- Fix operator existence check in tests on pre-8.3 servers
[Dagfinn Ilmari Mannsåker]
- Documentation fix
[Stuart A Johnston]
- Fix pg_switch_prepared database handle documentation
[Dagfinn Ilmari Mannsåker]
|
2015-01-08 00:21:16 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.5.0:
Version 3.5.0 Released January 6, 2015
- Allow "placeholder escaping" by the use of a backslash directly \
before it, e.g.
"SELECT 1 FROM jsontable WHERE foo \\? ?"
will contain a single placeholder, and the first question mark will be sent \
directly
to the backend to be parsed as an operator.
[Greg Sabino Mullane, Tim Bunce]
(CPAN bug #101030)
- Improve the workings of the ping() method, so it always tests for
a valid database backend and returns the correct true/false.
[Greg Sabino Mullane, with help from Andrew Gierth and Tim Bunce]
(CPAN bug #100648)
- Add get_info(9000) => 1 to indicate driver can escape placeholders.
[Tim Bunce]
- In tests, force the client_encoding to UTF8, skip tests that involve
characters not supported by the server_encoding
[Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>]
- Fix memory leak when selecting from arrays
[Dagfinn Ilmari Mannsåker, reported by Krystian Samp]
- Make get_info much more efficient and slightly simpler.
[Tim Bunce]
|
2014-10-09 16:07:17 by Thomas Klausner | Files touched by this commit (1163) |
Log message:
Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.
|
2014-10-09 15:45:06 by Thomas Klausner | Files touched by this commit (456) |
Log message:
Remove SVR4_PKGNAME, per discussion on tech-pkg.
|
2014-10-01 12:42:02 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.4.2:
Version 3.4.2 Released September 25, 2015 (git commit \
61440e1f4ccb6c293c5838676da1942e0df67271)
- Fix bug where single-quoted type arguments to the table_info()
method were causing a SQL error.
[Greg Sabino Mullane] (CPAN bug #99144)
|
2014-09-06 15:35:43 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.4.1:
Version 3.4.1 Released August 20, 2014 (git commit \
cfd146effde09c493ac7573408ac29d6d9cbed47)
- Allow '%' again for the type in table_info() and thus tables()
It's not documented or tested in DBI, but it used to work until
DBD::Pg 3.4.0, and the change broke DBIx::Class::Schema::Loader, which
uses type='%'.
[Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>]
Version 3.4.0 Released August 16, 2014 (git commit \
7a5da12d84b4c2e9879f90fb6168f56c095071fa)
- Cleanup and improve table_info()
[Mike Pomraning <mjp@pilcrow.madison.wi.us>] (github issue #7)
table_info() type searching now supports TABLE, VIEW, SYSTEM TABLE,
SYSTEM VIEW, and LOCAL TEMPORARY
table_info() object searching fully supports the above types.
table_info() object searching no longer ignores invalid types - a filter
of 'NOSUCH' will return no rows, and 'NOSUCH,LOCAL TEMPORARY' will
return only temp objects.
tableinfo() type filters are strictly matched now ... previously a
search for SYSTEM TABLE would have fetched plain TABLE objects.
table_info() now treats temporary tables and temporary views as LOCAL TEMPORARY
- Make sure column_info() and table_info() can handle materialized views.
[Greg Sabino Mullane] (CPAN bug #97032)
|