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
API improvement
When using GreptimeDB tables in Postgres foreign data wrapper, it requires user to create a foreign table first. So user will need to:
CREATE FOREIGN TABLE ft_app_logs ( ts TIMESTAMP, host VARCHAR, api_path VARCHAR, log_level VARCHAR, log VARCHAR ) SERVER greptimedb OPTIONS (table_name 'app_logs');
These steps can be tedious especially when user need to figure out mappings like double to double precision.
double
double precision
It can be helpful to offer an option to our show create table statement to dump this sql .
show create table
No response
The text was updated successfully, but these errors were encountered:
sunng87
Successfully merging a pull request may close this issue.
What type of enhancement is this?
API improvement
What does the enhancement do?
When using GreptimeDB tables in Postgres foreign data wrapper, it requires user to create a foreign table first. So user will need to:
These steps can be tedious especially when user need to figure out mappings like
double
todouble precision
.It can be helpful to offer an option to our
show create table
statement to dump this sql .Implementation challenges
No response
The text was updated successfully, but these errors were encountered: