Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ff9973a8
Commit
ff9973a8
authored
Sep 17, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove src/test/regress/sql: plpgsql-nsp-testing.sql per Joe Conway.
parent
c53bb275
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
50 deletions
+3
-50
configure
configure
+1
-1
configure.in
configure.in
+2
-2
src/test/regress/sql/plpgsql-nsp-testing.sql
src/test/regress/sql/plpgsql-nsp-testing.sql
+0
-47
No files found.
configure
View file @
ff9973a8
...
@@ -5281,7 +5281,7 @@ cat conftest.$ac_ext >&5
...
@@ -5281,7 +5281,7 @@ cat conftest.$ac_ext >&5
fi
fi
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
conftest.
$ac_ext
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
conftest.
$ac_ext
if
test
"
$ac_cv_search_getopt_long
"
=
no
;
then
if
test
"
$ac_cv_search_getopt_long
"
=
no
;
then
for
ac_lib
in
getopt
;
do
for
ac_lib
in
getopt
gnugetopt
;
do
LIBS
=
"-l
$ac_lib
$ac_func_search_save_LIBS
"
LIBS
=
"-l
$ac_lib
$ac_func_search_save_LIBS
"
cat
>
conftest.
$ac_ext
<<
_ACEOF
cat
>
conftest.
$ac_ext
<<
_ACEOF
#line
$LINENO
"configure"
#line
$LINENO
"configure"
...
...
configure.in
View file @
ff9973a8
dnl Process this file with autoconf to produce a configure script.
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.20
8 2002/09/11 04:27:48
momjian Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.20
9 2002/09/17 04:27:41
momjian Exp $
dnl
dnl
dnl Developers, please strive to achieve this order:
dnl Developers, please strive to achieve this order:
dnl
dnl
...
@@ -607,7 +607,7 @@ AC_CHECK_LIB(BSD, main)
...
@@ -607,7 +607,7 @@ AC_CHECK_LIB(BSD, main)
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(resolv, main)
AC_CHECK_LIB(resolv, main)
AC_SEARCH_LIBS(getopt_long, [getopt])
AC_SEARCH_LIBS(getopt_long, [getopt
gnugetopt
])
# QNX:
# QNX:
AC_CHECK_LIB([[unix]], main)
AC_CHECK_LIB([[unix]], main)
AC_SEARCH_LIBS(crypt, crypt)
AC_SEARCH_LIBS(crypt, crypt)
...
...
src/test/regress/sql/plpgsql-nsp-testing.sql
deleted
100644 → 0
View file @
c53bb275
-- nspname.relname.attname%TYPE
DROP
FUNCTION
t
();
CREATE
OR
REPLACE
FUNCTION
t
()
RETURNS
TEXT
AS
'
DECLARE
col_name pg_catalog.pg_attribute.attname%TYPE;
BEGIN
col_name :=
''
uga
''
;
RETURN col_name;
END;
'
LANGUAGE
'plpgsql'
;
SELECT
t
();
-- nspname.relname%ROWTYPE
DROP
FUNCTION
t
();
CREATE
OR
REPLACE
FUNCTION
t
()
RETURNS
pg_catalog
.
pg_attribute
AS
'
DECLARE
rec pg_catalog.pg_attribute%ROWTYPE;
BEGIN
SELECT INTO rec * FROM pg_catalog.pg_attribute WHERE attrelid = 1247 AND attname =
''
typname
''
;
RETURN rec;
END;
'
LANGUAGE
'plpgsql'
;
SELECT
*
FROM
t
();
-- nspname.relname.attname%TYPE
DROP
FUNCTION
t
();
CREATE
OR
REPLACE
FUNCTION
t
()
RETURNS
pg_catalog
.
pg_attribute
.
attname
%
TYPE
AS
'
DECLARE
rec pg_catalog.pg_attribute.attname%TYPE;
BEGIN
SELECT INTO rec pg_catalog.pg_attribute.attname FROM pg_catalog.pg_attribute WHERE attrelid = 1247 AND attname =
''
typname
''
;
RETURN rec;
END;
'
LANGUAGE
'plpgsql'
;
SELECT
t
();
-- nspname.relname%ROWTYPE
DROP
FUNCTION
t
();
CREATE
OR
REPLACE
FUNCTION
t
()
RETURNS
pg_catalog
.
pg_attribute
AS
'
DECLARE
rec pg_catalog.pg_attribute%ROWTYPE;
BEGIN
SELECT INTO rec * FROM pg_catalog.pg_attribute WHERE attrelid = 1247 AND attname =
''
typname
''
;
RETURN rec;
END;
'
LANGUAGE
'plpgsql'
;
SELECT
*
FROM
t
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment