.deleteFrom
, .into
and .joins
don't support schema, only table names
#32
Labels
.deleteFrom
, .into
and .joins
don't support schema, only table names
#32
Describe the bug
When you use any of the following query builder operations in a chain they only take in a table name property, but no schema property. If a table is embedded in a schema there is no way for it to know where that table is located and how to fetch it.
deleteFrom(...)
innerJoin(...)
leftJoin(...)
rightJoin(...)
outerJoin(...)
into(...)
To Reproduce
See the current interface definition below. The
selectFrom
operator does allow for a schema, but other operations such as DELETE, INSERT, and UPDATE don't support that.Expected behavior
One may expect this to behave by passing both a schema and a table name into these and keeping them closely correlated when constructing queries.
Screenshots
N/A
Desktop (please complete the following information):
N/A
Smartphone (please complete the following information):
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: