Open erstam opened 10 months ago
This issue has been automatically marked as stale because it has not had activity in the last 30 days. If there is no update within the next 7 days, this issue will be closed.
ping, will this gets resolved instead of closed by a bot?
I'm sorry that BUN does not support the CREATE ... AS SELECT syntax.
ModelTableExpr only change table's name
Using bun 1.1.16 here.
I am trying to use
(bun.IDB).NewCreateTable().Temp().IfNotExists().ModelTableExpr("my_temp_table_name AS (?)", selectQuery).Exec(ctx)
(whatever is selectQuery, it is just a query using SELECT ...)
I would expect this call to render this query:
CREATE TEMP TABLE IF NOT EXISTS my_temp_table_name AS (selectQuery)
which at least on Postgres is supported: https://www.postgresql.org/docs/current/sql-createtable.htmlInstead of rendering the query, the code panics: invalid memory address or nil pointer dereference
It panic because, I think, I am not specifying a "model", by calling the
Model()
function. However, when I do this, giving a "dummy" struct with zero field as the model, I instead get the following query:CREATE TEMP TABLE IF NOT EXISTS my_temp_table_name AS (selectQuery) ()
Notice the empty
()
at the end of the query. It causes a syntax error on SQL.Any idea on how I could solve this ? (besides executing a raw query if possible)