-
-
Notifications
You must be signed in to change notification settings - Fork 81
fix: generate header after query also in do_describe_ in DuckDB example #272
New issue
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,7 @@ impl SimpleQueryHandler for DuckDBBackend { | |
| C: ClientInfo + Unpin + Send + Sync, | ||
| { | ||
| let conn = self.conn.lock().unwrap(); | ||
| if query.to_uppercase().starts_with("SELECT") { | ||
| if is_result_query(query) { | ||
| let mut stmt = conn | ||
| .prepare(query) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
|
|
@@ -74,6 +74,15 @@ impl SimpleQueryHandler for DuckDBBackend { | |
| } | ||
| } | ||
|
|
||
| fn is_result_query(query: &str) -> bool { | ||
| let query_upper = query.trim().to_uppercase(); | ||
| query_upper.starts_with("SELECT") | ||
| || query_upper.starts_with("WITH") | ||
| || query_upper.starts_with("EXPLAIN") | ||
| || query_upper.starts_with("DESCRIBE") | ||
| || query_upper.starts_with("FROM") | ||
| } | ||
|
|
||
| fn into_pg_type(df_type: &DataType) -> PgWireResult<Type> { | ||
| Ok(match df_type { | ||
| DataType::Null => Type::UNKNOWN, | ||
|
|
@@ -261,7 +270,7 @@ impl ExtendedQueryHandler for DuckDBBackend { | |
| .map(|f| f.as_ref()) | ||
| .collect::<Vec<&dyn duckdb::ToSql>>(); | ||
|
|
||
| if query.to_uppercase().starts_with("SELECT") { | ||
| if is_result_query(query) { | ||
| let rows: Rows<'_> = stmt | ||
| .query::<&[&dyn duckdb::ToSql]>(params_ref.as_ref()) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
|
|
@@ -288,9 +297,21 @@ impl ExtendedQueryHandler for DuckDBBackend { | |
| { | ||
| let conn = self.conn.lock().unwrap(); | ||
| let param_types = stmt.parameter_types.clone(); | ||
| let stmt = conn | ||
| .prepare_cached(&stmt.statement) | ||
| let stmt_sql = &stmt.statement; | ||
| let mut stmt = conn | ||
| .prepare_cached(stmt_sql) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
|
|
||
| if is_result_query(stmt_sql) { | ||
| let _ = stmt | ||
| .query([]) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
| } else { | ||
| let _ = stmt | ||
| .execute([]) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
| } | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wait, we cannot execute it on the describe command, if the query has side-effects, this will break the system.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. An alternative is to use DuckDB DESCRIBE for queries that return results: What are the two do_describe_() expected to return for DDL queries? Because DESCRIBE doesn't support them.
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It returns a This approach looks good. Do you know if there is a duckdb API for this? It feels like it should be something like
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems duckdb does have this capability to get column structure for a statement without running it, but at least duckdb-rs didn't expose this capability as statement API. It would be nice to add it so we can call column_type/column_name either after query or after describe.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where could you read that DuckDB can retrieve the column structure for a statement without running it? On the other hand, using DESCRIBE would mean having a new map for type string to FieldInfo datatype
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't read from their API. It's just because they are capable with this I agree using DESCRIBE in this scenario can be a little tricky. By the way, I'm going to ask upstream if it's possible to add
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Feature request thread in duckdb: duckdb/duckdb#17951 |
||
|
|
||
| row_desc_from_stmt(&stmt, &Format::UnifiedBinary) | ||
| .map(|fields| DescribeStatementResponse::new(param_types, fields)) | ||
| } | ||
|
|
@@ -304,9 +325,26 @@ impl ExtendedQueryHandler for DuckDBBackend { | |
| C: ClientInfo + Unpin + Send + Sync, | ||
| { | ||
| let conn = self.conn.lock().unwrap(); | ||
| let stmt = conn | ||
| let mut stmt = conn | ||
| .prepare_cached(&portal.statement.statement) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
|
|
||
| let params = get_params(portal); | ||
| let params_ref = params | ||
| .iter() | ||
| .map(|f| f.as_ref()) | ||
| .collect::<Vec<&dyn duckdb::ToSql>>(); | ||
|
|
||
| if is_result_query(&portal.statement.statement) { | ||
| let _ = stmt | ||
| .query::<&[&dyn duckdb::ToSql]>(params_ref.as_ref()) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
| } else { | ||
| let _ = stmt | ||
| .execute::<&[&dyn duckdb::ToSql]>(params_ref.as_ref()) | ||
| .map_err(|e| PgWireError::ApiError(Box::new(e)))?; | ||
| } | ||
|
|
||
| row_desc_from_stmt(&stmt, &portal.result_column_format) | ||
| .map(|fields| DescribePortalResponse::new(fields)) | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.