Skip to content
代码片段 群组 项目
提交 749a31cb 编辑于 作者: Aleksei Lipniagov's avatar Aleksei Lipniagov
浏览文件

Merge branch 'alloy_db_usage_ping' into 'master'

No related branches found
No related tags found
无相关合并请求
...@@ -3,7 +3,7 @@ key_path: database.flavor ...@@ -3,7 +3,7 @@ key_path: database.flavor
description: What PostgreSQL flavor is being used. Possible values are description: What PostgreSQL flavor is being used. Possible values are
"Amazon Aurora PostgreSQL", "PostgreSQL on Amazon RDS", "Cloud SQL for PostgreSQL", "Amazon Aurora PostgreSQL", "PostgreSQL on Amazon RDS", "Cloud SQL for PostgreSQL",
"Azure Database for PostgreSQL - Single Server", "Azure Database for PostgreSQL - Flexible Server", "Azure Database for PostgreSQL - Single Server", "Azure Database for PostgreSQL - Flexible Server",
or "null". "AlloyDB for PostgreSQL", or "null".
product_section: enablement product_section: enablement
product_stage: enablement product_stage: enablement
product_group: database product_group: database
......
...@@ -124,7 +124,11 @@ def flavor ...@@ -124,7 +124,11 @@ def flavor
# - https://docs.microsoft.com/en-us/azure/postgresql/flexible-server/concepts-servers # - https://docs.microsoft.com/en-us/azure/postgresql/flexible-server/concepts-servers
# - https://docs.microsoft.com/en-us/azure/postgresql/concepts-servers#managing-your-server # - https://docs.microsoft.com/en-us/azure/postgresql/concepts-servers#managing-your-server
# this database is present on both Flexible and Single server, so we should check the former first. # this database is present on both Flexible and Single server, so we should check the former first.
'Azure Database for PostgreSQL - Single Server' => { statement: "SELECT datname FROM pg_database WHERE datname = 'azure_maintenance'" } 'Azure Database for PostgreSQL - Single Server' => { statement: "SELECT datname FROM pg_database WHERE datname = 'azure_maintenance'" },
# Based on
# - https://cloud.google.com/sql/docs/postgres/flags
# running a query to detect flag names that begin with 'alloydb
'AlloyDB for PostgreSQL' => { statement: "SELECT name FROM pg_settings WHERE name LIKE 'alloydb%'" }
}.each do |flavor, conditions| }.each do |flavor, conditions|
return flavor if connection.execute(conditions[:statement]).to_a.present? return flavor if connection.execute(conditions[:statement]).to_a.present?
rescue ActiveRecord::StatementInvalid => e rescue ActiveRecord::StatementInvalid => e
......
...@@ -314,6 +314,12 @@ def stub_statements(statements) ...@@ -314,6 +314,12 @@ def stub_statements(statements)
expect(database.flavor).to eq('Azure Database for PostgreSQL - Single Server') expect(database.flavor).to eq('Azure Database for PostgreSQL - Single Server')
end end
it 'recognizes AlloyDB for PostgreSQL' do
stub_statements("SELECT name FROM pg_settings WHERE name LIKE 'alloydb%'")
expect(database.flavor).to eq('AlloyDB for PostgreSQL')
end
it 'returns nil if can not recognize the flavor' do it 'returns nil if can not recognize the flavor' do
expect(database.flavor).to be_nil expect(database.flavor).to be_nil
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册