mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 10:31:02 +02:00
packaging of 2.2.4
This commit is contained in:
parent
86b33defef
commit
a80e62642e
1
Makefile
1
Makefile
@ -14,6 +14,7 @@ refm = $(wildcard reformat/*.py)
|
||||
install:
|
||||
install -m 755 $(pgloader) $(libdir)
|
||||
install -m 755 -d $(libdir)/pgloader
|
||||
install -m 755 -d $(libdir)/reformat
|
||||
|
||||
cp -a $(libs) $(libdir)/pgloader
|
||||
cp -a $(refm) $(libdir)/reformat
|
||||
|
||||
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
||||
pgloader (2.2.4) unstable; urgency=low
|
||||
|
||||
* Reformat modules to change input on-the-fly
|
||||
* mysql module with timestamp function provided
|
||||
* some fixes, all tests green again
|
||||
|
||||
-- Dimitri Fontaine <dim@tapoueh.org> Tue, 20 Nov 2007 16:48:19 +0100
|
||||
|
||||
pgloader (2.2.3) unstable; urgency=low
|
||||
|
||||
* User Defined Columns
|
||||
|
||||
2
debian/files
vendored
2
debian/files
vendored
@ -1 +1 @@
|
||||
pgloader_2.2.2_all.deb misc extra
|
||||
pgloader_2.2.4_all.deb misc extra
|
||||
|
||||
5
examples/reformat/reformat.data
Normal file
5
examples/reformat/reformat.data
Normal file
@ -0,0 +1,5 @@
|
||||
1|20071119150718
|
||||
2|20041002153048
|
||||
3|20060111060850
|
||||
4|20060111060958
|
||||
5|00000000000000
|
||||
4
examples/reformat/reformat.sql
Normal file
4
examples/reformat/reformat.sql
Normal file
@ -0,0 +1,4 @@
|
||||
CREATE TABLE reformat (
|
||||
id integer primary key,
|
||||
timestamp timestamp
|
||||
);
|
||||
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Some common options, for each module to get them
|
||||
|
||||
PGLOADER_VERSION = '2.2.4-dev'
|
||||
PGLOADER_VERSION = '2.2.4'
|
||||
|
||||
INPUT_ENCODING = None
|
||||
PG_CLIENT_ENCODING = 'latin9'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user