@@ -989,23 +989,23 @@ check_server_version(void)
989
989
if (PQresultStatus (res ) == PGRES_FATAL_ERROR )
990
990
/* It seems we connected to PostgreSQL (not Postgres Pro) */
991
991
elog (ERROR , "%s was built with Postgres Pro %s %s, "
992
- "but connection made with PostgreSQL %s" ,
992
+ "but connection is made with PostgreSQL %s" ,
993
993
PROGRAM_NAME , PG_MAJORVERSION , PGPRO_EDITION , server_version_str );
994
994
else if (strcmp (server_version_str , PG_MAJORVERSION ) != 0 &&
995
995
strcmp (PQgetvalue (res , 0 , 0 ), PGPRO_EDITION ) != 0 )
996
996
elog (ERROR , "%s was built with Postgres Pro %s %s, "
997
- "but connection made with Postgres Pro %s %s" ,
997
+ "but connection is made with Postgres Pro %s %s" ,
998
998
PROGRAM_NAME , PG_MAJORVERSION , PGPRO_EDITION ,
999
999
server_version_str , PQgetvalue (res , 0 , 0 ));
1000
1000
#else
1001
1001
if (PQresultStatus (res ) != PGRES_FATAL_ERROR )
1002
1002
/* It seems we connected to Postgres Pro (not PostgreSQL) */
1003
1003
elog (ERROR , "%s was built with PostgreSQL %s, "
1004
- "but connection made with Postgres Pro %s %s" ,
1004
+ "but connection is made with Postgres Pro %s %s" ,
1005
1005
PROGRAM_NAME , PG_MAJORVERSION ,
1006
1006
server_version_str , PQgetvalue (res , 0 , 0 ));
1007
1007
else if (strcmp (server_version_str , PG_MAJORVERSION ) != 0 )
1008
- elog (ERROR , "%s was built with PostgreSQL %s, but connection made with %s" ,
1008
+ elog (ERROR , "%s was built with PostgreSQL %s, but connection is made with %s" ,
1009
1009
PROGRAM_NAME , PG_MAJORVERSION , server_version_str );
1010
1010
#endif
1011
1011
0 commit comments