-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pgsql ORM不支持save方法 #1767
pgsql ORM不支持save方法 #1767
Conversation
…in function dump only available in develop mode for package gview
Codecov Report
@@ Coverage Diff @@
## master #1767 +/- ##
==========================================
+ Coverage 71.25% 71.26% +0.01%
==========================================
Files 452 457 +5
Lines 43348 43479 +131
==========================================
+ Hits 30887 30987 +100
- Misses 10482 10507 +25
- Partials 1979 1985 +6
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
… batch insert statement for package gdb
Doesn't it seem to be supported now? |
以pgsql做数据库,save方法提示pgsql不支持save方法。
pgsql已经支持upsert操作:
INSERT INTO table_name(column_list)
VALUES(value_list)
ON CONFLICT target action;
pgsql是否可以加入对upsert语义的支持?