We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Synth does not support postgres tsvector.
To Reproduce Steps to reproduce the behavior:
CREATE TABLE title_version ( id INTEGER PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, field_value VARCHAR(550) NOT NULL -- etc ); ALTER TABLE title_version ADD COLUMN field_value_ts_vector_english tsvector GENERATED ALWAYS AS ( to_tsvector('english', lower(coalesce(field_value, ''))) ) STORED;
When attempting to use synth to import the schema:
synth import --from <postgres-uri> --schema public testing
Error: We haven't implemented a converter for tsvector
Expected behavior Synth should support tsvector when importing an existing postgres schema.
Screenshots If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Synth does not support postgres tsvector.
To Reproduce
Steps to reproduce the behavior:
When attempting to use synth to import the schema:
Expected behavior
Synth should support tsvector when importing an existing postgres schema.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: