public inbox for [email protected]  
help / color / mirror / Atom feed
Missing File weather.txt
12+ messages / 4 participants
[nested] [flat]

* Missing File weather.txt
@ 2020-01-28 02:22 PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: PG Doc comments form @ 2020-01-28 02:22 UTC (permalink / raw)
  To: [email protected]; +Cc: [email protected]

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/12/tutorial-populate.html
Description:

On this page https://www.postgresql.org/docs/12/tutorial-populate.html you
have this command:

COPY weather FROM '/home/user/weather.txt';

I've searched all over for weather.txt and can't find it. Please could you
make this and any other files required for the tutorial available and
provide clear instructions for accessing them at the beginning of the
tutorial.

Thanks.


^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
@ 2020-01-28 10:18 ` Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Daniel Gustafsson @ 2020-01-28 10:18 UTC (permalink / raw)
  To: [email protected]; [email protected]

> On 28 Jan 2020, at 03:22, PG Doc comments form <[email protected]> wrote:
> 
> The following documentation comment has been logged on the website:
> 
> Page: https://www.postgresql.org/docs/12/tutorial-populate.html
> Description:
> 
> On this page https://www.postgresql.org/docs/12/tutorial-populate.html you
> have this command:
> 
> COPY weather FROM '/home/user/weather.txt';
> 
> I've searched all over for weather.txt and can't find it. Please could you
> make this and any other files required for the tutorial available and
> provide clear instructions for accessing them at the beginning of the
> tutorial.

This is only mentioned as an example of another input method, with a link to
the COPY page for more information.  That being said, it's a good thing for a
tutorial to be self-contained, and going from a basic tutorial to the COPY
reference page is a fairly large step.  I propose that we add a small example
on what weather.txt could look like as per the attached diff.

cheers ./daniel



Attachments:

  [application/octet-stream] tutorial_weather.diff (908B, 2-tutorial_weather.diff)
  download | inline diff:
diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml
index c0889743c4..9608541915 100644
--- a/doc/src/sgml/query.sgml
+++ b/doc/src/sgml/query.sgml
@@ -266,8 +266,16 @@ COPY weather FROM '/home/user/weather.txt';
 
     where the file name for the source file must be available on the
     machine running the backend process, not the client, since the backend process
-    reads the file directly.  You can read more about the
-    <command>COPY</command> command in <xref linkend="sql-copy"/>.
+    reads the file directly.  An example input file is shown below, note that
+    the white space on each line is actually a tab character.
+
+<programlisting>
+San Francisco    46    50    0.25    1994-11-27
+Hayward    37    54    0.0    1994-11-29
+</programlisting>
+
+    You can read more about the <command>COPY</command> command in
+    <xref linkend="sql-copy"/>.
    </para>
   </sect1>
 


^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
@ 2025-07-05 17:17   ` Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Fujii Masao @ 2025-07-05 17:17 UTC (permalink / raw)
  To: Daniel Gustafsson <[email protected]>; [email protected]; [email protected]



On 2020/01/28 19:18, Daniel Gustafsson wrote:
>> On 28 Jan 2020, at 03:22, PG Doc comments form <[email protected]> wrote:
>>
>> The following documentation comment has been logged on the website:
>>
>> Page: https://www.postgresql.org/docs/12/tutorial-populate.html
>> Description:
>>
>> On this page https://www.postgresql.org/docs/12/tutorial-populate.html you
>> have this command:
>>
>> COPY weather FROM '/home/user/weather.txt';
>>
>> I've searched all over for weather.txt and can't find it. Please could you
>> make this and any other files required for the tutorial available and
>> provide clear instructions for accessing them at the beginning of the
>> tutorial.
> 
> This is only mentioned as an example of another input method, with a link to
> the COPY page for more information.  That being said, it's a good thing for a
> tutorial to be self-contained, and going from a basic tutorial to the COPY
> reference page is a fairly large step.  I propose that we add a small example
> on what weather.txt could look like as per the attached diff.

Sorry for reviving this old thread, but I wanted to follow up since
the same issue was reported again in [1], and the proposed patch
basically looks good to me.

Regarding the patch:

+<programlisting>
+San Francisco    46    50    0.25    1994-11-27
+Hayward    37    54    0.0    1994-11-29
+</programlisting>


In the tutorial, three rows are inserted using INSERT, so shouldn't
the sample input for COPY include all three, like this?

San Francisco	46	50	0.25	1994-11-27
San Francisco	43	57	0	1994-11-29
Hayward	37	54	\N	1994-11-29

Regards,

[1] https://postgr.es/m/[email protected]

-- 
Fujii Masao
NTT DATA Japan Corporation






^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
@ 2025-07-05 17:29     ` Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Tom Lane @ 2025-07-05 17:29 UTC (permalink / raw)
  To: Fujii Masao <[email protected]>; +Cc: Daniel Gustafsson <[email protected]>; [email protected]; [email protected]

Fujii Masao <[email protected]> writes:
> On 2020/01/28 19:18, Daniel Gustafsson wrote:
>> This is only mentioned as an example of another input method, with a link to
>> the COPY page for more information.  That being said, it's a good thing for a
>> tutorial to be self-contained, and going from a basic tutorial to the COPY
>> reference page is a fairly large step.  I propose that we add a small example
>> on what weather.txt could look like as per the attached diff.

> Sorry for reviving this old thread, but I wanted to follow up since
> the same issue was reported again in [1], and the proposed patch
> basically looks good to me.

+1

> In the tutorial, three rows are inserted using INSERT, so shouldn't
> the sample input for COPY include all three, like this?

Agreed, the example file should match what the tutorial expects to be
in the table.  I'd include text along the lines of "The data inserted
above could also be inserted from a file containing:".

			regards, tom lane





^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
@ 2025-07-10 22:22       ` Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Daniel Gustafsson @ 2025-07-10 22:22 UTC (permalink / raw)
  To: Tom Lane <[email protected]>; +Cc: Fujii Masao <[email protected]>; [email protected]; [email protected]

> On 5 Jul 2025, at 19:29, Tom Lane <[email protected]> wrote:
> 
> Fujii Masao <[email protected]> writes:
>> On 2020/01/28 19:18, Daniel Gustafsson wrote:
>>> This is only mentioned as an example of another input method, with a link to
>>> the COPY page for more information.  That being said, it's a good thing for a
>>> tutorial to be self-contained, and going from a basic tutorial to the COPY
>>> reference page is a fairly large step.  I propose that we add a small example
>>> on what weather.txt could look like as per the attached diff.
> 
>> Sorry for reviving this old thread, but I wanted to follow up since
>> the same issue was reported again in [1], and the proposed patch
>> basically looks good to me.
> 
> +1
> 
>> In the tutorial, three rows are inserted using INSERT, so shouldn't
>> the sample input for COPY include all three, like this?
> 
> Agreed, the example file should match what the tutorial expects to be
> in the table.  I'd include text along the lines of "The data inserted
> above could also be inserted from a file containing:".

The attached v2 adds the missing line, and tweaks the text added to document
the file.  Since there have been reports I propose backpatching this all the
way down to 13 while at it.

--
Daniel Gustafsson



Attachments:

  [application/octet-stream] v2-0001-doc-Add-example-file-for-COPY.patch (1.8K, 2-v2-0001-doc-Add-example-file-for-COPY.patch)
  download | inline diff:
From 5d45c8cd7fefab10670d91d9f541001b4631d1a0 Mon Sep 17 00:00:00 2001
From: Daniel Gustafsson <[email protected]>
Date: Fri, 11 Jul 2025 00:03:57 +0200
Subject: [PATCH v2] doc: Add example file for COPY

The paragraph for introducing INSERT and COPY discussed how a file
could be used for bulk loading with COPY, without actually showing
what the file would look like.  This adds a programlisting for the
file contents.

Backpatch to all supported branches since this example has lacked
the file contents since PostgreSQL 7.2.

Author: Daniel Gustafsson <[email protected]>
Reported-by: [email protected]
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 13
---
 doc/src/sgml/query.sgml | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml
index 727a0cb185f..b1770bb782d 100644
--- a/doc/src/sgml/query.sgml
+++ b/doc/src/sgml/query.sgml
@@ -264,8 +264,18 @@ COPY weather FROM '/home/user/weather.txt';
 
     where the file name for the source file must be available on the
     machine running the backend process, not the client, since the backend process
-    reads the file directly.  You can read more about the
-    <command>COPY</command> command in <xref linkend="sql-copy"/>.
+    reads the file directly.  The data inserted above into the weather table
+    could also be inserted from a file containing (note that the white space
+    on each line is actually a tab character):
+
+<programlisting>
+San Francisco    46    50    0.25    1994-11-27
+San Francisco    43    57    0.0    1994-11-29
+Hayward    37    54    0.0    1994-11-29
+</programlisting>
+
+    You can read more about the <command>COPY</command> command in
+    <xref linkend="sql-copy"/>.
    </para>
   </sect1>
 
-- 
2.39.3 (Apple Git-146)



^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
@ 2025-07-10 23:36         ` Fujii Masao <[email protected]>
  2025-07-11 22:18           ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Fujii Masao @ 2025-07-10 23:36 UTC (permalink / raw)
  To: Daniel Gustafsson <[email protected]>; Tom Lane <[email protected]>; +Cc: [email protected]; [email protected]



On 2025/07/11 7:22, Daniel Gustafsson wrote:
>> On 5 Jul 2025, at 19:29, Tom Lane <[email protected]> wrote:
>>
>> Fujii Masao <[email protected]> writes:
>>> On 2020/01/28 19:18, Daniel Gustafsson wrote:
>>>> This is only mentioned as an example of another input method, with a link to
>>>> the COPY page for more information.  That being said, it's a good thing for a
>>>> tutorial to be self-contained, and going from a basic tutorial to the COPY
>>>> reference page is a fairly large step.  I propose that we add a small example
>>>> on what weather.txt could look like as per the attached diff.
>>
>>> Sorry for reviving this old thread, but I wanted to follow up since
>>> the same issue was reported again in [1], and the proposed patch
>>> basically looks good to me.
>>
>> +1
>>
>>> In the tutorial, three rows are inserted using INSERT, so shouldn't
>>> the sample input for COPY include all three, like this?
>>
>> Agreed, the example file should match what the tutorial expects to be
>> in the table.  I'd include text along the lines of "The data inserted
>> above could also be inserted from a file containing:".
> 
> The attached v2 adds the missing line, and tweaks the text added to document
> the file.

Thanks for updating the patch! LGTM.

Just one small comment:

+Hayward    37    54    0.0    1994-11-29

This row is inserted using the following INSERT statement:

     INSERT INTO weather (date, city, temp_hi, temp_lo)
         VALUES ('1994-11-29', 'Hayward', 54, 37);

Since the prcp column isn't specified, its value is NULL. So shouldn't
the fourth field in the data line above be \N instead of 0.0?


>  Since there have been reports I propose backpatching this all the
> way down to 13 while at it.

+1

Regards,

-- 
Fujii Masao
NTT DATA Japan Corporation






^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
@ 2025-07-11 22:18           ` Daniel Gustafsson <[email protected]>
  2025-07-12 03:05             ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Daniel Gustafsson @ 2025-07-11 22:18 UTC (permalink / raw)
  To: Fujii Masao <[email protected]>; +Cc: Tom Lane <[email protected]>; [email protected]

> On 11 Jul 2025, at 01:36, Fujii Masao <[email protected]> wrote:

> Since the prcp column isn't specified, its value is NULL. So shouldn't
> the fourth field in the data line above be \N instead of 0.0?

It should, fixed in v3.

--
Daniel Gustafsson



Attachments:

  [application/octet-stream] v3-0001-doc-Add-example-file-for-COPY.patch (1.8K, 2-v3-0001-doc-Add-example-file-for-COPY.patch)
  download | inline diff:
From 15f04b455d053087614dfeb9c381143066267057 Mon Sep 17 00:00:00 2001
From: Daniel Gustafsson <[email protected]>
Date: Fri, 11 Jul 2025 00:03:57 +0200
Subject: [PATCH v3] doc: Add example file for COPY

The paragraph for introducing INSERT and COPY discussed how a file
could be used for bulk loading with COPY, without actually showing
what the file would look like.  This adds a programlisting for the
file contents.

Backpatch to all supported branches since this example has lacked
the file contents since PostgreSQL 7.2.

Author: Daniel Gustafsson <[email protected]>
Reported-by: [email protected]
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 13
---
 doc/src/sgml/query.sgml | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml
index 727a0cb185f..002d2f89fb4 100644
--- a/doc/src/sgml/query.sgml
+++ b/doc/src/sgml/query.sgml
@@ -264,8 +264,18 @@ COPY weather FROM '/home/user/weather.txt';
 
     where the file name for the source file must be available on the
     machine running the backend process, not the client, since the backend process
-    reads the file directly.  You can read more about the
-    <command>COPY</command> command in <xref linkend="sql-copy"/>.
+    reads the file directly.  The data inserted above into the weather table
+    could also be inserted from a file containing (note that the white space
+    on each line is actually a tab character):
+
+<programlisting>
+San Francisco    46    50    0.25    1994-11-27
+San Francisco    43    57    0.0    1994-11-29
+Hayward    37    54    \N    1994-11-29
+</programlisting>
+
+    You can read more about the <command>COPY</command> command in
+    <xref linkend="sql-copy"/>.
    </para>
   </sect1>
 
-- 
2.39.3 (Apple Git-146)



^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-11 22:18           ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
@ 2025-07-12 03:05             ` Fujii Masao <[email protected]>
  2025-07-12 16:22               ` Re: Missing File weather.txt Tom Lane <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Fujii Masao @ 2025-07-12 03:05 UTC (permalink / raw)
  To: Daniel Gustafsson <[email protected]>; +Cc: Tom Lane <[email protected]>; [email protected]



On 2025/07/12 7:18, Daniel Gustafsson wrote:
>> On 11 Jul 2025, at 01:36, Fujii Masao <[email protected]> wrote:
> 
>> Since the prcp column isn't specified, its value is NULL. So shouldn't
>> the fourth field in the data line above be \N instead of 0.0?
> 
> It should, fixed in v3.

LGTM. Thanks!

Regards,

-- 
Fujii Masao
NTT DATA Japan Corporation






^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-11 22:18           ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-12 03:05             ` Re: Missing File weather.txt Fujii Masao <[email protected]>
@ 2025-07-12 16:22               ` Tom Lane <[email protected]>
  2025-07-12 16:28                 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Tom Lane @ 2025-07-12 16:22 UTC (permalink / raw)
  To: Fujii Masao <[email protected]>; +Cc: Daniel Gustafsson <[email protected]>; [email protected]

Fujii Masao <[email protected]> writes:
> On 2025/07/12 7:18, Daniel Gustafsson wrote:
>> It should, fixed in v3.

> LGTM. Thanks!

I'm okay with this too.  I find myself niggling a bit at the
parenthetical remark "the white space on each line is actually a tab
character".  There's several tabs on each line, so use of the singular
isn't quite right.  However, the best alternative phrasing I could
come up with is "each instance of white space is actually a single tab
character", and that doesn't seem any more understandable.  So maybe
it's best left as you have it.

			regards, tom lane





^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-11 22:18           ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-12 03:05             ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-12 16:22               ` Re: Missing File weather.txt Tom Lane <[email protected]>
@ 2025-07-12 16:28                 ` Daniel Gustafsson <[email protected]>
  2025-07-12 16:41                   ` Re: Missing File weather.txt Tom Lane <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Daniel Gustafsson @ 2025-07-12 16:28 UTC (permalink / raw)
  To: Tom Lane <[email protected]>; +Cc: Fujii Masao <[email protected]>; [email protected]

> On 12 Jul 2025, at 18:23, Tom Lane <[email protected]> wrote:
> 
> Fujii Masao <[email protected]> writes:
>>> On 2025/07/12 7:18, Daniel Gustafsson wrote:
>>> It should, fixed in v3.
> 
>> LGTM. Thanks!
> 
> I'm okay with this too.  I find myself niggling a bit at the
> parenthetical remark "the white space on each line is actually a tab
> character".  There's several tabs on each line, so use of the singular
> isn't quite right.  However, the best alternative phrasing I could
> come up with is "each instance of white space is actually a single tab
> character", and that doesn't seem any more understandable.  So maybe
> it's best left as you have it.

Or perhaps ”values are separated by a tab character”?

./daniel




^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-11 22:18           ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-12 03:05             ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-12 16:22               ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-12 16:28                 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
@ 2025-07-12 16:41                   ` Tom Lane <[email protected]>
  2025-07-12 19:13                     ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  0 siblings, 1 reply; 12+ messages in thread

From: Tom Lane @ 2025-07-12 16:41 UTC (permalink / raw)
  To: Daniel Gustafsson <[email protected]>; +Cc: Fujii Masao <[email protected]>; [email protected]

Daniel Gustafsson <[email protected]> writes:
> Or perhaps ”values are separated by a tab character”?

WFM

			regards, tom lane





^ permalink  raw  reply  [nested|flat] 12+ messages in thread

* Re: Missing File weather.txt
  2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
  2020-01-28 10:18 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-05 17:17   ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-05 17:29     ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-10 22:22       ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-10 23:36         ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-11 22:18           ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-12 03:05             ` Re: Missing File weather.txt Fujii Masao <[email protected]>
  2025-07-12 16:22               ` Re: Missing File weather.txt Tom Lane <[email protected]>
  2025-07-12 16:28                 ` Re: Missing File weather.txt Daniel Gustafsson <[email protected]>
  2025-07-12 16:41                   ` Re: Missing File weather.txt Tom Lane <[email protected]>
@ 2025-07-12 19:13                     ` Daniel Gustafsson <[email protected]>
  0 siblings, 0 replies; 12+ messages in thread

From: Daniel Gustafsson @ 2025-07-12 19:13 UTC (permalink / raw)
  To: Tom Lane <[email protected]>; +Cc: Fujii Masao <[email protected]>; [email protected]

> On 12 Jul 2025, at 18:41, Tom Lane <[email protected]> wrote:
> 
> Daniel Gustafsson <[email protected]> writes:
>> Or perhaps ”values are separated by a tab character”?
> 
> WFM

Thanks, I'll get this pushed once the freeze is over on REL_18_STABLE.

--
Daniel Gustafsson







^ permalink  raw  reply  [nested|flat] 12+ messages in thread


end of thread, other threads:[~2025-07-12 19:13 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2020-01-28 02:22 Missing File weather.txt PG Doc comments form <[email protected]>
2020-01-28 10:18 ` Daniel Gustafsson <[email protected]>
2025-07-05 17:17   ` Fujii Masao <[email protected]>
2025-07-05 17:29     ` Tom Lane <[email protected]>
2025-07-10 22:22       ` Daniel Gustafsson <[email protected]>
2025-07-10 23:36         ` Fujii Masao <[email protected]>
2025-07-11 22:18           ` Daniel Gustafsson <[email protected]>
2025-07-12 03:05             ` Fujii Masao <[email protected]>
2025-07-12 16:22               ` Tom Lane <[email protected]>
2025-07-12 16:28                 ` Daniel Gustafsson <[email protected]>
2025-07-12 16:41                   ` Tom Lane <[email protected]>
2025-07-12 19:13                     ` Daniel Gustafsson <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox