Commit f19c319
committed
refactor(dialects): consolidate identical Postgres/MySQL multi-row INSERT branches
The insert_sql function had byte-for-byte identical code blocks for
Postgres (lines 109-116) and MySQL (lines 117-124). Consolidated into
a single branch using 'dialect in (POSTGRES, MYSQL)' check, reducing
8 duplicated lines while preserving identical behavior.
All 167 tests pass.1 parent a4be4be commit f19c319
1 file changed
Lines changed: 2 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
| 109 | + | |
| 110 | + | |
119 | 111 | | |
120 | 112 | | |
121 | 113 | | |
| |||
0 commit comments