-
-
Notifications
You must be signed in to change notification settings - Fork 19
issue 419 examples to reproduce #741
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 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. 🚀 New features to boost your workflow:
|
| create schema if not exists demo; | ||
| create table if not exists demo."table_with_serial_pk" | ||
| ( | ||
| id bigserial not null primary key, |
There was a problem hiding this comment.
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" |
There was a problem hiding this comment.
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); | ||
| ``` | ||
| Перед проверкой нужно добавить в таблицы данные. |
There was a problem hiding this comment.
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); | ||
| ``` | ||
| Перед проверкой нужно добавить в таблицы данные. |
There was a problem hiding this comment.
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); | ||
| ``` | ||
| Перед проверкой нужно добавить в таблицы данные. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Пример должен их добавлять!
|



No description provided.