Every time when I create a table in pgadmin 4. Systems columns(tableoid, oid, xmix,xmax, cmin,cmax) are generated by default. When i import a CSV file using pgadmin4 GUI it throws an error since I don't have those columns in CSV file. I have to manually unchoose or uncheck systems columns in columns option before importing.I was not facing this issue before.
Here is the create table command generated when i created using pg admin
CREATE TABLE public."LineChart1"
(
"Date" date,
"Price" money
)
WITH (
OIDS = FALSE
);
ALTER TABLE public."LineChart1"
OWNER to eerfrusycfampt;
Error Message
ERROR: column "tableoid" of relation "LineChart1" does not exist
How to prevent system columns generated by default?
Thanks