Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
350 changes: 0 additions & 350 deletions ci/firebolt_ingest_data.py

This file was deleted.

1 change: 0 additions & 1 deletion src/firebolt_db/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from firebolt.db import connect
from firebolt.common.exception import (
DatabaseError,
DataError,
Expand Down
5 changes: 2 additions & 3 deletions src/firebolt_db/firebolt_dialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
CHAR, DATE, DATETIME, INTEGER, BIGINT,
TIMESTAMP, VARCHAR, BOOLEAN, FLOAT)

import firebolt_db
import os

import firebolt.db

class ARRAY(sqltypes.TypeEngine):
__visit_name__ = 'ARRAY'
Expand Down Expand Up @@ -82,7 +81,7 @@ def __init__(self, context=None, *args, **kwargs):

@classmethod
def dbapi(cls):
return firebolt_db
return firebolt.db

# Build firebolt-sdk compatible connection arguments.
# URL format : firebolt://username:password@host:port/db_name
Expand Down
Loading