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: andialbrecht/sqlparse
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: erlichmen/sqlparse
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.
  • 5 commits
  • 13 files changed
  • 1 contributor

Commits on Mar 20, 2013

  1. 1. Better handling of minus unary -16-a a-b

    2. Better handling of mulitple operator +-
    3. Better handling of comparisonoperator
    4. debug messages
    erlichmen committed Mar 20, 2013
    Configuration menu
    Copy the full SHA
    c7b0942 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2013

  1. fix minus when is unary in identifier

    Select a Where -beauty-16=levels =>
    
    {'Statement': [<DML 'Select' at 0x2514048>,
                   {'Identifier': [<Name 'a' at 0x2514278>]},
                   {'Where': [<Keyword 'Where' at 0x2514368>,
                              {'Comparison': [{'Identifier': [<Operator '-' at 0x2514688>,
                                                              <Name 'beauty' at 0x2514778>,
                                                              <Operator '-' at 0x2514f48>,
                                                              <Integer '16' at 0x2514e58>]},
                                              <Comparison '=' at 0x2514ea8>,
                                              {'Identifier': [<Name 'levels' at 0x2514ef8>]}]}]}]}
    erlichmen committed Mar 21, 2013
    Configuration menu
    Copy the full SHA
    21b3da7 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2013

  1. Better grouping for order by

    1. Add OrderBy primitive
    2. Group the ASC and DESC under the identifier
    erlichmen committed Apr 11, 2013
    Configuration menu
    Copy the full SHA
    25ce6be View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2013

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

Commits on May 6, 2013

  1. Bug fix in OrderBy parsing

    Add clouse to from, limit and having
    erlichmen committed May 6, 2013
    Configuration menu
    Copy the full SHA
    4d267f5 View commit details
    Browse the repository at this point in the history
Loading