Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit aaf19c0

Browse files
committed
Well, pg_dumplo is in attache. It is really simple program and now is not
prepared for dirtribution (it needs a little changes). I can change and work on this, but I need motivation :-) And Peter, I know and I agree that standard PG tree is not good space for all interfaces and for all tools based on PG, but LO is PG feature and we haven't backup tool for LO. Karel Zak
1 parent 36c9268 commit aaf19c0

File tree

5 files changed

+427
-0
lines changed

5 files changed

+427
-0
lines changed

contrib/README

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ mSQL-interface -
6060
noupdate -
6161
trigger to prevent updates on single columns
6262

63+
pg_dumplo -
64+
Dump large objects
65+
6366
soundex -
6467
Prototype for soundex function
6568

contrib/pg_dumplo/Makefile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
PROGRAM = pg_dumplo
3+
4+
OBJECTS = pg_dumplo.o
5+
6+
CFLAGS = -Wall -fpic -g
7+
CC = gcc
8+
RM = rm -f
9+
INCLUDE = -I/usr/include/postgresql
10+
LIBS =-lpq
11+
12+
COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(INCLUDE)
13+
LINK = $(CC) $(CFLAGS) -o $@ $(LIBS)
14+
15+
16+
all: $(PROGRAM)
17+
18+
$(PROGRAM): $(OBJECTS)
19+
$(LINK) $(OBJECTS)
20+
21+
.c.o: $<
22+
$(COMPILE) -c $<
23+
24+
clean:
25+
$(RM) -f *~ $(OBJECTS) $(PROGRAM)
26+

contrib/pg_dumplo/README

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
pg_dumplo - PostgreSQL large object dumper
3+
4+
5+
Hmm... documentation is not available. For more information
6+
see the help ( pg_dumplo -h ) and examples in this help.
7+
8+
Compilation:
9+
- you need the PostgreSQL's devel. libs
10+
- and type: 'make'
11+
12+
13+
Karel Zak <zakkr@zf.jcu.cz>
14+
15+
16+
17+
18+

contrib/pg_dumplo/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.4

0 commit comments

Comments
 (0)