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

Commitf7f2e18

Browse files
committed
Remove tqual.h includes not needed.
1 parent1409819 commitf7f2e18

File tree

25 files changed

+44
-50
lines changed

25 files changed

+44
-50
lines changed

‎src/backend/access/common/tupdesc.c‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.27 1997/10/25 01:08:45 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.28 1997/11/24 05:07:42 momjian Exp $
1111
*
1212
* NOTES
1313
* some of the executor utility code such as "ExecTypeFromTL" should be
@@ -24,7 +24,6 @@
2424
#include<nodes/parsenodes.h>
2525
#include<utils/builtins.h>
2626
#include<utils/fcache.h>
27-
#include<utils/tqual.h>
2827
#include<utils/syscache.h>
2928

3029
#ifndefHAVE_MEMMOVE

‎src/backend/access/gist/gist.c‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include<storage/bufpage.h>
2525
#include<storage/lmgr.h>
2626
#include<utils/syscache.h>
27+
#include<utils/tqual.h>
2728

2829
#ifndefHAVE_MEMMOVE
2930
#include<regex/utils.h>

‎src/backend/bootstrap/bootparse.y‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.6 1997/11/21 18:04:03 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.7 1997/11/24 05:07:54 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -35,7 +35,6 @@
3535
#include"storage/off.h"
3636
#include"storage/itemptr.h"
3737
#include"access/htup.h"
38-
#include"utils/tqual.h"
3938
#include"nodes/parsenodes.h"
4039

4140
#include"access/xact.h"

‎src/backend/bootstrap/bootscanner.l‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootscanner.l,v 1.7 1997/09/08 03:19:53 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootscanner.l,v 1.8 1997/11/24 05:07:56 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -39,7 +39,6 @@
3939
#include"nodes/primnodes.h"
4040
#include"utils/nabstime.h"
4141
#include"access/htup.h"
42-
#include"utils/tqual.h"
4342
#include"nodes/parsenodes.h"
4443

4544
#include"parser/scansup.h"

‎src/backend/bootstrap/bootstrap.c‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.28 1997/11/20 23:20:33 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.29 1997/11/24 05:08:01 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -40,7 +40,6 @@
4040
#include"storage/itemptr.h"
4141
#include"utils/nabstime.h"
4242
#include"access/htup.h"
43-
#include"utils/tqual.h"
4443
#include"storage/buf.h"
4544
#include"access/relscan.h"
4645
#include"access/heapam.h"

‎src/backend/catalog/heap.c‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.32 1997/11/21 18:04:11 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.33 1997/11/24 05:08:07 momjian Exp $
1111
*
1212
* INTERFACE ROUTINES
1313
*heap_creatr()- Create an uncataloged heap relation
@@ -51,6 +51,7 @@
5151
#include<utils/builtins.h>
5252
#include<utils/mcxt.h>
5353
#include<utils/relcache.h>
54+
#include<utils/tqual.h>
5455
#include<nodes/plannodes.h>
5556
#ifndefHAVE_MEMMOVE
5657
#include<regex/utils.h>

‎src/backend/catalog/index.c‎

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.28 1997/11/21 19:59:28 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.29 1997/11/24 05:08:11 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES
@@ -30,18 +30,19 @@
3030
#include<fmgr.h>
3131
#include<access/genam.h>
3232
#include<access/heapam.h>
33-
#include<utils/builtins.h>
33+
#include<storage/lmgr.h>
34+
#include<miscadmin.h>
3435
#include<access/xact.h>
3536
#include<parser/catalog_utils.h>
3637
#include<storage/smgr.h>
37-
#include<storage/lmgr.h>
38-
#include<miscadmin.h>
38+
#include<utils/builtins.h>
3939
#include<utils/mcxt.h>
4040
#include<utils/relcache.h>
41+
#include<utils/syscache.h>
42+
#include<utils/tqual.h>
4143
#include<bootstrap/bootstrap.h>
4244
#include<catalog/catname.h>
4345
#include<catalog/catalog.h>
44-
#include<utils/syscache.h>
4546
#include<catalog/indexing.h>
4647
#include<catalog/heap.h>
4748
#include<catalog/index.h>

‎src/backend/catalog/pg_operator.c‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.15 1997/11/20 23:20:49 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.16 1997/11/24 05:08:15 momjian Exp $
1111
*
1212
* NOTES
1313
* these routines moved here from commands/define.c and somewhat cleaned up.
@@ -18,6 +18,7 @@
1818

1919
#include<catalog/pg_proc.h>
2020
#include<utils/syscache.h>
21+
#include<utils/tqual.h>
2122
#include<access/heapam.h>
2223
#include<parser/catalog_utils.h>
2324
#include<catalog/catname.h>

‎src/backend/catalog/pg_type.c‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.12 1997/11/20 23:20:50 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.13 1997/11/24 05:08:17 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -18,6 +18,7 @@
1818
#include<access/heapam.h>
1919
#include<access/relscan.h>
2020
#include<utils/builtins.h>
21+
#include<utils/tqual.h>
2122
#include<fmgr.h>
2223
#include<parser/catalog_utils.h>
2324
#include<catalog/catname.h>

‎src/backend/executor/execMain.c‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*
2828
* IDENTIFICATION
29-
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.32 1997/11/21 18:10:06 momjian Exp $
29+
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.33 1997/11/24 05:08:20 momjian Exp $
3030
*
3131
*-------------------------------------------------------------------------
3232
*/
@@ -42,6 +42,7 @@
4242
#include"utils/palloc.h"
4343
#include"utils/acl.h"
4444
#include"utils/syscache.h"
45+
#include"utils/tqual.h"
4546
#include"parser/parsetree.h"/* rt_fetch() */
4647
#include"storage/bufmgr.h"
4748
#include"storage/lmgr.h"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp