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: JSQLParser/JSqlParser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: manticore
Choose a base ref
...
head repository: JSQLParser/JSqlParser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 23 files changed
  • 4 contributors

Commits on Mar 14, 2026

  1. Fix dollar-quoted CREATE FUNCTION statement splitting (#2410)

    * Fix dollar-quoted CREATE FUNCTION statement splitting
    
    * Fix exception
    dengliming authored Mar 14, 2026
    Configuration menu
    Copy the full SHA
    c5b85ab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5788ca0 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2026

  1. Configuration menu
    Copy the full SHA
    be39a92 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2026

  1. build: fix AssertJ version

    Signed-off-by: Andreas Reichel <[email protected]>
    Signed-off-by: manticore-projects <[email protected]>
    manticore-projects committed Mar 16, 2026
    Configuration menu
    Copy the full SHA
    c1d283a View commit details
    Browse the repository at this point in the history
  2. doc: performance update

    Signed-off-by: Andreas Reichel <[email protected]>
    Signed-off-by: manticore-projects <[email protected]>
    manticore-projects committed Mar 16, 2026
    Configuration menu
    Copy the full SHA
    0409f8b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bcdbd29 View commit details
    Browse the repository at this point in the history
  4. build: revert accidental merge

    Signed-off-by: Andreas Reichel <[email protected]>
    Signed-off-by: manticore-projects <[email protected]>
    manticore-projects committed Mar 16, 2026
    Configuration menu
    Copy the full SHA
    daea1f7 View commit details
    Browse the repository at this point in the history
  5. doc: fine tune sphinx config

    Signed-off-by: Andreas Reichel <[email protected]>
    Signed-off-by: manticore-projects <[email protected]>
    manticore-projects committed Mar 16, 2026
    Configuration menu
    Copy the full SHA
    2b2bf8e View commit details
    Browse the repository at this point in the history
  6. doc: fine tune sphinx config

    Signed-off-by: Andreas Reichel <[email protected]>
    Signed-off-by: manticore-projects <[email protected]>
    manticore-projects committed Mar 16, 2026
    Configuration menu
    Copy the full SHA
    bd1a146 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2026

  1. Add support MySQL SELECT INTO OUTFILE/DUMPFILE (#2418)

    * Add support MySQL SELECT INTO OUTFILE/DUMPFILE
    
    * fix
    dengliming authored Mar 22, 2026
    Configuration menu
    Copy the full SHA
    c0e1d05 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2026

  1. fix(parser): pass modifier to ExceptOp/MinusOp constructors (#2419) (#…

    …2420)
    
    * fix(parser): pass modifier to ExceptOp/MinusOp constructors and reset between iterations
    
    EXCEPT ALL/DISTINCT and MINUS ALL/DISTINCT modifiers were silently
    dropped during parsing because the grammar captured the modifier via
    SetOperationModifier() but constructed ExceptOp and MinusOp with
    their no-arg constructors (defaulting to empty string), unlike
    UnionOp and IntersectOp which correctly received the modifier.
    
    Additionally, the modifier variable was not reset between iterations
    of the set-operation loop, causing modifiers to leak from one
    operator to the next (e.g., UNION ALL ... EXCEPT would incorrectly
    make the EXCEPT inherit ALL).
    
    Fixes #2419
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
    
    * refactor: convert to parameterized tests, run spotlessApply
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
    
    ---------
    
    Co-authored-by: Claude Opus 4.6 (1M context) <[email protected]>
    queelius and claude authored Mar 25, 2026
    Configuration menu
    Copy the full SHA
    7fc300f View commit details
    Browse the repository at this point in the history
Loading