You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(template): add blank line separators between generated query blocks
The {{- trim markers on should_skip checks were eating all preceding
whitespace, causing query blocks to run together without visual
separation in the generated output.
-- BatchGet{{table_name $.Table.Name"many"}}{{query_index $key}} retrieves multiple rows from '{{$.Table.Name}}' by {{$key.Name}} in a single batch operation.
41
43
-- Executes the query once for each provided key value and returns individual results.
-- BatchUpdate{{table_name $.Table.Name"many"}}{{query_index $key}} updates multiple rows in '{{$.Table.Name}}' by {{$key.Name}} in a single batch operation.
109
114
-- Uses update_mask for each row to specify which fields to update. Returns updated rows.
-- BatchExecUpdate{{table_name $.Table.Name"many"}}{{query_index $key}} updates multiple rows in '{{$.Table.Name}}' by {{$key.Name}} in a single batch operation.
128
134
-- Uses update_mask for each row to specify which fields to update. Returns number of affected rows.
-- BatchDelete{{table_name $.Table.Name"many"}}{{query_index $key}} deletes multiple rows from '{{$.Table.Name}}' by {{$key.Name}} in a single batch operation.
167
176
-- Executes the delete once for each provided key value and returns deleted rows.
-- BatchExecDelete{{table_name $.Table.Name"many"}}{{query_index $key}} deletes multiple rows from '{{$.Table.Name}}' by {{$key.Name}} in a single batch operation.
178
188
-- Executes the delete once for each provided key value and returns number of affected rows.
-- List{{table_name $.Table.Name"many"}}{{query_index $key}} retrieves a paginated list of rows from '{{$.Table.Name}}'{{if$key.Name}} filtered by {{$key.Name}}{{end}}.
-- BatchUpdate{{table_name $.Table.Name"many"}}{{query_index $key}} updates multiple rows in '{{$.Table.Name}}'{{if$key.Name}} by {{$key.Name}}{{end}} in a single batch operation.
392
412
-- Uses update_mask for each row to specify which fields to update. Returns updated rows.
-- BatchExecUpdate{{table_name $.Table.Name"many"}}{{query_index $key}} updates multiple rows in '{{$.Table.Name}}'{{if$key.Name}} by {{$key.Name}}{{end}} in a single batch operation.
414
435
-- Uses update_mask for each row to specify which fields to update. Returns number of affected rows.
-- BatchDelete{{table_name $.Table.Name"many"}}{{query_index $key}} deletes multiple rows from '{{$.Table.Name}}'{{if$key.Name}} by {{$key.Name}}{{end}} in a single batch operation.
462
486
-- Executes the delete once for each provided key value and returns deleted rows.
-- BatchExecDelete{{table_name $.Table.Name"many"}}{{query_index $key}} deletes multiple rows from '{{$.Table.Name}}'{{if$key.Name}} by {{$key.Name}}{{end}} in a single batch operation.
476
501
-- Executes the delete once for each provided key value and returns number of affected rows.
0 commit comments