raw data display #991 #962

This commit is contained in:
SPRINX0\prochazka
2025-01-09 16:49:26 +01:00
parent 5208a912a2
commit 183438d2b5
7 changed files with 16 additions and 5 deletions

View File

@@ -37,7 +37,8 @@ export class TableGridDisplay extends GridDisplay {
public displayOptions: any,
serverVersion,
public getDictionaryDescription: DictionaryDescriptionFunc = null,
isReadOnly = false
isReadOnly = false,
public isRawMode = false
) {
super(config, setConfig, cache, setCache, driver, dbinfo, serverVersion);
@@ -172,6 +173,9 @@ export class TableGridDisplay extends GridDisplay {
}
addHintsToSelect(select: Select): boolean {
if (this.isRawMode) {
return false;
}
let res = false;
const groupColumns = this.groupColumns;
for (const column of this.hintBaseColumns || this.getGridColumns()) {