mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
Standard pgindent run for 8.1.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.13 2004/10/05 10:48:37 meskes Exp $ */
|
||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.14 2005/10/15 02:49:47 momjian Exp $ */
|
||||
|
||||
#define POSTGRES_ECPG_INTERNAL
|
||||
#include "postgres_fe.h"
|
||||
@@ -46,9 +46,9 @@ replace_variables(char *text)
|
||||
|
||||
if (!string && *ptr == ':')
|
||||
{
|
||||
if (ptr[1]==':')
|
||||
ptr+=2; /* skip '::' */
|
||||
else
|
||||
if (ptr[1] == ':')
|
||||
ptr += 2; /* skip '::' */
|
||||
else
|
||||
{
|
||||
*ptr = '?';
|
||||
for (++ptr; *ptr && isvarchar(*ptr); ptr++)
|
||||
@@ -120,8 +120,8 @@ ECPGdeallocate(int lineno, int c, char *name)
|
||||
if (INFORMIX_MODE(compat))
|
||||
{
|
||||
/*
|
||||
* Just ignore all errors since we do not know the list of cursors
|
||||
* we are allowed to free. We have to trust the software.
|
||||
* Just ignore all errors since we do not know the list of cursors we
|
||||
* are allowed to free. We have to trust the software.
|
||||
*/
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user