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
Support ddl as string (e.g. from pg_dump) to avro. e.g.
a = """
CREATE TABLE public.abc (
a integer NOT NULL,
b integer NOT NULL,
created_at timestamp with time zone,
c integer,
hello text[],
updated_at timestamp without time zone
);
""" # or get from somewher
avro_schema = get_avro_from_ddl(a)
The text was updated successfully, but these errors were encountered:
Support ddl as string (e.g. from pg_dump) to avro. e.g.
The text was updated successfully, but these errors were encountered: