Version 3.0.97.

This commit is contained in:
Dimitri Fontaine 2014-01-15 22:53:43 +01:00
parent aa49e8eec2
commit 80b6c46aae
7 changed files with 20 additions and 6 deletions

View File

@ -84,7 +84,7 @@ pgloader: $(PGLOADER) ;
test:
$(MAKE) PGLOADER=$(realpath $(PGLOADER)) -C test all
deb:
deb: docs
# intended for use on a debian system
mkdir -p $(DEBUILD_ROOT) && rm -rf $(DEBUILD_ROOT)/*
rsync -Ca --exclude=build/* ./ $(DEBUILD_ROOT)/
@ -96,7 +96,7 @@ rpm:
# intended for use on a CentOS or other RPM based system
mkdir -p $(DEBUILD_ROOT) && rm -rf $(DEBUILD_ROOT)/*
rsync -Ca --exclude=build/* ./ $(DEBUILD_ROOT)/
cd /tmp && tar czf $(HOME)/rpmbuild/SOURCES/pgloader-3.0.96.tar.gz pgloader
cd /tmp && tar czf $(HOME)/rpmbuild/SOURCES/pgloader-3.0.97.tar.gz pgloader
cd $(DEBUILD_ROOT) && rpmbuild -ba pgloader.spec
cp -a $(HOME)/rpmbuild/SRPMS/*rpm build
cp -a $(HOME)/rpmbuild/RPMS/x86_64/*rpm build

View File

@ -20,7 +20,7 @@ sudo apt-get install -y postgresql-9.3 postgresql-contrib-9.3 \
postgresql-9.3-ip4r \
sbcl \
git patch unzip \
devscripts \
devscripts pandoc \
libsqlite3-dev
sudo DEBIAN_FRONTEND=noninteractive \

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
pgloader (3.0.97-1) unstable; urgency=low
* Release Candidate 7
* Fix log-filename location
* Switch to the new cl-csv version
* Add a documentation website with tutorials
* Fix ASDF dependencies
-- Dimitri Fontaine <dimitri@2ndQuadrant.fr> Thu, 15 Jan 2014 01:33:16 +0400
pgloader (3.0.96-1) unstable; urgency=low
* Release Candidate 6

2
debian/control vendored
View File

@ -2,7 +2,7 @@ Source: pgloader
Section: database
Priority: extra
Maintainer: Dimitri Fontaine <dimitri@2ndQuadrant.fr>
Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13)
Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13), pandoc
Standards-Version: 3.9.3
Homepage: https://github.com/dimitri/pgloader
Vcs-Git: https://github.com/dimitri/pgloader.git

View File

@ -1,6 +1,6 @@
Summary: extract, transform and load data into PostgreSQL
Name: pgloader
Version: 3.0.96
Version: 3.0.97
Release: 21%{?dist}
License: The PostgreSQL Licence
Group: System Environment/Base
@ -37,6 +37,8 @@ cp build/pgloader.exe %{buildroot}/%{_bindir}/pgloader
%{_bindir}/*
%changelog
* Wed Dec 15 2014 Dimitri Fontaine <dimitri@2ndQuadrant.fr> 3.0.97
- Assorted fixes, release candidate 7
* Tue Dec 31 2013 Dimitri Fontaine <dimitri@2ndQuadrant.fr> 3.0.96
- Package as an RPM

View File

@ -32,7 +32,7 @@
(in-package :pgloader.params)
(defparameter *version-string* "3.0.96"
(defparameter *version-string* "3.0.97"
"pgloader version strings, following Emacs versionning model.")
;; we can't use pgloader.utils:make-pgstate yet because params is compiled

View File

@ -14,6 +14,8 @@ LOAD DATABASE
-- override char(1) to varchar(1), just use char(1) here.
type char when (= precision 1) to char keep typemod
-- column enumerate.foo to boolenum using empty-string-to-null
MATERIALIZE VIEWS
d as $$
select cast(d as date) as d, count(*) as n