Skip to content

Commit

Permalink
HCK-7960: fix RE of schemaTags
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii4as committed Sep 11, 2024
1 parent df5da74 commit cbfb0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reverse_engineering/helpers/snowflakeHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1381,7 +1381,7 @@ const getSchemaTags = async ({ dbName, schemaName, logger }) => {
);

return rows.map(row => ({
tagName: [row['TAG_DATABASE'], row['TAG_SCHEMA'], row['TAG_NAME']].join('.'),
tagName: row['TAG_NAME'],
tagValue: row['TAG_VALUE'],
}));
} catch (error) {
Expand Down

0 comments on commit cbfb0c4

Please sign in to comment.