fix: add native JSON type support for SQL Server 2025 - #313
Conversation
SQL Server 2025 (v17.x) introduces a native JSON data type with binary-optimized storage and full JSON function support. - typeJson() now returns 'JSON' instead of 'NVARCHAR(MAX)' - typeJsonb() now returns 'JSON' instead of 'NVARCHAR(MAX)' - Updated SqlServerSchemaBuilderSpec json/jsonb DDL expectations
|
Thanks for putting this together. I agree that qb should support SQL Server 2025's native I'd like this implemented as a dedicated The new grammar should also be documented as an explicit opt-in; we should not select it through ordinary SQL Server auto-discovery unless we add reliable version-aware discovery separately. |
SQL Server 2025 (v17.x) introduces a native JSON data type with binary-optimized storage and full JSON function support.