create_publication_stmt.go 255 B

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