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

Commitf40c506

Browse files
committed
Fix plpsql for bsdi.
1 parent9f74608 commitf40c506

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

‎doc/TODO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ MISC
7272
* Plpgsql does not handle quoted mixed-case identifiers
7373
* -Fix btree to give a useful elog when key > 1/2 (page - overhead)(Tom)
7474
* -pg_dump should preserve primary key information(Peter E)
75-
* plpgsql regression tests fails on BSD/OS
75+
*-plpgsql regression tests fails on BSD/OS
7676
* -database names with spaces fail
7777
* -insert of 0.0 into DECIMAL(4,4) field fails(Tom)
7878
* -* Interlock to prevent DROP DATABASE on a database with running backendsInterlock to prevent DROP DATABASE on a database with running backends

‎src/pl/plpgsql/src/Makefile.in

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for the plpgsql shared object
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.19 2000/01/16 20:04:59 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.20 2000/02/23 22:24:45 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -24,6 +24,10 @@ CFLAGS+= -I$(SRCDIR)/backend
2424
ifneq (,$(findstring flex,$(LEX)))
2525
LFLAGS+= -i -l
2626
endif
27+
# bsdi calls flex lex
28+
ifeq ($(PORTNAME), bsdi)
29+
LFLAGS+= -i -l
30+
endif
2731

2832
OBJS=pl_parse.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
2933

‎src/tools/copyright

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
rgrepc -l 'Copyright.*Regents' | while read FILE
2+
do
3+
pipe sed 's/^\(.*\)\(Copyright.*Regents.*\)$/ * Portions Copyright (c) 1996-1999, PostgreSQL, Inc\
4+
\1Portions \2/g' $FILE
5+
done

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp