File tree Expand file tree Collapse file tree
autoadmin-ws-server/src/constants
backend/src/entities/agent/repository Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export const COMMAND_TYPE = {
1515 dataFromAgent : 'dataFromAgent' ,
1616 isView : 'isView' ,
1717 getRowsAsStream : 'getRowsAsStream' ,
18+ executeRawQuery : 'executeRawQuery' ,
1819} as const ;
1920
2021export type CommandType = ( typeof COMMAND_TYPE ) [ keyof typeof COMMAND_TYPE ] ;
Original file line number Diff line number Diff line change @@ -63,6 +63,12 @@ export const customAgentRepositoryExtension = {
6363 return 'IBMDB2-TEST-AGENT-TOKEN' ;
6464 case ConnectionTypeTestEnum . agent_mongodb :
6565 return 'MONGODB-TEST-AGENT-TOKEN' ;
66+ case ConnectionTypeTestEnum . agent_redis :
67+ return 'REDIS-TEST-AGENT-TOKEN' ;
68+ case ConnectionTypeTestEnum . agent_cassandra :
69+ return 'CASSANDRA-TEST-AGENT-TOKEN' ;
70+ case ConnectionTypeTestEnum . agent_clickhouse :
71+ return 'CLICKHOUSE-TEST-AGENT-TOKEN' ;
6672 default :
6773 throw new Error ( `Unsupported connection type for test agent token: ${ connectionType } ` ) ;
6874 }
You can’t perform that action at this time.
0 commit comments