1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

pgindent run for 9.0, second run

This commit is contained in:
Bruce Momjian
2010-07-06 19:19:02 +00:00
parent 52783b212c
commit 239d769e7e
127 changed files with 1503 additions and 1417 deletions

View File

@ -100,61 +100,63 @@ int PGTYPESnumeric_from_decimal(decimal *, numeric *);
#line 1 "struct.h"
/* dec_t */
/* dec_t */
typedef struct mytype MYTYPE ;
#line 9 "struct.h"
#line 10 "struct.h"
typedef struct mynulltype MYNULLTYPE ;
#line 18 "struct.h"
#line 20 "struct.h"
#line 11 "outofscope.pgc"
struct mytype {
#line 3 "struct.h"
int id ;
#line 4 "struct.h"
char t [ 64 ] ;
int id ;
#line 5 "struct.h"
double d1 ;
char t [ 64 ] ;
#line 6 "struct.h"
double d2 ;
double d1 ;
#line 7 "struct.h"
double d2 ;
#line 8 "struct.h"
char c [ 30 ] ;
} ; struct mynulltype {
#line 12 "struct.h"
#line 14 "struct.h"
int id ;
#line 13 "struct.h"
#line 15 "struct.h"
int t ;
#line 14 "struct.h"
#line 16 "struct.h"
int d1 ;
#line 15 "struct.h"
#line 17 "struct.h"
int d2 ;
#line 16 "struct.h"
#line 18 "struct.h"
int c ;
} ;/* exec sql end declare section */
#line 12 "outofscope.pgc"

View File

@ -18,7 +18,12 @@
#line 3 "strings.pgc"
/* exec sql begin declare section */
#line 1 "strings.h"
#line 5 "strings.pgc"

View File

@ -1 +1,6 @@
char *s1, *s2, *s3, *s4, *s5, *s6;
char *s1,
*s2,
*s3,
*s4,
*s5,
*s6;

View File

@ -1,18 +1,20 @@
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;