create_subscription_stmt.go 256 B

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