Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/frontend_connectors/schema_transformer.go
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ func (s *SchemaCheckPass) makeTransformations(backendConnectorType quesma_api.Ba
// Section 3: backend specific transformations
// fallback to clickhouse date functions if no backend connector is set

if backendConnectorType == quesma_api.ClickHouseSQLBackend {
if backendConnectorType == quesma_api.ClickHouseSQLBackend || backendConnectorType == quesma_api.HydrolixSQLBackend {
transformationChain = append(transformationChain, struct {
TransformationName string
Transformation func(schema.Schema, *model.Query) (*model.Query, error)
Expand Down
Loading