recap icon indicating copy to clipboard operation
recap copied to clipboard

Work with your web service, database, and streaming schemas in a single format.

Results 21 recap issues
Sort by recently updated
recently updated
newest added

Addresses https://github.com/recap-build/recap/issues/429 Adds a new type `UnknownType` for situations where converters can't figure out an appropriate existing recap type. This does not have comprehensive test cases and I'm not sure...

There may be situations where there is a field that cannot be understood by the recap converters, or cannot be represented in Recap, or based on the particular source system...

The SQLite client code currently queries `sqlite_schema` for `type='table'` (see https://github.com/recap-build/recap/pull/424#discussion_r1478619969). It should probably handle views, too. I'm not sure if that's a different type or not. Need to check.

Like was added to postgresql https://github.com/recap-build/recap/pull/414

In https://github.com/recap-build/recap/pull/414#discussion_r1457938365 when implementing Postgres enum support, it was going to be additional effort to also support arrays of enums. I excluded it from the scope of that PR, though...

Recap's SnowflakeReader does not support ARRAY right now. It should. See https://docs.snowflake.com/en/sql-reference/data-types-semistructured#array for details. cc @cpard

The most recent changes need to be updated on the Recap website. Specifically, FilesystemClient and `strict` for the gateway.

In Apache Flink, [catalogs](https://nightlies.apache.org/flink/flink-docs-release-1.17/docs/dev/table/catalogs/) "provide metadata, such as databases, tables, partitions, views, and functions and information needed to access data stored in a database or other external systems". There is...

This error is technically correct, but really annoying since `to_recap` often doesn't set an alias for a struct. I'd like PB's `from_recap` to work with Structs that have no aliases...

I think it'd be useful to be able to convert to/from GraphQL with Recap. I've had a number of people suggest this, so it seems like it might be in...