Fix pg money

This commit is contained in:
Adria Navarro 2024-12-17 11:16:27 +01:00
parent 51ba1f072b
commit c398412e00
2 changed files with 2 additions and 4 deletions

View File

@ -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 &&

View File

@ -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