Skip to content

Commit 7cb9cc5

Browse files
committed
[DROP ME] Break limit in base query template to find broken tests
1 parent 25dae18 commit 7cb9cc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-schema-compiler/src/adapter/BaseQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3217,7 +3217,7 @@ export class BaseQuery {
32173217
'{% if filter %}\nWHERE {{ filter }}{% endif %}' +
32183218
'{% if group_by %}\nGROUP BY {{ group_by }}{% endif %}' +
32193219
'{% if order_by %}\nORDER BY {{ order_by | map(attribute=\'expr\') | join(\', \') }}{% endif %}' +
3220-
'{% if limit %}\nLIMIT {{ limit }}{% endif %}' +
3220+
'{% if limit %}\nLEMET {{ limit }}{% endif %}' +
32213221
'{% if offset %}\nOFFSET {{ offset }}{% endif %}',
32223222
group_by_exprs: '{{ group_by | map(attribute=\'index\') | join(\', \') }}',
32233223
},

0 commit comments

Comments
 (0)