mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Revert pgindent changes to ecpg include files that are part of ecpg
regession test output, and update pgindent script to avoid them in the future.
This commit is contained in:
@ -1,20 +1,18 @@
|
||||
|
||||
struct mytype
|
||||
{
|
||||
int id;
|
||||
char t[64];
|
||||
double d1; /* dec_t */
|
||||
double d2;
|
||||
char c[30];
|
||||
struct mytype {
|
||||
int id;
|
||||
char t[64];
|
||||
double d1; /* dec_t */
|
||||
double d2;
|
||||
char c[30];
|
||||
};
|
||||
typedef struct mytype MYTYPE;
|
||||
|
||||
struct mynulltype
|
||||
{
|
||||
int id;
|
||||
int t;
|
||||
int d1;
|
||||
int d2;
|
||||
int c;
|
||||
struct mynulltype {
|
||||
int id;
|
||||
int t;
|
||||
int d1;
|
||||
int d2;
|
||||
int c;
|
||||
};
|
||||
typedef struct mynulltype MYNULLTYPE;
|
||||
|
Reference in New Issue
Block a user