@dbml/core 6.2.0 → 6.3.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -160,13 +160,13 @@ For more detailed documentation on each SQL parser, see the individual parser RE
160
160
  | Feature | PostgreSQL | MySQL | MSSQL | Oracle | Snowflake |
161
161
  |---------|------------|-------|-------|--------|-----------|
162
162
  | Basic `INSERT` ... VALUES | ✓ | ✓ | ✓ | ✓ | ✗ |
163
- | Multi-row `INSERT` | ✓ | ✓ | ✓ | | ✓ |
163
+ | Multi-row `INSERT` | ✓ | ✓ | ✓ | | ✓ |
164
164
  | `INSERT` ... SELECT | ✗ | ✗ | ✗ | ✗ | ✗ |
165
165
  | `INSERT` ... with returned rows (`RETURNING`, `OUTPUT`) | ◐ | — | ◐ | ◐ | — |
166
166
  | `INSERT` ... ON CONFLICT/DUPLICATE KEY | ◐ | ◐ | — | — | — |
167
167
 
168
168
  **Notes:**
169
- - **Oracle**: Uses `INSERT ALL` syntax for multi-row inserts (not supported)
169
+ - **Oracle**: Multi-row inserts use `INSERT ALL ... SELECT * FROM dual` syntax, which is fully supported.
170
170
 
171
171
  ---
172
172