Skip to content

Commit c82ae7b

Browse files
committed
Change type format displayed
Signed-off-by: worksofliam <[email protected]>
1 parent d5ab8a9 commit c82ae7b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/views/results/html.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,13 +449,12 @@ export function generateScroller(basicSelect: string, isCL: boolean, withCancel?
449449
case 'NCLOB':
450450
case 'FLOAT':
451451
case 'DECFLOAT':
452-
case 'TIMESTAMP':
453452
case 'DATALINK':
454-
cell.title = column.type + ' (' + column.precision + ')';
453+
cell.title = column.type + '(' + column.precision + ')';
455454
break;
456455
case 'DECIMAL':
457456
case 'NUMERIC':
458-
cell.title = column.type + ' (' + column.precision + ',' + column.scale + ')';
457+
cell.title = column.type + '(' + column.precision + ', ' + column.scale + ')';
459458
break;
460459
default:
461460
cell.title = column.type;

0 commit comments

Comments
 (0)