Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
Test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check License Header
uses: apache/[email protected]
3 changes: 2 additions & 1 deletion console/atest-ui/src/views/DataManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ const executeWithQuery = async (sql: string) => {
case 'atest-store-orm':
case 'atest-store-cassandra':
case 'atest-store-iotdb':
case 'atest-store-opengemini':
case 'atest-store-elasticsearch':
ormDataHandler(data)
success = true
Expand Down Expand Up @@ -225,7 +226,7 @@ const nextPage = () => {
<template>
<div>
<el-container style="height: calc(100vh - 50px);">
<el-aside v-if="kind === 'atest-store-orm' || kind === 'atest-store-iotdb' || kind === 'atest-store-cassandra' || kind === 'atest-store-elasticsearch'">
<el-aside v-if="kind === 'atest-store-orm' || kind === 'atest-store-iotdb' || kind === 'atest-store-cassandra' || kind === 'atest-store-elasticsearch' || kind === 'atest-store-opengemini'">
<el-scrollbar>
<el-select v-model="queryDataMeta.currentDatabase" placeholder="Select database"
@change="queryTables" filterable>
Expand Down
2 changes: 1 addition & 1 deletion console/atest-ui/src/views/__test__/store.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { SupportedExtension, SupportedExtensions } from "../store";
describe("SupportedExtensions", () => {
test('length check', () => {
const extensions = SupportedExtensions()
expect(extensions.length).toBe(9)
expect(extensions.length).toBe(10)
})

for (const extension of SupportedExtensions()) {
Expand Down
5 changes: 5 additions & 0 deletions console/atest-ui/src/views/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ const storeExtensions = [
name: 'atest-store-elasticsearch',
params: [],
link: 'https://github.com/LinuxSuRen/atest-ext-store-elasticsearch'
},
{
name: 'atest-store-opengemini',
params: [],
link: 'https://github.com/LinuxSuRen/atest-ext-store-opengemini'
}
] as Store[]

Expand Down
Loading