Fix: Alloydb connection form

[NDAT-457]: https://hasurahq.atlassian.net/browse/NDAT-457?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7462
Co-authored-by: Vishnu Bharathi <4211715+scriptnull@users.noreply.github.com>
GitOrigin-RevId: e4ca09f84b98ff5051eebdf31fdd00a11fdac2e0
This commit is contained in:
Luca Restagno 2023-01-09 15:38:44 +01:00 committed by hasura-bot
parent 6717e0a936
commit 126dfdde55

View File

@ -29,6 +29,7 @@ import { Operations } from './common';
import { QualifiedTable } from '../metadata/types';
import { supportedFeatures as PGSupportedFeatures } from './services/postgresql';
import { supportedFeatures as AlloySupportedFeatures } from './services/alloydb';
import { supportedFeatures as MssqlSupportedFeatures } from './services/mssql';
import { supportedFeatures as BigQuerySupportedFeatures } from './services/bigquery';
import { supportedFeatures as CitusQuerySupportedFeatures } from './services/citus';
@ -458,6 +459,7 @@ export const isFeatureSupported = (
export const getSupportedDrivers = (feature: Path<SupportedFeaturesType>) =>
[
PGSupportedFeatures,
AlloySupportedFeatures,
MssqlSupportedFeatures,
BigQuerySupportedFeatures,
CitusQuerySupportedFeatures,