alter_publication_stmt.go 281 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterPublicationStmt struct {
  6. Pubname *string
  7. Options *ast.List
  8. Tables *ast.List
  9. ForAllTables bool
  10. TableAction DefElemAction
  11. }
  12. func (n *AlterPublicationStmt) Pos() int {
  13. return 0
  14. }