From cef30974dec2c052170b80eff1fe4b9bb285e903 Mon Sep 17 00:00:00 2001 From: Fujii Masao Date: Mon, 16 Feb 2015 14:50:13 +0900 Subject: [PATCH] Correct the path of pg_lzcompress.c in doc. Commit 40bede5 moved pg_lzcompress.c to src/common, but forgot to update its path in doc. This commit fixes that oversight. --- doc/src/sgml/storage.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index cb76b98dc3..85a8de2ece 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -359,7 +359,7 @@ described in more detail below. The compression technique used is a fairly simple and very fast member of the LZ family of compression techniques. See -src/backend/utils/adt/pg_lzcompress.c for the details. +src/common/pg_lzcompress.c for the details.