"there is no way to insert less than one row" - Mailing list pgsql-docs

From PG Doc comments form
Subject "there is no way to insert less than one row"
Date
Msg-id 161626776179.652.11944895442156126506@wrigleys.postgresql.org
Whole thread Raw
Responses Re: "there is no way to insert less than one row"  (Peter Eisentraut <peter.eisentraut@enterprisedb.com>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/13/dml-insert.html
Description:

The documentation here says the following: "Of course you can also insert
more than one row, but there is no way to insert less than one row."
I tried this in psql:
---cut---
mydb=> create temporary table t1 (i1 int, v2 varchar(100));
CREATE TABLE
mydb=> create temporary table t2 (i1 int, v2 varchar(100));
CREATE TABLE
mydb=> insert into t2 select * from t1;
INSERT 0 0
mydb=> 
---cut---
So, the last insert command inserted zero rows. What is meant by "there is
no way to insert less than one row"?

pgsql-docs by date:

Previous
From: Tomas Vondra
Date:
Subject: Re: DISTINCT term in aggregate function
Next
From: PG Doc comments form
Date:
Subject: Wrong distance shown in miles for extension earthdistance