mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Mark functions as static and ifdef NOT_USED as appropriate.
This commit is contained in:
@@ -16,7 +16,7 @@ find . -name '[a-z]*.o' -type f -print | while read FILE
|
||||
do
|
||||
nm $FILE | cut -c10-100 |awk '{printf "%s\t%s\t%s\n", "'"$FILE"'",$1,$2}'
|
||||
done >/tmp/$$
|
||||
destroydb debug
|
||||
dropdb debug
|
||||
createdb debug
|
||||
echo "
|
||||
create table debug (file text, scope char, func text);
|
||||
@@ -43,6 +43,7 @@ echo "
|
||||
|
||||
select *
|
||||
from debug2
|
||||
where scope = 'T';
|
||||
where scope = 'T'
|
||||
order by file, func;
|
||||
" |psql debug
|
||||
|
||||
|
Reference in New Issue
Block a user