parent
d1b0bf965b
commit
50a7539e25
|
@ -1210,15 +1210,15 @@ class InternalBuilder {
|
||||||
|
|
||||||
const separator = this.client === SqlClient.ORACLE ? " VALUE " : ","
|
const separator = this.client === SqlClient.ORACLE ? " VALUE " : ","
|
||||||
let identifier = this.rawQuotedIdentifier(tableField)
|
let identifier = this.rawQuotedIdentifier(tableField)
|
||||||
// if (schema.type === FieldType.BIGINT) {
|
if (schema.type === FieldType.BIGINT) {
|
||||||
// identifier = this.castIntToString(identifier)
|
identifier = this.castIntToString(identifier)
|
||||||
// } else if (schema.type === FieldType.LINK) {
|
} else if (schema.type === FieldType.LINK) {
|
||||||
// const otherTable = this.query.meta.tables![schema.tableId]
|
const otherTable = this.query.meta.tables![schema.tableId]
|
||||||
// const otherField = otherTable.schema[schema.fieldName]
|
const otherField = otherTable.schema[schema.fieldName]
|
||||||
// if (otherField.type === FieldType.BIGINT) {
|
if (otherField.type === FieldType.BIGINT) {
|
||||||
// identifier = this.castIntToString(identifier)
|
identifier = this.castIntToString(identifier)
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
return this.knex.raw(`?${separator}??`, [unaliased, identifier]).toString()
|
return this.knex.raw(`?${separator}??`, [unaliased, identifier]).toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue