vogievetsky commented on a change in pull request #8251: Web-Console: Add show 
and copy actions to column tree 
URL: https://github.com/apache/incubator-druid/pull/8251#discussion_r311313642
 
 

 ##########
 File path: web-console/src/views/query-view/query-output/query-output.tsx
 ##########
 @@ -16,16 +16,28 @@
  * limitations under the License.
  */
 
+import { Intent, Popover } from '@blueprintjs/core';
+import { IconNames } from '@blueprintjs/icons';
+import copy = require('copy-to-clipboard');
 import { HeaderRows } from 'druid-query-toolkit';
+import {
+  basicIdentifierEscape,
+  basicLiteralEscape,
+} from 'druid-query-toolkit/build/ast/sql-query/helpers';
 import React from 'react';
 import ReactTable from 'react-table';
 
-import { TableCell } from '../../../components';
+import { AppToaster } from '../../../singletons/toaster';
+import { BasicAction, basicActionsToMenu } from '../../../utils/basic-action';
 
 import './query-output.scss';
 
 export interface QueryOutputProps {
+  aggregateColumns?: string[];
+  disabled: boolean;
   loading: boolean;
+  handleSQLAction: (row: string, header: string, action: string, direction?: 
boolean) => void;
 
 Review comment:
   Can we capitalize this as `Sql` please

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to