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/click_house/migration.rb')
-rw-r--r--lib/click_house/migration.rb22
1 files changed, 5 insertions, 17 deletions
diff --git a/lib/click_house/migration.rb b/lib/click_house/migration.rb
index 410a7ec86bc..0c8110f83d5 100644
--- a/lib/click_house/migration.rb
+++ b/lib/click_house/migration.rb
@@ -5,41 +5,27 @@ module ClickHouse
cattr_accessor :verbose, :client_configuration
attr_accessor :name, :version
- class << self
- attr_accessor :delegate
- end
-
- def initialize(name = self.class.name, version = nil)
+ def initialize(connection, name = self.class.name, version = nil)
+ @connection = connection
@name = name
@version = version
end
- self.client_configuration = ClickHouse::Client.configuration
self.verbose = true
- # instantiate the delegate object after initialize is defined
- self.delegate = new
MIGRATION_FILENAME_REGEXP = /\A([0-9]+)_([_a-z0-9]*)\.?([_a-z0-9]*)?\.rb\z/
- def database
- self.class.constants.include?(:SCHEMA) ? self.class.const_get(:SCHEMA, false) : :main
- end
-
def execute(query)
- ClickHouse::Client.execute(query, database, self.class.client_configuration)
+ connection.execute(query)
end
def up
- self.class.delegate = self
-
return unless self.class.respond_to?(:up)
self.class.up
end
def down
- self.class.delegate = self
-
return unless self.class.respond_to?(:down)
self.class.down
@@ -68,6 +54,8 @@ module ClickHouse
private
+ attr_reader :connection
+
def exec_migration(direction)
# noinspection RubyCaseWithoutElseBlockInspection
case direction