Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaaf19c0

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 workon this, but I need motivation :-)And Peter, I know and I agree that standard PG tree is not good space forall interfaces and for all tools based on PG, but LO is PG feature and wehaven't backup tool for LO.Karel Zak
1 parent36c9268 commitaaf19c0

File tree

5 files changed

+427
-0
lines changed

5 files changed

+427
-0
lines changed

‎contrib/README

Lines changed: 3 additions & 0 deletions
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

Lines changed: 26 additions & 0 deletions
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

Lines changed: 18 additions & 0 deletions
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.4

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp