Fix pg money
This commit is contained in:
parent
51ba1f072b
commit
c398412e00
|
@ -274,9 +274,7 @@ class InternalBuilder {
|
|||
|
||||
private isFullSelectStatementRequired(includedFields: string[]): boolean {
|
||||
for (const column of Object.values(this.table.schema)) {
|
||||
if (this.SPECIAL_SELECT_CASES.POSTGRES_MONEY(column)) {
|
||||
return true
|
||||
} else if (this.SPECIAL_SELECT_CASES.MSSQL_DATES(column)) {
|
||||
if (this.SPECIAL_SELECT_CASES.MSSQL_DATES(column)) {
|
||||
return true
|
||||
} else if (
|
||||
column.type === FieldType.FORMULA &&
|
||||
|
|
|
@ -13,7 +13,7 @@ const mainDescriptions = datasourceDescribe({
|
|||
|
||||
if (mainDescriptions.length) {
|
||||
describe.each(mainDescriptions)(
|
||||
"/postgres integrations",
|
||||
"/postgres integrations ($dbName)",
|
||||
({ config, dsProvider }) => {
|
||||
let datasource: Datasource
|
||||
let client: Knex
|
||||
|
|
Loading…
Reference in New Issue