Open
Conversation
…t an OLAP, like snowflake etc.
TestOLAP — 22/22 passed in ~145s (mostly container startup) Sub-suite Tests Status MapScan 12 tests — BIT, TINYINT, SMALLINT, INT, BIGINT, REAL, FLOAT, VARCHAR, NVARCHAR, UNIQUEIDENTIFIER, XML, NULL All pass Scan 6 tests — Null, Integer types, Floating point, String types, Date/Time, Boolean (BIT) All pass EmptyRows 1 test — schema returned for TOP 0 query Pass Exec 1 test — DryRun, CREATE TABLE, DROP TABLE Pass FullTableScan 1 test — all 27 columns across 3 rows Pass The Docker container (mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-22.04) started successfully, init SQL seeded the testDB database with all SQL Server data types, and all type mappings from go-mssqldb matched expectations (int64 for integers, bool for BIT, float64 for REAL/FLOAT, time.Time for temporals, []byte for BINARY/UNIQUEIDENTIFIER, string for text/XML types).
…a/rill into feat-sqlserver-connector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a SQL Server connector as both a SQL store and OLAP driver, enabling users to connect to SQL Server databases from Rill Developer and Rill Cloud.
runtime/drivers/sqlserver/) with DSN resolution (dualmssql:///sqlserver://formats), OLAP query execution, andinformation_schemabrowsingmssqlextension for model materialization (mssql_scan)mssqlmodule with an ephemeral SQL Server 2022 Docker container, covering all 27 mapped data typesDeveloped in collaboration with Claude Code