Skip to content

Releases: zbrookle/sql_to_ibis

IN operator bug fix

Choose a tag to compare

@zbrookle zbrookle released this 09 May 19:16
5d29ff9

Fix to the in operator not allowing more than two entries

New features

Choose a tag to compare

@zbrookle zbrookle released this 18 Apr 17:35
67fc7cd
  • Add support for count distinct
  • Add support for coalesce
  • Add support for multi table joins

Add Support for joins with overlapping columns

Choose a tag to compare

@zbrookle zbrookle released this 02 Mar 19:28
4fa3adb

This release adds support for joining on tables that have some/all of the same column names

ENH: Double quote support

Choose a tag to compare

@zbrookle zbrookle released this 09 Dec 16:48
b025fc4
  • Adds support for spaces in column names using double quotes

Ibis update and minor bug fixes

Choose a tag to compare

@zbrookle zbrookle released this 30 Nov 21:25
6b8e7b7
  • Now uses ibis 1.4
  • Added Python3.8 to CI
  • Checking for empty values is now supported

Fix setup.py readme type

Choose a tag to compare

@zbrookle zbrookle released this 10 Sep 17:36
14dba0f
Merge pull request #45 from zbrookle/fix_pypi_readme

Fix pypi readme

Hopefully last documentation release

Choose a tag to compare

@zbrookle zbrookle released this 10 Sep 17:29
34dfd8c

More documentation fixes on PyPi

Minor documentation update

Choose a tag to compare

@zbrookle zbrookle released this 10 Sep 16:44
5c9faa7

Updates to PyPi documentation

Major bug fix

Choose a tag to compare

@zbrookle zbrookle released this 10 Sep 16:11
56bbc13

Fixes bug in certain backends where columns couldn't be used in where clause unless also selected.

For example,

SELECT A,B FROM demo_df WHERE B > 4 LIMIT 1

would throw an error with the pandas backend.

New features and bug fixes

Choose a tag to compare

@zbrookle zbrookle released this 29 Aug 22:29
7e5ea2d

Changes:

  • Data classes are now used internally so Python 3.6 support is dropped
  • Window functions are now supported (see readme for syntax)
  • Issue with joining based on multiple columns is fixed