Skip to content

Commit

Permalink
feat(MySQL): improved schema detection for queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Jul 14, 2021
1 parent 0105733 commit 5bb4e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/libs/clients/MySQLClient.js
Expand Up @@ -1419,7 +1419,7 @@ export class MySQLClient extends AntaresCore {
name: field.orgName,
alias: field.name,
orgName: field.orgName,
schema: field.schema || args.schema,
schema: args.schema || field.schema,
table: field.table,
tableAlias: field.table,
orgTable: field.orgTable,
Expand Down

0 comments on commit 5bb4e49

Please sign in to comment.