When I run the following statement,
INSERT INTO public."Bug Status" ("Tracking Number", "Assigned Analyst", status, "Changed By", "Updated Date") VALUES
(111111111, 'NS', 'Reported', 'NS', DATE_TRUNC('second', 'current_timestamp'));
I recieve the following error:
ERROR: function date_trunc("unknown", "unknown") is not unique
HINT: Could not choose a best candidate function. You may need to add explicit type casts.
Does anyone know how to solve this problem, Thanks!!
INSERT INTO public."Bug Status" ("Tracking Number", "Assigned Analyst", status, "Changed By", "Updated Date") VALUES
(111111111, 'NS', 'Reported', 'NS', DATE_TRUNC('second', 'current_timestamp'));
I recieve the following error:
ERROR: function date_trunc("unknown", "unknown") is not unique
HINT: Could not choose a best candidate function. You may need to add explicit type casts.
Does anyone know how to solve this problem, Thanks!!