Expressions: Sql expressions with Duckdb (#81666)
duckdb temp storage of dataframes using parquet and querying from sql expressions --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
co-authored by
Ryan McKinley
parent
d8b7992c0c
commit
70009201d4
@@ -405,6 +405,8 @@ const (
|
||||
TypeVariantSet
|
||||
// TypeNoData is a no data response without a known data type.
|
||||
TypeNoData
|
||||
// TypeTableData is a tabular data response.
|
||||
TypeTableData
|
||||
)
|
||||
|
||||
// String returns a string representation of the ReturnType.
|
||||
@@ -422,6 +424,8 @@ func (f ReturnType) String() string {
|
||||
return "variant"
|
||||
case TypeNoData:
|
||||
return "noData"
|
||||
case TypeTableData:
|
||||
return "tableData"
|
||||
default:
|
||||
return "unknown"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user