Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexvsalexvsalex authored and ma-efremoff committed Nov 29, 2023
1 parent 3ce20d1 commit e55644f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function generateYTQLQuery(tableParams: GenerateTableQueryParams): string
export function generateSPYTQuery(tableParams: GenerateTableQueryParams): string {
const {columns, pageSize = 1, path, dynamic, maxColumnsLength} = tableParams;
const columnsToQuery = prepareColumns(columns, {maxSize: maxColumnsLength});
const pathModifiers = dynamic ? '/@latest_version' : ''
const pathModifiers = dynamic ? '/@latest_version' : '';
return `SELECT\n${INDENT}${columnsToQuery}\nFROM yt.\`ytTable:/${path}${pathModifiers}\`\nLIMIT ${pageSize};\n`;
}

Expand Down

0 comments on commit e55644f

Please sign in to comment.