“16ab17429016a1154b9aa83244cdbfc7ba463d72”上不存在“git@jihulab.com:hunter0726/stable-diffusion-webui.git”
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 1月 23, 2024
-
-
由 Afzal Ansari 创作于
-
- 1月 11, 2024
-
-
由 Maxime Orefice 创作于
This commit removes old indexes and foreign keys which are no longer being used. Changelog: performance
-
- 1月 09, 2024
-
-
由 moaz-khalifa 创作于
Remove package_registry duplicated indexes that already covered by other indexes. Changelog: changed
-
- 12月 28, 2023
-
-
由 Rutger Wessels 创作于
This code was merged into TestProf gem so we can now rely on the gem
-
- 12月 20, 2023
-
-
由 Roy Liu 创作于
Changelog: changed
-
由 Maxime Orefice 创作于
This commit adds new indexes including the partition_id key in order to partition ci_job_artifacts table. Changelog: added
-
- 12月 14, 2023
-
-
由 Panos Kanellidis 创作于
Changelog: other
-
由 Zamir Martins 创作于
EE: true Changelog: changed
-
- 12月 05, 2023
-
-
由 Tianwen Chen 创作于
This is to step to remove the trigger and old integer column See https://docs.gitlab.com/ee/development/database/avoiding_downtime_in_migrations.html#remove-the-trigger-and-old-integer-columns-release-n--2 Changelog: changed
-
- 11月 24, 2023
-
-
由 Bojan Marjanovic 创作于
This is a duplicated index. Changelog: performance
-
- 11月 23, 2023
-
-
由 bmarjanovic 创作于
This is a duplicated index. Changelog: performance
-
- 11月 22, 2023
-
-
由 bmarjanovic 创作于
This is a duplicated index. Changelog: performance
-
由 bmarjanovic 创作于
This is a duplicated index. Changelog: performance
-
由 bmarjanovic 创作于
This is a duplicated index. Changelog: performance
-
由 bmarjanovic 创作于
This is a duplicated index. Changelog: performance
-
- 11月 16, 2023
-
-
由 Diogo Frazão 创作于
This is a duplicated index. Changelog: performance Relates to: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/135373
-
- 11月 14, 2023
-
-
由 dfrazao-gitlab 创作于
This is a duplicated index. Changelog: performance Relates to: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/135360
-
由 Leonardo da Rosa 创作于
Removes index_merge_requests_on_author_id as it's already covered by another index Changelog: changed
-
- 11月 13, 2023
-
-
由 dfrazao-gitlab 创作于
This is a duplicated index. Changelog: performance Relates to: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/135370
-
- 11月 10, 2023
-
-
由 dfrazao-gitlab 创作于
Remove duplicated index. Relates to: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/135366 Changelog: performance
-
由 Leonardo da Rosa 创作于
Removes index_merge_request_assignees_on_merge_request_id as is already covered by another index Changelog: changed
-
- 11月 09, 2023
-
-
由 Serhii Yarynovskyi 创作于
Remove constraint, index and campaign column from in_product_marketing_emails table Changelog: removed
-
- 10月 26, 2023
-
-
由 Adam Hegyi 创作于
This change removes 2 redundant database indexes wihtin the features of the Optimize team. Changelog: removed
-
- 10月 24, 2023
-
-
Changelog: removed
-
- 9月 07, 2023
-
-
由 Tianwen Chen 创作于
This is the second step to synchronously create indexes for ci_stages See https://docs.gitlab.com/ee/development/database/adding_database_indexes.html#add-a-migration-to-create-the-index-synchronously Changelog: added
-
- 8月 29, 2023
-
-
由 Kassio Borges 创作于
Currently we keep pages deployments for about 30m after creating a new one. This is to avoid racing conditions between the time the new deployment is created and GitLab Pages is updates its caches with the latest deployment. Therefore, while we use this mechanism, we cannot enforce uniqueness on pages_deployments for project_id and path_prefix, as more than one deploy for given path_prefix might exist. Related to: - Issue that introduced the index: - https://gitlab.com/gitlab-org/gitlab/-/issues/416488 - Problem was found while working on - https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129534 - https://gitlab.com/gitlab-org/gitlab/-/issues/416492 Changelog: added
-
- 8月 23, 2023
-
-
由 Omar Qunsul 创作于
Adding tests to detect duplicate btree indexes. This will help us avoid adding unnecessary indexes Changelog: other
-
- 7月 06, 2023
-
-
由 Simon Tomlinson 创作于
-
- 6月 22, 2023
-
-
由 Manoj M J 创作于
Rename EachDatabase.each_database_connection method
-
- 5月 31, 2023
-
-
由 Kamil Trzciński 创作于
The purpose of this change is to provide a better and more structured way to define `gitlab_schemas` and `database_connections`. This helps to define applied behavior for connections, and what schemas the connection holds, and how those are configured (load balancing, etc.). - Each DB and schema is named, and contains description. - Remove code duplication in `gitlab_schema` EE specs - Make `Database.db_config_names` to require passing `gitlab_schema` to ensure that we return configs only having this schema - Ensure that database connection order is the same as in `config/database.yml` Changelog: added
-
- 5月 18, 2023
-
-
由 Simon Tomlinson 创作于
Rather than using transactional tests, migration testing migrates the database up after each test, and manually cleans each table. This could pollute rows into the postgres_async_foreign_key_validations table during a test run, since migrating up happened after cleaning all tables. Instead, clean tables after migrating to delete these rows.
-
- 5月 04, 2023
-
-
由 Marius Bobin 创作于
-
- 4月 27, 2023
-
-
由 Manoj M J 创作于
Database::GitlabSchema.table_schema to return nil
-
- 4月 21, 2023
-
-
由 Simon Tomlinson 创作于
Moves the ConvertTableToFirstListPartition class to a List::ConvertTable class, to prepare for adding additional functionality in the new module.
-
- 3月 27, 2023
-
-
由 Omar Qunsul 创作于
Many of our specs are not considering the case when we have two connections pointing to the same database. Addressing: https://gitlab.com/gitlab-org/gitlab/-/issues/391646 Changelog: other
-
- 3月 21, 2023
-
-
由 Omar Qunsul 创作于
Changelog: fixed Issue: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/112731
-
- 2月 06, 2023
-
-
由 Dylan Griffith 创作于
Adds a new `main_clusterwide` connection option that can be configured in `config/database.yml`. This connection is part of the [Pods](https://gitlab.com/groups/gitlab-org/-/epics/7582) initiative (soon to be renamed to "Silos"). This connection won't be configured in production or even GDK any time soon and as such we've opted to have these code paths untested in CI. Trying to test this new connection in CI would mean having a separate `config/database.yml` that ran all RSpec tests again which is just too expensive for this early stage of the project. The `main_clusterwide` connection will eventually be used to have a shared Postgres database that is used by many separate GitLab pods (silos/instances). We need to share some data like settings, users, licenses across all these pods while separating pod-specific data like projects, notes, merge_requests . This allows us to horizontally scale most of the data but still users can login and access data in any pod. When this connection is not configured then the `main` connection will be used (as before) so this change should be a no-op for anyone that doesn't explicitly go in and add `main_clusterwide` to their `config/database.yml`. There is a lot more detail on the architecture at https://docs.gitlab.com/ee/architecture/blueprints/pods/ but the main point is that this connection is for "shared" stuff and we're starting with `application_settings` and `licenses` as these are the simplest tables to decouple. Changelog: other
-
- 1月 27, 2023
-
-
由 Thong Kuah 创作于
Adds defense against accidental mis-configuration. We need this because the configuration for two connections to one database is so similar to two databases.
-
- 1月 03, 2023
-
-
由 Omar Qunsul 创作于
We still have many ignored Rubocop Offenses for Database/MultipleDatabases in specs. This is a MR to address validate and fix all of them. Addressing Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/362031 Changelog: other
-
- 10月 27, 2022
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-