Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2025-06-26 12:11:59 +00:00
parent b52708cdbe
commit 38f98259f5
80 changed files with 979 additions and 695 deletions

View File

@ -5,7 +5,7 @@ require 'spec_helper'
RSpec.describe 'ClickHouse siphon tables', :click_house, feature_category: :database do
let_it_be(:siphon_table_prefix) { 'siphon_' }
let_it_be(:skip_tables) { [] } # insert table name in the array to be skipped on specs
let_it_be(:skip_fields) { [] } # insert field name in the array to be skipped on specs
let_it_be(:skip_fields) { %(title_html description_html) } # insert field name in the array to be skipped on specs
let_it_be(:ch_database_name) { ClickHouse::Client.configuration.databases[:main].database }
let_it_be(:pg_type_map) { Gitlab::ClickHouse::SiphonGenerator::PG_TYPE_MAP }