perspectives: custom join over different databases

This commit is contained in:
Jan Prochazka
2022-08-06 16:44:37 +02:00
parent aff1fe0b3d
commit 86d7d61cc5
8 changed files with 105 additions and 40 deletions

View File

@@ -180,6 +180,8 @@
const pureName = td.getAttribute('data-pureName');
const schemaName = td.getAttribute('data-schemaName');
const dataConid = td.getAttribute('data-conid');
const dataDatabase = td.getAttribute('data-database');
if (pureName) {
res.push({
text: `Open table ${pureName}`,
@@ -191,8 +193,8 @@
props: {
schemaName,
pureName,
conid,
database,
conid: dataConid || conid,
database: dataDatabase || database,
objectTypeField: 'tables',
},
});