Merge pull request #15379 from Budibase/budi-8973-rows-being-deleted-after-changing-tables-or-going-on
fix column names with spaces for relationship columns
This commit is contained in:
commit
bfc5b49d1e
|
@ -1172,20 +1172,22 @@ class InternalBuilder {
|
||||||
nulls = value.direction === SortOrder.ASCENDING ? "first" : "last"
|
nulls = value.direction === SortOrder.ASCENDING ? "first" : "last"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const composite = `${aliased}.${key}`
|
||||||
|
let identifier
|
||||||
|
|
||||||
if (this.isAggregateField(key)) {
|
if (this.isAggregateField(key)) {
|
||||||
query = query.orderBy(key, direction, nulls)
|
identifier = this.rawQuotedIdentifier(key)
|
||||||
|
} else if (this.client === SqlClient.ORACLE) {
|
||||||
|
identifier = this.convertClobs(composite)
|
||||||
} else {
|
} else {
|
||||||
let composite = `${aliased}.${key}`
|
identifier = this.rawQuotedIdentifier(composite)
|
||||||
if (this.client === SqlClient.ORACLE) {
|
}
|
||||||
query = query.orderByRaw(`?? ?? nulls ??`, [
|
|
||||||
this.convertClobs(composite),
|
query = query.orderByRaw(`?? ?? ${nulls ? "nulls ??" : ""}`, [
|
||||||
|
identifier,
|
||||||
this.knex.raw(direction),
|
this.knex.raw(direction),
|
||||||
this.knex.raw(nulls as string),
|
...(nulls ? [this.knex.raw(nulls as string)] : []),
|
||||||
])
|
])
|
||||||
} else {
|
|
||||||
query = query.orderBy(composite, direction, nulls)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1344,14 +1346,16 @@ class InternalBuilder {
|
||||||
|
|
||||||
// add the correlation to the overall query
|
// add the correlation to the overall query
|
||||||
subQuery = subQuery.where(
|
subQuery = subQuery.where(
|
||||||
correlatedTo,
|
this.rawQuotedIdentifier(correlatedTo),
|
||||||
"=",
|
"=",
|
||||||
this.rawQuotedIdentifier(correlatedFrom)
|
this.rawQuotedIdentifier(correlatedFrom)
|
||||||
)
|
)
|
||||||
|
|
||||||
const standardWrap = (select: Knex.Raw): Knex.QueryBuilder => {
|
const standardWrap = (select: Knex.Raw): Knex.QueryBuilder => {
|
||||||
subQuery = subQuery
|
subQuery = subQuery
|
||||||
.select(relationshipFields)
|
.select(
|
||||||
|
relationshipFields.map(field => this.rawQuotedIdentifier(field))
|
||||||
|
)
|
||||||
.limit(getRelationshipLimit())
|
.limit(getRelationshipLimit())
|
||||||
// @ts-ignore - the from alias syntax isn't in Knex typing
|
// @ts-ignore - the from alias syntax isn't in Knex typing
|
||||||
return knex.select(select).from({
|
return knex.select(select).from({
|
||||||
|
|
|
@ -3650,6 +3650,51 @@ if (descriptions.length) {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (isInternal || isMSSQL) {
|
||||||
|
describe("Fields with spaces", () => {
|
||||||
|
let table: Table
|
||||||
|
let otherTable: Table
|
||||||
|
let relatedRow: Row
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
otherTable = await config.api.table.save(defaultTable())
|
||||||
|
table = await config.api.table.save(
|
||||||
|
saveTableRequest({
|
||||||
|
schema: {
|
||||||
|
links: {
|
||||||
|
name: "links",
|
||||||
|
fieldName: "links",
|
||||||
|
type: FieldType.LINK,
|
||||||
|
tableId: otherTable._id!,
|
||||||
|
relationshipType: RelationshipType.ONE_TO_MANY,
|
||||||
|
},
|
||||||
|
"nameWithSpace ": {
|
||||||
|
name: "nameWithSpace ",
|
||||||
|
type: FieldType.STRING,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
relatedRow = await config.api.row.save(otherTable._id!, {
|
||||||
|
name: generator.word(),
|
||||||
|
description: generator.paragraph(),
|
||||||
|
})
|
||||||
|
await config.api.row.save(table._id!, {
|
||||||
|
"nameWithSpace ": generator.word(),
|
||||||
|
tableId: table._id!,
|
||||||
|
links: [relatedRow._id],
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it("Successfully returns rows that have spaces in their field names", async () => {
|
||||||
|
const { rows } = await config.api.row.search(table._id!)
|
||||||
|
expect(rows.length).toBe(1)
|
||||||
|
const row = rows[0]
|
||||||
|
expect(row["nameWithSpace "]).toBeDefined()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
if (!isInternal && !isOracle) {
|
if (!isInternal && !isOracle) {
|
||||||
describe("bigint ids", () => {
|
describe("bigint ids", () => {
|
||||||
let table1: Table, table2: Table
|
let table1: Table, table2: Table
|
||||||
|
|
|
@ -276,6 +276,7 @@ class SqlServerIntegration extends Sql implements DatasourcePlus {
|
||||||
encrypt,
|
encrypt,
|
||||||
enableArithAbort: true,
|
enableArithAbort: true,
|
||||||
requestTimeout: env.QUERY_THREAD_TIMEOUT,
|
requestTimeout: env.QUERY_THREAD_TIMEOUT,
|
||||||
|
connectTimeout: env.QUERY_THREAD_TIMEOUT,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
if (encrypt) {
|
if (encrypt) {
|
||||||
|
|
Loading…
Reference in New Issue