File tree Expand file tree Collapse file tree
vscode-tests/cli-integration Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,11 +79,11 @@ export interface WholeFileLocation {
7979
8080export type ResolvableLocationValue = WholeFileLocation | LineColumnLocation ;
8181
82- export type UrlValue = ResolvableLocationValue | string ;
82+ export type UrlValue = ResolvableLocationValue | string ;
8383
84- export type ColumnValue = EntityValue | number | string | boolean ;
84+ export type CellValue = EntityValue | number | string | boolean ;
8585
86- export type ResultRow = ColumnValue [ ] ;
86+ export type ResultRow = CellValue [ ] ;
8787
8888export interface RawResultSet {
8989 readonly schema : ResultSetSchema ;
@@ -104,6 +104,6 @@ export function transformBqrsResultSet(
104104}
105105
106106export interface DecodedBqrsChunk {
107- tuples : ColumnValue [ ] [ ] ;
107+ tuples : CellValue [ ] [ ] ;
108108 next ?: number ;
109109}
Original file line number Diff line number Diff line change 11import * as React from 'react' ;
22
33import { renderLocation } from './result-table-utils' ;
4- import { ColumnValue } from '../pure/bqrs-cli-types' ;
4+ import { CellValue } from '../pure/bqrs-cli-types' ;
55
66interface Props {
7- value : ColumnValue ;
7+ value : CellValue ;
88 databaseUri : string ;
99}
1010
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { CancellationTokenSource } from 'vscode-jsonrpc';
88import * as messages from '../../pure/messages' ;
99import * as qsClient from '../../queryserver-client' ;
1010import * as cli from '../../cli' ;
11- import { ColumnValue } from '../../pure/bqrs-cli-types' ;
11+ import { CellValue } from '../../pure/bqrs-cli-types' ;
1212import { extensions } from 'vscode' ;
1313import { CodeQLExtensionInterface } from '../../extension' ;
1414import { fail } from 'assert' ;
@@ -53,7 +53,7 @@ class Checkpoint<T> {
5353}
5454
5555type ResultSets = {
56- [ name : string ] : ColumnValue [ ] [ ] ;
56+ [ name : string ] : CellValue [ ] [ ] ;
5757}
5858
5959type QueryTestCase = {
You can’t perform that action at this time.
0 commit comments