mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 19:26:00 +00:00
#175 try to fix postgres analyser
This commit is contained in:
@@ -127,6 +127,7 @@ class Analyser extends DatabaseAnalyser {
|
|||||||
idx.indkey
|
idx.indkey
|
||||||
.split(' ')
|
.split(' ')
|
||||||
.map(colid => indexcols.rows.find(col => col.oid == idx.oid && col.attnum == colid))
|
.map(colid => indexcols.rows.find(col => col.oid == idx.oid && col.attnum == colid))
|
||||||
|
.filter(col => col != null)
|
||||||
.map(col => ({
|
.map(col => ({
|
||||||
columnName: col.column_name,
|
columnName: col.column_name,
|
||||||
}))
|
}))
|
||||||
@@ -145,6 +146,7 @@ class Analyser extends DatabaseAnalyser {
|
|||||||
idx.indkey
|
idx.indkey
|
||||||
.split(' ')
|
.split(' ')
|
||||||
.map(colid => indexcols.rows.find(col => col.oid == idx.oid && col.attnum == colid))
|
.map(colid => indexcols.rows.find(col => col.oid == idx.oid && col.attnum == colid))
|
||||||
|
.filter(col => col != null)
|
||||||
.map(col => ({
|
.map(col => ({
|
||||||
columnName: col.column_name,
|
columnName: col.column_name,
|
||||||
}))
|
}))
|
||||||
|
|||||||
Reference in New Issue
Block a user