View Revisions: Issue #7040

Summary 0007040: Add support for the sql_variant column type (in MS SQL Server)
Revision 2025-08-30 12:36 by pbelov
Steps To Reproduce CREATE TABLE test_variant(
id INT PRIMARY KEY,
varcol SQL_VARIANT
)

INSERT INTO test_variant (id, varcol) VALUES
    (1, 'Hello World'), -- String
    (2, 123), -- Integer
    (3, 45.67), -- Decimal
    (4, GETDATE()); -- Datetime
Revision 2025-08-29 13:23 by pmarzullo
Steps To Reproduce