We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6783d4 commit 20afa58Copy full SHA for 20afa58
reverse_engineering/helpers/postgresService.js
@@ -130,12 +130,12 @@ module.exports = {
130
const encoding = (await db.queryTolerant(queryConstants.GET_DB_ENCODING, [], true))?.server_encoding;
131
const LC_COLLATE = (await db.queryTolerant(queryConstants.GET_DB_COLLATE_NAME, [], true))?.default_collate_name;
132
133
- return {
+ return clearEmptyPropertiesInObject({
134
database_name,
135
encoding,
136
LC_COLLATE,
137
LC_CTYPE: LC_COLLATE,
138
- };
+ });
139
},
140
141
async retrieveEntitiesData(schemaName, entitiesNames, recordSamplingSettings) {
0 commit comments