Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Tencent/APIJSON
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: jettisonJava/APIJSON_ORM
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 0 files changed
  • 1 contributor

Commits on Apr 1, 2024

  1. 扩展PUT combine,同一个key在筛选/数据体中可同时存在,两者非互斥逻辑

    不限制combine内的key只能作为条件,可使用table:{"a":"1","@combine":"a:a=3331"}的方式对a=3331的数据修改为a=1。同时兼容旧的combine格式
    2种方式
    1.(原有的方式)根据条件combine拼接数据体生成筛选条件,修数据:update Table set b='2' where a='2'
    {"Table":{"a":"2","b":"2","@combine":"a"}}
    2.(新增)根据条件combine+数据生成筛选条件,修数据:update Table set a='2',b='2' where a='111'
    {"Table":{"a":"2","b":"2","@combine":"a:a=111"}}
    jettisonJava committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    234ae68 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a2cf33 View commit details
    Browse the repository at this point in the history
  3. Update AbstractSQLConfig.java

    回退代码格式
    jettisonJava authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    04e6e4d View commit details
    Browse the repository at this point in the history
Loading