summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-04-05 06:07:46 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-04-05 06:07:46 +0000
commitd84f0e55304ff83c370d2e2481647c054a3b4f74 (patch)
treed3c73b9fc94fa786a599d5de772602246d4ef414 /ext/pgsql/tests
parent04691a516b2ba7f48be76f77ccf6176c85aa9bbc (diff)
downloadphp-git-d84f0e55304ff83c370d2e2481647c054a3b4f74.tar.gz
Update message
Diffstat (limited to 'ext/pgsql/tests')
-rw-r--r--ext/pgsql/tests/escape.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pgsql/tests/escape.inc b/ext/pgsql/tests/escape.inc
index f7517952f0..7d65eb7391 100644
--- a/ext/pgsql/tests/escape.inc
+++ b/ext/pgsql/tests/escape.inc
@@ -47,10 +47,10 @@ $sql = "SELECT * FROM ".$table_name." WHERE num = -2";
$result = pg_query($db, $sql);
$row = pg_fetch_row($result, 0);
if ($data === $row['bin']) {
- echo "pg_escape_bytea actually works\n";
+ echo "pg_escape_bytea() actually works with databse\n";
}
else {
- echo "pg_escape_bytea is broken\n";
+ echo "pg_escape_bytea() is broken\n";
}
?>