Skip to content

Commit

Permalink
🐛 Update string comparison in DDL
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Jun 25, 2022
1 parent 84c7818 commit 0a2eaf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/schema/ddl.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ class Firebird_DDL {
const fromIdentifier = from.replace(/[`"'[\]]/g, '');

args = args.map((item) => {
let split = item.trim().split(' ');
item = item.trim()
let split = item.split(' ');


const fromMatchCandidates = [
Expand Down

0 comments on commit 0a2eaf4

Please sign in to comment.