@petradb/engine 1.0.1 → 1.1.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 +1 -0
- package/main.js +35386 -35057
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,6 +99,7 @@ UPDATE ... SET ... WHERE
|
|
|
99
99
|
UPDATE ... SET ... FROM ... -- bulk update with join semantics
|
|
100
100
|
DELETE FROM ... WHERE
|
|
101
101
|
TRUNCATE TABLE -- fast table reset, resets serial sequences
|
|
102
|
+
INSERT ... ON CONFLICT (col) DO UPDATE SET ... -- upsert with EXCLUDED pseudo-table
|
|
102
103
|
```
|
|
103
104
|
|
|
104
105
|
### Queries
|