alter_ts_configuration_stmt.go 312 B

12345678910111213141516171819
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterTSConfigurationStmt struct {
  6. Kind AlterTSConfigType
  7. Cfgname *ast.List
  8. Tokentype *ast.List
  9. Dicts *ast.List
  10. Override bool
  11. Replace bool
  12. MissingOk bool
  13. }
  14. func (n *AlterTSConfigurationStmt) Pos() int {
  15. return 0
  16. }