mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
pgindent run before 6.3 release, with Thomas' requested changes.
This commit is contained in:
@ -48,7 +48,7 @@ fixedlen_like(char *s, struct varlena * p, int charlen)
|
||||
|
||||
/* be sure sterm is null-terminated */
|
||||
sterm = (char *) palloc(charlen + 1);
|
||||
StrNCpy(sterm, s, charlen+1);
|
||||
StrNCpy(sterm, s, charlen + 1);
|
||||
|
||||
/*
|
||||
* p is a text = varlena, not a string so we have to make a string
|
||||
@ -150,7 +150,7 @@ textnlike(struct varlena * s, struct varlena * p)
|
||||
}
|
||||
|
||||
|
||||
/* $Revision: 1.11 $
|
||||
/* $Revision: 1.12 $
|
||||
** "like.c" A first attempt at a LIKE operator for Postgres95.
|
||||
**
|
||||
** Originally written by Rich $alz, mirror!rs, Wed Nov 26 19:03:17 EST 1986.
|
||||
@ -187,7 +187,7 @@ textnlike(struct varlena * s, struct varlena * p)
|
||||
static int
|
||||
DoMatch(char *text, char *p)
|
||||
{
|
||||
int matched;
|
||||
int matched;
|
||||
|
||||
for (; *p; text ++, p++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user