MCPcopy Create free account
hub / github.com/dolthub/doltgresql / AlterDatabase

Struct AlterDatabase

postgres/parser/sem/tree/alter_database.go:50–60  ·  view source on GitHub ↗

AlterDatabase represents a ALTER DATABASE statement.

Source from the content-addressed store, hash-verified

48
49// AlterDatabase represents a ALTER DATABASE statement.
50type AlterDatabase struct {
51 Name Name
52 Options []DatabaseOption
53 // Rename is handled by RenameDatabase
54 Owner string
55 Tablespace string
56 RefreshCollationVersion bool
57 SetVar *SetVar
58 ResetVar string
59 ResetAll bool
60}
61
62// Format implements the NodeFormatter interface.
63func (node *AlterDatabase) Format(ctx *FmtCtx) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected