Skip to content

Commit

Permalink
show index information in openapi specs
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Aaqil <[email protected]>
  • Loading branch information
aaqilniz committed Oct 14, 2024
1 parent d04234e commit 423bc7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/discovery.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function mixinDiscovery(MySQL, mysql) {
${table ? ' AND c.table_name = ' + mysql.escape(table) : ''}
`,
'c.table_name, c.ordinal_position',
{}
{},
);
} else {
sql = paginateSQL(
Expand Down Expand Up @@ -236,7 +236,7 @@ function mixinDiscovery(MySQL, mysql) {
${table ? ' AND columns.table_name = ' + mysql.escape(table) : ''}
`,
'columns.table_name, columns.ordinal_position',
{}
{},
);
}
if (options.orderBy) {
Expand Down

0 comments on commit 423bc7f

Please sign in to comment.