What does "INSERT 0 1" mean after executing direct SQL in PostgreSQL?
When I execute a file containing SQL commands with psql -f , I get output like this (truncated): CREATE DOMAIN CREATE TABLE CREATE TABLE INSERT 0 1 INSERT 0 1 INSERT 0 1 What do the numbers 0 and 1 mean? (I think 1 is the number of rows modified. But 0?) I can't find it in PostgreSQL's official documentation or anywhere else.