Skip to content

Andor

Compare
Choose a tag to compare
@seanharr11 seanharr11 released this 05 Aug 01:18
· 37 commits to master since this release

New Features:

  • Auto-determination of VARCHAR(n) column size. Size of VARCHAR(n) fields are auto-determined based on the # of chars in the largest string in the column, which is rounded up to the nearest power of 2. (i.e. 21 becomes 32).

Bug Fixes:

  • Added more thorough UTF-8 support. Previous releases broke when unicode strings were decoded as if they were byte-strings.
  • Fixed bug which threw an exception when source is PostgreSQL, and table is capitalized.

engine.execute(SELECT COUNT(*) FROM Capitalizedtable) replaced with
T_with_capitalized_name..count().fetchone() for cross-db support

Other Changes:

  • Created HISTORY.rst