This is an automated email from the ASF dual-hosted git repository.

francischuang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 9317273  [CALCITE-7136] Add Support for Druid Double Types
9317273 is described below

commit 9317273e461ea5c2359a49d2bf0b64b838b7bca4
Author: Sean Robertshaw <[email protected]>
AuthorDate: Thu Aug 14 10:02:34 2025 -0600

    [CALCITE-7136] Add Support for Druid Double Types
---
 generic/generic.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/generic/generic.go b/generic/generic.go
index 372ed3c..869e9d7 100644
--- a/generic/generic.go
+++ b/generic/generic.go
@@ -96,6 +96,8 @@ func (a Adapter) GetColumnTypeDefinition(col 
*message.ColumnMetaData) *internal.
                column.Rep = message.Rep_BIG_DECIMAL
        case "FLOAT", "REAL":
                column.Rep = message.Rep_FLOAT
+       case "DOUBLE":
+               column.Rep = message.Rep_DOUBLE
        case "TIME":
                column.Rep = message.Rep_JAVA_SQL_TIME
        case "DATE":

Reply via email to