Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/database/schema_validation/structure_sql.rb')
-rw-r--r--lib/gitlab/database/schema_validation/structure_sql.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/gitlab/database/schema_validation/structure_sql.rb b/lib/gitlab/database/schema_validation/structure_sql.rb
new file mode 100644
index 00000000000..32c69a0e5e7
--- /dev/null
+++ b/lib/gitlab/database/schema_validation/structure_sql.rb
@@ -0,0 +1,33 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Database
+ module SchemaValidation
+ class StructureSql
+ def initialize(structure_file_path)
+ @structure_file_path = structure_file_path
+ end
+
+ def indexes
+ @indexes ||= index_statements.map do |index_statement|
+ index_statement.relation.schemaname = "public" if index_statement.relation.schemaname == ''
+
+ Index.new(index_statement)
+ end
+ end
+
+ private
+
+ attr_reader :structure_file_path
+
+ def index_statements
+ parsed_structure_file.tree.stmts.filter_map { |s| s.stmt.index_stmt }
+ end
+
+ def parsed_structure_file
+ PgQuery.parse(File.read(structure_file_path))
+ end
+ end
+ end
+ end
+end