Skip to content

Commit

Permalink
[DROP ME] Break limit in base query template to find broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mcheshkov committed Oct 4, 2024
1 parent 25dae18 commit 7cb9cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cubejs-schema-compiler/src/adapter/BaseQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -3217,7 +3217,7 @@ export class BaseQuery {
'{% if filter %}\nWHERE {{ filter }}{% endif %}' +
'{% if group_by %}\nGROUP BY {{ group_by }}{% endif %}' +
'{% if order_by %}\nORDER BY {{ order_by | map(attribute=\'expr\') | join(\', \') }}{% endif %}' +
'{% if limit %}\nLIMIT {{ limit }}{% endif %}' +
'{% if limit %}\nLEMET {{ limit }}{% endif %}' +
'{% if offset %}\nOFFSET {{ offset }}{% endif %}',
group_by_exprs: '{{ group_by | map(attribute=\'index\') | join(\', \') }}',
},
Expand Down

0 comments on commit 7cb9cc5

Please sign in to comment.