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.
2 parents 7813673 + 5372c55 commit 61be759Copy full SHA for 61be759
console/atest-ui/src/views/DataManager.vue
@@ -24,25 +24,26 @@ watch(store, (s) => {
24
return
25
}
26
})
27
+ currentDatabase.value = ''
28
+ sqlQuery.value = ''
29
+ executeQuery()
30
31
const queryDataFromTable = (data) => {
32
sqlQuery.value = `select * from ${data.label} limit 10`
33
executeQuery()
34
35
const queryTables = () => {
- sqlQuery.value = `show tables`
36
+ sqlQuery.value = ``
37
38
39
watch(kind, (k) => {
40
switch (k) {
41
case 'atest-store-orm':
- sqlQuery.value = ''
42
queryTip.value = 'Enter SQL query'
43
44
break;
45
case 'atest-store-etcd':
46
case 'atest-store-redis':
47
queryTip.value = 'Enter key'
48
49
0 commit comments