Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import type { IDataObject, ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow';
|
|
|
|
import type { MysqlNodeCredentials } from '../helpers/interfaces';
|
|
import { createPool } from '../transport';
|
|
|
|
export async function searchTables(this: ILoadOptionsFunctions): Promise<INodeListSearchResult> {
|
|
const credentials = await this.getCredentials<MysqlNodeCredentials>('mySql');
|
|
|
|
const nodeOptions = this.getNodeParameter('options', 0) as IDataObject;
|
|
|
|
const pool = await createPool.call(this, credentials, nodeOptions);
|
|
|
|
try {
|
|
const connection = await pool.getConnection();
|
|
|
|
const query = 'SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = ?';
|
|
const values = [credentials.database];
|
|
|
|
const formatedQuery = connection.format(query, values);
|
|
|
|
const response = (await connection.query(formatedQuery))[0];
|
|
|
|
connection.release();
|
|
|
|
const results = (response as IDataObject[]).map((table) => ({
|
|
name: (table.table_name as string) || (table.TABLE_NAME as string),
|
|
value: (table.table_name as string) || (table.TABLE_NAME as string),
|
|
}));
|
|
|
|
return { results };
|
|
} finally {
|
|
await pool.end();
|
|
}
|
|
}
|