diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-03 17:04:00 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-03 17:04:00 +0000 |
commit | 89c07b18a6e6bda2508943a3a23569268892b430 (patch) | |
tree | 0a96d540e51b67794bd504f9390ea1cce35f0eb8 | |
parent | f5b78fa51fa69d5fbf1282ed6e5374b83aabdabc (diff) | |
download | postgresql-89c07b18a6e6bda2508943a3a23569268892b430.tar.gz postgresql-89c07b18a6e6bda2508943a3a23569268892b430.zip |
Remove use of a regex character class in resultmap (for freebsd version
check). This isn't supported by pg_regress since the recent rewrite
into C. While we could add char classes to pg_regress.c's code, it's
not really needed at the moment: thanks to Andrew's patch to make
pg_regress always accept the 'standard' comparison file, we can just
drop the version check.
-rw-r--r-- | src/test/regress/resultmap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/resultmap b/src/test/regress/resultmap index abecb5b841d..e94b726e46f 100644 --- a/src/test/regress/resultmap +++ b/src/test/regress/resultmap @@ -1,5 +1,5 @@ float4/i.86-pc-mingw32=float4-exp-three-digits -float8/i.86-.*-freebsd[234]=float8-small-is-zero +float8/i.86-.*-freebsd=float8-small-is-zero float8/i.86-.*-openbsd=float8-small-is-zero float8/i.86-.*-netbsd=float8-small-is-zero float8/m68k-.*-netbsd=float8-small-is-zero |