mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Have find_static skip main() functions.
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# $PostgreSQL: pgsql/src/tools/find_static,v 1.4 2006/03/11 04:38:41 momjian Exp $
|
# $PostgreSQL: pgsql/src/tools/find_static,v 1.5 2006/07/14 14:59:00 momjian Exp $
|
||||||
|
|
||||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ echo "
|
|||||||
|
|
||||||
select *
|
select *
|
||||||
from debug2
|
from debug2
|
||||||
where scope = 'T'
|
where scope = 'T' and func != 'main'
|
||||||
order by file, func;
|
order by file, func;
|
||||||
" |psql debug
|
" |psql debug
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user