crate / sqlalchemy-cratedb

SQLAlchemy dialect for CrateDB.
https://cratedb.com/docs/sqlalchemy-cratedb/
Apache License 2.0
3 stars 2 forks source link

Types: Emulate PostgreSQL's `JSON(B)` types using CrateDB's `OBJECT` #27

Open amotl opened 8 months ago

amotl commented 8 months ago

About

The test suite of meltano-tap-cratedb, derived from the corresponding PostgreSQL adapter, is using PostgreSQL's JSON and JSONB types. By emulating them using CrateDB's OBJECT type, the corresponding test cases succeed without further ado. 💯

References

This is coming from a monkeypatch to meltano-tap-cratedb.

Backlog