create_foreign_server_stmt.go 295 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateForeignServerStmt struct {
  6. Servername *string
  7. Servertype *string
  8. Version *string
  9. Fdwname *string
  10. IfNotExists bool
  11. Options *ast.List
  12. }
  13. func (n *CreateForeignServerStmt) Pos() int {
  14. return 0
  15. }