Commits on Mar 26, 2019

  1. Update README reference to MapD to say OmniSci

    Update MapD references to OmniSci
    Author: Randy Zwitch <rzwitch@gmail.com>
    
    Closes #1749 from randyzwitch/patch-1 and squashes the following commits:
    
    9a88a7e [Randy Zwitch] Update README.md
    randyzwitch authored and cpcloud committed Mar 26, 2019
    Configuration menu
    Copy the full SHA
    1b40fea View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2019

  1. CI: Re-enabled CI for building step.

    Resolves #1700
    Author: Ivan Ogasawara <ivan.ogasawara@gmail.com>
    
    Closes #1710 from xmnlab/re-enable-conda-forge-ci-build-step and squashes the following commits:
    
    d4dd55d [Ivan Ogasawara] Re-enabled ci for building step.
    xmnlab authored and cpcloud committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    0965ec4 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2019

  1. BUG: Add Python 3.5 testing back to CI

    Closes #1750
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1751 from cpcloud/fix-py35 and squashes the following commits:
    
    d9cc997 [Phillip Cloud] Use an entry point for docs as well
    a6d7649 [Phillip Cloud] BUG: Add Python 3.5 testing back to CI
    cpcloud authored Apr 3, 2019
    Configuration menu
    Copy the full SHA
    b00caa2 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2019

  1. BUG: PostgreSQL interval type not recognized

    Closes #1661
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1754 from cpcloud/gh-1661 and squashes the following commits:
    
    a16d51a [Phillip Cloud] BUG: PostgreSQL interval type not recognized
    cpcloud authored Apr 4, 2019
    Configuration menu
    Copy the full SHA
    65bdb04 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2019

  1. FEAT: [mapd] Added float32 and geospatial types for create table from…

    … schema
    
    resolves #1753
    Author: Ivan Ogasawara <ivan.ogasawara@gmail.com>
    
    Closes #1755 from xmnlab/add-float32-sql-type-names and squashes the following commits:
    
    cea890e [Ivan Ogasawara] Applied suggestion from review
    28bf106 [Ivan Ogasawara] Applied suggestion from review
    435b525 [Ivan Ogasawara] Applied changes from review.
    5316f93 [Ivan Ogasawara] [mapd] Added float32 and geospatial types for create table from schema
    xmnlab authored and cpcloud committed Apr 5, 2019
    Configuration menu
    Copy the full SHA
    80db366 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2019

  1. ENH: Add isort pre-commit hooks

    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1759 from cpcloud/isort-pre-commit and squashes the following commits:
    
    acd6ea1 [Phillip Cloud] Pass CIRCLECI envar through
    388f450 [Phillip Cloud] Add isort pre-commit hooks
    cpcloud authored Apr 14, 2019
    Configuration menu
    Copy the full SHA
    8dd12de View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2019

  1. ENH: is_computable_arg dispatcher

    Closes #1743
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1761 from cpcloud/is-computable-input and squashes the following commits:
    
    9fc372d [Phillip Cloud] ENH: is_computable_arg dispatcher
    cpcloud authored Apr 16, 2019
    Configuration menu
    Copy the full SHA
    263ff27 View commit details
    Browse the repository at this point in the history
  2. Added StringToTimestamp as unsupported

    Resolves #1638
    Author: Ivan Ogasawara <ivan.ogasawara@gmail.com>
    
    Closes #1760 from xmnlab/to_timestamp_unsupported and squashes the following commits:
    
    7125e4e [Ivan Ogasawara] Added StringToTimestamp as unsupported
    xmnlab authored and cpcloud committed Apr 16, 2019
    Configuration menu
    Copy the full SHA
    1e20eb9 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2019

  1. CLN/WRN: Remove warnings from Python 3.7 and clean up some docstrings

    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1763 from cpcloud/cleanup and squashes the following commits:
    
    506787a [Phillip Cloud] Always a tuple
    d7bc35a [Phillip Cloud] Remove warnings from Python 3.7 and clean up some modules
    cpcloud authored Apr 21, 2019
    Configuration menu
    Copy the full SHA
    64e291f View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2019

  1. BUG: Fix preceding and following with None

    Before this PR, calls like  ```python ibis.window(preceding=(None, 1))
    # ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING
    ibis.window(following=(1, None))  # ROWS BETWEEN 1 FOLLOWING AND
    UNBOUNDED FOLLOWING ```  would fail because of incorrect usage of
    comparison operators, comparing ``None`` to another value that is not
    ``None`` raising a ``TypeError``.  This PR addresses the problem.
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1765 from cpcloud/fix-prec-foll-unbounded and squashes the following commits:
    
    0c53272 [Phillip Cloud] Disable mysql for now
    a9ce03f [Phillip Cloud] BUG: Fix preceding and following with None
    cpcloud authored Apr 22, 2019
    Configuration menu
    Copy the full SHA
    1e39a5f View commit details
    Browse the repository at this point in the history

Commits on May 11, 2019

  1. BUG/CI: Constrain PyMapD version to get passing builds

    cc @xmnlab
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1776 from cpcloud/fix-mapd and squashes the following commits:
    
    476db48 [Phillip Cloud] BUG/CI: Fix CI
    cpcloud authored May 11, 2019
    Configuration menu
    Copy the full SHA
    b9c132f View commit details
    Browse the repository at this point in the history
  2. Fixes DOC: conda create command listed no longer works

    Fixes error in documentation, issue #1774    The following command in
    `developer.rst` no longer works for two reasons. One, the YAML file no
    longer exists. Two, creating a conda environment from YAML needs to be
    done with `conda env create` instead of `conda create`.    Failing
    instruction:  `conda create -n ibis36 -c conda-forge
    --file=ci/requirements-dev.yml python=3.6`    Should now be:  `conda
    env create -n ibis36 -f ci/requirements-3.6-dev.yml`
    Author: Scott Hajek <shajek@pivotal.io>
    
    Closes #1775 from scottcode/docs_developer and squashes the following commits:
    
    dbc353f [Scott Hajek] The following command in `developer.rst` no longer works for two reasons. One, the YAML file no longer exists. Two, creating a conda environment from YAML needs to be done with `conda env create` instead of `conda create`.
    scottcode authored and cpcloud committed May 11, 2019
    Configuration menu
    Copy the full SHA
    2695e84 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2019

  1. ENH/CLN: Enable window function tests where possible

    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1777 from cpcloud/fix-window-test and squashes the following commits:
    
    50f3214 [Phillip Cloud] Zero based offset for ranking
    5b28f09 [Phillip Cloud] Move line to avoid unnecessary pandas calls
    0358c71 [Phillip Cloud] Rank by id
    24e18bd [Phillip Cloud] Rank should always return an integer
    25190a7 [Phillip Cloud] Fix the impala compiler to not generate frame clauses for certain operations
    130e2bb [Phillip Cloud] ENH/CLN: Enable window function tests where possible
    cpcloud authored May 12, 2019
    Configuration menu
    Copy the full SHA
    cd33e18 View commit details
    Browse the repository at this point in the history
  2. Add marker for xfailing specific backends

    Fixes testing for row count
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1778 from cpcloud/more-window-functions and squashes the following commits:
    
    a984b57 [Phillip Cloud] Add marker for xfailing specific backends
    cpcloud authored May 12, 2019
    Configuration menu
    Copy the full SHA
    0af3f92 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2019

  1. ENH/CI: MapD/OmniSci Update ci to use newest omnisci docker

    Author: Ivan Ogasawara <ivan.ogasawara@gmail.com>
    
    Closes #1781 from xmnlab/update-omnisci-ci and squashes the following commits:
    
    7c11720 [Ivan Ogasawara] Fixed test variables
    aefe9a1 [Ivan Ogasawara] Update ci to use newest omnisci docker
    xmnlab authored and cpcloud committed May 13, 2019
    Configuration menu
    Copy the full SHA
    f48586b View commit details
    Browse the repository at this point in the history

Commits on May 15, 2019

  1. BUG: NullIf should enforce that its arguments are castable to a commo…

    …n type
    
    Closes #1782
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1784 from cpcloud/nullif-schema-bug and squashes the following commits:
    
    34010d5 [Phillip Cloud] Fix impala tests
    469a2a9 [Phillip Cloud] BUG: NullIf should enforce that its arguments are castable to a common type
    cpcloud authored May 15, 2019
    Configuration menu
    Copy the full SHA
    4a4cc8f View commit details
    Browse the repository at this point in the history
  2. Clean up most xpassing tests

    This PR makes all `XPASS`ing tests pass in the typical way, by
    customizing the  behavior of two fixtures `xfail_backends` (all listed
    backends are permitted to  fail) and `xpass_backends` (all backends
    *not* listed are permitted to fail)    I've also added `xfail_strict =
    true` to `setup.cfg` to make sure that we don't introduce any
    `XPASS`ing tests in the future. Of course, that's always up for debate
    in the future but I think there's probably a way to customize `xfail`s
    similar to what I've done here such that we don't need to have any
    future `XPASS`es.
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1779 from cpcloud/cleanup-xpass-tests and squashes the following commits:
    
    5290185 [Phillip Cloud] Clean up most xpassing tests
    cpcloud authored May 15, 2019
    Configuration menu
    Copy the full SHA
    f9ed5ff View commit details
    Browse the repository at this point in the history

Commits on May 16, 2019

  1. ENH: Rewrite pandas execution to use topological sort instead of recu…

    …rsion
    
    cc @toryhaavik for review
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1758 from cpcloud/pandas-toposort and squashes the following commits:
    
    a3292ea [Phillip Cloud] Finish out comment
    1508a3b [Phillip Cloud] Remove stale comment
    4363b1a [Phillip Cloud] Remove unnecessary parens
    59fdde8 [Phillip Cloud] Ignore any and all rewrites in the postgres backend
    2ff7432 [Phillip Cloud] Impala does not have an logical reduction API
    686d1ed [Phillip Cloud] Use native bigquery logical reductions intead of bogus rewrite hacks
    bffcbbf [Phillip Cloud] Remove weird decorator hacks
    b336901 [Phillip Cloud] Handle the case where our computed column name is the same as one in our table
    6e4dce6 [Phillip Cloud] Special case cumulative operations
    f80c853 [Phillip Cloud] Use any and all instead of cumany cumall
    d083c72 [Phillip Cloud] Handle cases with any and all where they do not have rolling or expanding dispatches
    7d87c67 [Phillip Cloud] Handle any and all as reductions
    616b038 [Phillip Cloud] Use topological sort in the pandas backend
    cpcloud authored May 16, 2019
    Configuration menu
    Copy the full SHA
    063035c View commit details
    Browse the repository at this point in the history
  2. First version of omnisci window op

    This PR adds window operations for OmniSci/MapD backend:    - [x] lag
    - [x] firstvalue  - [x] lead  - [x] lastvalue  - [x] mean  - [x] min
    - [x] max  - [x] count  - [x] sum
    Author: Ivan Ogasawara <ivan.ogasawara@gmail.com>
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1771 from xmnlab/add-mapd-window-support and squashes the following commits:
    
    ea8cefc [Ivan Ogasawara] Added win all and win any as unsupported
    4377c61 [Ivan Ogasawara] Disable MapD for win all and any tests
    824ed63 [Phillip Cloud] Merge branch 'master' into add-mapd-window-support
    ae38fa0 [Ivan Ogasawara] Added some xfails
    997d7d1 [Ivan Ogasawara] First version of omnisci window op; improving window ops tests
    xmnlab authored and cpcloud committed May 16, 2019
    Configuration menu
    Copy the full SHA
    c2323b8 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2019

  1. Fixes outer_join generating LEFT join instead of full outer

    Fixes issue #1772    Making new pull request from new branch freshly
    rebased on upstream master. Supercedes pull request #1773.
    Author: Scott Hajek <shajek@pivotal.io>
    
    Closes #1788 from scottcode/fix_full_outer_join2 and squashes the following commits:
    
    4e2fdc4 [Scott Hajek] Shorten long source lines that were failing linter
    3a6830d [Scott Hajek] Test for Alchemy-based full outer join
    6c91ee9 [Scott Hajek] Fixes bug: `outer_join` generates LEFT join instead of full outer
    scottcode authored and cpcloud committed May 17, 2019
    Configuration menu
    Copy the full SHA
    f972a9b View commit details
    Browse the repository at this point in the history

Commits on May 19, 2019

  1. BUG/COMPAT: Fix compatibility and bugs associated with pandas toposor…

    …t reimplementation
    
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1789 from cpcloud/add-back-main-execute-dispatch and squashes the following commits:
    
    c8980d6 [Phillip Cloud] BUG/COMPAT: Fix compatibility and bugs associated with pandas toposort reimplementation
    cpcloud authored May 19, 2019
    Configuration menu
    Copy the full SHA
    895bfa9 View commit details
    Browse the repository at this point in the history
  2. ENH: Add missing date operations and struct field operation for the p…

    …andas backend
    
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1790 from cpcloud/missing-pandas-operations and squashes the following commits:
    
    d86eb51 [Phillip Cloud] Add date operations for pandas
    12610d4 [Phillip Cloud] Add StructField implementation for pandas
    cpcloud authored May 19, 2019
    Configuration menu
    Copy the full SHA
    652c60c View commit details
    Browse the repository at this point in the history

Commits on May 20, 2019

  1. ENH: Allow strings for types in pandas UDFs

    Closes #1785
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1791 from cpcloud/udf-type-strings and squashes the following commits:
    
    629cdf7 [Phillip Cloud] ENH: Allow strings for types in pandas UDFs
    cpcloud authored May 20, 2019
    Configuration menu
    Copy the full SHA
    04b9544 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2019

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

Commits on May 24, 2019

  1. Add pep8speaks integration

    Closes #1793
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1795 from cpcloud/pep8speaks and squashes the following commits:
    
    4f81a3f [Phillip Cloud] Do not show anything when no errors
    7f01796 [Phillip Cloud] Add .pep8speaks.yml configuration file
    cpcloud authored May 24, 2019
    Configuration menu
    Copy the full SHA
    0fa31dd View commit details
    Browse the repository at this point in the history
  2. Add min periods parameter to Window

    We want to set min_periods=1 on rolling windows to avoid defaulting to
    min_periods equal to the window size n, thereby eliminating the
    necessity of NaNs in the first n-1 rows for trailing window
    operations.
    Author: Emily Reff <emily.reff@twosigma.com>
    
    Closes #1792 from emilyreff7/rolling and squashes the following commits:
    
    267a8e2 [Emily Reff] Merge branch 'rolling' of https://github.com/emilyreff7/ibis into rolling
    8efca1e [Emily Reff] Merge branch 'rolling' of https://github.com/emilyreff7/ibis into rolling
    20f75d3 [Emily Reff] Merge branch 'rolling' of https://github.com/emilyreff7/ibis into rolling
    bb904ff [Emily Reff] adding min period parameter to Window constructor
    1def76f [Emily Reff] adding min period parameter to Window constructor
    2f124ee [Emily Reff] Merge branch 'master' of https://github.com/ibis-project/ibis into rolling
    76700d7 [Emily Reff] Added lol
    emilyreff7 authored and cpcloud committed May 24, 2019
    Configuration menu
    Copy the full SHA
    d619ca8 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2019

  1. BUG/CI/BLD: Fix Python 3.5 dependency versions

    @ian-r-rose Can you take a look at this and make sure that it matches
    our discussion re OmniSci on #1796?
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1798 from cpcloud/fix-py35-deps and squashes the following commits:
    
    2bace3f [Phillip Cloud] Add pydata-google-auth to pip deps in conda env requirements
    4216d7a [Phillip Cloud] Fix Python 3.5 dependency versions
    cpcloud authored May 27, 2019
    Configuration menu
    Copy the full SHA
    3c7e244 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2019

  1. Mapd session

    `pymapd` recently gained the ability to connect via a pre-
    authenticated session ID. It would be nice if the Ibis mapd connector
    could do that as well. cc @xmnlab
    Author: Ian Rose <ian.r.rose@gmail.com>
    
    Closes #1796 from ian-r-rose/mapd-session-id and squashes the following commits:
    
    05307e8 [Ian Rose] Use exception subclass for pymapd version error.
    cf2dd8c [Ian Rose] Use different session -- reconnecting seems to invalidate old pymapd session.
    dc80ca5 [Ian Rose] Do some version checking in the MapD client.
    7f27d47 [Ian Rose] More snake_case fixes.
    c60e105 [Ian Rose] Skip session id test on python 3.5, since we can't install pymapd 0.12 there.
    403cbef [Ian Rose] Use snake_case for session_id, simplify test assertion.
    7e86e04 [Ian Rose] Fix arg name.
    9715446 [Ian Rose] Add test for connecting via sessionid.
    926f587 [Ian Rose] Allow session id to be passed into ibis mapd connection.
    ian-r-rose authored and cpcloud committed May 29, 2019
    Configuration menu
    Copy the full SHA
    f2df192 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2019

  1. BUG: Allow projections from joins to attempt fusion

    Closes #1783  cc @toryhaavik
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1797 from cpcloud/gh-1783-fix-select-on-join and squashes the following commits:
    
    08dfac2 [Phillip Cloud] BUG: Allow projections from joins to attempt fusion
    cpcloud authored May 30, 2019
    Configuration menu
    Copy the full SHA
    f6d8c6a View commit details
    Browse the repository at this point in the history

Commits on May 31, 2019

  1. ENH: Call to_interval when casting integers to intervals

    Closes #1766
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1800 from cpcloud/cast-to-interval and squashes the following commits:
    
    389c140 [Phillip Cloud] ENH: Use to_interval for casting integers to intervals
    cpcloud authored May 31, 2019
    Configuration menu
    Copy the full SHA
    d9cca91 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2019

  1. BUG/DOC/CI: Pin sphinx version to 2.0.1

    Closes #1810
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1811 from cpcloud/pin-sphinx-version and squashes the following commits:
    
    444358d [Phillip Cloud] BUG/DOC/CI: Pin sphinx version to 2.0.1
    cpcloud authored Jun 6, 2019
    Configuration menu
    Copy the full SHA
    74548ff View commit details
    Browse the repository at this point in the history
  2. DOC: Fix design and developer docs

    Closes #1801 Closes #1802 Closes #1803
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1805 from cpcloud/doc-issues-1.1.0 and squashes the following commits:
    
    f3e9357 [Phillip Cloud] DOC: Fix design and developer docs
    cpcloud authored Jun 6, 2019
    Configuration menu
    Copy the full SHA
    09e99f5 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2019

  1. BUG: Chained mutate operations give wrong results

    Closes #1799    This was kind of a nasty one. The query flattening
    optimization was far too  aggressive.    @toryhaavik Do you feel
    comfortable reviewing this?    One downside to this fix is that
    simple, single expression columns are not flattened into their
    subquery anymore. This will be addressed in the future after the
    compiler is refactored.
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1812 from cpcloud/mutate-chain-bug and squashes the following commits:
    
    31dedd6 [Phillip Cloud] BUG: Chained mutate operations give wrong results
    cpcloud authored Jun 7, 2019
    Configuration menu
    Copy the full SHA
    94bfefd View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2019

  1. consolidate trailing window functions

    This constitutes one step of several required to extend Ibis trailing
    window functionality, where trailing_window will become more
    extensible to support various types of 'preceding' parameters. In this
    first step, trailing_window is able to handle not only integers but
    ibis intervals as well, using the type of the 'preceding' parameter to
    determine the 'how' of the window.
    Author: Emily Reff <emily.reff@twosigma.com>
    
    Closes #1809 from emilyreff7/window and squashes the following commits:
    
    b09bf4f [Emily Reff] validate preceding type is supported
    6351c94 [Emily Reff] add unit test for util fn
    fe24c33 [Emily Reff] Merge branch 'master' of https://github.com/ibis-project/ibis into window
    12ddb39 [Emily Reff] consolidate trailing window functions
    emilyreff7 authored and cpcloud committed Jun 8, 2019
    Configuration menu
    Copy the full SHA
    e634fa3 View commit details
    Browse the repository at this point in the history
  2. PKG: Add pre-commit, black and isort to setup.py

    This PR moves some packages that were previously being installed with
    pip to be  installed by conda.    It also adds pre-commit, black and
    isort to `setup.py`.    Closes #1814
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1816 from cpcloud/update-envs and squashes the following commits:
    
    f95ca9f [Phillip Cloud] PKG: Add pre-commit, black and isort to setup.py
    cpcloud authored Jun 8, 2019
    Configuration menu
    Copy the full SHA
    24e3616 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2019

  1. BUG: Do not give a frame clause where not necessary in window functions

    Closes #1757
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1817 from cpcloud/remove-frame-clause-from-alchemy and squashes the following commits:
    
    1fded47 [Phillip Cloud] Remove custom Over implementation and require sqlalchemy>=1.1
    5e642bc [Phillip Cloud] Proper links to pypi and codecov
    28767bb [Phillip Cloud] BUG: Do not give a frame clause where not necessary in window functions
    cpcloud authored Jun 9, 2019
    Configuration menu
    Copy the full SHA
    40a799d View commit details
    Browse the repository at this point in the history
  2. ENH/TST: Remove decorator hacks and add custom markers

    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1820 from cpcloud/remove-test-fixture-hacks and squashes the following commits:
    
    0157032 [Phillip Cloud] ENH/TST: Remove decorator hacks and add custom markers
    cpcloud authored Jun 9, 2019
    Configuration menu
    Copy the full SHA
    c8811ab View commit details
    Browse the repository at this point in the history
  3. BUG: Fix group_concat test and implementations

    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1819 from cpcloud/group-concat and squashes the following commits:
    
    9b3cbae [Phillip Cloud] BUG: Fix group_concat test and implementations
    cpcloud authored Jun 9, 2019
    Configuration menu
    Copy the full SHA
    a3c3237 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2019

  1. BUG: Fix failing strftime tests on Python 3.7

    Also address the warnings about unknown marks coming from newer
    versions of pytest  Closes #1699 Closes #1808
    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1818 from cpcloud/fix-pg-strftime and squashes the following commits:
    
    562e623 [Phillip Cloud] BUG: Fix failing strftime tests on Python 3.7
    cpcloud authored Jun 10, 2019
    2 Configuration menu
    Copy the full SHA
    ec138f0 View commit details
    Browse the repository at this point in the history
  2. RLS: Release 1.1.0

    Author: Phillip Cloud <cpcloud@gmail.com>
    
    Closes #1822 from cpcloud/release-1.1.0 and squashes the following commits:
    
    beb599d [Phillip Cloud] RLS: Release 1.1.0
    cpcloud authored Jun 10, 2019
    Configuration menu
    Copy the full SHA
    8500e39 View commit details
    Browse the repository at this point in the history
  3. DOC: Fix release notes

    cpcloud committed Jun 10, 2019
    Configuration menu
    Copy the full SHA
    a3e8d4c View commit details
    Browse the repository at this point in the history
  4. RLS/DOC: Release 1.1.0

    cpcloud committed Jun 10, 2019
    Configuration menu
    Copy the full SHA
    0a1a729 View commit details
    Browse the repository at this point in the history