You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe this would actually be an issue with sqlalchemy, but I noticed that a warning is issued when one tries to reference a Postgres table with a column of interval data type (the warning says that the type isn't recognized).
create table films (
code char(5) constraint firstkey primary key,
title varchar(40) not null,
did integer not null,
date_prod date,
kind varchar(10),
len interval hour to minute
);
If we then try to refer to this table using ibis (after creating it in the public schema of a local database called postgres) we see that the len column has an unrecognized type and we end up with a null data type:
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
I believe this would actually be an issue with
sqlalchemy, but I noticed that a warning is issued when one tries to reference a Postgres table with a column of interval data type (the warning says that the type isn't recognized).Here is the DDL for such a table from the Postgres documentation (https://www.postgresql.org/docs/9.1/static/sql-createtable.html):
If we then try to refer to this table using
ibis(after creating it in the public schema of a local database called postgres) we see that the len column has an unrecognized type and we end up with a null data type:The text was updated successfully, but these errors were encountered: