From: Arthur Zakirov Date: Thu, 2 Nov 2017 13:10:10 +0000 (+0300) Subject: Use @abs_srcdir@ within ut-fdw.source X-Git-Tag: REL11_1_3_2~12 X-Git-Url: http://git.osdn.net/view?p=pghintplan%2Fpg_hint_plan.git;a=commitdiff_plain;h=44ee4409fb97a5408f867302a42d90500eec5337 Use @abs_srcdir@ within ut-fdw.source The file contained absolute path of a specific working directory, replace them with @abs_srcdir@. --- diff --git a/output/ut-fdw.source b/output/ut-fdw.source index 5d2e949..a065ecd 100644 --- a/output/ut-fdw.source +++ b/output/ut-fdw.source @@ -30,9 +30,9 @@ EXPLAIN (COSTS false) SELECT * FROM s1.t1, ft1 ft_1, ft1 ft_2 WHERE t1.c1 = ft_1 -> Nested Loop Join Filter: (ft_1.id = ft_2.id) -> Foreign Scan on ft1 ft_1 - Foreign File: /home/horiguti/work/pg_hint_plan/pg_hint_plan/data/data.csv + Foreign File: @abs_srcdir@/data/data.csv -> Foreign Scan on ft1 ft_2 - Foreign File: /home/horiguti/work/pg_hint_plan/pg_hint_plan/data/data.csv + Foreign File: @abs_srcdir@/data/data.csv -> Index Scan using t1_i1 on t1 Index Cond: (c1 = ft_2.id)