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