What is the output of the command above with the -d flag added to it? (Provided you are comfortable sharing this, it contains a blueprint of your schema)
I'm not sure what's going here, there are empty columns being added to the update.
Please provide a relevant database schema so we can replicate your issue (Provided you are comfortable sharing this)
CREATE TABLE station (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT NOT NULL,
title TEXT NOT NULL,
description TEXT NOT NULL,
queue TEXT NOT NULL,
create_time TIMESTAMP NOT NULL DEFAULT NOW(),
update_time TIMESTAMP NOT NULL DEFAULT NOW(),
UNIQUE (name)
);
Further information. What did you do, what did you expect?
It should update the row without having empty columns.
I have a runtime error with an Update call, there are extra empty column names in the query which leads to a PG error:
What version of SQLBoiler are you using (
sqlboiler --version
)?v4.12.2
What is your database and version (eg. Postgresql 10)
Postgres 15
If this happened at runtime what code produced the issue? (if not applicable leave blank)
What is the output of the command above with the
-d
flag added to it? (Provided you are comfortable sharing this, it contains a blueprint of your schema)I'm not sure what's going here, there are empty columns being added to the update.
Please provide a relevant database schema so we can replicate your issue (Provided you are comfortable sharing this)
Further information. What did you do, what did you expect?
It should update the row without having empty columns.