Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sql: adding missing tables on information_schema #65854

Merged
merged 1 commit into from Jun 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 41 additions & 3 deletions pkg/sql/catalog/catconstants/constants.go
Expand Up @@ -91,31 +91,69 @@ const (
InformationSchemaID
InformationSchemaAdministrableRoleAuthorizationsID
InformationSchemaApplicableRolesID
InformationSchemaAttributesTableID
InformationSchemaCharacterSets
InformationSchemaCheckConstraintRoutineUsageTableID
InformationSchemaCheckConstraints
InformationSchemaCollationCharacterSetApplicability
InformationSchemaCollations
InformationSchemaColumnColumnUsageTableID
InformationSchemaColumnDomainUsageTableID
InformationSchemaColumnOptionsTableID
InformationSchemaColumnPrivilegesID
InformationSchemaColumnsTableID
InformationSchemaColumnUDTUsageID
InformationSchemaColumnsTableID
InformationSchemaConstraintColumnUsageTableID
InformationSchemaConstraintTableUsageTableID
InformationSchemaDataTypePrivilegesTableID
InformationSchemaDomainConstraintsTableID
InformationSchemaDomainUdtUsageTableID
InformationSchemaDomainsTableID
InformationSchemaElementTypesTableID
InformationSchemaEnabledRolesID
InformationSchemaForeignDataWrapperOptionsTableID
InformationSchemaForeignDataWrappersTableID
InformationSchemaForeignServerOptionsTableID
InformationSchemaForeignServersTableID
InformationSchemaForeignTableOptionsTableID
InformationSchemaForeignTablesTableID
InformationSchemaInformationSchemaCatalogNameTableID
InformationSchemaKeyColumnUsageTableID
InformationSchemaParametersTableID
InformationSchemaReferentialConstraintsTableID
InformationSchemaRoleColumnGrantsTableID
InformationSchemaRoleRoutineGrantsTableID
InformationSchemaRoleTableGrantsID
InformationSchemaRoleUdtGrantsTableID
InformationSchemaRoleUsageGrantsTableID
InformationSchemaRoutinePrivilegesTableID
InformationSchemaRoutineTableID
InformationSchemaSchemataTableID
InformationSchemaSchemataTablePrivilegesID
InformationSchemaSessionVariables
InformationSchemaSequencesID
InformationSchemaSessionVariables
InformationSchemaSQLFeaturesTableID
InformationSchemaSQLImplementationInfoTableID
InformationSchemaSQLPartsTableID
InformationSchemaSQLSizingTableID
InformationSchemaStatisticsTableID
InformationSchemaTableConstraintTableID
InformationSchemaTablePrivilegesID
InformationSchemaTablesTableID
InformationSchemaTransformsTableID
InformationSchemaTriggeredUpdateColumnsTableID
InformationSchemaTriggersTableID
InformationSchemaTypePrivilegesID
InformationSchemaViewsTableID
InformationSchemaUdtPrivilegesTableID
InformationSchemaUsagePrivilegesTableID
InformationSchemaUserDefinedTypesTableID
InformationSchemaUserMappingOptionsTableID
InformationSchemaUserMappingsTableID
InformationSchemaUserPrivilegesID
InformationSchemaViewColumnUsageTableID
InformationSchemaViewRoutineUsageTableID
InformationSchemaViewTableUsageTableID
InformationSchemaViewsTableID
PgCatalogID
PgCatalogAggregateTableID
PgCatalogAmTableID
Expand Down
471 changes: 407 additions & 64 deletions pkg/sql/information_schema.go

Large diffs are not rendered by default.