This commit is contained in:
Jan Prochazka 2024-09-19 13:43:55 +02:00
parent 8c3c32aeba
commit f39ec26c29

View File

@ -81,7 +81,7 @@ export function mountCodeCompletion({ conid, database, editor, getText }) {
const line = session.getLine(cursor.row).slice(0, cursor.column);
const dbinfo = await getDatabaseInfo({ conid, database });
const schemaList = await getSchemaList({ conid, database });
const connection = await getConnectionInfo(conid);
const connection = await getConnectionInfo({ conid });
const driver = findEngineDriver(connection, getExtensions());
const defaultSchema = findDefaultSchema(schemaList, driver.dialect);