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 5c0f137 commit a36e815Copy full SHA for a36e815
web/src/js/module/hiveSidebar/hiveSidebar.vue
@@ -307,8 +307,8 @@ export default {
307
this.dispatch('Workbench:pasteInEditor', value, this.node);
308
},
309
queryTable() {
310
- const tabName = `${this.currentAcitved.dbName}.${this.currentAcitved.name}`;
311
- const code = `select * from ${tabName} limit 100`;
+ const tabName = `${this.currentAcitved.dbName}_${this.currentAcitved.name}`;
+ const code = `select * from ${this.currentAcitved.dbName}.${this.currentAcitved.name} limit 100`;
312
const filename = `${tabName}_select.hql`;
313
const md5Path = util.md5(filename);
314
this.dispatch('Workbench:add', {
0 commit comments