Skip to content

Conversation

@marijarin
Copy link
Collaborator

No description provided.

@codecov
Copy link

codecov bot commented Oct 28, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 100.00%. Comparing base (65b03ad) to head (1a2a634).

Additional details and impacted files
@@             Coverage Diff             @@
##              master      #741   +/-   ##
===========================================
  Coverage     100.00%   100.00%           
  Complexity      1327      1327           
===========================================
  Files            256       256           
  Lines           2742      2742           
  Branches         176       176           
===========================================
  Hits            2742      2742           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

create schema if not exists demo;
create table if not exists demo."table_with_serial_pk"
(
id bigserial not null primary key,
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

В разных таблицах можно использовать разные типы столбцов, например, serial и bigserial. Тогда примеры будут более разнообразными

last_name text
);

create table if not exists demo."account_without_fk_partitioned"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Это плохой пример - нет ни одной секции.

partition of demo."duplicated_indexes_partitioned"
for values from (1) to (10);
```
Перед проверкой нужно добавить в таблицы данные.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Пример как раз их и должен добавлять! Без этого пример не имеет смысла

partition of demo."table_without_description"
for values from (1) to (10);
```
Перед проверкой нужно добавить в таблицы данные.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Зачем?

partition of demo."duplicated_indexes_partitioned"
for values from (1) to (10);
```
Перед проверкой нужно добавить в таблицы данные.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Пример должен их добавлять!

@sonarqubecloud
Copy link

sonarqubecloud bot commented Nov 1, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants