This commit is contained in:
cool 2023-06-26 14:25:09 +08:00
parent 7c9d76cbed
commit 94ea80aeee

View File

@ -127,9 +127,10 @@ export class CloudDBService extends BaseService {
await this.coolCloudDb.createTable(table.content, true); await this.coolCloudDb.createTable(table.content, true);
} }
// 所有云函数表 // 所有云函数表
const { database } = this.coolCloudDb.coolDataSource.options;
const allTables = ( const allTables = (
await this.coolCloudDb.coolDataSource.query( await this.coolCloudDb.coolDataSource.query(
"SELECT table_name from information_schema.columns where table_name like 'func_%' group by table_name" `SELECT table_name from information_schema.columns where table_schema like '${database}' and table_name like 'func_%' group by table_name`
) )
).map(e => { ).map(e => {
return e.TABLE_NAME || e.table_name; return e.TABLE_NAME || e.table_name;