From 9bf441692ef42ff81347fbf9402994ba4a5fad7c Mon Sep 17 00:00:00 2001 From: Anders Jansson Date: Fri, 24 Mar 2023 22:34:03 +0100 Subject: [PATCH 01/17] docs(config.md): add `sqlite` as engine option (#2164) --- docs/reference/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/config.md b/docs/reference/config.md index c6502271c5..2d663709ec 100644 --- a/docs/reference/config.md +++ b/docs/reference/config.md @@ -29,7 +29,7 @@ sql: Each mapping in the `sql` collection has the following keys: - `engine`: - - Either `postgresql` or `mysql`. + - One of `postgresql`, `mysql` or `sqlite`. - `schema`: - Directory of SQL migrations or path to single SQL file; or a list of paths. - `queries`: From 62a3e315a72976b4c3291d449133eb86d6fc56c6 Mon Sep 17 00:00:00 2001 From: Meir Blumenfeld <33358938+meblum@users.noreply.github.com> Date: Mon, 27 Mar 2023 15:29:11 -0400 Subject: [PATCH 02/17] Update README.md (#2155) Add link to introductory blog post --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8469a5b975..09ed767a28 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ sqlc generates **type-safe code** from SQL. Here's how it works: 1. You run sqlc to generate code with type-safe interfaces to those queries. 1. You write application code that calls the generated code. -Check out [an interactive example](https://play.sqlc.dev/) to see it in action. +Check out [an interactive example](https://play.sqlc.dev/) to see it in action, and the [introductory blog post](https://conroy.org/introducing-sqlc) for the motivation behind sqlc. ## Overview From 8f252f315dcd0c002af1b195f197fcb8d1d0ebcf Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Mon, 27 Mar 2023 12:33:25 -0700 Subject: [PATCH 03/17] cmd/sqlc: Remove --experimental flag (#2170) For backwards compatability, the flag still exists but is a no-op. If we need feature flagging in the future, we'll develop a more robust system than what this flag provided. --- internal/cmd/cmd.go | 16 +++------------- internal/endtoend/endtoend_test.go | 10 +++++----- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/internal/cmd/cmd.go b/internal/cmd/cmd.go index 9376bb72db..b599bf21ee 100644 --- a/internal/cmd/cmd.go +++ b/internal/cmd/cmd.go @@ -16,7 +16,6 @@ import ( "github.com/spf13/pflag" "gopkg.in/yaml.v3" - "github.com/kyleconroy/sqlc/internal/codegen/golang" "github.com/kyleconroy/sqlc/internal/config" "github.com/kyleconroy/sqlc/internal/debug" "github.com/kyleconroy/sqlc/internal/info" @@ -31,7 +30,7 @@ func init() { func Do(args []string, stdin io.Reader, stdout io.Writer, stderr io.Writer) int { rootCmd := &cobra.Command{Use: "sqlc", SilenceUsage: true} rootCmd.PersistentFlags().StringP("file", "f", "", "specify an alternate config file (default: sqlc.yaml)") - rootCmd.PersistentFlags().BoolP("experimental", "x", false, "enable experimental features (default: false)") + rootCmd.PersistentFlags().BoolP("experimental", "x", false, "DEPRECATED: enable experimental features (default: false)") rootCmd.AddCommand(checkCmd) rootCmd.AddCommand(diffCmd) @@ -106,26 +105,17 @@ var initCmd = &cobra.Command{ } type Env struct { - ExperimentalFeatures bool - DryRun bool + DryRun bool } func ParseEnv(c *cobra.Command) Env { - x := c.Flag("experimental") dr := c.Flag("dry-run") return Env{ - ExperimentalFeatures: x != nil && x.Changed, - DryRun: dr != nil && dr.Changed, + DryRun: dr != nil && dr.Changed, } } func (e *Env) Validate(cfg *config.Config) error { - for _, sql := range cfg.SQL { - if sql.Gen.Go != nil && sql.Gen.Go.SQLPackage == golang.SQLPackagePGXV5 && !e.ExperimentalFeatures { - return fmt.Errorf("'pgx/v5' golang sql package requires enabled '--experimental' flag") - } - } - return nil } diff --git a/internal/endtoend/endtoend_test.go b/internal/endtoend/endtoend_test.go index beca8d6023..e19b58bcb9 100644 --- a/internal/endtoend/endtoend_test.go +++ b/internal/endtoend/endtoend_test.go @@ -39,7 +39,7 @@ func TestExamples(t *testing.T) { t.Parallel() path := filepath.Join(examples, tc) var stderr bytes.Buffer - output, err := cmd.Generate(ctx, cmd.Env{ExperimentalFeatures: true}, path, "", &stderr) + output, err := cmd.Generate(ctx, cmd.Env{}, path, "", &stderr) if err != nil { t.Fatalf("sqlc generate failed: %s", stderr.String()) } @@ -67,7 +67,7 @@ func BenchmarkExamples(b *testing.B) { path := filepath.Join(examples, tc) for i := 0; i < b.N; i++ { var stderr bytes.Buffer - cmd.Generate(ctx, cmd.Env{ExperimentalFeatures: true}, path, "", &stderr) + cmd.Generate(ctx, cmd.Env{}, path, "", &stderr) } }) } @@ -112,9 +112,9 @@ func TestReplay(t *testing.T) { switch args.Command { case "diff": - err = cmd.Diff(ctx, cmd.Env{ExperimentalFeatures: true}, path, "", &stderr) + err = cmd.Diff(ctx, cmd.Env{}, path, "", &stderr) case "generate": - output, err = cmd.Generate(ctx, cmd.Env{ExperimentalFeatures: true}, path, "", &stderr) + output, err = cmd.Generate(ctx, cmd.Env{}, path, "", &stderr) if err == nil { cmpDirectory(t, path, output) } @@ -254,7 +254,7 @@ func BenchmarkReplay(b *testing.B) { path, _ := filepath.Abs(tc) for i := 0; i < b.N; i++ { var stderr bytes.Buffer - cmd.Generate(ctx, cmd.Env{ExperimentalFeatures: true}, path, "", &stderr) + cmd.Generate(ctx, cmd.Env{}, path, "", &stderr) } }) } From 73d92909445fe02c9485beae8ce78a249c1a708c Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Wed, 29 Mar 2023 10:34:44 -0700 Subject: [PATCH 04/17] docs: Add first pass at pgx documentation (#2174) --- docs/guides/using-go-and-pgx.rst | 113 +++++++++++++++++++++++++++++++ docs/index.rst | 1 + 2 files changed, 114 insertions(+) create mode 100644 docs/guides/using-go-and-pgx.rst diff --git a/docs/guides/using-go-and-pgx.rst b/docs/guides/using-go-and-pgx.rst new file mode 100644 index 0000000000..a4964a8bf7 --- /dev/null +++ b/docs/guides/using-go-and-pgx.rst @@ -0,0 +1,113 @@ +================ +Using Go and pgx +================ + +.. note:: + Experimental support for :code:`pgx/v5` was added in v1.17.2. Full support will be + included in v1.18.0. Until then, you'll need to pass the :code:`--experimental` + flag to :code:`sqlc generate`. + + +pgx is a pure Go driver and toolkit for PostgreSQL. It's become the default +PostgreSQL package for many Gophers since lib/pq was put into maitience mode. + +^^^^^^^^^^^^^^^ +Getting started +^^^^^^^^^^^^^^^ + +To start generating code that uses pgx, set the :code:`sql_package` field in +your :code:`sqlc.yaml` configuration file. Valid options are :code:`pgx/v4` or +:code:`pgx/v5` + +.. code-block:: yaml + + version: "2" + sql: + - engine: "postgresql" + queries: "query.sql" + schema: "query.sql" + gen: + go: + package: "db" + sql_package: "pgx/v5" + out: "db" + +If you don't have an existing sqlc project on hand, create a directory with the +configuration file above and the following :code:`query.sql` file. + +.. code-block:: sql + + CREATE TABLE authors ( + id BIGSERIAL PRIMARY KEY, + name text NOT NULL, + bio text + ); + + -- name: GetAuthor :one + SELECT * FROM authors + WHERE id = $1 LIMIT 1; + + -- name: ListAuthors :many + SELECT * FROM authors + ORDER BY name; + + -- name: CreateAuthor :one + INSERT INTO authors ( + name, bio + ) VALUES ( + $1, $2 + ) + RETURNING *; + + -- name: DeleteAuthor :exec + DELETE FROM authors + WHERE id = $1; + + +Generating the code will now give you pgx-compatible database access methods. + +.. code-block:: bash + + sqlc generate --experimental + +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Generated code walkthrough +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The generated code is very similar to the code generated when using +:code:`lib/pq`. However, instead of using :code:`database/sql`, the code uses +pgx types directly. + +.. code-block:: go + + package main + + import ( + "context" + "fmt" + "os" + + "github.com/jackc/pgx/v5" + + "example.com/sqlc-tutorial/db" + ) + + func main() { + // urlExample := "postgres://username:password@localhost:5432/database_name" + conn, err := pgx.Connect(context.Background(), os.Getenv("DATABASE_URL")) + if err != nil { + fmt.Fprintf(os.Stderr, "Unable to connect to database: %v\n", err) + os.Exit(1) + } + defer conn.Close(context.Background()) + + q := db.New(conn) + + author, err := q.GetAuthor(context.Background(), 1) + if err != nil { + fmt.Fprintf(os.Stderr, "GetAuthor failed: %v\n", err) + os.Exit(1) + } + + fmt.Println(author.Name) + } diff --git a/docs/index.rst b/docs/index.rst index 6c6b40a910..7f6c7db3b8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -74,6 +74,7 @@ code ever again. :caption: Conceptual Guides :hidden: + guides/using-go-and-pgx.rst guides/development.md guides/plugins.md guides/privacy.md From bfc48c7c0ba9d4da4b680a614748068542c8d659 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Thu, 30 Mar 2023 16:40:24 -0700 Subject: [PATCH 05/17] sqlite: Add support for CREATE TABLE ... STRICT (#2175) Switch to v4 of ANTLR (which we were already kind of using) --- go.mod | 4 +- go.sum | 8 +- .../ddl_create_table_strict/sqlite/go/db.go | 31 + .../sqlite/go/models.go | 13 + .../sqlite/go/query.sql.go | 19 + .../ddl_create_table_strict/sqlite/query.sql | 2 + .../ddl_create_table_strict/sqlite/schema.sql | 1 + .../ddl_create_table_strict/sqlite/sqlc.json | 12 + internal/engine/sqlite/convert.go | 2 +- internal/engine/sqlite/parse.go | 2 +- internal/engine/sqlite/parser/.gitignore | 2 + internal/engine/sqlite/parser/Makefile | 9 +- internal/engine/sqlite/parser/SQLiteLexer.g4 | 1 + .../engine/sqlite/parser/SQLiteLexer.interp | 5 +- .../engine/sqlite/parser/SQLiteLexer.tokens | 125 +- internal/engine/sqlite/parser/SQLiteParser.g4 | 3 +- .../engine/sqlite/parser/SQLiteParser.interp | 4 +- .../engine/sqlite/parser/SQLiteParser.tokens | 125 +- internal/engine/sqlite/parser/sqlite_lexer.go | 1694 ++--- .../engine/sqlite/parser/sqlite_parser.go | 5563 ++++++++++------- .../parser/sqliteparser_base_listener.go | 4 +- .../sqlite/parser/sqliteparser_listener.go | 4 +- 22 files changed, 4488 insertions(+), 3145 deletions(-) create mode 100644 internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/db.go create mode 100644 internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/models.go create mode 100644 internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/query.sql.go create mode 100644 internal/endtoend/testdata/ddl_create_table_strict/sqlite/query.sql create mode 100644 internal/endtoend/testdata/ddl_create_table_strict/sqlite/schema.sql create mode 100644 internal/endtoend/testdata/ddl_create_table_strict/sqlite/sqlc.json create mode 100644 internal/engine/sqlite/parser/.gitignore diff --git a/go.mod b/go.mod index fbd6166271..f26b740709 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/kyleconroy/sqlc go 1.20 require ( - github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 + github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230321174746-8dcc6526cfb1 github.com/bytecodealliance/wasmtime-go/v5 v5.0.0 github.com/cubicdaiya/gonp v1.0.4 github.com/davecgh/go-spew v1.1.1 @@ -25,7 +25,7 @@ require ( require ( github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect - golang.org/x/exp v0.0.0-20220428152302-39d4317da171 // indirect + golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect ) require ( diff --git a/go.sum b/go.sum index 046341274d..617f06fdf7 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,8 @@ github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= -github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 h1:yL7+Jz0jTC6yykIK/Wh74gnTJnrGr5AyrNMXuA0gves= -github.com/antlr/antlr4/runtime/Go/antlr v1.4.10/go.mod h1:F7bn7fEU90QkQ3tnmaTx3LTKLEDqnwWODIYppRQ5hnY= +github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230321174746-8dcc6526cfb1 h1:X8MJ0fnN5FPdcGF5Ij2/OW+HgiJrRg3AfHAx1PJtIzM= +github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230321174746-8dcc6526cfb1/go.mod h1:pSwJ0fSY5KhvocuWSx4fz3BA8OrA1bQn+K1Eli3BRwM= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/bytecodealliance/wasmtime-go/v5 v5.0.0 h1:Ue3eBDElMrdzWoUtr7uPr7NeDZriuR5oIivp5EHknQU= @@ -201,8 +201,8 @@ golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.6.0 h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= -golang.org/x/exp v0.0.0-20220428152302-39d4317da171 h1:TfdoLivD44QwvssI9Sv1xwa5DcL5XQr4au4sZ2F2NV4= -golang.org/x/exp v0.0.0-20220428152302-39d4317da171/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= +golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA= +golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= diff --git a/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/db.go b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/db.go new file mode 100644 index 0000000000..02974bda59 --- /dev/null +++ b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/db.go @@ -0,0 +1,31 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" + "database/sql" +) + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/models.go b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/models.go new file mode 100644 index 0000000000..cc0ef43a96 --- /dev/null +++ b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/models.go @@ -0,0 +1,13 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "database/sql" +) + +type Venue struct { + Name sql.NullString +} diff --git a/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/query.sql.go b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/query.sql.go new file mode 100644 index 0000000000..fd81b4cf92 --- /dev/null +++ b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/query.sql.go @@ -0,0 +1,19 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: query.sql + +package querytest + +import ( + "context" +) + +const placeholder = `-- name: Placeholder :exec +SELECT 1 +` + +func (q *Queries) Placeholder(ctx context.Context) error { + _, err := q.db.ExecContext(ctx, placeholder) + return err +} diff --git a/internal/endtoend/testdata/ddl_create_table_strict/sqlite/query.sql b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/query.sql new file mode 100644 index 0000000000..6520aef4b6 --- /dev/null +++ b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/query.sql @@ -0,0 +1,2 @@ +-- name: Placeholder :exec +SELECT 1; diff --git a/internal/endtoend/testdata/ddl_create_table_strict/sqlite/schema.sql b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/schema.sql new file mode 100644 index 0000000000..368491ebc9 --- /dev/null +++ b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/schema.sql @@ -0,0 +1 @@ +CREATE TABLE venues (name text) STRICT; diff --git a/internal/endtoend/testdata/ddl_create_table_strict/sqlite/sqlc.json b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/sqlc.json new file mode 100644 index 0000000000..cd66df063b --- /dev/null +++ b/internal/endtoend/testdata/ddl_create_table_strict/sqlite/sqlc.json @@ -0,0 +1,12 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "sqlite", + "name": "querytest", + "schema": "schema.sql", + "queries": "query.sql" + } + ] +} diff --git a/internal/engine/sqlite/convert.go b/internal/engine/sqlite/convert.go index e902b1b633..c74ce41056 100644 --- a/internal/engine/sqlite/convert.go +++ b/internal/engine/sqlite/convert.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr/v4" "github.com/kyleconroy/sqlc/internal/debug" "github.com/kyleconroy/sqlc/internal/engine/sqlite/parser" diff --git a/internal/engine/sqlite/parse.go b/internal/engine/sqlite/parse.go index 51e1ffb25c..a40502d96f 100644 --- a/internal/engine/sqlite/parse.go +++ b/internal/engine/sqlite/parse.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr/v4" "github.com/kyleconroy/sqlc/internal/engine/sqlite/parser" "github.com/kyleconroy/sqlc/internal/metadata" diff --git a/internal/engine/sqlite/parser/.gitignore b/internal/engine/sqlite/parser/.gitignore new file mode 100644 index 0000000000..960048667f --- /dev/null +++ b/internal/engine/sqlite/parser/.gitignore @@ -0,0 +1,2 @@ + +antlr-4.12.0-complete.jar diff --git a/internal/engine/sqlite/parser/Makefile b/internal/engine/sqlite/parser/Makefile index 61d12531ed..b925a1f6c1 100644 --- a/internal/engine/sqlite/parser/Makefile +++ b/internal/engine/sqlite/parser/Makefile @@ -1,2 +1,7 @@ -sqlite_parser.go: SQLiteLexer.g4 SQLiteParser.g4 - antlr -Dlanguage=Go SQLiteLexer.g4 SQLiteParser.g4 +sqlite_parser.go: SQLiteLexer.g4 SQLiteParser.g4 antlr-4.12.0-complete.jar + java -jar antlr-4.12.0-complete.jar -Dlanguage=Go SQLiteLexer.g4 SQLiteParser.g4 + +antlr-4.12.0-complete.jar: + curl -O https://www.antlr.org/download/antlr-4.12.0-complete.jar + + diff --git a/internal/engine/sqlite/parser/SQLiteLexer.g4 b/internal/engine/sqlite/parser/SQLiteLexer.g4 index 5f184e4f45..29801d4cfa 100644 --- a/internal/engine/sqlite/parser/SQLiteLexer.g4 +++ b/internal/engine/sqlite/parser/SQLiteLexer.g4 @@ -160,6 +160,7 @@ ROWS_: R O W S; SAVEPOINT_: S A V E P O I N T; SELECT_: S E L E C T; SET_: S E T; +STRICT_: S T R I C T; TABLE_: T A B L E; TEMP_: T E M P; TEMPORARY_: T E M P O R A R Y; diff --git a/internal/engine/sqlite/parser/SQLiteLexer.interp b/internal/engine/sqlite/parser/SQLiteLexer.interp index 6ab7a1f082..22061a562d 100644 --- a/internal/engine/sqlite/parser/SQLiteLexer.interp +++ b/internal/engine/sqlite/parser/SQLiteLexer.interp @@ -193,6 +193,7 @@ null null null null +null token symbolic names: null @@ -327,6 +328,7 @@ ROWS_ SAVEPOINT_ SELECT_ SET_ +STRICT_ TABLE_ TEMP_ TEMPORARY_ @@ -522,6 +524,7 @@ ROWS_ SAVEPOINT_ SELECT_ SET_ +STRICT_ TABLE_ TEMP_ TEMPORARY_ @@ -621,4 +624,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 193, 1808, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 1614, 8, 184, 10, 184, 12, 184, 1617, 9, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 1624, 8, 184, 10, 184, 12, 184, 1627, 9, 184, 1, 184, 1, 184, 1, 184, 5, 184, 1632, 8, 184, 10, 184, 12, 184, 1635, 9, 184, 1, 184, 1, 184, 1, 184, 5, 184, 1640, 8, 184, 10, 184, 12, 184, 1643, 9, 184, 3, 184, 1645, 8, 184, 1, 185, 4, 185, 1648, 8, 185, 11, 185, 12, 185, 1649, 1, 185, 1, 185, 5, 185, 1654, 8, 185, 10, 185, 12, 185, 1657, 9, 185, 3, 185, 1659, 8, 185, 1, 185, 1, 185, 4, 185, 1663, 8, 185, 11, 185, 12, 185, 1664, 3, 185, 1667, 8, 185, 1, 185, 1, 185, 3, 185, 1671, 8, 185, 1, 185, 4, 185, 1674, 8, 185, 11, 185, 12, 185, 1675, 3, 185, 1678, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 4, 185, 1684, 8, 185, 11, 185, 12, 185, 1685, 3, 185, 1688, 8, 185, 1, 186, 1, 186, 5, 186, 1692, 8, 186, 10, 186, 12, 186, 1695, 9, 186, 1, 186, 1, 186, 3, 186, 1699, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1705, 8, 187, 10, 187, 12, 187, 1708, 9, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 5, 189, 1719, 8, 189, 10, 189, 12, 189, 1722, 9, 189, 1, 189, 3, 189, 1725, 8, 189, 1, 189, 1, 189, 3, 189, 1729, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 1737, 8, 190, 10, 190, 12, 190, 1740, 9, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 1738, 0, 221, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 0, 389, 0, 391, 0, 393, 0, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 1, 0, 38, 1, 0, 34, 34, 1, 0, 96, 96, 1, 0, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 3, 0, 36, 36, 58, 58, 64, 64, 1, 0, 39, 39, 2, 0, 10, 10, 13, 13, 3, 0, 9, 11, 13, 13, 32, 32, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 1806, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 1, 443, 1, 0, 0, 0, 3, 445, 1, 0, 0, 0, 5, 447, 1, 0, 0, 0, 7, 449, 1, 0, 0, 0, 9, 451, 1, 0, 0, 0, 11, 453, 1, 0, 0, 0, 13, 455, 1, 0, 0, 0, 15, 457, 1, 0, 0, 0, 17, 459, 1, 0, 0, 0, 19, 461, 1, 0, 0, 0, 21, 463, 1, 0, 0, 0, 23, 466, 1, 0, 0, 0, 25, 468, 1, 0, 0, 0, 27, 470, 1, 0, 0, 0, 29, 473, 1, 0, 0, 0, 31, 476, 1, 0, 0, 0, 33, 478, 1, 0, 0, 0, 35, 480, 1, 0, 0, 0, 37, 482, 1, 0, 0, 0, 39, 485, 1, 0, 0, 0, 41, 487, 1, 0, 0, 0, 43, 490, 1, 0, 0, 0, 45, 493, 1, 0, 0, 0, 47, 496, 1, 0, 0, 0, 49, 499, 1, 0, 0, 0, 51, 505, 1, 0, 0, 0, 53, 512, 1, 0, 0, 0, 55, 516, 1, 0, 0, 0, 57, 522, 1, 0, 0, 0, 59, 526, 1, 0, 0, 0, 61, 532, 1, 0, 0, 0, 63, 540, 1, 0, 0, 0, 65, 544, 1, 0, 0, 0, 67, 547, 1, 0, 0, 0, 69, 551, 1, 0, 0, 0, 71, 558, 1, 0, 0, 0, 73, 572, 1, 0, 0, 0, 75, 579, 1, 0, 0, 0, 77, 585, 1, 0, 0, 0, 79, 593, 1, 0, 0, 0, 81, 596, 1, 0, 0, 0, 83, 604, 1, 0, 0, 0, 85, 609, 1, 0, 0, 0, 87, 614, 1, 0, 0, 0, 89, 620, 1, 0, 0, 0, 91, 628, 1, 0, 0, 0, 93, 635, 1, 0, 0, 0, 95, 642, 1, 0, 0, 0, 97, 651, 1, 0, 0, 0, 99, 662, 1, 0, 0, 0, 101, 669, 1, 0, 0, 0, 103, 675, 1, 0, 0, 0, 105, 688, 1, 0, 0, 0, 107, 701, 1, 0, 0, 0, 109, 719, 1, 0, 0, 0, 111, 728, 1, 0, 0, 0, 113, 736, 1, 0, 0, 0, 115, 747, 1, 0, 0, 0, 117, 756, 1, 0, 0, 0, 119, 763, 1, 0, 0, 0, 121, 768, 1, 0, 0, 0, 123, 775, 1, 0, 0, 0, 125, 784, 1, 0, 0, 0, 127, 789, 1, 0, 0, 0, 129, 794, 1, 0, 0, 0, 131, 799, 1, 0, 0, 0, 133, 803, 1, 0, 0, 0, 135, 810, 1, 0, 0, 0, 137, 817, 1, 0, 0, 0, 139, 827, 1, 0, 0, 0, 141, 834, 1, 0, 0, 0, 143, 842, 1, 0, 0, 0, 145, 847, 1, 0, 0, 0, 147, 851, 1, 0, 0, 0, 149, 859, 1, 0, 0, 0, 151, 864, 1, 0, 0, 0, 153, 869, 1, 0, 0, 0, 155, 874, 1, 0, 0, 0, 157, 880, 1, 0, 0, 0, 159, 887, 1, 0, 0, 0, 161, 890, 1, 0, 0, 0, 163, 897, 1, 0, 0, 0, 165, 907, 1, 0, 0, 0, 167, 910, 1, 0, 0, 0, 169, 916, 1, 0, 0, 0, 171, 924, 1, 0, 0, 0, 173, 934, 1, 0, 0, 0, 175, 940, 1, 0, 0, 0, 177, 947, 1, 0, 0, 0, 179, 955, 1, 0, 0, 0, 181, 965, 1, 0, 0, 0, 183, 970, 1, 0, 0, 0, 185, 973, 1, 0, 0, 0, 187, 980, 1, 0, 0, 0, 189, 985, 1, 0, 0, 0, 191, 989, 1, 0, 0, 0, 193, 994, 1, 0, 0, 0, 195, 999, 1, 0, 0, 0, 197, 1005, 1, 0, 0, 0, 199, 1011, 1, 0, 0, 0, 201, 1019, 1, 0, 0, 0, 203, 1022, 1, 0, 0, 0, 205, 1026, 1, 0, 0, 0, 207, 1034, 1, 0, 0, 0, 209, 1039, 1, 0, 0, 0, 211, 1042, 1, 0, 0, 0, 213, 1049, 1, 0, 0, 0, 215, 1052, 1, 0, 0, 0, 217, 1055, 1, 0, 0, 0, 219, 1061, 1, 0, 0, 0, 221, 1067, 1, 0, 0, 0, 223, 1072, 1, 0, 0, 0, 225, 1079, 1, 0, 0, 0, 227, 1087, 1, 0, 0, 0, 229, 1093, 1, 0, 0, 0, 231, 1099, 1, 0, 0, 0, 233, 1109, 1, 0, 0, 0, 235, 1120, 1, 0, 0, 0, 237, 1127, 1, 0, 0, 0, 239, 1135, 1, 0, 0, 0, 241, 1143, 1, 0, 0, 0, 243, 1150, 1, 0, 0, 0, 245, 1158, 1, 0, 0, 0, 247, 1167, 1, 0, 0, 0, 249, 1177, 1, 0, 0, 0, 251, 1183, 1, 0, 0, 0, 253, 1192, 1, 0, 0, 0, 255, 1196, 1, 0, 0, 0, 257, 1201, 1, 0, 0, 0, 259, 1211, 1, 0, 0, 0, 261, 1218, 1, 0, 0, 0, 263, 1222, 1, 0, 0, 0, 265, 1228, 1, 0, 0, 0, 267, 1233, 1, 0, 0, 0, 269, 1243, 1, 0, 0, 0, 271, 1248, 1, 0, 0, 0, 273, 1251, 1, 0, 0, 0, 275, 1263, 1, 0, 0, 0, 277, 1271, 1, 0, 0, 0, 279, 1277, 1, 0, 0, 0, 281, 1284, 1, 0, 0, 0, 283, 1291, 1, 0, 0, 0, 285, 1297, 1, 0, 0, 0, 287, 1304, 1, 0, 0, 0, 289, 1311, 1, 0, 0, 0, 291, 1316, 1, 0, 0, 0, 293, 1324, 1, 0, 0, 0, 295, 1329, 1, 0, 0, 0, 297, 1335, 1, 0, 0, 0, 299, 1340, 1, 0, 0, 0, 301, 1348, 1, 0, 0, 0, 303, 1360, 1, 0, 0, 0, 305, 1365, 1, 0, 0, 0, 307, 1375, 1, 0, 0, 0, 309, 1381, 1, 0, 0, 0, 311, 1391, 1, 0, 0, 0, 313, 1401, 1, 0, 0, 0, 315, 1409, 1, 0, 0, 0, 317, 1419, 1, 0, 0, 0, 319, 1429, 1, 0, 0, 0, 321, 1440, 1, 0, 0, 0, 323, 1444, 1, 0, 0, 0, 325, 1455, 1, 0, 0, 0, 327, 1460, 1, 0, 0, 0, 329, 1470, 1, 0, 0, 0, 331, 1476, 1, 0, 0, 0, 333, 1489, 1, 0, 0, 0, 335, 1494, 1, 0, 0, 0, 337, 1505, 1, 0, 0, 0, 339, 1515, 1, 0, 0, 0, 341, 1522, 1, 0, 0, 0, 343, 1529, 1, 0, 0, 0, 345, 1534, 1, 0, 0, 0, 347, 1540, 1, 0, 0, 0, 349, 1547, 1, 0, 0, 0, 351, 1553, 1, 0, 0, 0, 353, 1559, 1, 0, 0, 0, 355, 1564, 1, 0, 0, 0, 357, 1571, 1, 0, 0, 0, 359, 1578, 1, 0, 0, 0, 361, 1586, 1, 0, 0, 0, 363, 1591, 1, 0, 0, 0, 365, 1598, 1, 0, 0, 0, 367, 1601, 1, 0, 0, 0, 369, 1644, 1, 0, 0, 0, 371, 1687, 1, 0, 0, 0, 373, 1698, 1, 0, 0, 0, 375, 1700, 1, 0, 0, 0, 377, 1711, 1, 0, 0, 0, 379, 1714, 1, 0, 0, 0, 381, 1732, 1, 0, 0, 0, 383, 1746, 1, 0, 0, 0, 385, 1750, 1, 0, 0, 0, 387, 1752, 1, 0, 0, 0, 389, 1754, 1, 0, 0, 0, 391, 1756, 1, 0, 0, 0, 393, 1758, 1, 0, 0, 0, 395, 1760, 1, 0, 0, 0, 397, 1762, 1, 0, 0, 0, 399, 1764, 1, 0, 0, 0, 401, 1766, 1, 0, 0, 0, 403, 1768, 1, 0, 0, 0, 405, 1770, 1, 0, 0, 0, 407, 1772, 1, 0, 0, 0, 409, 1774, 1, 0, 0, 0, 411, 1776, 1, 0, 0, 0, 413, 1778, 1, 0, 0, 0, 415, 1780, 1, 0, 0, 0, 417, 1782, 1, 0, 0, 0, 419, 1784, 1, 0, 0, 0, 421, 1786, 1, 0, 0, 0, 423, 1788, 1, 0, 0, 0, 425, 1790, 1, 0, 0, 0, 427, 1792, 1, 0, 0, 0, 429, 1794, 1, 0, 0, 0, 431, 1796, 1, 0, 0, 0, 433, 1798, 1, 0, 0, 0, 435, 1800, 1, 0, 0, 0, 437, 1802, 1, 0, 0, 0, 439, 1804, 1, 0, 0, 0, 441, 1806, 1, 0, 0, 0, 443, 444, 5, 59, 0, 0, 444, 2, 1, 0, 0, 0, 445, 446, 5, 46, 0, 0, 446, 4, 1, 0, 0, 0, 447, 448, 5, 40, 0, 0, 448, 6, 1, 0, 0, 0, 449, 450, 5, 41, 0, 0, 450, 8, 1, 0, 0, 0, 451, 452, 5, 44, 0, 0, 452, 10, 1, 0, 0, 0, 453, 454, 5, 61, 0, 0, 454, 12, 1, 0, 0, 0, 455, 456, 5, 42, 0, 0, 456, 14, 1, 0, 0, 0, 457, 458, 5, 43, 0, 0, 458, 16, 1, 0, 0, 0, 459, 460, 5, 45, 0, 0, 460, 18, 1, 0, 0, 0, 461, 462, 5, 126, 0, 0, 462, 20, 1, 0, 0, 0, 463, 464, 5, 124, 0, 0, 464, 465, 5, 124, 0, 0, 465, 22, 1, 0, 0, 0, 466, 467, 5, 47, 0, 0, 467, 24, 1, 0, 0, 0, 468, 469, 5, 37, 0, 0, 469, 26, 1, 0, 0, 0, 470, 471, 5, 60, 0, 0, 471, 472, 5, 60, 0, 0, 472, 28, 1, 0, 0, 0, 473, 474, 5, 62, 0, 0, 474, 475, 5, 62, 0, 0, 475, 30, 1, 0, 0, 0, 476, 477, 5, 38, 0, 0, 477, 32, 1, 0, 0, 0, 478, 479, 5, 124, 0, 0, 479, 34, 1, 0, 0, 0, 480, 481, 5, 60, 0, 0, 481, 36, 1, 0, 0, 0, 482, 483, 5, 60, 0, 0, 483, 484, 5, 61, 0, 0, 484, 38, 1, 0, 0, 0, 485, 486, 5, 62, 0, 0, 486, 40, 1, 0, 0, 0, 487, 488, 5, 62, 0, 0, 488, 489, 5, 61, 0, 0, 489, 42, 1, 0, 0, 0, 490, 491, 5, 61, 0, 0, 491, 492, 5, 61, 0, 0, 492, 44, 1, 0, 0, 0, 493, 494, 5, 33, 0, 0, 494, 495, 5, 61, 0, 0, 495, 46, 1, 0, 0, 0, 496, 497, 5, 60, 0, 0, 497, 498, 5, 62, 0, 0, 498, 48, 1, 0, 0, 0, 499, 500, 3, 391, 195, 0, 500, 501, 3, 393, 196, 0, 501, 502, 3, 419, 209, 0, 502, 503, 3, 425, 212, 0, 503, 504, 3, 429, 214, 0, 504, 50, 1, 0, 0, 0, 505, 506, 3, 391, 195, 0, 506, 507, 3, 395, 197, 0, 507, 508, 3, 429, 214, 0, 508, 509, 3, 407, 203, 0, 509, 510, 3, 419, 209, 0, 510, 511, 3, 417, 208, 0, 511, 52, 1, 0, 0, 0, 512, 513, 3, 391, 195, 0, 513, 514, 3, 397, 198, 0, 514, 515, 3, 397, 198, 0, 515, 54, 1, 0, 0, 0, 516, 517, 3, 391, 195, 0, 517, 518, 3, 401, 200, 0, 518, 519, 3, 429, 214, 0, 519, 520, 3, 399, 199, 0, 520, 521, 3, 425, 212, 0, 521, 56, 1, 0, 0, 0, 522, 523, 3, 391, 195, 0, 523, 524, 3, 413, 206, 0, 524, 525, 3, 413, 206, 0, 525, 58, 1, 0, 0, 0, 526, 527, 3, 391, 195, 0, 527, 528, 3, 413, 206, 0, 528, 529, 3, 429, 214, 0, 529, 530, 3, 399, 199, 0, 530, 531, 3, 425, 212, 0, 531, 60, 1, 0, 0, 0, 532, 533, 3, 391, 195, 0, 533, 534, 3, 417, 208, 0, 534, 535, 3, 391, 195, 0, 535, 536, 3, 413, 206, 0, 536, 537, 3, 439, 219, 0, 537, 538, 3, 441, 220, 0, 538, 539, 3, 399, 199, 0, 539, 62, 1, 0, 0, 0, 540, 541, 3, 391, 195, 0, 541, 542, 3, 417, 208, 0, 542, 543, 3, 397, 198, 0, 543, 64, 1, 0, 0, 0, 544, 545, 3, 391, 195, 0, 545, 546, 3, 427, 213, 0, 546, 66, 1, 0, 0, 0, 547, 548, 3, 391, 195, 0, 548, 549, 3, 427, 213, 0, 549, 550, 3, 395, 197, 0, 550, 68, 1, 0, 0, 0, 551, 552, 3, 391, 195, 0, 552, 553, 3, 429, 214, 0, 553, 554, 3, 429, 214, 0, 554, 555, 3, 391, 195, 0, 555, 556, 3, 395, 197, 0, 556, 557, 3, 405, 202, 0, 557, 70, 1, 0, 0, 0, 558, 559, 3, 391, 195, 0, 559, 560, 3, 431, 215, 0, 560, 561, 3, 429, 214, 0, 561, 562, 3, 419, 209, 0, 562, 563, 3, 407, 203, 0, 563, 564, 3, 417, 208, 0, 564, 565, 3, 395, 197, 0, 565, 566, 3, 425, 212, 0, 566, 567, 3, 399, 199, 0, 567, 568, 3, 415, 207, 0, 568, 569, 3, 399, 199, 0, 569, 570, 3, 417, 208, 0, 570, 571, 3, 429, 214, 0, 571, 72, 1, 0, 0, 0, 572, 573, 3, 393, 196, 0, 573, 574, 3, 399, 199, 0, 574, 575, 3, 401, 200, 0, 575, 576, 3, 419, 209, 0, 576, 577, 3, 425, 212, 0, 577, 578, 3, 399, 199, 0, 578, 74, 1, 0, 0, 0, 579, 580, 3, 393, 196, 0, 580, 581, 3, 399, 199, 0, 581, 582, 3, 403, 201, 0, 582, 583, 3, 407, 203, 0, 583, 584, 3, 417, 208, 0, 584, 76, 1, 0, 0, 0, 585, 586, 3, 393, 196, 0, 586, 587, 3, 399, 199, 0, 587, 588, 3, 429, 214, 0, 588, 589, 3, 435, 217, 0, 589, 590, 3, 399, 199, 0, 590, 591, 3, 399, 199, 0, 591, 592, 3, 417, 208, 0, 592, 78, 1, 0, 0, 0, 593, 594, 3, 393, 196, 0, 594, 595, 3, 439, 219, 0, 595, 80, 1, 0, 0, 0, 596, 597, 3, 395, 197, 0, 597, 598, 3, 391, 195, 0, 598, 599, 3, 427, 213, 0, 599, 600, 3, 395, 197, 0, 600, 601, 3, 391, 195, 0, 601, 602, 3, 397, 198, 0, 602, 603, 3, 399, 199, 0, 603, 82, 1, 0, 0, 0, 604, 605, 3, 395, 197, 0, 605, 606, 3, 391, 195, 0, 606, 607, 3, 427, 213, 0, 607, 608, 3, 399, 199, 0, 608, 84, 1, 0, 0, 0, 609, 610, 3, 395, 197, 0, 610, 611, 3, 391, 195, 0, 611, 612, 3, 427, 213, 0, 612, 613, 3, 429, 214, 0, 613, 86, 1, 0, 0, 0, 614, 615, 3, 395, 197, 0, 615, 616, 3, 405, 202, 0, 616, 617, 3, 399, 199, 0, 617, 618, 3, 395, 197, 0, 618, 619, 3, 411, 205, 0, 619, 88, 1, 0, 0, 0, 620, 621, 3, 395, 197, 0, 621, 622, 3, 419, 209, 0, 622, 623, 3, 413, 206, 0, 623, 624, 3, 413, 206, 0, 624, 625, 3, 391, 195, 0, 625, 626, 3, 429, 214, 0, 626, 627, 3, 399, 199, 0, 627, 90, 1, 0, 0, 0, 628, 629, 3, 395, 197, 0, 629, 630, 3, 419, 209, 0, 630, 631, 3, 413, 206, 0, 631, 632, 3, 431, 215, 0, 632, 633, 3, 415, 207, 0, 633, 634, 3, 417, 208, 0, 634, 92, 1, 0, 0, 0, 635, 636, 3, 395, 197, 0, 636, 637, 3, 419, 209, 0, 637, 638, 3, 415, 207, 0, 638, 639, 3, 415, 207, 0, 639, 640, 3, 407, 203, 0, 640, 641, 3, 429, 214, 0, 641, 94, 1, 0, 0, 0, 642, 643, 3, 395, 197, 0, 643, 644, 3, 419, 209, 0, 644, 645, 3, 417, 208, 0, 645, 646, 3, 401, 200, 0, 646, 647, 3, 413, 206, 0, 647, 648, 3, 407, 203, 0, 648, 649, 3, 395, 197, 0, 649, 650, 3, 429, 214, 0, 650, 96, 1, 0, 0, 0, 651, 652, 3, 395, 197, 0, 652, 653, 3, 419, 209, 0, 653, 654, 3, 417, 208, 0, 654, 655, 3, 427, 213, 0, 655, 656, 3, 429, 214, 0, 656, 657, 3, 425, 212, 0, 657, 658, 3, 391, 195, 0, 658, 659, 3, 407, 203, 0, 659, 660, 3, 417, 208, 0, 660, 661, 3, 429, 214, 0, 661, 98, 1, 0, 0, 0, 662, 663, 3, 395, 197, 0, 663, 664, 3, 425, 212, 0, 664, 665, 3, 399, 199, 0, 665, 666, 3, 391, 195, 0, 666, 667, 3, 429, 214, 0, 667, 668, 3, 399, 199, 0, 668, 100, 1, 0, 0, 0, 669, 670, 3, 395, 197, 0, 670, 671, 3, 425, 212, 0, 671, 672, 3, 419, 209, 0, 672, 673, 3, 427, 213, 0, 673, 674, 3, 427, 213, 0, 674, 102, 1, 0, 0, 0, 675, 676, 3, 395, 197, 0, 676, 677, 3, 431, 215, 0, 677, 678, 3, 425, 212, 0, 678, 679, 3, 425, 212, 0, 679, 680, 3, 399, 199, 0, 680, 681, 3, 417, 208, 0, 681, 682, 3, 429, 214, 0, 682, 683, 5, 95, 0, 0, 683, 684, 3, 397, 198, 0, 684, 685, 3, 391, 195, 0, 685, 686, 3, 429, 214, 0, 686, 687, 3, 399, 199, 0, 687, 104, 1, 0, 0, 0, 688, 689, 3, 395, 197, 0, 689, 690, 3, 431, 215, 0, 690, 691, 3, 425, 212, 0, 691, 692, 3, 425, 212, 0, 692, 693, 3, 399, 199, 0, 693, 694, 3, 417, 208, 0, 694, 695, 3, 429, 214, 0, 695, 696, 5, 95, 0, 0, 696, 697, 3, 429, 214, 0, 697, 698, 3, 407, 203, 0, 698, 699, 3, 415, 207, 0, 699, 700, 3, 399, 199, 0, 700, 106, 1, 0, 0, 0, 701, 702, 3, 395, 197, 0, 702, 703, 3, 431, 215, 0, 703, 704, 3, 425, 212, 0, 704, 705, 3, 425, 212, 0, 705, 706, 3, 399, 199, 0, 706, 707, 3, 417, 208, 0, 707, 708, 3, 429, 214, 0, 708, 709, 5, 95, 0, 0, 709, 710, 3, 429, 214, 0, 710, 711, 3, 407, 203, 0, 711, 712, 3, 415, 207, 0, 712, 713, 3, 399, 199, 0, 713, 714, 3, 427, 213, 0, 714, 715, 3, 429, 214, 0, 715, 716, 3, 391, 195, 0, 716, 717, 3, 415, 207, 0, 717, 718, 3, 421, 210, 0, 718, 108, 1, 0, 0, 0, 719, 720, 3, 397, 198, 0, 720, 721, 3, 391, 195, 0, 721, 722, 3, 429, 214, 0, 722, 723, 3, 391, 195, 0, 723, 724, 3, 393, 196, 0, 724, 725, 3, 391, 195, 0, 725, 726, 3, 427, 213, 0, 726, 727, 3, 399, 199, 0, 727, 110, 1, 0, 0, 0, 728, 729, 3, 397, 198, 0, 729, 730, 3, 399, 199, 0, 730, 731, 3, 401, 200, 0, 731, 732, 3, 391, 195, 0, 732, 733, 3, 431, 215, 0, 733, 734, 3, 413, 206, 0, 734, 735, 3, 429, 214, 0, 735, 112, 1, 0, 0, 0, 736, 737, 3, 397, 198, 0, 737, 738, 3, 399, 199, 0, 738, 739, 3, 401, 200, 0, 739, 740, 3, 399, 199, 0, 740, 741, 3, 425, 212, 0, 741, 742, 3, 425, 212, 0, 742, 743, 3, 391, 195, 0, 743, 744, 3, 393, 196, 0, 744, 745, 3, 413, 206, 0, 745, 746, 3, 399, 199, 0, 746, 114, 1, 0, 0, 0, 747, 748, 3, 397, 198, 0, 748, 749, 3, 399, 199, 0, 749, 750, 3, 401, 200, 0, 750, 751, 3, 399, 199, 0, 751, 752, 3, 425, 212, 0, 752, 753, 3, 425, 212, 0, 753, 754, 3, 399, 199, 0, 754, 755, 3, 397, 198, 0, 755, 116, 1, 0, 0, 0, 756, 757, 3, 397, 198, 0, 757, 758, 3, 399, 199, 0, 758, 759, 3, 413, 206, 0, 759, 760, 3, 399, 199, 0, 760, 761, 3, 429, 214, 0, 761, 762, 3, 399, 199, 0, 762, 118, 1, 0, 0, 0, 763, 764, 3, 397, 198, 0, 764, 765, 3, 399, 199, 0, 765, 766, 3, 427, 213, 0, 766, 767, 3, 395, 197, 0, 767, 120, 1, 0, 0, 0, 768, 769, 3, 397, 198, 0, 769, 770, 3, 399, 199, 0, 770, 771, 3, 429, 214, 0, 771, 772, 3, 391, 195, 0, 772, 773, 3, 395, 197, 0, 773, 774, 3, 405, 202, 0, 774, 122, 1, 0, 0, 0, 775, 776, 3, 397, 198, 0, 776, 777, 3, 407, 203, 0, 777, 778, 3, 427, 213, 0, 778, 779, 3, 429, 214, 0, 779, 780, 3, 407, 203, 0, 780, 781, 3, 417, 208, 0, 781, 782, 3, 395, 197, 0, 782, 783, 3, 429, 214, 0, 783, 124, 1, 0, 0, 0, 784, 785, 3, 397, 198, 0, 785, 786, 3, 425, 212, 0, 786, 787, 3, 419, 209, 0, 787, 788, 3, 421, 210, 0, 788, 126, 1, 0, 0, 0, 789, 790, 3, 399, 199, 0, 790, 791, 3, 391, 195, 0, 791, 792, 3, 395, 197, 0, 792, 793, 3, 405, 202, 0, 793, 128, 1, 0, 0, 0, 794, 795, 3, 399, 199, 0, 795, 796, 3, 413, 206, 0, 796, 797, 3, 427, 213, 0, 797, 798, 3, 399, 199, 0, 798, 130, 1, 0, 0, 0, 799, 800, 3, 399, 199, 0, 800, 801, 3, 417, 208, 0, 801, 802, 3, 397, 198, 0, 802, 132, 1, 0, 0, 0, 803, 804, 3, 399, 199, 0, 804, 805, 3, 427, 213, 0, 805, 806, 3, 395, 197, 0, 806, 807, 3, 391, 195, 0, 807, 808, 3, 421, 210, 0, 808, 809, 3, 399, 199, 0, 809, 134, 1, 0, 0, 0, 810, 811, 3, 399, 199, 0, 811, 812, 3, 437, 218, 0, 812, 813, 3, 395, 197, 0, 813, 814, 3, 399, 199, 0, 814, 815, 3, 421, 210, 0, 815, 816, 3, 429, 214, 0, 816, 136, 1, 0, 0, 0, 817, 818, 3, 399, 199, 0, 818, 819, 3, 437, 218, 0, 819, 820, 3, 395, 197, 0, 820, 821, 3, 413, 206, 0, 821, 822, 3, 431, 215, 0, 822, 823, 3, 427, 213, 0, 823, 824, 3, 407, 203, 0, 824, 825, 3, 433, 216, 0, 825, 826, 3, 399, 199, 0, 826, 138, 1, 0, 0, 0, 827, 828, 3, 399, 199, 0, 828, 829, 3, 437, 218, 0, 829, 830, 3, 407, 203, 0, 830, 831, 3, 427, 213, 0, 831, 832, 3, 429, 214, 0, 832, 833, 3, 427, 213, 0, 833, 140, 1, 0, 0, 0, 834, 835, 3, 399, 199, 0, 835, 836, 3, 437, 218, 0, 836, 837, 3, 421, 210, 0, 837, 838, 3, 413, 206, 0, 838, 839, 3, 391, 195, 0, 839, 840, 3, 407, 203, 0, 840, 841, 3, 417, 208, 0, 841, 142, 1, 0, 0, 0, 842, 843, 3, 401, 200, 0, 843, 844, 3, 391, 195, 0, 844, 845, 3, 407, 203, 0, 845, 846, 3, 413, 206, 0, 846, 144, 1, 0, 0, 0, 847, 848, 3, 401, 200, 0, 848, 849, 3, 419, 209, 0, 849, 850, 3, 425, 212, 0, 850, 146, 1, 0, 0, 0, 851, 852, 3, 401, 200, 0, 852, 853, 3, 419, 209, 0, 853, 854, 3, 425, 212, 0, 854, 855, 3, 399, 199, 0, 855, 856, 3, 407, 203, 0, 856, 857, 3, 403, 201, 0, 857, 858, 3, 417, 208, 0, 858, 148, 1, 0, 0, 0, 859, 860, 3, 401, 200, 0, 860, 861, 3, 425, 212, 0, 861, 862, 3, 419, 209, 0, 862, 863, 3, 415, 207, 0, 863, 150, 1, 0, 0, 0, 864, 865, 3, 401, 200, 0, 865, 866, 3, 431, 215, 0, 866, 867, 3, 413, 206, 0, 867, 868, 3, 413, 206, 0, 868, 152, 1, 0, 0, 0, 869, 870, 3, 403, 201, 0, 870, 871, 3, 413, 206, 0, 871, 872, 3, 419, 209, 0, 872, 873, 3, 393, 196, 0, 873, 154, 1, 0, 0, 0, 874, 875, 3, 403, 201, 0, 875, 876, 3, 425, 212, 0, 876, 877, 3, 419, 209, 0, 877, 878, 3, 431, 215, 0, 878, 879, 3, 421, 210, 0, 879, 156, 1, 0, 0, 0, 880, 881, 3, 405, 202, 0, 881, 882, 3, 391, 195, 0, 882, 883, 3, 433, 216, 0, 883, 884, 3, 407, 203, 0, 884, 885, 3, 417, 208, 0, 885, 886, 3, 403, 201, 0, 886, 158, 1, 0, 0, 0, 887, 888, 3, 407, 203, 0, 888, 889, 3, 401, 200, 0, 889, 160, 1, 0, 0, 0, 890, 891, 3, 407, 203, 0, 891, 892, 3, 403, 201, 0, 892, 893, 3, 417, 208, 0, 893, 894, 3, 419, 209, 0, 894, 895, 3, 425, 212, 0, 895, 896, 3, 399, 199, 0, 896, 162, 1, 0, 0, 0, 897, 898, 3, 407, 203, 0, 898, 899, 3, 415, 207, 0, 899, 900, 3, 415, 207, 0, 900, 901, 3, 399, 199, 0, 901, 902, 3, 397, 198, 0, 902, 903, 3, 407, 203, 0, 903, 904, 3, 391, 195, 0, 904, 905, 3, 429, 214, 0, 905, 906, 3, 399, 199, 0, 906, 164, 1, 0, 0, 0, 907, 908, 3, 407, 203, 0, 908, 909, 3, 417, 208, 0, 909, 166, 1, 0, 0, 0, 910, 911, 3, 407, 203, 0, 911, 912, 3, 417, 208, 0, 912, 913, 3, 397, 198, 0, 913, 914, 3, 399, 199, 0, 914, 915, 3, 437, 218, 0, 915, 168, 1, 0, 0, 0, 916, 917, 3, 407, 203, 0, 917, 918, 3, 417, 208, 0, 918, 919, 3, 397, 198, 0, 919, 920, 3, 399, 199, 0, 920, 921, 3, 437, 218, 0, 921, 922, 3, 399, 199, 0, 922, 923, 3, 397, 198, 0, 923, 170, 1, 0, 0, 0, 924, 925, 3, 407, 203, 0, 925, 926, 3, 417, 208, 0, 926, 927, 3, 407, 203, 0, 927, 928, 3, 429, 214, 0, 928, 929, 3, 407, 203, 0, 929, 930, 3, 391, 195, 0, 930, 931, 3, 413, 206, 0, 931, 932, 3, 413, 206, 0, 932, 933, 3, 439, 219, 0, 933, 172, 1, 0, 0, 0, 934, 935, 3, 407, 203, 0, 935, 936, 3, 417, 208, 0, 936, 937, 3, 417, 208, 0, 937, 938, 3, 399, 199, 0, 938, 939, 3, 425, 212, 0, 939, 174, 1, 0, 0, 0, 940, 941, 3, 407, 203, 0, 941, 942, 3, 417, 208, 0, 942, 943, 3, 427, 213, 0, 943, 944, 3, 399, 199, 0, 944, 945, 3, 425, 212, 0, 945, 946, 3, 429, 214, 0, 946, 176, 1, 0, 0, 0, 947, 948, 3, 407, 203, 0, 948, 949, 3, 417, 208, 0, 949, 950, 3, 427, 213, 0, 950, 951, 3, 429, 214, 0, 951, 952, 3, 399, 199, 0, 952, 953, 3, 391, 195, 0, 953, 954, 3, 397, 198, 0, 954, 178, 1, 0, 0, 0, 955, 956, 3, 407, 203, 0, 956, 957, 3, 417, 208, 0, 957, 958, 3, 429, 214, 0, 958, 959, 3, 399, 199, 0, 959, 960, 3, 425, 212, 0, 960, 961, 3, 427, 213, 0, 961, 962, 3, 399, 199, 0, 962, 963, 3, 395, 197, 0, 963, 964, 3, 429, 214, 0, 964, 180, 1, 0, 0, 0, 965, 966, 3, 407, 203, 0, 966, 967, 3, 417, 208, 0, 967, 968, 3, 429, 214, 0, 968, 969, 3, 419, 209, 0, 969, 182, 1, 0, 0, 0, 970, 971, 3, 407, 203, 0, 971, 972, 3, 427, 213, 0, 972, 184, 1, 0, 0, 0, 973, 974, 3, 407, 203, 0, 974, 975, 3, 427, 213, 0, 975, 976, 3, 417, 208, 0, 976, 977, 3, 431, 215, 0, 977, 978, 3, 413, 206, 0, 978, 979, 3, 413, 206, 0, 979, 186, 1, 0, 0, 0, 980, 981, 3, 409, 204, 0, 981, 982, 3, 419, 209, 0, 982, 983, 3, 407, 203, 0, 983, 984, 3, 417, 208, 0, 984, 188, 1, 0, 0, 0, 985, 986, 3, 411, 205, 0, 986, 987, 3, 399, 199, 0, 987, 988, 3, 439, 219, 0, 988, 190, 1, 0, 0, 0, 989, 990, 3, 413, 206, 0, 990, 991, 3, 399, 199, 0, 991, 992, 3, 401, 200, 0, 992, 993, 3, 429, 214, 0, 993, 192, 1, 0, 0, 0, 994, 995, 3, 413, 206, 0, 995, 996, 3, 407, 203, 0, 996, 997, 3, 411, 205, 0, 997, 998, 3, 399, 199, 0, 998, 194, 1, 0, 0, 0, 999, 1000, 3, 413, 206, 0, 1000, 1001, 3, 407, 203, 0, 1001, 1002, 3, 415, 207, 0, 1002, 1003, 3, 407, 203, 0, 1003, 1004, 3, 429, 214, 0, 1004, 196, 1, 0, 0, 0, 1005, 1006, 3, 415, 207, 0, 1006, 1007, 3, 391, 195, 0, 1007, 1008, 3, 429, 214, 0, 1008, 1009, 3, 395, 197, 0, 1009, 1010, 3, 405, 202, 0, 1010, 198, 1, 0, 0, 0, 1011, 1012, 3, 417, 208, 0, 1012, 1013, 3, 391, 195, 0, 1013, 1014, 3, 429, 214, 0, 1014, 1015, 3, 431, 215, 0, 1015, 1016, 3, 425, 212, 0, 1016, 1017, 3, 391, 195, 0, 1017, 1018, 3, 413, 206, 0, 1018, 200, 1, 0, 0, 0, 1019, 1020, 3, 417, 208, 0, 1020, 1021, 3, 419, 209, 0, 1021, 202, 1, 0, 0, 0, 1022, 1023, 3, 417, 208, 0, 1023, 1024, 3, 419, 209, 0, 1024, 1025, 3, 429, 214, 0, 1025, 204, 1, 0, 0, 0, 1026, 1027, 3, 417, 208, 0, 1027, 1028, 3, 419, 209, 0, 1028, 1029, 3, 429, 214, 0, 1029, 1030, 3, 417, 208, 0, 1030, 1031, 3, 431, 215, 0, 1031, 1032, 3, 413, 206, 0, 1032, 1033, 3, 413, 206, 0, 1033, 206, 1, 0, 0, 0, 1034, 1035, 3, 417, 208, 0, 1035, 1036, 3, 431, 215, 0, 1036, 1037, 3, 413, 206, 0, 1037, 1038, 3, 413, 206, 0, 1038, 208, 1, 0, 0, 0, 1039, 1040, 3, 419, 209, 0, 1040, 1041, 3, 401, 200, 0, 1041, 210, 1, 0, 0, 0, 1042, 1043, 3, 419, 209, 0, 1043, 1044, 3, 401, 200, 0, 1044, 1045, 3, 401, 200, 0, 1045, 1046, 3, 427, 213, 0, 1046, 1047, 3, 399, 199, 0, 1047, 1048, 3, 429, 214, 0, 1048, 212, 1, 0, 0, 0, 1049, 1050, 3, 419, 209, 0, 1050, 1051, 3, 417, 208, 0, 1051, 214, 1, 0, 0, 0, 1052, 1053, 3, 419, 209, 0, 1053, 1054, 3, 425, 212, 0, 1054, 216, 1, 0, 0, 0, 1055, 1056, 3, 419, 209, 0, 1056, 1057, 3, 425, 212, 0, 1057, 1058, 3, 397, 198, 0, 1058, 1059, 3, 399, 199, 0, 1059, 1060, 3, 425, 212, 0, 1060, 218, 1, 0, 0, 0, 1061, 1062, 3, 419, 209, 0, 1062, 1063, 3, 431, 215, 0, 1063, 1064, 3, 429, 214, 0, 1064, 1065, 3, 399, 199, 0, 1065, 1066, 3, 425, 212, 0, 1066, 220, 1, 0, 0, 0, 1067, 1068, 3, 421, 210, 0, 1068, 1069, 3, 413, 206, 0, 1069, 1070, 3, 391, 195, 0, 1070, 1071, 3, 417, 208, 0, 1071, 222, 1, 0, 0, 0, 1072, 1073, 3, 421, 210, 0, 1073, 1074, 3, 425, 212, 0, 1074, 1075, 3, 391, 195, 0, 1075, 1076, 3, 403, 201, 0, 1076, 1077, 3, 415, 207, 0, 1077, 1078, 3, 391, 195, 0, 1078, 224, 1, 0, 0, 0, 1079, 1080, 3, 421, 210, 0, 1080, 1081, 3, 425, 212, 0, 1081, 1082, 3, 407, 203, 0, 1082, 1083, 3, 415, 207, 0, 1083, 1084, 3, 391, 195, 0, 1084, 1085, 3, 425, 212, 0, 1085, 1086, 3, 439, 219, 0, 1086, 226, 1, 0, 0, 0, 1087, 1088, 3, 423, 211, 0, 1088, 1089, 3, 431, 215, 0, 1089, 1090, 3, 399, 199, 0, 1090, 1091, 3, 425, 212, 0, 1091, 1092, 3, 439, 219, 0, 1092, 228, 1, 0, 0, 0, 1093, 1094, 3, 425, 212, 0, 1094, 1095, 3, 391, 195, 0, 1095, 1096, 3, 407, 203, 0, 1096, 1097, 3, 427, 213, 0, 1097, 1098, 3, 399, 199, 0, 1098, 230, 1, 0, 0, 0, 1099, 1100, 3, 425, 212, 0, 1100, 1101, 3, 399, 199, 0, 1101, 1102, 3, 395, 197, 0, 1102, 1103, 3, 431, 215, 0, 1103, 1104, 3, 425, 212, 0, 1104, 1105, 3, 427, 213, 0, 1105, 1106, 3, 407, 203, 0, 1106, 1107, 3, 433, 216, 0, 1107, 1108, 3, 399, 199, 0, 1108, 232, 1, 0, 0, 0, 1109, 1110, 3, 425, 212, 0, 1110, 1111, 3, 399, 199, 0, 1111, 1112, 3, 401, 200, 0, 1112, 1113, 3, 399, 199, 0, 1113, 1114, 3, 425, 212, 0, 1114, 1115, 3, 399, 199, 0, 1115, 1116, 3, 417, 208, 0, 1116, 1117, 3, 395, 197, 0, 1117, 1118, 3, 399, 199, 0, 1118, 1119, 3, 427, 213, 0, 1119, 234, 1, 0, 0, 0, 1120, 1121, 3, 425, 212, 0, 1121, 1122, 3, 399, 199, 0, 1122, 1123, 3, 403, 201, 0, 1123, 1124, 3, 399, 199, 0, 1124, 1125, 3, 437, 218, 0, 1125, 1126, 3, 421, 210, 0, 1126, 236, 1, 0, 0, 0, 1127, 1128, 3, 425, 212, 0, 1128, 1129, 3, 399, 199, 0, 1129, 1130, 3, 407, 203, 0, 1130, 1131, 3, 417, 208, 0, 1131, 1132, 3, 397, 198, 0, 1132, 1133, 3, 399, 199, 0, 1133, 1134, 3, 437, 218, 0, 1134, 238, 1, 0, 0, 0, 1135, 1136, 3, 425, 212, 0, 1136, 1137, 3, 399, 199, 0, 1137, 1138, 3, 413, 206, 0, 1138, 1139, 3, 399, 199, 0, 1139, 1140, 3, 391, 195, 0, 1140, 1141, 3, 427, 213, 0, 1141, 1142, 3, 399, 199, 0, 1142, 240, 1, 0, 0, 0, 1143, 1144, 3, 425, 212, 0, 1144, 1145, 3, 399, 199, 0, 1145, 1146, 3, 417, 208, 0, 1146, 1147, 3, 391, 195, 0, 1147, 1148, 3, 415, 207, 0, 1148, 1149, 3, 399, 199, 0, 1149, 242, 1, 0, 0, 0, 1150, 1151, 3, 425, 212, 0, 1151, 1152, 3, 399, 199, 0, 1152, 1153, 3, 421, 210, 0, 1153, 1154, 3, 413, 206, 0, 1154, 1155, 3, 391, 195, 0, 1155, 1156, 3, 395, 197, 0, 1156, 1157, 3, 399, 199, 0, 1157, 244, 1, 0, 0, 0, 1158, 1159, 3, 425, 212, 0, 1159, 1160, 3, 399, 199, 0, 1160, 1161, 3, 427, 213, 0, 1161, 1162, 3, 429, 214, 0, 1162, 1163, 3, 425, 212, 0, 1163, 1164, 3, 407, 203, 0, 1164, 1165, 3, 395, 197, 0, 1165, 1166, 3, 429, 214, 0, 1166, 246, 1, 0, 0, 0, 1167, 1168, 3, 425, 212, 0, 1168, 1169, 3, 399, 199, 0, 1169, 1170, 3, 429, 214, 0, 1170, 1171, 3, 431, 215, 0, 1171, 1172, 3, 425, 212, 0, 1172, 1173, 3, 417, 208, 0, 1173, 1174, 3, 407, 203, 0, 1174, 1175, 3, 417, 208, 0, 1175, 1176, 3, 403, 201, 0, 1176, 248, 1, 0, 0, 0, 1177, 1178, 3, 425, 212, 0, 1178, 1179, 3, 407, 203, 0, 1179, 1180, 3, 403, 201, 0, 1180, 1181, 3, 405, 202, 0, 1181, 1182, 3, 429, 214, 0, 1182, 250, 1, 0, 0, 0, 1183, 1184, 3, 425, 212, 0, 1184, 1185, 3, 419, 209, 0, 1185, 1186, 3, 413, 206, 0, 1186, 1187, 3, 413, 206, 0, 1187, 1188, 3, 393, 196, 0, 1188, 1189, 3, 391, 195, 0, 1189, 1190, 3, 395, 197, 0, 1190, 1191, 3, 411, 205, 0, 1191, 252, 1, 0, 0, 0, 1192, 1193, 3, 425, 212, 0, 1193, 1194, 3, 419, 209, 0, 1194, 1195, 3, 435, 217, 0, 1195, 254, 1, 0, 0, 0, 1196, 1197, 3, 425, 212, 0, 1197, 1198, 3, 419, 209, 0, 1198, 1199, 3, 435, 217, 0, 1199, 1200, 3, 427, 213, 0, 1200, 256, 1, 0, 0, 0, 1201, 1202, 3, 427, 213, 0, 1202, 1203, 3, 391, 195, 0, 1203, 1204, 3, 433, 216, 0, 1204, 1205, 3, 399, 199, 0, 1205, 1206, 3, 421, 210, 0, 1206, 1207, 3, 419, 209, 0, 1207, 1208, 3, 407, 203, 0, 1208, 1209, 3, 417, 208, 0, 1209, 1210, 3, 429, 214, 0, 1210, 258, 1, 0, 0, 0, 1211, 1212, 3, 427, 213, 0, 1212, 1213, 3, 399, 199, 0, 1213, 1214, 3, 413, 206, 0, 1214, 1215, 3, 399, 199, 0, 1215, 1216, 3, 395, 197, 0, 1216, 1217, 3, 429, 214, 0, 1217, 260, 1, 0, 0, 0, 1218, 1219, 3, 427, 213, 0, 1219, 1220, 3, 399, 199, 0, 1220, 1221, 3, 429, 214, 0, 1221, 262, 1, 0, 0, 0, 1222, 1223, 3, 429, 214, 0, 1223, 1224, 3, 391, 195, 0, 1224, 1225, 3, 393, 196, 0, 1225, 1226, 3, 413, 206, 0, 1226, 1227, 3, 399, 199, 0, 1227, 264, 1, 0, 0, 0, 1228, 1229, 3, 429, 214, 0, 1229, 1230, 3, 399, 199, 0, 1230, 1231, 3, 415, 207, 0, 1231, 1232, 3, 421, 210, 0, 1232, 266, 1, 0, 0, 0, 1233, 1234, 3, 429, 214, 0, 1234, 1235, 3, 399, 199, 0, 1235, 1236, 3, 415, 207, 0, 1236, 1237, 3, 421, 210, 0, 1237, 1238, 3, 419, 209, 0, 1238, 1239, 3, 425, 212, 0, 1239, 1240, 3, 391, 195, 0, 1240, 1241, 3, 425, 212, 0, 1241, 1242, 3, 439, 219, 0, 1242, 268, 1, 0, 0, 0, 1243, 1244, 3, 429, 214, 0, 1244, 1245, 3, 405, 202, 0, 1245, 1246, 3, 399, 199, 0, 1246, 1247, 3, 417, 208, 0, 1247, 270, 1, 0, 0, 0, 1248, 1249, 3, 429, 214, 0, 1249, 1250, 3, 419, 209, 0, 1250, 272, 1, 0, 0, 0, 1251, 1252, 3, 429, 214, 0, 1252, 1253, 3, 425, 212, 0, 1253, 1254, 3, 391, 195, 0, 1254, 1255, 3, 417, 208, 0, 1255, 1256, 3, 427, 213, 0, 1256, 1257, 3, 391, 195, 0, 1257, 1258, 3, 395, 197, 0, 1258, 1259, 3, 429, 214, 0, 1259, 1260, 3, 407, 203, 0, 1260, 1261, 3, 419, 209, 0, 1261, 1262, 3, 417, 208, 0, 1262, 274, 1, 0, 0, 0, 1263, 1264, 3, 429, 214, 0, 1264, 1265, 3, 425, 212, 0, 1265, 1266, 3, 407, 203, 0, 1266, 1267, 3, 403, 201, 0, 1267, 1268, 3, 403, 201, 0, 1268, 1269, 3, 399, 199, 0, 1269, 1270, 3, 425, 212, 0, 1270, 276, 1, 0, 0, 0, 1271, 1272, 3, 431, 215, 0, 1272, 1273, 3, 417, 208, 0, 1273, 1274, 3, 407, 203, 0, 1274, 1275, 3, 419, 209, 0, 1275, 1276, 3, 417, 208, 0, 1276, 278, 1, 0, 0, 0, 1277, 1278, 3, 431, 215, 0, 1278, 1279, 3, 417, 208, 0, 1279, 1280, 3, 407, 203, 0, 1280, 1281, 3, 423, 211, 0, 1281, 1282, 3, 431, 215, 0, 1282, 1283, 3, 399, 199, 0, 1283, 280, 1, 0, 0, 0, 1284, 1285, 3, 431, 215, 0, 1285, 1286, 3, 421, 210, 0, 1286, 1287, 3, 397, 198, 0, 1287, 1288, 3, 391, 195, 0, 1288, 1289, 3, 429, 214, 0, 1289, 1290, 3, 399, 199, 0, 1290, 282, 1, 0, 0, 0, 1291, 1292, 3, 431, 215, 0, 1292, 1293, 3, 427, 213, 0, 1293, 1294, 3, 407, 203, 0, 1294, 1295, 3, 417, 208, 0, 1295, 1296, 3, 403, 201, 0, 1296, 284, 1, 0, 0, 0, 1297, 1298, 3, 433, 216, 0, 1298, 1299, 3, 391, 195, 0, 1299, 1300, 3, 395, 197, 0, 1300, 1301, 3, 431, 215, 0, 1301, 1302, 3, 431, 215, 0, 1302, 1303, 3, 415, 207, 0, 1303, 286, 1, 0, 0, 0, 1304, 1305, 3, 433, 216, 0, 1305, 1306, 3, 391, 195, 0, 1306, 1307, 3, 413, 206, 0, 1307, 1308, 3, 431, 215, 0, 1308, 1309, 3, 399, 199, 0, 1309, 1310, 3, 427, 213, 0, 1310, 288, 1, 0, 0, 0, 1311, 1312, 3, 433, 216, 0, 1312, 1313, 3, 407, 203, 0, 1313, 1314, 3, 399, 199, 0, 1314, 1315, 3, 435, 217, 0, 1315, 290, 1, 0, 0, 0, 1316, 1317, 3, 433, 216, 0, 1317, 1318, 3, 407, 203, 0, 1318, 1319, 3, 425, 212, 0, 1319, 1320, 3, 429, 214, 0, 1320, 1321, 3, 431, 215, 0, 1321, 1322, 3, 391, 195, 0, 1322, 1323, 3, 413, 206, 0, 1323, 292, 1, 0, 0, 0, 1324, 1325, 3, 435, 217, 0, 1325, 1326, 3, 405, 202, 0, 1326, 1327, 3, 399, 199, 0, 1327, 1328, 3, 417, 208, 0, 1328, 294, 1, 0, 0, 0, 1329, 1330, 3, 435, 217, 0, 1330, 1331, 3, 405, 202, 0, 1331, 1332, 3, 399, 199, 0, 1332, 1333, 3, 425, 212, 0, 1333, 1334, 3, 399, 199, 0, 1334, 296, 1, 0, 0, 0, 1335, 1336, 3, 435, 217, 0, 1336, 1337, 3, 407, 203, 0, 1337, 1338, 3, 429, 214, 0, 1338, 1339, 3, 405, 202, 0, 1339, 298, 1, 0, 0, 0, 1340, 1341, 3, 435, 217, 0, 1341, 1342, 3, 407, 203, 0, 1342, 1343, 3, 429, 214, 0, 1343, 1344, 3, 405, 202, 0, 1344, 1345, 3, 419, 209, 0, 1345, 1346, 3, 431, 215, 0, 1346, 1347, 3, 429, 214, 0, 1347, 300, 1, 0, 0, 0, 1348, 1349, 3, 401, 200, 0, 1349, 1350, 3, 407, 203, 0, 1350, 1351, 3, 425, 212, 0, 1351, 1352, 3, 427, 213, 0, 1352, 1353, 3, 429, 214, 0, 1353, 1354, 5, 95, 0, 0, 1354, 1355, 3, 433, 216, 0, 1355, 1356, 3, 391, 195, 0, 1356, 1357, 3, 413, 206, 0, 1357, 1358, 3, 431, 215, 0, 1358, 1359, 3, 399, 199, 0, 1359, 302, 1, 0, 0, 0, 1360, 1361, 3, 419, 209, 0, 1361, 1362, 3, 433, 216, 0, 1362, 1363, 3, 399, 199, 0, 1363, 1364, 3, 425, 212, 0, 1364, 304, 1, 0, 0, 0, 1365, 1366, 3, 421, 210, 0, 1366, 1367, 3, 391, 195, 0, 1367, 1368, 3, 425, 212, 0, 1368, 1369, 3, 429, 214, 0, 1369, 1370, 3, 407, 203, 0, 1370, 1371, 3, 429, 214, 0, 1371, 1372, 3, 407, 203, 0, 1372, 1373, 3, 419, 209, 0, 1373, 1374, 3, 417, 208, 0, 1374, 306, 1, 0, 0, 0, 1375, 1376, 3, 425, 212, 0, 1376, 1377, 3, 391, 195, 0, 1377, 1378, 3, 417, 208, 0, 1378, 1379, 3, 403, 201, 0, 1379, 1380, 3, 399, 199, 0, 1380, 308, 1, 0, 0, 0, 1381, 1382, 3, 421, 210, 0, 1382, 1383, 3, 425, 212, 0, 1383, 1384, 3, 399, 199, 0, 1384, 1385, 3, 395, 197, 0, 1385, 1386, 3, 399, 199, 0, 1386, 1387, 3, 397, 198, 0, 1387, 1388, 3, 407, 203, 0, 1388, 1389, 3, 417, 208, 0, 1389, 1390, 3, 403, 201, 0, 1390, 310, 1, 0, 0, 0, 1391, 1392, 3, 431, 215, 0, 1392, 1393, 3, 417, 208, 0, 1393, 1394, 3, 393, 196, 0, 1394, 1395, 3, 419, 209, 0, 1395, 1396, 3, 431, 215, 0, 1396, 1397, 3, 417, 208, 0, 1397, 1398, 3, 397, 198, 0, 1398, 1399, 3, 399, 199, 0, 1399, 1400, 3, 397, 198, 0, 1400, 312, 1, 0, 0, 0, 1401, 1402, 3, 395, 197, 0, 1402, 1403, 3, 431, 215, 0, 1403, 1404, 3, 425, 212, 0, 1404, 1405, 3, 425, 212, 0, 1405, 1406, 3, 399, 199, 0, 1406, 1407, 3, 417, 208, 0, 1407, 1408, 3, 429, 214, 0, 1408, 314, 1, 0, 0, 0, 1409, 1410, 3, 401, 200, 0, 1410, 1411, 3, 419, 209, 0, 1411, 1412, 3, 413, 206, 0, 1412, 1413, 3, 413, 206, 0, 1413, 1414, 3, 419, 209, 0, 1414, 1415, 3, 435, 217, 0, 1415, 1416, 3, 407, 203, 0, 1416, 1417, 3, 417, 208, 0, 1417, 1418, 3, 403, 201, 0, 1418, 316, 1, 0, 0, 0, 1419, 1420, 3, 395, 197, 0, 1420, 1421, 3, 431, 215, 0, 1421, 1422, 3, 415, 207, 0, 1422, 1423, 3, 399, 199, 0, 1423, 1424, 5, 95, 0, 0, 1424, 1425, 3, 397, 198, 0, 1425, 1426, 3, 407, 203, 0, 1426, 1427, 3, 427, 213, 0, 1427, 1428, 3, 429, 214, 0, 1428, 318, 1, 0, 0, 0, 1429, 1430, 3, 397, 198, 0, 1430, 1431, 3, 399, 199, 0, 1431, 1432, 3, 417, 208, 0, 1432, 1433, 3, 427, 213, 0, 1433, 1434, 3, 399, 199, 0, 1434, 1435, 5, 95, 0, 0, 1435, 1436, 3, 425, 212, 0, 1436, 1437, 3, 391, 195, 0, 1437, 1438, 3, 417, 208, 0, 1438, 1439, 3, 411, 205, 0, 1439, 320, 1, 0, 0, 0, 1440, 1441, 3, 413, 206, 0, 1441, 1442, 3, 391, 195, 0, 1442, 1443, 3, 403, 201, 0, 1443, 322, 1, 0, 0, 0, 1444, 1445, 3, 413, 206, 0, 1445, 1446, 3, 391, 195, 0, 1446, 1447, 3, 427, 213, 0, 1447, 1448, 3, 429, 214, 0, 1448, 1449, 5, 95, 0, 0, 1449, 1450, 3, 433, 216, 0, 1450, 1451, 3, 391, 195, 0, 1451, 1452, 3, 413, 206, 0, 1452, 1453, 3, 431, 215, 0, 1453, 1454, 3, 399, 199, 0, 1454, 324, 1, 0, 0, 0, 1455, 1456, 3, 413, 206, 0, 1456, 1457, 3, 399, 199, 0, 1457, 1458, 3, 391, 195, 0, 1458, 1459, 3, 397, 198, 0, 1459, 326, 1, 0, 0, 0, 1460, 1461, 3, 417, 208, 0, 1461, 1462, 3, 429, 214, 0, 1462, 1463, 3, 405, 202, 0, 1463, 1464, 5, 95, 0, 0, 1464, 1465, 3, 433, 216, 0, 1465, 1466, 3, 391, 195, 0, 1466, 1467, 3, 413, 206, 0, 1467, 1468, 3, 431, 215, 0, 1468, 1469, 3, 399, 199, 0, 1469, 328, 1, 0, 0, 0, 1470, 1471, 3, 417, 208, 0, 1471, 1472, 3, 429, 214, 0, 1472, 1473, 3, 407, 203, 0, 1473, 1474, 3, 413, 206, 0, 1474, 1475, 3, 399, 199, 0, 1475, 330, 1, 0, 0, 0, 1476, 1477, 3, 421, 210, 0, 1477, 1478, 3, 399, 199, 0, 1478, 1479, 3, 425, 212, 0, 1479, 1480, 3, 395, 197, 0, 1480, 1481, 3, 399, 199, 0, 1481, 1482, 3, 417, 208, 0, 1482, 1483, 3, 429, 214, 0, 1483, 1484, 5, 95, 0, 0, 1484, 1485, 3, 425, 212, 0, 1485, 1486, 3, 391, 195, 0, 1486, 1487, 3, 417, 208, 0, 1487, 1488, 3, 411, 205, 0, 1488, 332, 1, 0, 0, 0, 1489, 1490, 3, 425, 212, 0, 1490, 1491, 3, 391, 195, 0, 1491, 1492, 3, 417, 208, 0, 1492, 1493, 3, 411, 205, 0, 1493, 334, 1, 0, 0, 0, 1494, 1495, 3, 425, 212, 0, 1495, 1496, 3, 419, 209, 0, 1496, 1497, 3, 435, 217, 0, 1497, 1498, 5, 95, 0, 0, 1498, 1499, 3, 417, 208, 0, 1499, 1500, 3, 431, 215, 0, 1500, 1501, 3, 415, 207, 0, 1501, 1502, 3, 393, 196, 0, 1502, 1503, 3, 399, 199, 0, 1503, 1504, 3, 425, 212, 0, 1504, 336, 1, 0, 0, 0, 1505, 1506, 3, 403, 201, 0, 1506, 1507, 3, 399, 199, 0, 1507, 1508, 3, 417, 208, 0, 1508, 1509, 3, 399, 199, 0, 1509, 1510, 3, 425, 212, 0, 1510, 1511, 3, 391, 195, 0, 1511, 1512, 3, 429, 214, 0, 1512, 1513, 3, 399, 199, 0, 1513, 1514, 3, 397, 198, 0, 1514, 338, 1, 0, 0, 0, 1515, 1516, 3, 391, 195, 0, 1516, 1517, 3, 413, 206, 0, 1517, 1518, 3, 435, 217, 0, 1518, 1519, 3, 391, 195, 0, 1519, 1520, 3, 439, 219, 0, 1520, 1521, 3, 427, 213, 0, 1521, 340, 1, 0, 0, 0, 1522, 1523, 3, 427, 213, 0, 1523, 1524, 3, 429, 214, 0, 1524, 1525, 3, 419, 209, 0, 1525, 1526, 3, 425, 212, 0, 1526, 1527, 3, 399, 199, 0, 1527, 1528, 3, 397, 198, 0, 1528, 342, 1, 0, 0, 0, 1529, 1530, 3, 429, 214, 0, 1530, 1531, 3, 425, 212, 0, 1531, 1532, 3, 431, 215, 0, 1532, 1533, 3, 399, 199, 0, 1533, 344, 1, 0, 0, 0, 1534, 1535, 3, 401, 200, 0, 1535, 1536, 3, 391, 195, 0, 1536, 1537, 3, 413, 206, 0, 1537, 1538, 3, 427, 213, 0, 1538, 1539, 3, 399, 199, 0, 1539, 346, 1, 0, 0, 0, 1540, 1541, 3, 435, 217, 0, 1541, 1542, 3, 407, 203, 0, 1542, 1543, 3, 417, 208, 0, 1543, 1544, 3, 397, 198, 0, 1544, 1545, 3, 419, 209, 0, 1545, 1546, 3, 435, 217, 0, 1546, 348, 1, 0, 0, 0, 1547, 1548, 3, 417, 208, 0, 1548, 1549, 3, 431, 215, 0, 1549, 1550, 3, 413, 206, 0, 1550, 1551, 3, 413, 206, 0, 1551, 1552, 3, 427, 213, 0, 1552, 350, 1, 0, 0, 0, 1553, 1554, 3, 401, 200, 0, 1554, 1555, 3, 407, 203, 0, 1555, 1556, 3, 425, 212, 0, 1556, 1557, 3, 427, 213, 0, 1557, 1558, 3, 429, 214, 0, 1558, 352, 1, 0, 0, 0, 1559, 1560, 3, 413, 206, 0, 1560, 1561, 3, 391, 195, 0, 1561, 1562, 3, 427, 213, 0, 1562, 1563, 3, 429, 214, 0, 1563, 354, 1, 0, 0, 0, 1564, 1565, 3, 401, 200, 0, 1565, 1566, 3, 407, 203, 0, 1566, 1567, 3, 413, 206, 0, 1567, 1568, 3, 429, 214, 0, 1568, 1569, 3, 399, 199, 0, 1569, 1570, 3, 425, 212, 0, 1570, 356, 1, 0, 0, 0, 1571, 1572, 3, 403, 201, 0, 1572, 1573, 3, 425, 212, 0, 1573, 1574, 3, 419, 209, 0, 1574, 1575, 3, 431, 215, 0, 1575, 1576, 3, 421, 210, 0, 1576, 1577, 3, 427, 213, 0, 1577, 358, 1, 0, 0, 0, 1578, 1579, 3, 399, 199, 0, 1579, 1580, 3, 437, 218, 0, 1580, 1581, 3, 395, 197, 0, 1581, 1582, 3, 413, 206, 0, 1582, 1583, 3, 431, 215, 0, 1583, 1584, 3, 397, 198, 0, 1584, 1585, 3, 399, 199, 0, 1585, 360, 1, 0, 0, 0, 1586, 1587, 3, 429, 214, 0, 1587, 1588, 3, 407, 203, 0, 1588, 1589, 3, 399, 199, 0, 1589, 1590, 3, 427, 213, 0, 1590, 362, 1, 0, 0, 0, 1591, 1592, 3, 419, 209, 0, 1592, 1593, 3, 429, 214, 0, 1593, 1594, 3, 405, 202, 0, 1594, 1595, 3, 399, 199, 0, 1595, 1596, 3, 425, 212, 0, 1596, 1597, 3, 427, 213, 0, 1597, 364, 1, 0, 0, 0, 1598, 1599, 3, 397, 198, 0, 1599, 1600, 3, 419, 209, 0, 1600, 366, 1, 0, 0, 0, 1601, 1602, 3, 417, 208, 0, 1602, 1603, 3, 419, 209, 0, 1603, 1604, 3, 429, 214, 0, 1604, 1605, 3, 405, 202, 0, 1605, 1606, 3, 407, 203, 0, 1606, 1607, 3, 417, 208, 0, 1607, 1608, 3, 403, 201, 0, 1608, 368, 1, 0, 0, 0, 1609, 1615, 5, 34, 0, 0, 1610, 1614, 8, 0, 0, 0, 1611, 1612, 5, 34, 0, 0, 1612, 1614, 5, 34, 0, 0, 1613, 1610, 1, 0, 0, 0, 1613, 1611, 1, 0, 0, 0, 1614, 1617, 1, 0, 0, 0, 1615, 1613, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1618, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1618, 1645, 5, 34, 0, 0, 1619, 1625, 5, 96, 0, 0, 1620, 1624, 8, 1, 0, 0, 1621, 1622, 5, 96, 0, 0, 1622, 1624, 5, 96, 0, 0, 1623, 1620, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1627, 1, 0, 0, 0, 1625, 1623, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1628, 1, 0, 0, 0, 1627, 1625, 1, 0, 0, 0, 1628, 1645, 5, 96, 0, 0, 1629, 1633, 5, 91, 0, 0, 1630, 1632, 8, 2, 0, 0, 1631, 1630, 1, 0, 0, 0, 1632, 1635, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1645, 5, 93, 0, 0, 1637, 1641, 7, 3, 0, 0, 1638, 1640, 7, 4, 0, 0, 1639, 1638, 1, 0, 0, 0, 1640, 1643, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1645, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1644, 1609, 1, 0, 0, 0, 1644, 1619, 1, 0, 0, 0, 1644, 1629, 1, 0, 0, 0, 1644, 1637, 1, 0, 0, 0, 1645, 370, 1, 0, 0, 0, 1646, 1648, 3, 389, 194, 0, 1647, 1646, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1658, 1, 0, 0, 0, 1651, 1655, 5, 46, 0, 0, 1652, 1654, 3, 389, 194, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1658, 1651, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1667, 1, 0, 0, 0, 1660, 1662, 5, 46, 0, 0, 1661, 1663, 3, 389, 194, 0, 1662, 1661, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1647, 1, 0, 0, 0, 1666, 1660, 1, 0, 0, 0, 1667, 1677, 1, 0, 0, 0, 1668, 1670, 3, 399, 199, 0, 1669, 1671, 7, 5, 0, 0, 1670, 1669, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1674, 3, 389, 194, 0, 1673, 1672, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1668, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1688, 1, 0, 0, 0, 1679, 1680, 5, 48, 0, 0, 1680, 1681, 5, 120, 0, 0, 1681, 1683, 1, 0, 0, 0, 1682, 1684, 3, 387, 193, 0, 1683, 1682, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1688, 1, 0, 0, 0, 1687, 1666, 1, 0, 0, 0, 1687, 1679, 1, 0, 0, 0, 1688, 372, 1, 0, 0, 0, 1689, 1693, 5, 63, 0, 0, 1690, 1692, 3, 389, 194, 0, 1691, 1690, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1699, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 7, 6, 0, 0, 1697, 1699, 3, 369, 184, 0, 1698, 1689, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 374, 1, 0, 0, 0, 1700, 1706, 5, 39, 0, 0, 1701, 1705, 8, 7, 0, 0, 1702, 1703, 5, 39, 0, 0, 1703, 1705, 5, 39, 0, 0, 1704, 1701, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1710, 5, 39, 0, 0, 1710, 376, 1, 0, 0, 0, 1711, 1712, 3, 437, 218, 0, 1712, 1713, 3, 375, 187, 0, 1713, 378, 1, 0, 0, 0, 1714, 1715, 5, 45, 0, 0, 1715, 1716, 5, 45, 0, 0, 1716, 1720, 1, 0, 0, 0, 1717, 1719, 8, 8, 0, 0, 1718, 1717, 1, 0, 0, 0, 1719, 1722, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1728, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1725, 5, 13, 0, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1729, 5, 10, 0, 0, 1727, 1729, 5, 0, 0, 1, 1728, 1724, 1, 0, 0, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 6, 189, 0, 0, 1731, 380, 1, 0, 0, 0, 1732, 1733, 5, 47, 0, 0, 1733, 1734, 5, 42, 0, 0, 1734, 1738, 1, 0, 0, 0, 1735, 1737, 9, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 42, 0, 0, 1742, 1743, 5, 47, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 6, 190, 0, 0, 1745, 382, 1, 0, 0, 0, 1746, 1747, 7, 9, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 6, 191, 0, 0, 1749, 384, 1, 0, 0, 0, 1750, 1751, 9, 0, 0, 0, 1751, 386, 1, 0, 0, 0, 1752, 1753, 7, 10, 0, 0, 1753, 388, 1, 0, 0, 0, 1754, 1755, 7, 11, 0, 0, 1755, 390, 1, 0, 0, 0, 1756, 1757, 7, 12, 0, 0, 1757, 392, 1, 0, 0, 0, 1758, 1759, 7, 13, 0, 0, 1759, 394, 1, 0, 0, 0, 1760, 1761, 7, 14, 0, 0, 1761, 396, 1, 0, 0, 0, 1762, 1763, 7, 15, 0, 0, 1763, 398, 1, 0, 0, 0, 1764, 1765, 7, 16, 0, 0, 1765, 400, 1, 0, 0, 0, 1766, 1767, 7, 17, 0, 0, 1767, 402, 1, 0, 0, 0, 1768, 1769, 7, 18, 0, 0, 1769, 404, 1, 0, 0, 0, 1770, 1771, 7, 19, 0, 0, 1771, 406, 1, 0, 0, 0, 1772, 1773, 7, 20, 0, 0, 1773, 408, 1, 0, 0, 0, 1774, 1775, 7, 21, 0, 0, 1775, 410, 1, 0, 0, 0, 1776, 1777, 7, 22, 0, 0, 1777, 412, 1, 0, 0, 0, 1778, 1779, 7, 23, 0, 0, 1779, 414, 1, 0, 0, 0, 1780, 1781, 7, 24, 0, 0, 1781, 416, 1, 0, 0, 0, 1782, 1783, 7, 25, 0, 0, 1783, 418, 1, 0, 0, 0, 1784, 1785, 7, 26, 0, 0, 1785, 420, 1, 0, 0, 0, 1786, 1787, 7, 27, 0, 0, 1787, 422, 1, 0, 0, 0, 1788, 1789, 7, 28, 0, 0, 1789, 424, 1, 0, 0, 0, 1790, 1791, 7, 29, 0, 0, 1791, 426, 1, 0, 0, 0, 1792, 1793, 7, 30, 0, 0, 1793, 428, 1, 0, 0, 0, 1794, 1795, 7, 31, 0, 0, 1795, 430, 1, 0, 0, 0, 1796, 1797, 7, 32, 0, 0, 1797, 432, 1, 0, 0, 0, 1798, 1799, 7, 33, 0, 0, 1799, 434, 1, 0, 0, 0, 1800, 1801, 7, 34, 0, 0, 1801, 436, 1, 0, 0, 0, 1802, 1803, 7, 35, 0, 0, 1803, 438, 1, 0, 0, 0, 1804, 1805, 7, 36, 0, 0, 1805, 440, 1, 0, 0, 0, 1806, 1807, 7, 37, 0, 0, 1807, 442, 1, 0, 0, 0, 26, 0, 1613, 1615, 1623, 1625, 1633, 1641, 1644, 1649, 1655, 1658, 1664, 1666, 1670, 1675, 1677, 1685, 1687, 1693, 1698, 1704, 1706, 1720, 1724, 1728, 1738, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 194, 1817, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 1623, 8, 185, 10, 185, 12, 185, 1626, 9, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 1633, 8, 185, 10, 185, 12, 185, 1636, 9, 185, 1, 185, 1, 185, 1, 185, 5, 185, 1641, 8, 185, 10, 185, 12, 185, 1644, 9, 185, 1, 185, 1, 185, 1, 185, 5, 185, 1649, 8, 185, 10, 185, 12, 185, 1652, 9, 185, 3, 185, 1654, 8, 185, 1, 186, 4, 186, 1657, 8, 186, 11, 186, 12, 186, 1658, 1, 186, 1, 186, 5, 186, 1663, 8, 186, 10, 186, 12, 186, 1666, 9, 186, 3, 186, 1668, 8, 186, 1, 186, 1, 186, 4, 186, 1672, 8, 186, 11, 186, 12, 186, 1673, 3, 186, 1676, 8, 186, 1, 186, 1, 186, 3, 186, 1680, 8, 186, 1, 186, 4, 186, 1683, 8, 186, 11, 186, 12, 186, 1684, 3, 186, 1687, 8, 186, 1, 186, 1, 186, 1, 186, 1, 186, 4, 186, 1693, 8, 186, 11, 186, 12, 186, 1694, 3, 186, 1697, 8, 186, 1, 187, 1, 187, 5, 187, 1701, 8, 187, 10, 187, 12, 187, 1704, 9, 187, 1, 187, 1, 187, 3, 187, 1708, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 5, 188, 1714, 8, 188, 10, 188, 12, 188, 1717, 9, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 1728, 8, 190, 10, 190, 12, 190, 1731, 9, 190, 1, 190, 3, 190, 1734, 8, 190, 1, 190, 1, 190, 3, 190, 1738, 8, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, 1746, 8, 191, 10, 191, 12, 191, 1749, 9, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 1747, 0, 222, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 0, 391, 0, 393, 0, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 1, 0, 38, 1, 0, 34, 34, 1, 0, 96, 96, 1, 0, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 3, 0, 36, 36, 58, 58, 64, 64, 1, 0, 39, 39, 2, 0, 10, 10, 13, 13, 3, 0, 9, 11, 13, 13, 32, 32, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 1815, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 1, 445, 1, 0, 0, 0, 3, 447, 1, 0, 0, 0, 5, 449, 1, 0, 0, 0, 7, 451, 1, 0, 0, 0, 9, 453, 1, 0, 0, 0, 11, 455, 1, 0, 0, 0, 13, 457, 1, 0, 0, 0, 15, 459, 1, 0, 0, 0, 17, 461, 1, 0, 0, 0, 19, 463, 1, 0, 0, 0, 21, 465, 1, 0, 0, 0, 23, 468, 1, 0, 0, 0, 25, 470, 1, 0, 0, 0, 27, 472, 1, 0, 0, 0, 29, 475, 1, 0, 0, 0, 31, 478, 1, 0, 0, 0, 33, 480, 1, 0, 0, 0, 35, 482, 1, 0, 0, 0, 37, 484, 1, 0, 0, 0, 39, 487, 1, 0, 0, 0, 41, 489, 1, 0, 0, 0, 43, 492, 1, 0, 0, 0, 45, 495, 1, 0, 0, 0, 47, 498, 1, 0, 0, 0, 49, 501, 1, 0, 0, 0, 51, 507, 1, 0, 0, 0, 53, 514, 1, 0, 0, 0, 55, 518, 1, 0, 0, 0, 57, 524, 1, 0, 0, 0, 59, 528, 1, 0, 0, 0, 61, 534, 1, 0, 0, 0, 63, 542, 1, 0, 0, 0, 65, 546, 1, 0, 0, 0, 67, 549, 1, 0, 0, 0, 69, 553, 1, 0, 0, 0, 71, 560, 1, 0, 0, 0, 73, 574, 1, 0, 0, 0, 75, 581, 1, 0, 0, 0, 77, 587, 1, 0, 0, 0, 79, 595, 1, 0, 0, 0, 81, 598, 1, 0, 0, 0, 83, 606, 1, 0, 0, 0, 85, 611, 1, 0, 0, 0, 87, 616, 1, 0, 0, 0, 89, 622, 1, 0, 0, 0, 91, 630, 1, 0, 0, 0, 93, 637, 1, 0, 0, 0, 95, 644, 1, 0, 0, 0, 97, 653, 1, 0, 0, 0, 99, 664, 1, 0, 0, 0, 101, 671, 1, 0, 0, 0, 103, 677, 1, 0, 0, 0, 105, 690, 1, 0, 0, 0, 107, 703, 1, 0, 0, 0, 109, 721, 1, 0, 0, 0, 111, 730, 1, 0, 0, 0, 113, 738, 1, 0, 0, 0, 115, 749, 1, 0, 0, 0, 117, 758, 1, 0, 0, 0, 119, 765, 1, 0, 0, 0, 121, 770, 1, 0, 0, 0, 123, 777, 1, 0, 0, 0, 125, 786, 1, 0, 0, 0, 127, 791, 1, 0, 0, 0, 129, 796, 1, 0, 0, 0, 131, 801, 1, 0, 0, 0, 133, 805, 1, 0, 0, 0, 135, 812, 1, 0, 0, 0, 137, 819, 1, 0, 0, 0, 139, 829, 1, 0, 0, 0, 141, 836, 1, 0, 0, 0, 143, 844, 1, 0, 0, 0, 145, 849, 1, 0, 0, 0, 147, 853, 1, 0, 0, 0, 149, 861, 1, 0, 0, 0, 151, 866, 1, 0, 0, 0, 153, 871, 1, 0, 0, 0, 155, 876, 1, 0, 0, 0, 157, 882, 1, 0, 0, 0, 159, 889, 1, 0, 0, 0, 161, 892, 1, 0, 0, 0, 163, 899, 1, 0, 0, 0, 165, 909, 1, 0, 0, 0, 167, 912, 1, 0, 0, 0, 169, 918, 1, 0, 0, 0, 171, 926, 1, 0, 0, 0, 173, 936, 1, 0, 0, 0, 175, 942, 1, 0, 0, 0, 177, 949, 1, 0, 0, 0, 179, 957, 1, 0, 0, 0, 181, 967, 1, 0, 0, 0, 183, 972, 1, 0, 0, 0, 185, 975, 1, 0, 0, 0, 187, 982, 1, 0, 0, 0, 189, 987, 1, 0, 0, 0, 191, 991, 1, 0, 0, 0, 193, 996, 1, 0, 0, 0, 195, 1001, 1, 0, 0, 0, 197, 1007, 1, 0, 0, 0, 199, 1013, 1, 0, 0, 0, 201, 1021, 1, 0, 0, 0, 203, 1024, 1, 0, 0, 0, 205, 1028, 1, 0, 0, 0, 207, 1036, 1, 0, 0, 0, 209, 1041, 1, 0, 0, 0, 211, 1044, 1, 0, 0, 0, 213, 1051, 1, 0, 0, 0, 215, 1054, 1, 0, 0, 0, 217, 1057, 1, 0, 0, 0, 219, 1063, 1, 0, 0, 0, 221, 1069, 1, 0, 0, 0, 223, 1074, 1, 0, 0, 0, 225, 1081, 1, 0, 0, 0, 227, 1089, 1, 0, 0, 0, 229, 1095, 1, 0, 0, 0, 231, 1101, 1, 0, 0, 0, 233, 1111, 1, 0, 0, 0, 235, 1122, 1, 0, 0, 0, 237, 1129, 1, 0, 0, 0, 239, 1137, 1, 0, 0, 0, 241, 1145, 1, 0, 0, 0, 243, 1152, 1, 0, 0, 0, 245, 1160, 1, 0, 0, 0, 247, 1169, 1, 0, 0, 0, 249, 1179, 1, 0, 0, 0, 251, 1185, 1, 0, 0, 0, 253, 1194, 1, 0, 0, 0, 255, 1198, 1, 0, 0, 0, 257, 1203, 1, 0, 0, 0, 259, 1213, 1, 0, 0, 0, 261, 1220, 1, 0, 0, 0, 263, 1224, 1, 0, 0, 0, 265, 1231, 1, 0, 0, 0, 267, 1237, 1, 0, 0, 0, 269, 1242, 1, 0, 0, 0, 271, 1252, 1, 0, 0, 0, 273, 1257, 1, 0, 0, 0, 275, 1260, 1, 0, 0, 0, 277, 1272, 1, 0, 0, 0, 279, 1280, 1, 0, 0, 0, 281, 1286, 1, 0, 0, 0, 283, 1293, 1, 0, 0, 0, 285, 1300, 1, 0, 0, 0, 287, 1306, 1, 0, 0, 0, 289, 1313, 1, 0, 0, 0, 291, 1320, 1, 0, 0, 0, 293, 1325, 1, 0, 0, 0, 295, 1333, 1, 0, 0, 0, 297, 1338, 1, 0, 0, 0, 299, 1344, 1, 0, 0, 0, 301, 1349, 1, 0, 0, 0, 303, 1357, 1, 0, 0, 0, 305, 1369, 1, 0, 0, 0, 307, 1374, 1, 0, 0, 0, 309, 1384, 1, 0, 0, 0, 311, 1390, 1, 0, 0, 0, 313, 1400, 1, 0, 0, 0, 315, 1410, 1, 0, 0, 0, 317, 1418, 1, 0, 0, 0, 319, 1428, 1, 0, 0, 0, 321, 1438, 1, 0, 0, 0, 323, 1449, 1, 0, 0, 0, 325, 1453, 1, 0, 0, 0, 327, 1464, 1, 0, 0, 0, 329, 1469, 1, 0, 0, 0, 331, 1479, 1, 0, 0, 0, 333, 1485, 1, 0, 0, 0, 335, 1498, 1, 0, 0, 0, 337, 1503, 1, 0, 0, 0, 339, 1514, 1, 0, 0, 0, 341, 1524, 1, 0, 0, 0, 343, 1531, 1, 0, 0, 0, 345, 1538, 1, 0, 0, 0, 347, 1543, 1, 0, 0, 0, 349, 1549, 1, 0, 0, 0, 351, 1556, 1, 0, 0, 0, 353, 1562, 1, 0, 0, 0, 355, 1568, 1, 0, 0, 0, 357, 1573, 1, 0, 0, 0, 359, 1580, 1, 0, 0, 0, 361, 1587, 1, 0, 0, 0, 363, 1595, 1, 0, 0, 0, 365, 1600, 1, 0, 0, 0, 367, 1607, 1, 0, 0, 0, 369, 1610, 1, 0, 0, 0, 371, 1653, 1, 0, 0, 0, 373, 1696, 1, 0, 0, 0, 375, 1707, 1, 0, 0, 0, 377, 1709, 1, 0, 0, 0, 379, 1720, 1, 0, 0, 0, 381, 1723, 1, 0, 0, 0, 383, 1741, 1, 0, 0, 0, 385, 1755, 1, 0, 0, 0, 387, 1759, 1, 0, 0, 0, 389, 1761, 1, 0, 0, 0, 391, 1763, 1, 0, 0, 0, 393, 1765, 1, 0, 0, 0, 395, 1767, 1, 0, 0, 0, 397, 1769, 1, 0, 0, 0, 399, 1771, 1, 0, 0, 0, 401, 1773, 1, 0, 0, 0, 403, 1775, 1, 0, 0, 0, 405, 1777, 1, 0, 0, 0, 407, 1779, 1, 0, 0, 0, 409, 1781, 1, 0, 0, 0, 411, 1783, 1, 0, 0, 0, 413, 1785, 1, 0, 0, 0, 415, 1787, 1, 0, 0, 0, 417, 1789, 1, 0, 0, 0, 419, 1791, 1, 0, 0, 0, 421, 1793, 1, 0, 0, 0, 423, 1795, 1, 0, 0, 0, 425, 1797, 1, 0, 0, 0, 427, 1799, 1, 0, 0, 0, 429, 1801, 1, 0, 0, 0, 431, 1803, 1, 0, 0, 0, 433, 1805, 1, 0, 0, 0, 435, 1807, 1, 0, 0, 0, 437, 1809, 1, 0, 0, 0, 439, 1811, 1, 0, 0, 0, 441, 1813, 1, 0, 0, 0, 443, 1815, 1, 0, 0, 0, 445, 446, 5, 59, 0, 0, 446, 2, 1, 0, 0, 0, 447, 448, 5, 46, 0, 0, 448, 4, 1, 0, 0, 0, 449, 450, 5, 40, 0, 0, 450, 6, 1, 0, 0, 0, 451, 452, 5, 41, 0, 0, 452, 8, 1, 0, 0, 0, 453, 454, 5, 44, 0, 0, 454, 10, 1, 0, 0, 0, 455, 456, 5, 61, 0, 0, 456, 12, 1, 0, 0, 0, 457, 458, 5, 42, 0, 0, 458, 14, 1, 0, 0, 0, 459, 460, 5, 43, 0, 0, 460, 16, 1, 0, 0, 0, 461, 462, 5, 45, 0, 0, 462, 18, 1, 0, 0, 0, 463, 464, 5, 126, 0, 0, 464, 20, 1, 0, 0, 0, 465, 466, 5, 124, 0, 0, 466, 467, 5, 124, 0, 0, 467, 22, 1, 0, 0, 0, 468, 469, 5, 47, 0, 0, 469, 24, 1, 0, 0, 0, 470, 471, 5, 37, 0, 0, 471, 26, 1, 0, 0, 0, 472, 473, 5, 60, 0, 0, 473, 474, 5, 60, 0, 0, 474, 28, 1, 0, 0, 0, 475, 476, 5, 62, 0, 0, 476, 477, 5, 62, 0, 0, 477, 30, 1, 0, 0, 0, 478, 479, 5, 38, 0, 0, 479, 32, 1, 0, 0, 0, 480, 481, 5, 124, 0, 0, 481, 34, 1, 0, 0, 0, 482, 483, 5, 60, 0, 0, 483, 36, 1, 0, 0, 0, 484, 485, 5, 60, 0, 0, 485, 486, 5, 61, 0, 0, 486, 38, 1, 0, 0, 0, 487, 488, 5, 62, 0, 0, 488, 40, 1, 0, 0, 0, 489, 490, 5, 62, 0, 0, 490, 491, 5, 61, 0, 0, 491, 42, 1, 0, 0, 0, 492, 493, 5, 61, 0, 0, 493, 494, 5, 61, 0, 0, 494, 44, 1, 0, 0, 0, 495, 496, 5, 33, 0, 0, 496, 497, 5, 61, 0, 0, 497, 46, 1, 0, 0, 0, 498, 499, 5, 60, 0, 0, 499, 500, 5, 62, 0, 0, 500, 48, 1, 0, 0, 0, 501, 502, 3, 393, 196, 0, 502, 503, 3, 395, 197, 0, 503, 504, 3, 421, 210, 0, 504, 505, 3, 427, 213, 0, 505, 506, 3, 431, 215, 0, 506, 50, 1, 0, 0, 0, 507, 508, 3, 393, 196, 0, 508, 509, 3, 397, 198, 0, 509, 510, 3, 431, 215, 0, 510, 511, 3, 409, 204, 0, 511, 512, 3, 421, 210, 0, 512, 513, 3, 419, 209, 0, 513, 52, 1, 0, 0, 0, 514, 515, 3, 393, 196, 0, 515, 516, 3, 399, 199, 0, 516, 517, 3, 399, 199, 0, 517, 54, 1, 0, 0, 0, 518, 519, 3, 393, 196, 0, 519, 520, 3, 403, 201, 0, 520, 521, 3, 431, 215, 0, 521, 522, 3, 401, 200, 0, 522, 523, 3, 427, 213, 0, 523, 56, 1, 0, 0, 0, 524, 525, 3, 393, 196, 0, 525, 526, 3, 415, 207, 0, 526, 527, 3, 415, 207, 0, 527, 58, 1, 0, 0, 0, 528, 529, 3, 393, 196, 0, 529, 530, 3, 415, 207, 0, 530, 531, 3, 431, 215, 0, 531, 532, 3, 401, 200, 0, 532, 533, 3, 427, 213, 0, 533, 60, 1, 0, 0, 0, 534, 535, 3, 393, 196, 0, 535, 536, 3, 419, 209, 0, 536, 537, 3, 393, 196, 0, 537, 538, 3, 415, 207, 0, 538, 539, 3, 441, 220, 0, 539, 540, 3, 443, 221, 0, 540, 541, 3, 401, 200, 0, 541, 62, 1, 0, 0, 0, 542, 543, 3, 393, 196, 0, 543, 544, 3, 419, 209, 0, 544, 545, 3, 399, 199, 0, 545, 64, 1, 0, 0, 0, 546, 547, 3, 393, 196, 0, 547, 548, 3, 429, 214, 0, 548, 66, 1, 0, 0, 0, 549, 550, 3, 393, 196, 0, 550, 551, 3, 429, 214, 0, 551, 552, 3, 397, 198, 0, 552, 68, 1, 0, 0, 0, 553, 554, 3, 393, 196, 0, 554, 555, 3, 431, 215, 0, 555, 556, 3, 431, 215, 0, 556, 557, 3, 393, 196, 0, 557, 558, 3, 397, 198, 0, 558, 559, 3, 407, 203, 0, 559, 70, 1, 0, 0, 0, 560, 561, 3, 393, 196, 0, 561, 562, 3, 433, 216, 0, 562, 563, 3, 431, 215, 0, 563, 564, 3, 421, 210, 0, 564, 565, 3, 409, 204, 0, 565, 566, 3, 419, 209, 0, 566, 567, 3, 397, 198, 0, 567, 568, 3, 427, 213, 0, 568, 569, 3, 401, 200, 0, 569, 570, 3, 417, 208, 0, 570, 571, 3, 401, 200, 0, 571, 572, 3, 419, 209, 0, 572, 573, 3, 431, 215, 0, 573, 72, 1, 0, 0, 0, 574, 575, 3, 395, 197, 0, 575, 576, 3, 401, 200, 0, 576, 577, 3, 403, 201, 0, 577, 578, 3, 421, 210, 0, 578, 579, 3, 427, 213, 0, 579, 580, 3, 401, 200, 0, 580, 74, 1, 0, 0, 0, 581, 582, 3, 395, 197, 0, 582, 583, 3, 401, 200, 0, 583, 584, 3, 405, 202, 0, 584, 585, 3, 409, 204, 0, 585, 586, 3, 419, 209, 0, 586, 76, 1, 0, 0, 0, 587, 588, 3, 395, 197, 0, 588, 589, 3, 401, 200, 0, 589, 590, 3, 431, 215, 0, 590, 591, 3, 437, 218, 0, 591, 592, 3, 401, 200, 0, 592, 593, 3, 401, 200, 0, 593, 594, 3, 419, 209, 0, 594, 78, 1, 0, 0, 0, 595, 596, 3, 395, 197, 0, 596, 597, 3, 441, 220, 0, 597, 80, 1, 0, 0, 0, 598, 599, 3, 397, 198, 0, 599, 600, 3, 393, 196, 0, 600, 601, 3, 429, 214, 0, 601, 602, 3, 397, 198, 0, 602, 603, 3, 393, 196, 0, 603, 604, 3, 399, 199, 0, 604, 605, 3, 401, 200, 0, 605, 82, 1, 0, 0, 0, 606, 607, 3, 397, 198, 0, 607, 608, 3, 393, 196, 0, 608, 609, 3, 429, 214, 0, 609, 610, 3, 401, 200, 0, 610, 84, 1, 0, 0, 0, 611, 612, 3, 397, 198, 0, 612, 613, 3, 393, 196, 0, 613, 614, 3, 429, 214, 0, 614, 615, 3, 431, 215, 0, 615, 86, 1, 0, 0, 0, 616, 617, 3, 397, 198, 0, 617, 618, 3, 407, 203, 0, 618, 619, 3, 401, 200, 0, 619, 620, 3, 397, 198, 0, 620, 621, 3, 413, 206, 0, 621, 88, 1, 0, 0, 0, 622, 623, 3, 397, 198, 0, 623, 624, 3, 421, 210, 0, 624, 625, 3, 415, 207, 0, 625, 626, 3, 415, 207, 0, 626, 627, 3, 393, 196, 0, 627, 628, 3, 431, 215, 0, 628, 629, 3, 401, 200, 0, 629, 90, 1, 0, 0, 0, 630, 631, 3, 397, 198, 0, 631, 632, 3, 421, 210, 0, 632, 633, 3, 415, 207, 0, 633, 634, 3, 433, 216, 0, 634, 635, 3, 417, 208, 0, 635, 636, 3, 419, 209, 0, 636, 92, 1, 0, 0, 0, 637, 638, 3, 397, 198, 0, 638, 639, 3, 421, 210, 0, 639, 640, 3, 417, 208, 0, 640, 641, 3, 417, 208, 0, 641, 642, 3, 409, 204, 0, 642, 643, 3, 431, 215, 0, 643, 94, 1, 0, 0, 0, 644, 645, 3, 397, 198, 0, 645, 646, 3, 421, 210, 0, 646, 647, 3, 419, 209, 0, 647, 648, 3, 403, 201, 0, 648, 649, 3, 415, 207, 0, 649, 650, 3, 409, 204, 0, 650, 651, 3, 397, 198, 0, 651, 652, 3, 431, 215, 0, 652, 96, 1, 0, 0, 0, 653, 654, 3, 397, 198, 0, 654, 655, 3, 421, 210, 0, 655, 656, 3, 419, 209, 0, 656, 657, 3, 429, 214, 0, 657, 658, 3, 431, 215, 0, 658, 659, 3, 427, 213, 0, 659, 660, 3, 393, 196, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3, 419, 209, 0, 662, 663, 3, 431, 215, 0, 663, 98, 1, 0, 0, 0, 664, 665, 3, 397, 198, 0, 665, 666, 3, 427, 213, 0, 666, 667, 3, 401, 200, 0, 667, 668, 3, 393, 196, 0, 668, 669, 3, 431, 215, 0, 669, 670, 3, 401, 200, 0, 670, 100, 1, 0, 0, 0, 671, 672, 3, 397, 198, 0, 672, 673, 3, 427, 213, 0, 673, 674, 3, 421, 210, 0, 674, 675, 3, 429, 214, 0, 675, 676, 3, 429, 214, 0, 676, 102, 1, 0, 0, 0, 677, 678, 3, 397, 198, 0, 678, 679, 3, 433, 216, 0, 679, 680, 3, 427, 213, 0, 680, 681, 3, 427, 213, 0, 681, 682, 3, 401, 200, 0, 682, 683, 3, 419, 209, 0, 683, 684, 3, 431, 215, 0, 684, 685, 5, 95, 0, 0, 685, 686, 3, 399, 199, 0, 686, 687, 3, 393, 196, 0, 687, 688, 3, 431, 215, 0, 688, 689, 3, 401, 200, 0, 689, 104, 1, 0, 0, 0, 690, 691, 3, 397, 198, 0, 691, 692, 3, 433, 216, 0, 692, 693, 3, 427, 213, 0, 693, 694, 3, 427, 213, 0, 694, 695, 3, 401, 200, 0, 695, 696, 3, 419, 209, 0, 696, 697, 3, 431, 215, 0, 697, 698, 5, 95, 0, 0, 698, 699, 3, 431, 215, 0, 699, 700, 3, 409, 204, 0, 700, 701, 3, 417, 208, 0, 701, 702, 3, 401, 200, 0, 702, 106, 1, 0, 0, 0, 703, 704, 3, 397, 198, 0, 704, 705, 3, 433, 216, 0, 705, 706, 3, 427, 213, 0, 706, 707, 3, 427, 213, 0, 707, 708, 3, 401, 200, 0, 708, 709, 3, 419, 209, 0, 709, 710, 3, 431, 215, 0, 710, 711, 5, 95, 0, 0, 711, 712, 3, 431, 215, 0, 712, 713, 3, 409, 204, 0, 713, 714, 3, 417, 208, 0, 714, 715, 3, 401, 200, 0, 715, 716, 3, 429, 214, 0, 716, 717, 3, 431, 215, 0, 717, 718, 3, 393, 196, 0, 718, 719, 3, 417, 208, 0, 719, 720, 3, 423, 211, 0, 720, 108, 1, 0, 0, 0, 721, 722, 3, 399, 199, 0, 722, 723, 3, 393, 196, 0, 723, 724, 3, 431, 215, 0, 724, 725, 3, 393, 196, 0, 725, 726, 3, 395, 197, 0, 726, 727, 3, 393, 196, 0, 727, 728, 3, 429, 214, 0, 728, 729, 3, 401, 200, 0, 729, 110, 1, 0, 0, 0, 730, 731, 3, 399, 199, 0, 731, 732, 3, 401, 200, 0, 732, 733, 3, 403, 201, 0, 733, 734, 3, 393, 196, 0, 734, 735, 3, 433, 216, 0, 735, 736, 3, 415, 207, 0, 736, 737, 3, 431, 215, 0, 737, 112, 1, 0, 0, 0, 738, 739, 3, 399, 199, 0, 739, 740, 3, 401, 200, 0, 740, 741, 3, 403, 201, 0, 741, 742, 3, 401, 200, 0, 742, 743, 3, 427, 213, 0, 743, 744, 3, 427, 213, 0, 744, 745, 3, 393, 196, 0, 745, 746, 3, 395, 197, 0, 746, 747, 3, 415, 207, 0, 747, 748, 3, 401, 200, 0, 748, 114, 1, 0, 0, 0, 749, 750, 3, 399, 199, 0, 750, 751, 3, 401, 200, 0, 751, 752, 3, 403, 201, 0, 752, 753, 3, 401, 200, 0, 753, 754, 3, 427, 213, 0, 754, 755, 3, 427, 213, 0, 755, 756, 3, 401, 200, 0, 756, 757, 3, 399, 199, 0, 757, 116, 1, 0, 0, 0, 758, 759, 3, 399, 199, 0, 759, 760, 3, 401, 200, 0, 760, 761, 3, 415, 207, 0, 761, 762, 3, 401, 200, 0, 762, 763, 3, 431, 215, 0, 763, 764, 3, 401, 200, 0, 764, 118, 1, 0, 0, 0, 765, 766, 3, 399, 199, 0, 766, 767, 3, 401, 200, 0, 767, 768, 3, 429, 214, 0, 768, 769, 3, 397, 198, 0, 769, 120, 1, 0, 0, 0, 770, 771, 3, 399, 199, 0, 771, 772, 3, 401, 200, 0, 772, 773, 3, 431, 215, 0, 773, 774, 3, 393, 196, 0, 774, 775, 3, 397, 198, 0, 775, 776, 3, 407, 203, 0, 776, 122, 1, 0, 0, 0, 777, 778, 3, 399, 199, 0, 778, 779, 3, 409, 204, 0, 779, 780, 3, 429, 214, 0, 780, 781, 3, 431, 215, 0, 781, 782, 3, 409, 204, 0, 782, 783, 3, 419, 209, 0, 783, 784, 3, 397, 198, 0, 784, 785, 3, 431, 215, 0, 785, 124, 1, 0, 0, 0, 786, 787, 3, 399, 199, 0, 787, 788, 3, 427, 213, 0, 788, 789, 3, 421, 210, 0, 789, 790, 3, 423, 211, 0, 790, 126, 1, 0, 0, 0, 791, 792, 3, 401, 200, 0, 792, 793, 3, 393, 196, 0, 793, 794, 3, 397, 198, 0, 794, 795, 3, 407, 203, 0, 795, 128, 1, 0, 0, 0, 796, 797, 3, 401, 200, 0, 797, 798, 3, 415, 207, 0, 798, 799, 3, 429, 214, 0, 799, 800, 3, 401, 200, 0, 800, 130, 1, 0, 0, 0, 801, 802, 3, 401, 200, 0, 802, 803, 3, 419, 209, 0, 803, 804, 3, 399, 199, 0, 804, 132, 1, 0, 0, 0, 805, 806, 3, 401, 200, 0, 806, 807, 3, 429, 214, 0, 807, 808, 3, 397, 198, 0, 808, 809, 3, 393, 196, 0, 809, 810, 3, 423, 211, 0, 810, 811, 3, 401, 200, 0, 811, 134, 1, 0, 0, 0, 812, 813, 3, 401, 200, 0, 813, 814, 3, 439, 219, 0, 814, 815, 3, 397, 198, 0, 815, 816, 3, 401, 200, 0, 816, 817, 3, 423, 211, 0, 817, 818, 3, 431, 215, 0, 818, 136, 1, 0, 0, 0, 819, 820, 3, 401, 200, 0, 820, 821, 3, 439, 219, 0, 821, 822, 3, 397, 198, 0, 822, 823, 3, 415, 207, 0, 823, 824, 3, 433, 216, 0, 824, 825, 3, 429, 214, 0, 825, 826, 3, 409, 204, 0, 826, 827, 3, 435, 217, 0, 827, 828, 3, 401, 200, 0, 828, 138, 1, 0, 0, 0, 829, 830, 3, 401, 200, 0, 830, 831, 3, 439, 219, 0, 831, 832, 3, 409, 204, 0, 832, 833, 3, 429, 214, 0, 833, 834, 3, 431, 215, 0, 834, 835, 3, 429, 214, 0, 835, 140, 1, 0, 0, 0, 836, 837, 3, 401, 200, 0, 837, 838, 3, 439, 219, 0, 838, 839, 3, 423, 211, 0, 839, 840, 3, 415, 207, 0, 840, 841, 3, 393, 196, 0, 841, 842, 3, 409, 204, 0, 842, 843, 3, 419, 209, 0, 843, 142, 1, 0, 0, 0, 844, 845, 3, 403, 201, 0, 845, 846, 3, 393, 196, 0, 846, 847, 3, 409, 204, 0, 847, 848, 3, 415, 207, 0, 848, 144, 1, 0, 0, 0, 849, 850, 3, 403, 201, 0, 850, 851, 3, 421, 210, 0, 851, 852, 3, 427, 213, 0, 852, 146, 1, 0, 0, 0, 853, 854, 3, 403, 201, 0, 854, 855, 3, 421, 210, 0, 855, 856, 3, 427, 213, 0, 856, 857, 3, 401, 200, 0, 857, 858, 3, 409, 204, 0, 858, 859, 3, 405, 202, 0, 859, 860, 3, 419, 209, 0, 860, 148, 1, 0, 0, 0, 861, 862, 3, 403, 201, 0, 862, 863, 3, 427, 213, 0, 863, 864, 3, 421, 210, 0, 864, 865, 3, 417, 208, 0, 865, 150, 1, 0, 0, 0, 866, 867, 3, 403, 201, 0, 867, 868, 3, 433, 216, 0, 868, 869, 3, 415, 207, 0, 869, 870, 3, 415, 207, 0, 870, 152, 1, 0, 0, 0, 871, 872, 3, 405, 202, 0, 872, 873, 3, 415, 207, 0, 873, 874, 3, 421, 210, 0, 874, 875, 3, 395, 197, 0, 875, 154, 1, 0, 0, 0, 876, 877, 3, 405, 202, 0, 877, 878, 3, 427, 213, 0, 878, 879, 3, 421, 210, 0, 879, 880, 3, 433, 216, 0, 880, 881, 3, 423, 211, 0, 881, 156, 1, 0, 0, 0, 882, 883, 3, 407, 203, 0, 883, 884, 3, 393, 196, 0, 884, 885, 3, 435, 217, 0, 885, 886, 3, 409, 204, 0, 886, 887, 3, 419, 209, 0, 887, 888, 3, 405, 202, 0, 888, 158, 1, 0, 0, 0, 889, 890, 3, 409, 204, 0, 890, 891, 3, 403, 201, 0, 891, 160, 1, 0, 0, 0, 892, 893, 3, 409, 204, 0, 893, 894, 3, 405, 202, 0, 894, 895, 3, 419, 209, 0, 895, 896, 3, 421, 210, 0, 896, 897, 3, 427, 213, 0, 897, 898, 3, 401, 200, 0, 898, 162, 1, 0, 0, 0, 899, 900, 3, 409, 204, 0, 900, 901, 3, 417, 208, 0, 901, 902, 3, 417, 208, 0, 902, 903, 3, 401, 200, 0, 903, 904, 3, 399, 199, 0, 904, 905, 3, 409, 204, 0, 905, 906, 3, 393, 196, 0, 906, 907, 3, 431, 215, 0, 907, 908, 3, 401, 200, 0, 908, 164, 1, 0, 0, 0, 909, 910, 3, 409, 204, 0, 910, 911, 3, 419, 209, 0, 911, 166, 1, 0, 0, 0, 912, 913, 3, 409, 204, 0, 913, 914, 3, 419, 209, 0, 914, 915, 3, 399, 199, 0, 915, 916, 3, 401, 200, 0, 916, 917, 3, 439, 219, 0, 917, 168, 1, 0, 0, 0, 918, 919, 3, 409, 204, 0, 919, 920, 3, 419, 209, 0, 920, 921, 3, 399, 199, 0, 921, 922, 3, 401, 200, 0, 922, 923, 3, 439, 219, 0, 923, 924, 3, 401, 200, 0, 924, 925, 3, 399, 199, 0, 925, 170, 1, 0, 0, 0, 926, 927, 3, 409, 204, 0, 927, 928, 3, 419, 209, 0, 928, 929, 3, 409, 204, 0, 929, 930, 3, 431, 215, 0, 930, 931, 3, 409, 204, 0, 931, 932, 3, 393, 196, 0, 932, 933, 3, 415, 207, 0, 933, 934, 3, 415, 207, 0, 934, 935, 3, 441, 220, 0, 935, 172, 1, 0, 0, 0, 936, 937, 3, 409, 204, 0, 937, 938, 3, 419, 209, 0, 938, 939, 3, 419, 209, 0, 939, 940, 3, 401, 200, 0, 940, 941, 3, 427, 213, 0, 941, 174, 1, 0, 0, 0, 942, 943, 3, 409, 204, 0, 943, 944, 3, 419, 209, 0, 944, 945, 3, 429, 214, 0, 945, 946, 3, 401, 200, 0, 946, 947, 3, 427, 213, 0, 947, 948, 3, 431, 215, 0, 948, 176, 1, 0, 0, 0, 949, 950, 3, 409, 204, 0, 950, 951, 3, 419, 209, 0, 951, 952, 3, 429, 214, 0, 952, 953, 3, 431, 215, 0, 953, 954, 3, 401, 200, 0, 954, 955, 3, 393, 196, 0, 955, 956, 3, 399, 199, 0, 956, 178, 1, 0, 0, 0, 957, 958, 3, 409, 204, 0, 958, 959, 3, 419, 209, 0, 959, 960, 3, 431, 215, 0, 960, 961, 3, 401, 200, 0, 961, 962, 3, 427, 213, 0, 962, 963, 3, 429, 214, 0, 963, 964, 3, 401, 200, 0, 964, 965, 3, 397, 198, 0, 965, 966, 3, 431, 215, 0, 966, 180, 1, 0, 0, 0, 967, 968, 3, 409, 204, 0, 968, 969, 3, 419, 209, 0, 969, 970, 3, 431, 215, 0, 970, 971, 3, 421, 210, 0, 971, 182, 1, 0, 0, 0, 972, 973, 3, 409, 204, 0, 973, 974, 3, 429, 214, 0, 974, 184, 1, 0, 0, 0, 975, 976, 3, 409, 204, 0, 976, 977, 3, 429, 214, 0, 977, 978, 3, 419, 209, 0, 978, 979, 3, 433, 216, 0, 979, 980, 3, 415, 207, 0, 980, 981, 3, 415, 207, 0, 981, 186, 1, 0, 0, 0, 982, 983, 3, 411, 205, 0, 983, 984, 3, 421, 210, 0, 984, 985, 3, 409, 204, 0, 985, 986, 3, 419, 209, 0, 986, 188, 1, 0, 0, 0, 987, 988, 3, 413, 206, 0, 988, 989, 3, 401, 200, 0, 989, 990, 3, 441, 220, 0, 990, 190, 1, 0, 0, 0, 991, 992, 3, 415, 207, 0, 992, 993, 3, 401, 200, 0, 993, 994, 3, 403, 201, 0, 994, 995, 3, 431, 215, 0, 995, 192, 1, 0, 0, 0, 996, 997, 3, 415, 207, 0, 997, 998, 3, 409, 204, 0, 998, 999, 3, 413, 206, 0, 999, 1000, 3, 401, 200, 0, 1000, 194, 1, 0, 0, 0, 1001, 1002, 3, 415, 207, 0, 1002, 1003, 3, 409, 204, 0, 1003, 1004, 3, 417, 208, 0, 1004, 1005, 3, 409, 204, 0, 1005, 1006, 3, 431, 215, 0, 1006, 196, 1, 0, 0, 0, 1007, 1008, 3, 417, 208, 0, 1008, 1009, 3, 393, 196, 0, 1009, 1010, 3, 431, 215, 0, 1010, 1011, 3, 397, 198, 0, 1011, 1012, 3, 407, 203, 0, 1012, 198, 1, 0, 0, 0, 1013, 1014, 3, 419, 209, 0, 1014, 1015, 3, 393, 196, 0, 1015, 1016, 3, 431, 215, 0, 1016, 1017, 3, 433, 216, 0, 1017, 1018, 3, 427, 213, 0, 1018, 1019, 3, 393, 196, 0, 1019, 1020, 3, 415, 207, 0, 1020, 200, 1, 0, 0, 0, 1021, 1022, 3, 419, 209, 0, 1022, 1023, 3, 421, 210, 0, 1023, 202, 1, 0, 0, 0, 1024, 1025, 3, 419, 209, 0, 1025, 1026, 3, 421, 210, 0, 1026, 1027, 3, 431, 215, 0, 1027, 204, 1, 0, 0, 0, 1028, 1029, 3, 419, 209, 0, 1029, 1030, 3, 421, 210, 0, 1030, 1031, 3, 431, 215, 0, 1031, 1032, 3, 419, 209, 0, 1032, 1033, 3, 433, 216, 0, 1033, 1034, 3, 415, 207, 0, 1034, 1035, 3, 415, 207, 0, 1035, 206, 1, 0, 0, 0, 1036, 1037, 3, 419, 209, 0, 1037, 1038, 3, 433, 216, 0, 1038, 1039, 3, 415, 207, 0, 1039, 1040, 3, 415, 207, 0, 1040, 208, 1, 0, 0, 0, 1041, 1042, 3, 421, 210, 0, 1042, 1043, 3, 403, 201, 0, 1043, 210, 1, 0, 0, 0, 1044, 1045, 3, 421, 210, 0, 1045, 1046, 3, 403, 201, 0, 1046, 1047, 3, 403, 201, 0, 1047, 1048, 3, 429, 214, 0, 1048, 1049, 3, 401, 200, 0, 1049, 1050, 3, 431, 215, 0, 1050, 212, 1, 0, 0, 0, 1051, 1052, 3, 421, 210, 0, 1052, 1053, 3, 419, 209, 0, 1053, 214, 1, 0, 0, 0, 1054, 1055, 3, 421, 210, 0, 1055, 1056, 3, 427, 213, 0, 1056, 216, 1, 0, 0, 0, 1057, 1058, 3, 421, 210, 0, 1058, 1059, 3, 427, 213, 0, 1059, 1060, 3, 399, 199, 0, 1060, 1061, 3, 401, 200, 0, 1061, 1062, 3, 427, 213, 0, 1062, 218, 1, 0, 0, 0, 1063, 1064, 3, 421, 210, 0, 1064, 1065, 3, 433, 216, 0, 1065, 1066, 3, 431, 215, 0, 1066, 1067, 3, 401, 200, 0, 1067, 1068, 3, 427, 213, 0, 1068, 220, 1, 0, 0, 0, 1069, 1070, 3, 423, 211, 0, 1070, 1071, 3, 415, 207, 0, 1071, 1072, 3, 393, 196, 0, 1072, 1073, 3, 419, 209, 0, 1073, 222, 1, 0, 0, 0, 1074, 1075, 3, 423, 211, 0, 1075, 1076, 3, 427, 213, 0, 1076, 1077, 3, 393, 196, 0, 1077, 1078, 3, 405, 202, 0, 1078, 1079, 3, 417, 208, 0, 1079, 1080, 3, 393, 196, 0, 1080, 224, 1, 0, 0, 0, 1081, 1082, 3, 423, 211, 0, 1082, 1083, 3, 427, 213, 0, 1083, 1084, 3, 409, 204, 0, 1084, 1085, 3, 417, 208, 0, 1085, 1086, 3, 393, 196, 0, 1086, 1087, 3, 427, 213, 0, 1087, 1088, 3, 441, 220, 0, 1088, 226, 1, 0, 0, 0, 1089, 1090, 3, 425, 212, 0, 1090, 1091, 3, 433, 216, 0, 1091, 1092, 3, 401, 200, 0, 1092, 1093, 3, 427, 213, 0, 1093, 1094, 3, 441, 220, 0, 1094, 228, 1, 0, 0, 0, 1095, 1096, 3, 427, 213, 0, 1096, 1097, 3, 393, 196, 0, 1097, 1098, 3, 409, 204, 0, 1098, 1099, 3, 429, 214, 0, 1099, 1100, 3, 401, 200, 0, 1100, 230, 1, 0, 0, 0, 1101, 1102, 3, 427, 213, 0, 1102, 1103, 3, 401, 200, 0, 1103, 1104, 3, 397, 198, 0, 1104, 1105, 3, 433, 216, 0, 1105, 1106, 3, 427, 213, 0, 1106, 1107, 3, 429, 214, 0, 1107, 1108, 3, 409, 204, 0, 1108, 1109, 3, 435, 217, 0, 1109, 1110, 3, 401, 200, 0, 1110, 232, 1, 0, 0, 0, 1111, 1112, 3, 427, 213, 0, 1112, 1113, 3, 401, 200, 0, 1113, 1114, 3, 403, 201, 0, 1114, 1115, 3, 401, 200, 0, 1115, 1116, 3, 427, 213, 0, 1116, 1117, 3, 401, 200, 0, 1117, 1118, 3, 419, 209, 0, 1118, 1119, 3, 397, 198, 0, 1119, 1120, 3, 401, 200, 0, 1120, 1121, 3, 429, 214, 0, 1121, 234, 1, 0, 0, 0, 1122, 1123, 3, 427, 213, 0, 1123, 1124, 3, 401, 200, 0, 1124, 1125, 3, 405, 202, 0, 1125, 1126, 3, 401, 200, 0, 1126, 1127, 3, 439, 219, 0, 1127, 1128, 3, 423, 211, 0, 1128, 236, 1, 0, 0, 0, 1129, 1130, 3, 427, 213, 0, 1130, 1131, 3, 401, 200, 0, 1131, 1132, 3, 409, 204, 0, 1132, 1133, 3, 419, 209, 0, 1133, 1134, 3, 399, 199, 0, 1134, 1135, 3, 401, 200, 0, 1135, 1136, 3, 439, 219, 0, 1136, 238, 1, 0, 0, 0, 1137, 1138, 3, 427, 213, 0, 1138, 1139, 3, 401, 200, 0, 1139, 1140, 3, 415, 207, 0, 1140, 1141, 3, 401, 200, 0, 1141, 1142, 3, 393, 196, 0, 1142, 1143, 3, 429, 214, 0, 1143, 1144, 3, 401, 200, 0, 1144, 240, 1, 0, 0, 0, 1145, 1146, 3, 427, 213, 0, 1146, 1147, 3, 401, 200, 0, 1147, 1148, 3, 419, 209, 0, 1148, 1149, 3, 393, 196, 0, 1149, 1150, 3, 417, 208, 0, 1150, 1151, 3, 401, 200, 0, 1151, 242, 1, 0, 0, 0, 1152, 1153, 3, 427, 213, 0, 1153, 1154, 3, 401, 200, 0, 1154, 1155, 3, 423, 211, 0, 1155, 1156, 3, 415, 207, 0, 1156, 1157, 3, 393, 196, 0, 1157, 1158, 3, 397, 198, 0, 1158, 1159, 3, 401, 200, 0, 1159, 244, 1, 0, 0, 0, 1160, 1161, 3, 427, 213, 0, 1161, 1162, 3, 401, 200, 0, 1162, 1163, 3, 429, 214, 0, 1163, 1164, 3, 431, 215, 0, 1164, 1165, 3, 427, 213, 0, 1165, 1166, 3, 409, 204, 0, 1166, 1167, 3, 397, 198, 0, 1167, 1168, 3, 431, 215, 0, 1168, 246, 1, 0, 0, 0, 1169, 1170, 3, 427, 213, 0, 1170, 1171, 3, 401, 200, 0, 1171, 1172, 3, 431, 215, 0, 1172, 1173, 3, 433, 216, 0, 1173, 1174, 3, 427, 213, 0, 1174, 1175, 3, 419, 209, 0, 1175, 1176, 3, 409, 204, 0, 1176, 1177, 3, 419, 209, 0, 1177, 1178, 3, 405, 202, 0, 1178, 248, 1, 0, 0, 0, 1179, 1180, 3, 427, 213, 0, 1180, 1181, 3, 409, 204, 0, 1181, 1182, 3, 405, 202, 0, 1182, 1183, 3, 407, 203, 0, 1183, 1184, 3, 431, 215, 0, 1184, 250, 1, 0, 0, 0, 1185, 1186, 3, 427, 213, 0, 1186, 1187, 3, 421, 210, 0, 1187, 1188, 3, 415, 207, 0, 1188, 1189, 3, 415, 207, 0, 1189, 1190, 3, 395, 197, 0, 1190, 1191, 3, 393, 196, 0, 1191, 1192, 3, 397, 198, 0, 1192, 1193, 3, 413, 206, 0, 1193, 252, 1, 0, 0, 0, 1194, 1195, 3, 427, 213, 0, 1195, 1196, 3, 421, 210, 0, 1196, 1197, 3, 437, 218, 0, 1197, 254, 1, 0, 0, 0, 1198, 1199, 3, 427, 213, 0, 1199, 1200, 3, 421, 210, 0, 1200, 1201, 3, 437, 218, 0, 1201, 1202, 3, 429, 214, 0, 1202, 256, 1, 0, 0, 0, 1203, 1204, 3, 429, 214, 0, 1204, 1205, 3, 393, 196, 0, 1205, 1206, 3, 435, 217, 0, 1206, 1207, 3, 401, 200, 0, 1207, 1208, 3, 423, 211, 0, 1208, 1209, 3, 421, 210, 0, 1209, 1210, 3, 409, 204, 0, 1210, 1211, 3, 419, 209, 0, 1211, 1212, 3, 431, 215, 0, 1212, 258, 1, 0, 0, 0, 1213, 1214, 3, 429, 214, 0, 1214, 1215, 3, 401, 200, 0, 1215, 1216, 3, 415, 207, 0, 1216, 1217, 3, 401, 200, 0, 1217, 1218, 3, 397, 198, 0, 1218, 1219, 3, 431, 215, 0, 1219, 260, 1, 0, 0, 0, 1220, 1221, 3, 429, 214, 0, 1221, 1222, 3, 401, 200, 0, 1222, 1223, 3, 431, 215, 0, 1223, 262, 1, 0, 0, 0, 1224, 1225, 3, 429, 214, 0, 1225, 1226, 3, 431, 215, 0, 1226, 1227, 3, 427, 213, 0, 1227, 1228, 3, 409, 204, 0, 1228, 1229, 3, 397, 198, 0, 1229, 1230, 3, 431, 215, 0, 1230, 264, 1, 0, 0, 0, 1231, 1232, 3, 431, 215, 0, 1232, 1233, 3, 393, 196, 0, 1233, 1234, 3, 395, 197, 0, 1234, 1235, 3, 415, 207, 0, 1235, 1236, 3, 401, 200, 0, 1236, 266, 1, 0, 0, 0, 1237, 1238, 3, 431, 215, 0, 1238, 1239, 3, 401, 200, 0, 1239, 1240, 3, 417, 208, 0, 1240, 1241, 3, 423, 211, 0, 1241, 268, 1, 0, 0, 0, 1242, 1243, 3, 431, 215, 0, 1243, 1244, 3, 401, 200, 0, 1244, 1245, 3, 417, 208, 0, 1245, 1246, 3, 423, 211, 0, 1246, 1247, 3, 421, 210, 0, 1247, 1248, 3, 427, 213, 0, 1248, 1249, 3, 393, 196, 0, 1249, 1250, 3, 427, 213, 0, 1250, 1251, 3, 441, 220, 0, 1251, 270, 1, 0, 0, 0, 1252, 1253, 3, 431, 215, 0, 1253, 1254, 3, 407, 203, 0, 1254, 1255, 3, 401, 200, 0, 1255, 1256, 3, 419, 209, 0, 1256, 272, 1, 0, 0, 0, 1257, 1258, 3, 431, 215, 0, 1258, 1259, 3, 421, 210, 0, 1259, 274, 1, 0, 0, 0, 1260, 1261, 3, 431, 215, 0, 1261, 1262, 3, 427, 213, 0, 1262, 1263, 3, 393, 196, 0, 1263, 1264, 3, 419, 209, 0, 1264, 1265, 3, 429, 214, 0, 1265, 1266, 3, 393, 196, 0, 1266, 1267, 3, 397, 198, 0, 1267, 1268, 3, 431, 215, 0, 1268, 1269, 3, 409, 204, 0, 1269, 1270, 3, 421, 210, 0, 1270, 1271, 3, 419, 209, 0, 1271, 276, 1, 0, 0, 0, 1272, 1273, 3, 431, 215, 0, 1273, 1274, 3, 427, 213, 0, 1274, 1275, 3, 409, 204, 0, 1275, 1276, 3, 405, 202, 0, 1276, 1277, 3, 405, 202, 0, 1277, 1278, 3, 401, 200, 0, 1278, 1279, 3, 427, 213, 0, 1279, 278, 1, 0, 0, 0, 1280, 1281, 3, 433, 216, 0, 1281, 1282, 3, 419, 209, 0, 1282, 1283, 3, 409, 204, 0, 1283, 1284, 3, 421, 210, 0, 1284, 1285, 3, 419, 209, 0, 1285, 280, 1, 0, 0, 0, 1286, 1287, 3, 433, 216, 0, 1287, 1288, 3, 419, 209, 0, 1288, 1289, 3, 409, 204, 0, 1289, 1290, 3, 425, 212, 0, 1290, 1291, 3, 433, 216, 0, 1291, 1292, 3, 401, 200, 0, 1292, 282, 1, 0, 0, 0, 1293, 1294, 3, 433, 216, 0, 1294, 1295, 3, 423, 211, 0, 1295, 1296, 3, 399, 199, 0, 1296, 1297, 3, 393, 196, 0, 1297, 1298, 3, 431, 215, 0, 1298, 1299, 3, 401, 200, 0, 1299, 284, 1, 0, 0, 0, 1300, 1301, 3, 433, 216, 0, 1301, 1302, 3, 429, 214, 0, 1302, 1303, 3, 409, 204, 0, 1303, 1304, 3, 419, 209, 0, 1304, 1305, 3, 405, 202, 0, 1305, 286, 1, 0, 0, 0, 1306, 1307, 3, 435, 217, 0, 1307, 1308, 3, 393, 196, 0, 1308, 1309, 3, 397, 198, 0, 1309, 1310, 3, 433, 216, 0, 1310, 1311, 3, 433, 216, 0, 1311, 1312, 3, 417, 208, 0, 1312, 288, 1, 0, 0, 0, 1313, 1314, 3, 435, 217, 0, 1314, 1315, 3, 393, 196, 0, 1315, 1316, 3, 415, 207, 0, 1316, 1317, 3, 433, 216, 0, 1317, 1318, 3, 401, 200, 0, 1318, 1319, 3, 429, 214, 0, 1319, 290, 1, 0, 0, 0, 1320, 1321, 3, 435, 217, 0, 1321, 1322, 3, 409, 204, 0, 1322, 1323, 3, 401, 200, 0, 1323, 1324, 3, 437, 218, 0, 1324, 292, 1, 0, 0, 0, 1325, 1326, 3, 435, 217, 0, 1326, 1327, 3, 409, 204, 0, 1327, 1328, 3, 427, 213, 0, 1328, 1329, 3, 431, 215, 0, 1329, 1330, 3, 433, 216, 0, 1330, 1331, 3, 393, 196, 0, 1331, 1332, 3, 415, 207, 0, 1332, 294, 1, 0, 0, 0, 1333, 1334, 3, 437, 218, 0, 1334, 1335, 3, 407, 203, 0, 1335, 1336, 3, 401, 200, 0, 1336, 1337, 3, 419, 209, 0, 1337, 296, 1, 0, 0, 0, 1338, 1339, 3, 437, 218, 0, 1339, 1340, 3, 407, 203, 0, 1340, 1341, 3, 401, 200, 0, 1341, 1342, 3, 427, 213, 0, 1342, 1343, 3, 401, 200, 0, 1343, 298, 1, 0, 0, 0, 1344, 1345, 3, 437, 218, 0, 1345, 1346, 3, 409, 204, 0, 1346, 1347, 3, 431, 215, 0, 1347, 1348, 3, 407, 203, 0, 1348, 300, 1, 0, 0, 0, 1349, 1350, 3, 437, 218, 0, 1350, 1351, 3, 409, 204, 0, 1351, 1352, 3, 431, 215, 0, 1352, 1353, 3, 407, 203, 0, 1353, 1354, 3, 421, 210, 0, 1354, 1355, 3, 433, 216, 0, 1355, 1356, 3, 431, 215, 0, 1356, 302, 1, 0, 0, 0, 1357, 1358, 3, 403, 201, 0, 1358, 1359, 3, 409, 204, 0, 1359, 1360, 3, 427, 213, 0, 1360, 1361, 3, 429, 214, 0, 1361, 1362, 3, 431, 215, 0, 1362, 1363, 5, 95, 0, 0, 1363, 1364, 3, 435, 217, 0, 1364, 1365, 3, 393, 196, 0, 1365, 1366, 3, 415, 207, 0, 1366, 1367, 3, 433, 216, 0, 1367, 1368, 3, 401, 200, 0, 1368, 304, 1, 0, 0, 0, 1369, 1370, 3, 421, 210, 0, 1370, 1371, 3, 435, 217, 0, 1371, 1372, 3, 401, 200, 0, 1372, 1373, 3, 427, 213, 0, 1373, 306, 1, 0, 0, 0, 1374, 1375, 3, 423, 211, 0, 1375, 1376, 3, 393, 196, 0, 1376, 1377, 3, 427, 213, 0, 1377, 1378, 3, 431, 215, 0, 1378, 1379, 3, 409, 204, 0, 1379, 1380, 3, 431, 215, 0, 1380, 1381, 3, 409, 204, 0, 1381, 1382, 3, 421, 210, 0, 1382, 1383, 3, 419, 209, 0, 1383, 308, 1, 0, 0, 0, 1384, 1385, 3, 427, 213, 0, 1385, 1386, 3, 393, 196, 0, 1386, 1387, 3, 419, 209, 0, 1387, 1388, 3, 405, 202, 0, 1388, 1389, 3, 401, 200, 0, 1389, 310, 1, 0, 0, 0, 1390, 1391, 3, 423, 211, 0, 1391, 1392, 3, 427, 213, 0, 1392, 1393, 3, 401, 200, 0, 1393, 1394, 3, 397, 198, 0, 1394, 1395, 3, 401, 200, 0, 1395, 1396, 3, 399, 199, 0, 1396, 1397, 3, 409, 204, 0, 1397, 1398, 3, 419, 209, 0, 1398, 1399, 3, 405, 202, 0, 1399, 312, 1, 0, 0, 0, 1400, 1401, 3, 433, 216, 0, 1401, 1402, 3, 419, 209, 0, 1402, 1403, 3, 395, 197, 0, 1403, 1404, 3, 421, 210, 0, 1404, 1405, 3, 433, 216, 0, 1405, 1406, 3, 419, 209, 0, 1406, 1407, 3, 399, 199, 0, 1407, 1408, 3, 401, 200, 0, 1408, 1409, 3, 399, 199, 0, 1409, 314, 1, 0, 0, 0, 1410, 1411, 3, 397, 198, 0, 1411, 1412, 3, 433, 216, 0, 1412, 1413, 3, 427, 213, 0, 1413, 1414, 3, 427, 213, 0, 1414, 1415, 3, 401, 200, 0, 1415, 1416, 3, 419, 209, 0, 1416, 1417, 3, 431, 215, 0, 1417, 316, 1, 0, 0, 0, 1418, 1419, 3, 403, 201, 0, 1419, 1420, 3, 421, 210, 0, 1420, 1421, 3, 415, 207, 0, 1421, 1422, 3, 415, 207, 0, 1422, 1423, 3, 421, 210, 0, 1423, 1424, 3, 437, 218, 0, 1424, 1425, 3, 409, 204, 0, 1425, 1426, 3, 419, 209, 0, 1426, 1427, 3, 405, 202, 0, 1427, 318, 1, 0, 0, 0, 1428, 1429, 3, 397, 198, 0, 1429, 1430, 3, 433, 216, 0, 1430, 1431, 3, 417, 208, 0, 1431, 1432, 3, 401, 200, 0, 1432, 1433, 5, 95, 0, 0, 1433, 1434, 3, 399, 199, 0, 1434, 1435, 3, 409, 204, 0, 1435, 1436, 3, 429, 214, 0, 1436, 1437, 3, 431, 215, 0, 1437, 320, 1, 0, 0, 0, 1438, 1439, 3, 399, 199, 0, 1439, 1440, 3, 401, 200, 0, 1440, 1441, 3, 419, 209, 0, 1441, 1442, 3, 429, 214, 0, 1442, 1443, 3, 401, 200, 0, 1443, 1444, 5, 95, 0, 0, 1444, 1445, 3, 427, 213, 0, 1445, 1446, 3, 393, 196, 0, 1446, 1447, 3, 419, 209, 0, 1447, 1448, 3, 413, 206, 0, 1448, 322, 1, 0, 0, 0, 1449, 1450, 3, 415, 207, 0, 1450, 1451, 3, 393, 196, 0, 1451, 1452, 3, 405, 202, 0, 1452, 324, 1, 0, 0, 0, 1453, 1454, 3, 415, 207, 0, 1454, 1455, 3, 393, 196, 0, 1455, 1456, 3, 429, 214, 0, 1456, 1457, 3, 431, 215, 0, 1457, 1458, 5, 95, 0, 0, 1458, 1459, 3, 435, 217, 0, 1459, 1460, 3, 393, 196, 0, 1460, 1461, 3, 415, 207, 0, 1461, 1462, 3, 433, 216, 0, 1462, 1463, 3, 401, 200, 0, 1463, 326, 1, 0, 0, 0, 1464, 1465, 3, 415, 207, 0, 1465, 1466, 3, 401, 200, 0, 1466, 1467, 3, 393, 196, 0, 1467, 1468, 3, 399, 199, 0, 1468, 328, 1, 0, 0, 0, 1469, 1470, 3, 419, 209, 0, 1470, 1471, 3, 431, 215, 0, 1471, 1472, 3, 407, 203, 0, 1472, 1473, 5, 95, 0, 0, 1473, 1474, 3, 435, 217, 0, 1474, 1475, 3, 393, 196, 0, 1475, 1476, 3, 415, 207, 0, 1476, 1477, 3, 433, 216, 0, 1477, 1478, 3, 401, 200, 0, 1478, 330, 1, 0, 0, 0, 1479, 1480, 3, 419, 209, 0, 1480, 1481, 3, 431, 215, 0, 1481, 1482, 3, 409, 204, 0, 1482, 1483, 3, 415, 207, 0, 1483, 1484, 3, 401, 200, 0, 1484, 332, 1, 0, 0, 0, 1485, 1486, 3, 423, 211, 0, 1486, 1487, 3, 401, 200, 0, 1487, 1488, 3, 427, 213, 0, 1488, 1489, 3, 397, 198, 0, 1489, 1490, 3, 401, 200, 0, 1490, 1491, 3, 419, 209, 0, 1491, 1492, 3, 431, 215, 0, 1492, 1493, 5, 95, 0, 0, 1493, 1494, 3, 427, 213, 0, 1494, 1495, 3, 393, 196, 0, 1495, 1496, 3, 419, 209, 0, 1496, 1497, 3, 413, 206, 0, 1497, 334, 1, 0, 0, 0, 1498, 1499, 3, 427, 213, 0, 1499, 1500, 3, 393, 196, 0, 1500, 1501, 3, 419, 209, 0, 1501, 1502, 3, 413, 206, 0, 1502, 336, 1, 0, 0, 0, 1503, 1504, 3, 427, 213, 0, 1504, 1505, 3, 421, 210, 0, 1505, 1506, 3, 437, 218, 0, 1506, 1507, 5, 95, 0, 0, 1507, 1508, 3, 419, 209, 0, 1508, 1509, 3, 433, 216, 0, 1509, 1510, 3, 417, 208, 0, 1510, 1511, 3, 395, 197, 0, 1511, 1512, 3, 401, 200, 0, 1512, 1513, 3, 427, 213, 0, 1513, 338, 1, 0, 0, 0, 1514, 1515, 3, 405, 202, 0, 1515, 1516, 3, 401, 200, 0, 1516, 1517, 3, 419, 209, 0, 1517, 1518, 3, 401, 200, 0, 1518, 1519, 3, 427, 213, 0, 1519, 1520, 3, 393, 196, 0, 1520, 1521, 3, 431, 215, 0, 1521, 1522, 3, 401, 200, 0, 1522, 1523, 3, 399, 199, 0, 1523, 340, 1, 0, 0, 0, 1524, 1525, 3, 393, 196, 0, 1525, 1526, 3, 415, 207, 0, 1526, 1527, 3, 437, 218, 0, 1527, 1528, 3, 393, 196, 0, 1528, 1529, 3, 441, 220, 0, 1529, 1530, 3, 429, 214, 0, 1530, 342, 1, 0, 0, 0, 1531, 1532, 3, 429, 214, 0, 1532, 1533, 3, 431, 215, 0, 1533, 1534, 3, 421, 210, 0, 1534, 1535, 3, 427, 213, 0, 1535, 1536, 3, 401, 200, 0, 1536, 1537, 3, 399, 199, 0, 1537, 344, 1, 0, 0, 0, 1538, 1539, 3, 431, 215, 0, 1539, 1540, 3, 427, 213, 0, 1540, 1541, 3, 433, 216, 0, 1541, 1542, 3, 401, 200, 0, 1542, 346, 1, 0, 0, 0, 1543, 1544, 3, 403, 201, 0, 1544, 1545, 3, 393, 196, 0, 1545, 1546, 3, 415, 207, 0, 1546, 1547, 3, 429, 214, 0, 1547, 1548, 3, 401, 200, 0, 1548, 348, 1, 0, 0, 0, 1549, 1550, 3, 437, 218, 0, 1550, 1551, 3, 409, 204, 0, 1551, 1552, 3, 419, 209, 0, 1552, 1553, 3, 399, 199, 0, 1553, 1554, 3, 421, 210, 0, 1554, 1555, 3, 437, 218, 0, 1555, 350, 1, 0, 0, 0, 1556, 1557, 3, 419, 209, 0, 1557, 1558, 3, 433, 216, 0, 1558, 1559, 3, 415, 207, 0, 1559, 1560, 3, 415, 207, 0, 1560, 1561, 3, 429, 214, 0, 1561, 352, 1, 0, 0, 0, 1562, 1563, 3, 403, 201, 0, 1563, 1564, 3, 409, 204, 0, 1564, 1565, 3, 427, 213, 0, 1565, 1566, 3, 429, 214, 0, 1566, 1567, 3, 431, 215, 0, 1567, 354, 1, 0, 0, 0, 1568, 1569, 3, 415, 207, 0, 1569, 1570, 3, 393, 196, 0, 1570, 1571, 3, 429, 214, 0, 1571, 1572, 3, 431, 215, 0, 1572, 356, 1, 0, 0, 0, 1573, 1574, 3, 403, 201, 0, 1574, 1575, 3, 409, 204, 0, 1575, 1576, 3, 415, 207, 0, 1576, 1577, 3, 431, 215, 0, 1577, 1578, 3, 401, 200, 0, 1578, 1579, 3, 427, 213, 0, 1579, 358, 1, 0, 0, 0, 1580, 1581, 3, 405, 202, 0, 1581, 1582, 3, 427, 213, 0, 1582, 1583, 3, 421, 210, 0, 1583, 1584, 3, 433, 216, 0, 1584, 1585, 3, 423, 211, 0, 1585, 1586, 3, 429, 214, 0, 1586, 360, 1, 0, 0, 0, 1587, 1588, 3, 401, 200, 0, 1588, 1589, 3, 439, 219, 0, 1589, 1590, 3, 397, 198, 0, 1590, 1591, 3, 415, 207, 0, 1591, 1592, 3, 433, 216, 0, 1592, 1593, 3, 399, 199, 0, 1593, 1594, 3, 401, 200, 0, 1594, 362, 1, 0, 0, 0, 1595, 1596, 3, 431, 215, 0, 1596, 1597, 3, 409, 204, 0, 1597, 1598, 3, 401, 200, 0, 1598, 1599, 3, 429, 214, 0, 1599, 364, 1, 0, 0, 0, 1600, 1601, 3, 421, 210, 0, 1601, 1602, 3, 431, 215, 0, 1602, 1603, 3, 407, 203, 0, 1603, 1604, 3, 401, 200, 0, 1604, 1605, 3, 427, 213, 0, 1605, 1606, 3, 429, 214, 0, 1606, 366, 1, 0, 0, 0, 1607, 1608, 3, 399, 199, 0, 1608, 1609, 3, 421, 210, 0, 1609, 368, 1, 0, 0, 0, 1610, 1611, 3, 419, 209, 0, 1611, 1612, 3, 421, 210, 0, 1612, 1613, 3, 431, 215, 0, 1613, 1614, 3, 407, 203, 0, 1614, 1615, 3, 409, 204, 0, 1615, 1616, 3, 419, 209, 0, 1616, 1617, 3, 405, 202, 0, 1617, 370, 1, 0, 0, 0, 1618, 1624, 5, 34, 0, 0, 1619, 1623, 8, 0, 0, 0, 1620, 1621, 5, 34, 0, 0, 1621, 1623, 5, 34, 0, 0, 1622, 1619, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1626, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1654, 5, 34, 0, 0, 1628, 1634, 5, 96, 0, 0, 1629, 1633, 8, 1, 0, 0, 1630, 1631, 5, 96, 0, 0, 1631, 1633, 5, 96, 0, 0, 1632, 1629, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1633, 1636, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1637, 1654, 5, 96, 0, 0, 1638, 1642, 5, 91, 0, 0, 1639, 1641, 8, 2, 0, 0, 1640, 1639, 1, 0, 0, 0, 1641, 1644, 1, 0, 0, 0, 1642, 1640, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1645, 1, 0, 0, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1654, 5, 93, 0, 0, 1646, 1650, 7, 3, 0, 0, 1647, 1649, 7, 4, 0, 0, 1648, 1647, 1, 0, 0, 0, 1649, 1652, 1, 0, 0, 0, 1650, 1648, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1654, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, 1653, 1618, 1, 0, 0, 0, 1653, 1628, 1, 0, 0, 0, 1653, 1638, 1, 0, 0, 0, 1653, 1646, 1, 0, 0, 0, 1654, 372, 1, 0, 0, 0, 1655, 1657, 3, 391, 195, 0, 1656, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1667, 1, 0, 0, 0, 1660, 1664, 5, 46, 0, 0, 1661, 1663, 3, 391, 195, 0, 1662, 1661, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1668, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1660, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1676, 1, 0, 0, 0, 1669, 1671, 5, 46, 0, 0, 1670, 1672, 3, 391, 195, 0, 1671, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1671, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 1, 0, 0, 0, 1675, 1656, 1, 0, 0, 0, 1675, 1669, 1, 0, 0, 0, 1676, 1686, 1, 0, 0, 0, 1677, 1679, 3, 401, 200, 0, 1678, 1680, 7, 5, 0, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 1, 0, 0, 0, 1681, 1683, 3, 391, 195, 0, 1682, 1681, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, 1, 0, 0, 0, 1686, 1677, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1697, 1, 0, 0, 0, 1688, 1689, 5, 48, 0, 0, 1689, 1690, 5, 120, 0, 0, 1690, 1692, 1, 0, 0, 0, 1691, 1693, 3, 389, 194, 0, 1692, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 1, 0, 0, 0, 1696, 1675, 1, 0, 0, 0, 1696, 1688, 1, 0, 0, 0, 1697, 374, 1, 0, 0, 0, 1698, 1702, 5, 63, 0, 0, 1699, 1701, 3, 391, 195, 0, 1700, 1699, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1708, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1706, 7, 6, 0, 0, 1706, 1708, 3, 371, 185, 0, 1707, 1698, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 376, 1, 0, 0, 0, 1709, 1715, 5, 39, 0, 0, 1710, 1714, 8, 7, 0, 0, 1711, 1712, 5, 39, 0, 0, 1712, 1714, 5, 39, 0, 0, 1713, 1710, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 5, 39, 0, 0, 1719, 378, 1, 0, 0, 0, 1720, 1721, 3, 439, 219, 0, 1721, 1722, 3, 377, 188, 0, 1722, 380, 1, 0, 0, 0, 1723, 1724, 5, 45, 0, 0, 1724, 1725, 5, 45, 0, 0, 1725, 1729, 1, 0, 0, 0, 1726, 1728, 8, 8, 0, 0, 1727, 1726, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1737, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1734, 5, 13, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1738, 5, 10, 0, 0, 1736, 1738, 5, 0, 0, 1, 1737, 1733, 1, 0, 0, 0, 1737, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 190, 0, 0, 1740, 382, 1, 0, 0, 0, 1741, 1742, 5, 47, 0, 0, 1742, 1743, 5, 42, 0, 0, 1743, 1747, 1, 0, 0, 0, 1744, 1746, 9, 0, 0, 0, 1745, 1744, 1, 0, 0, 0, 1746, 1749, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1750, 1751, 5, 42, 0, 0, 1751, 1752, 5, 47, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 6, 191, 0, 0, 1754, 384, 1, 0, 0, 0, 1755, 1756, 7, 9, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 6, 192, 0, 0, 1758, 386, 1, 0, 0, 0, 1759, 1760, 9, 0, 0, 0, 1760, 388, 1, 0, 0, 0, 1761, 1762, 7, 10, 0, 0, 1762, 390, 1, 0, 0, 0, 1763, 1764, 7, 11, 0, 0, 1764, 392, 1, 0, 0, 0, 1765, 1766, 7, 12, 0, 0, 1766, 394, 1, 0, 0, 0, 1767, 1768, 7, 13, 0, 0, 1768, 396, 1, 0, 0, 0, 1769, 1770, 7, 14, 0, 0, 1770, 398, 1, 0, 0, 0, 1771, 1772, 7, 15, 0, 0, 1772, 400, 1, 0, 0, 0, 1773, 1774, 7, 16, 0, 0, 1774, 402, 1, 0, 0, 0, 1775, 1776, 7, 17, 0, 0, 1776, 404, 1, 0, 0, 0, 1777, 1778, 7, 18, 0, 0, 1778, 406, 1, 0, 0, 0, 1779, 1780, 7, 19, 0, 0, 1780, 408, 1, 0, 0, 0, 1781, 1782, 7, 20, 0, 0, 1782, 410, 1, 0, 0, 0, 1783, 1784, 7, 21, 0, 0, 1784, 412, 1, 0, 0, 0, 1785, 1786, 7, 22, 0, 0, 1786, 414, 1, 0, 0, 0, 1787, 1788, 7, 23, 0, 0, 1788, 416, 1, 0, 0, 0, 1789, 1790, 7, 24, 0, 0, 1790, 418, 1, 0, 0, 0, 1791, 1792, 7, 25, 0, 0, 1792, 420, 1, 0, 0, 0, 1793, 1794, 7, 26, 0, 0, 1794, 422, 1, 0, 0, 0, 1795, 1796, 7, 27, 0, 0, 1796, 424, 1, 0, 0, 0, 1797, 1798, 7, 28, 0, 0, 1798, 426, 1, 0, 0, 0, 1799, 1800, 7, 29, 0, 0, 1800, 428, 1, 0, 0, 0, 1801, 1802, 7, 30, 0, 0, 1802, 430, 1, 0, 0, 0, 1803, 1804, 7, 31, 0, 0, 1804, 432, 1, 0, 0, 0, 1805, 1806, 7, 32, 0, 0, 1806, 434, 1, 0, 0, 0, 1807, 1808, 7, 33, 0, 0, 1808, 436, 1, 0, 0, 0, 1809, 1810, 7, 34, 0, 0, 1810, 438, 1, 0, 0, 0, 1811, 1812, 7, 35, 0, 0, 1812, 440, 1, 0, 0, 0, 1813, 1814, 7, 36, 0, 0, 1814, 442, 1, 0, 0, 0, 1815, 1816, 7, 37, 0, 0, 1816, 444, 1, 0, 0, 0, 26, 0, 1622, 1624, 1632, 1634, 1642, 1650, 1653, 1658, 1664, 1667, 1673, 1675, 1679, 1684, 1686, 1694, 1696, 1702, 1707, 1713, 1715, 1729, 1733, 1737, 1747, 1, 0, 1, 0] \ No newline at end of file diff --git a/internal/engine/sqlite/parser/SQLiteLexer.tokens b/internal/engine/sqlite/parser/SQLiteLexer.tokens index 104daff119..4514f9ee50 100644 --- a/internal/engine/sqlite/parser/SQLiteLexer.tokens +++ b/internal/engine/sqlite/parser/SQLiteLexer.tokens @@ -129,68 +129,69 @@ ROWS_=128 SAVEPOINT_=129 SELECT_=130 SET_=131 -TABLE_=132 -TEMP_=133 -TEMPORARY_=134 -THEN_=135 -TO_=136 -TRANSACTION_=137 -TRIGGER_=138 -UNION_=139 -UNIQUE_=140 -UPDATE_=141 -USING_=142 -VACUUM_=143 -VALUES_=144 -VIEW_=145 -VIRTUAL_=146 -WHEN_=147 -WHERE_=148 -WITH_=149 -WITHOUT_=150 -FIRST_VALUE_=151 -OVER_=152 -PARTITION_=153 -RANGE_=154 -PRECEDING_=155 -UNBOUNDED_=156 -CURRENT_=157 -FOLLOWING_=158 -CUME_DIST_=159 -DENSE_RANK_=160 -LAG_=161 -LAST_VALUE_=162 -LEAD_=163 -NTH_VALUE_=164 -NTILE_=165 -PERCENT_RANK_=166 -RANK_=167 -ROW_NUMBER_=168 -GENERATED_=169 -ALWAYS_=170 -STORED_=171 -TRUE_=172 -FALSE_=173 -WINDOW_=174 -NULLS_=175 -FIRST_=176 -LAST_=177 -FILTER_=178 -GROUPS_=179 -EXCLUDE_=180 -TIES_=181 -OTHERS_=182 -DO_=183 -NOTHING_=184 -IDENTIFIER=185 -NUMERIC_LITERAL=186 -BIND_PARAMETER=187 -STRING_LITERAL=188 -BLOB_LITERAL=189 -SINGLE_LINE_COMMENT=190 -MULTILINE_COMMENT=191 -SPACES=192 -UNEXPECTED_CHAR=193 +STRICT_=132 +TABLE_=133 +TEMP_=134 +TEMPORARY_=135 +THEN_=136 +TO_=137 +TRANSACTION_=138 +TRIGGER_=139 +UNION_=140 +UNIQUE_=141 +UPDATE_=142 +USING_=143 +VACUUM_=144 +VALUES_=145 +VIEW_=146 +VIRTUAL_=147 +WHEN_=148 +WHERE_=149 +WITH_=150 +WITHOUT_=151 +FIRST_VALUE_=152 +OVER_=153 +PARTITION_=154 +RANGE_=155 +PRECEDING_=156 +UNBOUNDED_=157 +CURRENT_=158 +FOLLOWING_=159 +CUME_DIST_=160 +DENSE_RANK_=161 +LAG_=162 +LAST_VALUE_=163 +LEAD_=164 +NTH_VALUE_=165 +NTILE_=166 +PERCENT_RANK_=167 +RANK_=168 +ROW_NUMBER_=169 +GENERATED_=170 +ALWAYS_=171 +STORED_=172 +TRUE_=173 +FALSE_=174 +WINDOW_=175 +NULLS_=176 +FIRST_=177 +LAST_=178 +FILTER_=179 +GROUPS_=180 +EXCLUDE_=181 +TIES_=182 +OTHERS_=183 +DO_=184 +NOTHING_=185 +IDENTIFIER=186 +NUMERIC_LITERAL=187 +BIND_PARAMETER=188 +STRING_LITERAL=189 +BLOB_LITERAL=190 +SINGLE_LINE_COMMENT=191 +MULTILINE_COMMENT=192 +SPACES=193 +UNEXPECTED_CHAR=194 ';'=1 '.'=2 '('=3 diff --git a/internal/engine/sqlite/parser/SQLiteParser.g4 b/internal/engine/sqlite/parser/SQLiteParser.g4 index fbec42aac1..7858f309f4 100644 --- a/internal/engine/sqlite/parser/SQLiteParser.g4 +++ b/internal/engine/sqlite/parser/SQLiteParser.g4 @@ -122,7 +122,7 @@ create_table_stmt: schema_name DOT )? table_name ( OPEN_PAR column_def (COMMA column_def)*? (COMMA table_constraint)* CLOSE_PAR ( - WITHOUT_ row_ROW_ID = IDENTIFIER + (WITHOUT_ row_ROW_ID = IDENTIFIER) | (STRICT_) )? | AS_ select_stmt ) @@ -756,6 +756,7 @@ keyword: | SAVEPOINT_ | SELECT_ | SET_ + | STRICT_ | TABLE_ | TEMP_ | TEMPORARY_ diff --git a/internal/engine/sqlite/parser/SQLiteParser.interp b/internal/engine/sqlite/parser/SQLiteParser.interp index 5e44ab1bd9..4118a6c737 100644 --- a/internal/engine/sqlite/parser/SQLiteParser.interp +++ b/internal/engine/sqlite/parser/SQLiteParser.interp @@ -193,6 +193,7 @@ null null null null +null token symbolic names: null @@ -327,6 +328,7 @@ ROWS_ SAVEPOINT_ SELECT_ SET_ +STRICT_ TABLE_ TEMP_ TEMPORARY_ @@ -506,4 +508,4 @@ any_name atn: -[4, 1, 193, 2081, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 1, 0, 5, 0, 226, 8, 0, 10, 0, 12, 0, 229, 9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 234, 8, 1, 10, 1, 12, 1, 237, 9, 1, 1, 1, 1, 1, 4, 1, 241, 8, 1, 11, 1, 12, 1, 242, 1, 1, 5, 1, 246, 8, 1, 10, 1, 12, 1, 249, 9, 1, 1, 1, 5, 1, 252, 8, 1, 10, 1, 12, 1, 255, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, 260, 8, 2, 3, 2, 262, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 288, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 295, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 302, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 308, 8, 3, 1, 3, 1, 3, 3, 3, 312, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 317, 8, 3, 1, 3, 3, 3, 320, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 327, 8, 4, 1, 4, 3, 4, 330, 8, 4, 1, 5, 1, 5, 3, 5, 334, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 342, 8, 6, 1, 6, 1, 6, 3, 6, 346, 8, 6, 3, 6, 348, 8, 6, 1, 7, 1, 7, 3, 7, 352, 8, 7, 1, 8, 1, 8, 3, 8, 356, 8, 8, 1, 8, 1, 8, 3, 8, 360, 8, 8, 1, 8, 3, 8, 363, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 370, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 376, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 382, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 387, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 396, 8, 11, 10, 11, 12, 11, 399, 9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 404, 8, 11, 1, 12, 1, 12, 3, 12, 408, 8, 12, 1, 12, 1, 12, 3, 12, 412, 8, 12, 1, 12, 3, 12, 415, 8, 12, 1, 13, 1, 13, 3, 13, 419, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 425, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 430, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 437, 8, 13, 10, 13, 12, 13, 440, 9, 13, 1, 13, 1, 13, 5, 13, 444, 8, 13, 10, 13, 12, 13, 447, 9, 13, 1, 13, 1, 13, 1, 13, 3, 13, 452, 8, 13, 1, 13, 1, 13, 3, 13, 456, 8, 13, 1, 14, 1, 14, 3, 14, 460, 8, 14, 1, 14, 5, 14, 463, 8, 14, 10, 14, 12, 14, 466, 9, 14, 1, 15, 4, 15, 469, 8, 15, 11, 15, 12, 15, 470, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 483, 8, 15, 1, 16, 1, 16, 3, 16, 487, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 492, 8, 16, 1, 16, 3, 16, 495, 8, 16, 1, 16, 3, 16, 498, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 503, 8, 16, 1, 16, 3, 16, 506, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 520, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 527, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 534, 8, 16, 3, 16, 536, 8, 16, 1, 17, 3, 17, 539, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 545, 8, 18, 1, 18, 1, 18, 1, 18, 3, 18, 550, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 556, 8, 18, 10, 18, 12, 18, 559, 9, 18, 1, 18, 1, 18, 3, 18, 563, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 576, 8, 18, 10, 18, 12, 18, 579, 9, 18, 1, 18, 1, 18, 1, 18, 3, 18, 584, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 592, 8, 19, 10, 19, 12, 19, 595, 9, 19, 1, 19, 1, 19, 3, 19, 599, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 609, 8, 19, 1, 19, 1, 19, 5, 19, 613, 8, 19, 10, 19, 12, 19, 616, 9, 19, 1, 19, 3, 19, 619, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 624, 8, 19, 3, 19, 626, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 634, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 640, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 645, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 652, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 661, 8, 21, 10, 21, 12, 21, 664, 9, 21, 3, 21, 666, 8, 21, 3, 21, 668, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 675, 8, 21, 1, 21, 1, 21, 3, 21, 679, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 686, 8, 21, 1, 21, 1, 21, 4, 21, 690, 8, 21, 11, 21, 12, 21, 691, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 698, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 704, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 709, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 716, 8, 22, 10, 22, 12, 22, 719, 9, 22, 1, 22, 1, 22, 3, 22, 723, 8, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 734, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 739, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 748, 8, 23, 10, 23, 12, 23, 751, 9, 23, 1, 23, 1, 23, 3, 23, 755, 8, 23, 1, 24, 1, 24, 3, 24, 759, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 773, 8, 24, 10, 24, 12, 24, 776, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 783, 8, 25, 10, 25, 12, 25, 786, 9, 25, 1, 25, 1, 25, 3, 25, 790, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 798, 8, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 808, 8, 27, 10, 27, 12, 27, 811, 9, 27, 1, 27, 1, 27, 3, 27, 815, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 826, 8, 28, 1, 28, 3, 28, 829, 8, 28, 3, 28, 831, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 837, 8, 28, 1, 28, 3, 28, 840, 8, 28, 3, 28, 842, 8, 28, 5, 28, 844, 8, 28, 10, 28, 12, 28, 847, 9, 28, 1, 29, 3, 29, 850, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 857, 8, 29, 1, 29, 3, 29, 860, 8, 29, 1, 30, 3, 30, 863, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 870, 8, 30, 1, 30, 3, 30, 873, 8, 30, 1, 30, 3, 30, 876, 8, 30, 1, 30, 3, 30, 879, 8, 30, 1, 31, 1, 31, 3, 31, 883, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 891, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 896, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 906, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 911, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 920, 8, 33, 1, 33, 1, 33, 1, 33, 5, 33, 925, 8, 33, 10, 33, 12, 33, 928, 9, 33, 1, 33, 3, 33, 931, 8, 33, 1, 33, 1, 33, 3, 33, 935, 8, 33, 1, 33, 3, 33, 938, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 944, 8, 33, 10, 33, 12, 33, 947, 9, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 959, 8, 33, 1, 33, 3, 33, 962, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 970, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 4, 33, 977, 8, 33, 11, 33, 12, 33, 978, 1, 33, 1, 33, 3, 33, 983, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 988, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1018, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1029, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1041, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1047, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1054, 8, 33, 1, 33, 1, 33, 3, 33, 1058, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1066, 8, 33, 10, 33, 12, 33, 1069, 9, 33, 3, 33, 1071, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1077, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1083, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1090, 8, 33, 10, 33, 12, 33, 1093, 9, 33, 3, 33, 1095, 8, 33, 1, 33, 1, 33, 3, 33, 1099, 8, 33, 5, 33, 1101, 8, 33, 10, 33, 12, 33, 1104, 9, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1112, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 3, 36, 1119, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1126, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1132, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1137, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1143, 8, 36, 10, 36, 12, 36, 1146, 9, 36, 1, 36, 1, 36, 3, 36, 1150, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1157, 8, 36, 10, 36, 12, 36, 1160, 9, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1168, 8, 36, 10, 36, 12, 36, 1171, 9, 36, 1, 36, 1, 36, 5, 36, 1175, 8, 36, 10, 36, 12, 36, 1178, 9, 36, 1, 36, 3, 36, 1181, 8, 36, 1, 36, 3, 36, 1184, 8, 36, 1, 36, 3, 36, 1187, 8, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1199, 8, 37, 10, 37, 12, 37, 1202, 9, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1207, 8, 37, 3, 37, 1209, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1217, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1224, 8, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1229, 8, 37, 10, 37, 12, 37, 1232, 9, 37, 1, 37, 1, 37, 3, 37, 1236, 8, 37, 3, 37, 1238, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1244, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1253, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1258, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1265, 8, 40, 1, 40, 1, 40, 3, 40, 1269, 8, 40, 3, 40, 1271, 8, 40, 1, 41, 3, 41, 1274, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1280, 8, 41, 10, 41, 12, 41, 1283, 9, 41, 1, 41, 3, 41, 1286, 8, 41, 1, 41, 3, 41, 1289, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1295, 8, 42, 5, 42, 1297, 8, 42, 10, 42, 12, 42, 1300, 9, 42, 1, 43, 1, 43, 3, 43, 1304, 8, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1309, 8, 43, 10, 43, 12, 43, 1312, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1318, 8, 43, 10, 43, 12, 43, 1321, 9, 43, 1, 43, 3, 43, 1324, 8, 43, 3, 43, 1326, 8, 43, 1, 43, 1, 43, 3, 43, 1330, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1337, 8, 43, 10, 43, 12, 43, 1340, 9, 43, 1, 43, 1, 43, 3, 43, 1344, 8, 43, 3, 43, 1346, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1357, 8, 43, 10, 43, 12, 43, 1360, 9, 43, 3, 43, 1362, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1369, 8, 43, 10, 43, 12, 43, 1372, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1380, 8, 43, 10, 43, 12, 43, 1383, 9, 43, 1, 43, 1, 43, 5, 43, 1387, 8, 43, 10, 43, 12, 43, 1390, 9, 43, 3, 43, 1392, 8, 43, 1, 44, 1, 44, 1, 45, 3, 45, 1397, 8, 45, 1, 45, 1, 45, 3, 45, 1401, 8, 45, 1, 45, 3, 45, 1404, 8, 45, 1, 46, 3, 46, 1407, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1412, 8, 46, 1, 46, 1, 46, 3, 46, 1416, 8, 46, 1, 46, 4, 46, 1419, 8, 46, 11, 46, 12, 46, 1420, 1, 46, 3, 46, 1424, 8, 46, 1, 46, 3, 46, 1427, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1432, 8, 47, 1, 47, 1, 47, 3, 47, 1436, 8, 47, 1, 47, 3, 47, 1439, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1446, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1451, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1458, 8, 47, 10, 47, 12, 47, 1461, 9, 47, 1, 47, 1, 47, 3, 47, 1465, 8, 47, 1, 47, 3, 47, 1468, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1474, 8, 47, 10, 47, 12, 47, 1477, 9, 47, 1, 47, 3, 47, 1480, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1488, 8, 47, 1, 47, 3, 47, 1491, 8, 47, 3, 47, 1493, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1502, 8, 48, 1, 48, 3, 48, 1505, 8, 48, 3, 48, 1507, 8, 48, 1, 49, 1, 49, 3, 49, 1511, 8, 49, 1, 49, 1, 49, 3, 49, 1515, 8, 49, 1, 49, 1, 49, 3, 49, 1519, 8, 49, 1, 49, 3, 49, 1522, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1531, 8, 50, 10, 50, 12, 50, 1534, 9, 50, 1, 50, 1, 50, 3, 50, 1538, 8, 50, 1, 51, 1, 51, 3, 51, 1542, 8, 51, 1, 51, 1, 51, 3, 51, 1546, 8, 51, 1, 52, 3, 52, 1549, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1554, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1560, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1567, 8, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1572, 8, 52, 10, 52, 12, 52, 1575, 9, 52, 1, 52, 1, 52, 3, 52, 1579, 8, 52, 1, 52, 3, 52, 1582, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1588, 8, 53, 10, 53, 12, 53, 1591, 9, 53, 1, 53, 1, 53, 1, 54, 3, 54, 1596, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1601, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1607, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1614, 8, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1619, 8, 54, 10, 54, 12, 54, 1622, 9, 54, 1, 54, 1, 54, 3, 54, 1626, 8, 54, 1, 54, 3, 54, 1629, 8, 54, 1, 54, 3, 54, 1632, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1637, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1642, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1649, 8, 55, 1, 56, 1, 56, 3, 56, 1653, 8, 56, 1, 56, 1, 56, 3, 56, 1657, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1667, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1674, 8, 58, 10, 58, 12, 58, 1677, 9, 58, 3, 58, 1679, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1686, 8, 58, 10, 58, 12, 58, 1689, 9, 58, 1, 58, 3, 58, 1692, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1700, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1707, 8, 59, 10, 59, 12, 59, 1710, 9, 59, 3, 59, 1712, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1719, 8, 59, 10, 59, 12, 59, 1722, 9, 59, 3, 59, 1724, 8, 59, 1, 59, 3, 59, 1727, 8, 59, 1, 59, 3, 59, 1730, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1740, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1749, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1756, 8, 62, 10, 62, 12, 62, 1759, 9, 62, 1, 62, 3, 62, 1762, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 1769, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1774, 8, 63, 10, 63, 12, 63, 1777, 9, 63, 1, 63, 3, 63, 1780, 8, 63, 1, 63, 1, 63, 3, 63, 1784, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1791, 8, 64, 10, 64, 12, 64, 1794, 9, 64, 1, 64, 3, 64, 1797, 8, 64, 1, 64, 1, 64, 3, 64, 1801, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1806, 8, 64, 1, 65, 1, 65, 3, 65, 1810, 8, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1815, 8, 65, 10, 65, 12, 65, 1818, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1825, 8, 66, 10, 66, 12, 66, 1828, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1834, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1839, 8, 68, 1, 68, 3, 68, 1842, 8, 68, 1, 68, 1, 68, 3, 68, 1846, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1860, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1872, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1881, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1890, 8, 73, 1, 73, 1, 73, 3, 73, 1894, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1904, 8, 73, 1, 73, 3, 73, 1907, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1916, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1925, 8, 73, 1, 73, 3, 73, 1928, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1934, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1948, 8, 73, 1, 73, 1, 73, 3, 73, 1952, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1963, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1968, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 4, 76, 1979, 8, 76, 11, 76, 12, 76, 1980, 1, 77, 1, 77, 1, 77, 4, 77, 1986, 8, 77, 11, 77, 12, 77, 1987, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1996, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2001, 8, 79, 5, 79, 2003, 8, 79, 10, 79, 12, 79, 2006, 9, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2018, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2079, 8, 111, 1, 111, 2, 438, 470, 1, 66, 112, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 133, 134, 2, 0, 146, 146, 171, 171, 1, 0, 8, 9, 2, 0, 59, 59, 141, 141, 2, 0, 56, 56, 104, 104, 2, 0, 58, 58, 82, 82, 5, 0, 25, 25, 72, 72, 81, 81, 122, 122, 126, 126, 4, 0, 84, 84, 132, 132, 138, 138, 145, 145, 2, 0, 7, 7, 12, 13, 1, 0, 14, 17, 1, 0, 18, 21, 4, 0, 77, 77, 97, 97, 99, 99, 118, 118, 3, 0, 25, 25, 72, 72, 126, 126, 5, 0, 52, 54, 104, 104, 172, 173, 186, 186, 188, 189, 2, 0, 29, 29, 62, 62, 3, 0, 128, 128, 154, 154, 179, 179, 2, 0, 5, 5, 106, 106, 1, 0, 176, 177, 2, 0, 34, 34, 60, 60, 2, 0, 151, 151, 162, 162, 2, 0, 159, 159, 166, 166, 2, 0, 160, 160, 167, 168, 2, 0, 161, 161, 163, 163, 2, 0, 8, 10, 102, 102, 2, 0, 185, 185, 188, 188, 1, 0, 25, 180, 2367, 0, 227, 1, 0, 0, 0, 2, 235, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 6, 289, 1, 0, 0, 0, 8, 321, 1, 0, 0, 0, 10, 331, 1, 0, 0, 0, 12, 339, 1, 0, 0, 0, 14, 349, 1, 0, 0, 0, 16, 353, 1, 0, 0, 0, 18, 364, 1, 0, 0, 0, 20, 367, 1, 0, 0, 0, 22, 373, 1, 0, 0, 0, 24, 407, 1, 0, 0, 0, 26, 416, 1, 0, 0, 0, 28, 457, 1, 0, 0, 0, 30, 468, 1, 0, 0, 0, 32, 486, 1, 0, 0, 0, 34, 538, 1, 0, 0, 0, 36, 544, 1, 0, 0, 0, 38, 585, 1, 0, 0, 0, 40, 627, 1, 0, 0, 0, 42, 631, 1, 0, 0, 0, 44, 695, 1, 0, 0, 0, 46, 727, 1, 0, 0, 0, 48, 756, 1, 0, 0, 0, 50, 777, 1, 0, 0, 0, 52, 791, 1, 0, 0, 0, 54, 802, 1, 0, 0, 0, 56, 821, 1, 0, 0, 0, 58, 849, 1, 0, 0, 0, 60, 862, 1, 0, 0, 0, 62, 880, 1, 0, 0, 0, 64, 886, 1, 0, 0, 0, 66, 987, 1, 0, 0, 0, 68, 1105, 1, 0, 0, 0, 70, 1115, 1, 0, 0, 0, 72, 1190, 1, 0, 0, 0, 74, 1192, 1, 0, 0, 0, 76, 1239, 1, 0, 0, 0, 78, 1257, 1, 0, 0, 0, 80, 1259, 1, 0, 0, 0, 82, 1273, 1, 0, 0, 0, 84, 1290, 1, 0, 0, 0, 86, 1391, 1, 0, 0, 0, 88, 1393, 1, 0, 0, 0, 90, 1396, 1, 0, 0, 0, 92, 1406, 1, 0, 0, 0, 94, 1492, 1, 0, 0, 0, 96, 1506, 1, 0, 0, 0, 98, 1521, 1, 0, 0, 0, 100, 1537, 1, 0, 0, 0, 102, 1545, 1, 0, 0, 0, 104, 1548, 1, 0, 0, 0, 106, 1583, 1, 0, 0, 0, 108, 1595, 1, 0, 0, 0, 110, 1636, 1, 0, 0, 0, 112, 1650, 1, 0, 0, 0, 114, 1658, 1, 0, 0, 0, 116, 1664, 1, 0, 0, 0, 118, 1695, 1, 0, 0, 0, 120, 1731, 1, 0, 0, 0, 122, 1741, 1, 0, 0, 0, 124, 1750, 1, 0, 0, 0, 126, 1765, 1, 0, 0, 0, 128, 1785, 1, 0, 0, 0, 130, 1807, 1, 0, 0, 0, 132, 1819, 1, 0, 0, 0, 134, 1829, 1, 0, 0, 0, 136, 1835, 1, 0, 0, 0, 138, 1847, 1, 0, 0, 0, 140, 1859, 1, 0, 0, 0, 142, 1871, 1, 0, 0, 0, 144, 1880, 1, 0, 0, 0, 146, 1967, 1, 0, 0, 0, 148, 1969, 1, 0, 0, 0, 150, 1972, 1, 0, 0, 0, 152, 1975, 1, 0, 0, 0, 154, 1982, 1, 0, 0, 0, 156, 1989, 1, 0, 0, 0, 158, 1993, 1, 0, 0, 0, 160, 2007, 1, 0, 0, 0, 162, 2009, 1, 0, 0, 0, 164, 2011, 1, 0, 0, 0, 166, 2013, 1, 0, 0, 0, 168, 2017, 1, 0, 0, 0, 170, 2019, 1, 0, 0, 0, 172, 2021, 1, 0, 0, 0, 174, 2023, 1, 0, 0, 0, 176, 2025, 1, 0, 0, 0, 178, 2027, 1, 0, 0, 0, 180, 2029, 1, 0, 0, 0, 182, 2031, 1, 0, 0, 0, 184, 2033, 1, 0, 0, 0, 186, 2035, 1, 0, 0, 0, 188, 2037, 1, 0, 0, 0, 190, 2039, 1, 0, 0, 0, 192, 2041, 1, 0, 0, 0, 194, 2043, 1, 0, 0, 0, 196, 2045, 1, 0, 0, 0, 198, 2047, 1, 0, 0, 0, 200, 2049, 1, 0, 0, 0, 202, 2051, 1, 0, 0, 0, 204, 2053, 1, 0, 0, 0, 206, 2055, 1, 0, 0, 0, 208, 2057, 1, 0, 0, 0, 210, 2059, 1, 0, 0, 0, 212, 2061, 1, 0, 0, 0, 214, 2063, 1, 0, 0, 0, 216, 2065, 1, 0, 0, 0, 218, 2067, 1, 0, 0, 0, 220, 2069, 1, 0, 0, 0, 222, 2078, 1, 0, 0, 0, 224, 226, 3, 2, 1, 0, 225, 224, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 230, 231, 5, 0, 0, 1, 231, 1, 1, 0, 0, 0, 232, 234, 5, 1, 0, 0, 233, 232, 1, 0, 0, 0, 234, 237, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 238, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 238, 247, 3, 4, 2, 0, 239, 241, 5, 1, 0, 0, 240, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 246, 3, 4, 2, 0, 245, 240, 1, 0, 0, 0, 246, 249, 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 253, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 250, 252, 5, 1, 0, 0, 251, 250, 1, 0, 0, 0, 252, 255, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 3, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, 259, 5, 71, 0, 0, 257, 258, 5, 114, 0, 0, 258, 260, 5, 111, 0, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 262, 1, 0, 0, 0, 261, 256, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 287, 1, 0, 0, 0, 263, 288, 3, 6, 3, 0, 264, 288, 3, 8, 4, 0, 265, 288, 3, 10, 5, 0, 266, 288, 3, 12, 6, 0, 267, 288, 3, 14, 7, 0, 268, 288, 3, 22, 11, 0, 269, 288, 3, 26, 13, 0, 270, 288, 3, 42, 21, 0, 271, 288, 3, 44, 22, 0, 272, 288, 3, 46, 23, 0, 273, 288, 3, 58, 29, 0, 274, 288, 3, 60, 30, 0, 275, 288, 3, 62, 31, 0, 276, 288, 3, 64, 32, 0, 277, 288, 3, 72, 36, 0, 278, 288, 3, 76, 38, 0, 279, 288, 3, 80, 40, 0, 280, 288, 3, 20, 10, 0, 281, 288, 3, 16, 8, 0, 282, 288, 3, 18, 9, 0, 283, 288, 3, 82, 41, 0, 284, 288, 3, 104, 52, 0, 285, 288, 3, 108, 54, 0, 286, 288, 3, 112, 56, 0, 287, 263, 1, 0, 0, 0, 287, 264, 1, 0, 0, 0, 287, 265, 1, 0, 0, 0, 287, 266, 1, 0, 0, 0, 287, 267, 1, 0, 0, 0, 287, 268, 1, 0, 0, 0, 287, 269, 1, 0, 0, 0, 287, 270, 1, 0, 0, 0, 287, 271, 1, 0, 0, 0, 287, 272, 1, 0, 0, 0, 287, 273, 1, 0, 0, 0, 287, 274, 1, 0, 0, 0, 287, 275, 1, 0, 0, 0, 287, 276, 1, 0, 0, 0, 287, 277, 1, 0, 0, 0, 287, 278, 1, 0, 0, 0, 287, 279, 1, 0, 0, 0, 287, 280, 1, 0, 0, 0, 287, 281, 1, 0, 0, 0, 287, 282, 1, 0, 0, 0, 287, 283, 1, 0, 0, 0, 287, 284, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 287, 286, 1, 0, 0, 0, 288, 5, 1, 0, 0, 0, 289, 290, 5, 30, 0, 0, 290, 294, 5, 132, 0, 0, 291, 292, 3, 178, 89, 0, 292, 293, 5, 2, 0, 0, 293, 295, 1, 0, 0, 0, 294, 291, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 319, 3, 180, 90, 0, 297, 307, 5, 121, 0, 0, 298, 299, 5, 136, 0, 0, 299, 308, 3, 184, 92, 0, 300, 302, 5, 46, 0, 0, 301, 300, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 3, 186, 93, 0, 304, 305, 5, 136, 0, 0, 305, 306, 3, 186, 93, 0, 306, 308, 1, 0, 0, 0, 307, 298, 1, 0, 0, 0, 307, 301, 1, 0, 0, 0, 308, 320, 1, 0, 0, 0, 309, 311, 5, 27, 0, 0, 310, 312, 5, 46, 0, 0, 311, 310, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 320, 3, 28, 14, 0, 314, 316, 5, 63, 0, 0, 315, 317, 5, 46, 0, 0, 316, 315, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 320, 3, 186, 93, 0, 319, 297, 1, 0, 0, 0, 319, 309, 1, 0, 0, 0, 319, 314, 1, 0, 0, 0, 320, 7, 1, 0, 0, 0, 321, 329, 5, 31, 0, 0, 322, 330, 3, 178, 89, 0, 323, 324, 3, 178, 89, 0, 324, 325, 5, 2, 0, 0, 325, 327, 1, 0, 0, 0, 326, 323, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 330, 3, 182, 91, 0, 329, 322, 1, 0, 0, 0, 329, 326, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 9, 1, 0, 0, 0, 331, 333, 5, 35, 0, 0, 332, 334, 5, 55, 0, 0, 333, 332, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 336, 3, 66, 33, 0, 336, 337, 5, 33, 0, 0, 337, 338, 3, 178, 89, 0, 338, 11, 1, 0, 0, 0, 339, 341, 5, 38, 0, 0, 340, 342, 7, 0, 0, 0, 341, 340, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 347, 1, 0, 0, 0, 343, 345, 5, 137, 0, 0, 344, 346, 3, 206, 103, 0, 345, 344, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 348, 1, 0, 0, 0, 347, 343, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 13, 1, 0, 0, 0, 349, 351, 7, 1, 0, 0, 350, 352, 5, 137, 0, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 15, 1, 0, 0, 0, 353, 355, 5, 126, 0, 0, 354, 356, 5, 137, 0, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 362, 1, 0, 0, 0, 357, 359, 5, 136, 0, 0, 358, 360, 5, 129, 0, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 3, 202, 101, 0, 362, 357, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 17, 1, 0, 0, 0, 364, 365, 5, 129, 0, 0, 365, 366, 3, 202, 101, 0, 366, 19, 1, 0, 0, 0, 367, 369, 5, 120, 0, 0, 368, 370, 5, 129, 0, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 3, 202, 101, 0, 372, 21, 1, 0, 0, 0, 373, 375, 5, 50, 0, 0, 374, 376, 5, 140, 0, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 381, 5, 84, 0, 0, 378, 379, 5, 80, 0, 0, 379, 380, 5, 102, 0, 0, 380, 382, 5, 70, 0, 0, 381, 378, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 386, 1, 0, 0, 0, 383, 384, 3, 178, 89, 0, 384, 385, 5, 2, 0, 0, 385, 387, 1, 0, 0, 0, 386, 383, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 3, 192, 96, 0, 389, 390, 5, 107, 0, 0, 390, 391, 3, 180, 90, 0, 391, 392, 5, 3, 0, 0, 392, 397, 3, 24, 12, 0, 393, 394, 5, 5, 0, 0, 394, 396, 3, 24, 12, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 403, 5, 4, 0, 0, 401, 402, 5, 148, 0, 0, 402, 404, 3, 66, 33, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 23, 1, 0, 0, 0, 405, 408, 3, 186, 93, 0, 406, 408, 3, 66, 33, 0, 407, 405, 1, 0, 0, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 45, 0, 0, 410, 412, 3, 188, 94, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 138, 69, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 25, 1, 0, 0, 0, 416, 418, 5, 50, 0, 0, 417, 419, 7, 2, 0, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 424, 5, 132, 0, 0, 421, 422, 5, 80, 0, 0, 422, 423, 5, 102, 0, 0, 423, 425, 5, 70, 0, 0, 424, 421, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 429, 1, 0, 0, 0, 426, 427, 3, 178, 89, 0, 427, 428, 5, 2, 0, 0, 428, 430, 1, 0, 0, 0, 429, 426, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 455, 3, 180, 90, 0, 432, 433, 5, 3, 0, 0, 433, 438, 3, 28, 14, 0, 434, 435, 5, 5, 0, 0, 435, 437, 3, 28, 14, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 439, 445, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 5, 0, 0, 442, 444, 3, 36, 18, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 448, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 451, 5, 4, 0, 0, 449, 450, 5, 150, 0, 0, 450, 452, 5, 185, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 456, 1, 0, 0, 0, 453, 454, 5, 33, 0, 0, 454, 456, 3, 82, 41, 0, 455, 432, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 27, 1, 0, 0, 0, 457, 459, 3, 186, 93, 0, 458, 460, 3, 30, 15, 0, 459, 458, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 464, 1, 0, 0, 0, 461, 463, 3, 32, 16, 0, 462, 461, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 29, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 469, 3, 174, 87, 0, 468, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 482, 1, 0, 0, 0, 472, 473, 5, 3, 0, 0, 473, 474, 3, 34, 17, 0, 474, 475, 5, 4, 0, 0, 475, 483, 1, 0, 0, 0, 476, 477, 5, 3, 0, 0, 477, 478, 3, 34, 17, 0, 478, 479, 5, 5, 0, 0, 479, 480, 3, 34, 17, 0, 480, 481, 5, 4, 0, 0, 481, 483, 1, 0, 0, 0, 482, 472, 1, 0, 0, 0, 482, 476, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 31, 1, 0, 0, 0, 484, 485, 5, 49, 0, 0, 485, 487, 3, 174, 87, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 535, 1, 0, 0, 0, 488, 489, 5, 113, 0, 0, 489, 491, 5, 95, 0, 0, 490, 492, 3, 138, 69, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 1, 0, 0, 0, 493, 495, 3, 40, 20, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 498, 5, 36, 0, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 536, 1, 0, 0, 0, 499, 500, 5, 102, 0, 0, 500, 503, 5, 104, 0, 0, 501, 503, 5, 140, 0, 0, 502, 499, 1, 0, 0, 0, 502, 501, 1, 0, 0, 0, 503, 505, 1, 0, 0, 0, 504, 506, 3, 40, 20, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 536, 1, 0, 0, 0, 507, 508, 5, 44, 0, 0, 508, 509, 5, 3, 0, 0, 509, 510, 3, 66, 33, 0, 510, 511, 5, 4, 0, 0, 511, 536, 1, 0, 0, 0, 512, 519, 5, 56, 0, 0, 513, 520, 3, 34, 17, 0, 514, 520, 3, 70, 35, 0, 515, 516, 5, 3, 0, 0, 516, 517, 3, 66, 33, 0, 517, 518, 5, 4, 0, 0, 518, 520, 1, 0, 0, 0, 519, 513, 1, 0, 0, 0, 519, 514, 1, 0, 0, 0, 519, 515, 1, 0, 0, 0, 520, 536, 1, 0, 0, 0, 521, 522, 5, 45, 0, 0, 522, 536, 3, 188, 94, 0, 523, 536, 3, 38, 19, 0, 524, 525, 5, 169, 0, 0, 525, 527, 5, 170, 0, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 5, 33, 0, 0, 529, 530, 5, 3, 0, 0, 530, 531, 3, 66, 33, 0, 531, 533, 5, 4, 0, 0, 532, 534, 7, 3, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 488, 1, 0, 0, 0, 535, 502, 1, 0, 0, 0, 535, 507, 1, 0, 0, 0, 535, 512, 1, 0, 0, 0, 535, 521, 1, 0, 0, 0, 535, 523, 1, 0, 0, 0, 535, 526, 1, 0, 0, 0, 536, 33, 1, 0, 0, 0, 537, 539, 7, 4, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 5, 186, 0, 0, 541, 35, 1, 0, 0, 0, 542, 543, 5, 49, 0, 0, 543, 545, 3, 174, 87, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 583, 1, 0, 0, 0, 546, 547, 5, 113, 0, 0, 547, 550, 5, 95, 0, 0, 548, 550, 5, 140, 0, 0, 549, 546, 1, 0, 0, 0, 549, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 3, 0, 0, 552, 557, 3, 24, 12, 0, 553, 554, 5, 5, 0, 0, 554, 556, 3, 24, 12, 0, 555, 553, 1, 0, 0, 0, 556, 559, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 560, 562, 5, 4, 0, 0, 561, 563, 3, 40, 20, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 584, 1, 0, 0, 0, 564, 565, 5, 44, 0, 0, 565, 566, 5, 3, 0, 0, 566, 567, 3, 66, 33, 0, 567, 568, 5, 4, 0, 0, 568, 584, 1, 0, 0, 0, 569, 570, 5, 74, 0, 0, 570, 571, 5, 95, 0, 0, 571, 572, 5, 3, 0, 0, 572, 577, 3, 186, 93, 0, 573, 574, 5, 5, 0, 0, 574, 576, 3, 186, 93, 0, 575, 573, 1, 0, 0, 0, 576, 579, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 580, 1, 0, 0, 0, 579, 577, 1, 0, 0, 0, 580, 581, 5, 4, 0, 0, 581, 582, 3, 38, 19, 0, 582, 584, 1, 0, 0, 0, 583, 549, 1, 0, 0, 0, 583, 564, 1, 0, 0, 0, 583, 569, 1, 0, 0, 0, 584, 37, 1, 0, 0, 0, 585, 586, 5, 117, 0, 0, 586, 598, 3, 190, 95, 0, 587, 588, 5, 3, 0, 0, 588, 593, 3, 186, 93, 0, 589, 590, 5, 5, 0, 0, 590, 592, 3, 186, 93, 0, 591, 589, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 596, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 596, 597, 5, 4, 0, 0, 597, 599, 1, 0, 0, 0, 598, 587, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 614, 1, 0, 0, 0, 600, 601, 5, 107, 0, 0, 601, 608, 7, 5, 0, 0, 602, 603, 5, 131, 0, 0, 603, 609, 7, 6, 0, 0, 604, 609, 5, 41, 0, 0, 605, 609, 5, 123, 0, 0, 606, 607, 5, 101, 0, 0, 607, 609, 5, 26, 0, 0, 608, 602, 1, 0, 0, 0, 608, 604, 1, 0, 0, 0, 608, 605, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 609, 613, 1, 0, 0, 0, 610, 611, 5, 99, 0, 0, 611, 613, 3, 174, 87, 0, 612, 600, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 625, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 619, 5, 102, 0, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 623, 5, 57, 0, 0, 621, 622, 5, 86, 0, 0, 622, 624, 7, 7, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 618, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 39, 1, 0, 0, 0, 627, 628, 5, 107, 0, 0, 628, 629, 5, 48, 0, 0, 629, 630, 7, 8, 0, 0, 630, 41, 1, 0, 0, 0, 631, 633, 5, 50, 0, 0, 632, 634, 7, 2, 0, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 639, 5, 138, 0, 0, 636, 637, 5, 80, 0, 0, 637, 638, 5, 102, 0, 0, 638, 640, 5, 70, 0, 0, 639, 636, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 644, 1, 0, 0, 0, 641, 642, 3, 178, 89, 0, 642, 643, 5, 2, 0, 0, 643, 645, 1, 0, 0, 0, 644, 641, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 651, 3, 194, 97, 0, 647, 652, 5, 37, 0, 0, 648, 652, 5, 28, 0, 0, 649, 650, 5, 89, 0, 0, 650, 652, 5, 105, 0, 0, 651, 647, 1, 0, 0, 0, 651, 648, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 667, 1, 0, 0, 0, 653, 668, 5, 59, 0, 0, 654, 668, 5, 88, 0, 0, 655, 665, 5, 141, 0, 0, 656, 657, 5, 105, 0, 0, 657, 662, 3, 186, 93, 0, 658, 659, 5, 5, 0, 0, 659, 661, 3, 186, 93, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 656, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 668, 1, 0, 0, 0, 667, 653, 1, 0, 0, 0, 667, 654, 1, 0, 0, 0, 667, 655, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 5, 107, 0, 0, 670, 674, 3, 180, 90, 0, 671, 672, 5, 73, 0, 0, 672, 673, 5, 64, 0, 0, 673, 675, 5, 127, 0, 0, 674, 671, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 678, 1, 0, 0, 0, 676, 677, 5, 147, 0, 0, 677, 679, 3, 66, 33, 0, 678, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 689, 5, 38, 0, 0, 681, 686, 3, 104, 52, 0, 682, 686, 3, 72, 36, 0, 683, 686, 3, 58, 29, 0, 684, 686, 3, 82, 41, 0, 685, 681, 1, 0, 0, 0, 685, 682, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 1, 0, 0, 688, 690, 1, 0, 0, 0, 689, 685, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 5, 66, 0, 0, 694, 43, 1, 0, 0, 0, 695, 697, 5, 50, 0, 0, 696, 698, 7, 2, 0, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 703, 5, 145, 0, 0, 700, 701, 5, 80, 0, 0, 701, 702, 5, 102, 0, 0, 702, 704, 5, 70, 0, 0, 703, 700, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 708, 1, 0, 0, 0, 705, 706, 3, 178, 89, 0, 706, 707, 5, 2, 0, 0, 707, 709, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 722, 3, 196, 98, 0, 711, 712, 5, 3, 0, 0, 712, 717, 3, 186, 93, 0, 713, 714, 5, 5, 0, 0, 714, 716, 3, 186, 93, 0, 715, 713, 1, 0, 0, 0, 716, 719, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 720, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 721, 5, 4, 0, 0, 721, 723, 1, 0, 0, 0, 722, 711, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 5, 33, 0, 0, 725, 726, 3, 82, 41, 0, 726, 45, 1, 0, 0, 0, 727, 728, 5, 50, 0, 0, 728, 729, 5, 146, 0, 0, 729, 733, 5, 132, 0, 0, 730, 731, 5, 80, 0, 0, 731, 732, 5, 102, 0, 0, 732, 734, 5, 70, 0, 0, 733, 730, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 738, 1, 0, 0, 0, 735, 736, 3, 178, 89, 0, 736, 737, 5, 2, 0, 0, 737, 739, 1, 0, 0, 0, 738, 735, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 3, 180, 90, 0, 741, 742, 5, 142, 0, 0, 742, 754, 3, 198, 99, 0, 743, 744, 5, 3, 0, 0, 744, 749, 3, 168, 84, 0, 745, 746, 5, 5, 0, 0, 746, 748, 3, 168, 84, 0, 747, 745, 1, 0, 0, 0, 748, 751, 1, 0, 0, 0, 749, 747, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 752, 1, 0, 0, 0, 751, 749, 1, 0, 0, 0, 752, 753, 5, 4, 0, 0, 753, 755, 1, 0, 0, 0, 754, 743, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 47, 1, 0, 0, 0, 756, 758, 5, 149, 0, 0, 757, 759, 5, 116, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 3, 50, 25, 0, 761, 762, 5, 33, 0, 0, 762, 763, 5, 3, 0, 0, 763, 764, 3, 82, 41, 0, 764, 774, 5, 4, 0, 0, 765, 766, 5, 5, 0, 0, 766, 767, 3, 50, 25, 0, 767, 768, 5, 33, 0, 0, 768, 769, 5, 3, 0, 0, 769, 770, 3, 82, 41, 0, 770, 771, 5, 4, 0, 0, 771, 773, 1, 0, 0, 0, 772, 765, 1, 0, 0, 0, 773, 776, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 49, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 789, 3, 180, 90, 0, 778, 779, 5, 3, 0, 0, 779, 784, 3, 186, 93, 0, 780, 781, 5, 5, 0, 0, 781, 783, 3, 186, 93, 0, 782, 780, 1, 0, 0, 0, 783, 786, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 787, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 787, 788, 5, 4, 0, 0, 788, 790, 1, 0, 0, 0, 789, 778, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 51, 1, 0, 0, 0, 791, 792, 3, 50, 25, 0, 792, 793, 5, 33, 0, 0, 793, 794, 5, 3, 0, 0, 794, 795, 3, 160, 80, 0, 795, 797, 5, 139, 0, 0, 796, 798, 5, 29, 0, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 3, 162, 81, 0, 800, 801, 5, 4, 0, 0, 801, 53, 1, 0, 0, 0, 802, 814, 3, 180, 90, 0, 803, 804, 5, 3, 0, 0, 804, 809, 3, 186, 93, 0, 805, 806, 5, 5, 0, 0, 806, 808, 3, 186, 93, 0, 807, 805, 1, 0, 0, 0, 808, 811, 1, 0, 0, 0, 809, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 812, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 812, 813, 5, 4, 0, 0, 813, 815, 1, 0, 0, 0, 814, 803, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 5, 33, 0, 0, 817, 818, 5, 3, 0, 0, 818, 819, 3, 82, 41, 0, 819, 820, 5, 4, 0, 0, 820, 55, 1, 0, 0, 0, 821, 830, 5, 124, 0, 0, 822, 831, 5, 7, 0, 0, 823, 828, 3, 66, 33, 0, 824, 826, 5, 33, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 3, 170, 85, 0, 828, 825, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 822, 1, 0, 0, 0, 830, 823, 1, 0, 0, 0, 831, 845, 1, 0, 0, 0, 832, 841, 5, 5, 0, 0, 833, 842, 5, 7, 0, 0, 834, 839, 3, 66, 33, 0, 835, 837, 5, 33, 0, 0, 836, 835, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 3, 170, 85, 0, 839, 836, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 833, 1, 0, 0, 0, 841, 834, 1, 0, 0, 0, 842, 844, 1, 0, 0, 0, 843, 832, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 57, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 850, 3, 48, 24, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 5, 59, 0, 0, 852, 853, 5, 75, 0, 0, 853, 856, 3, 110, 55, 0, 854, 855, 5, 148, 0, 0, 855, 857, 3, 66, 33, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 859, 1, 0, 0, 0, 858, 860, 3, 56, 28, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 59, 1, 0, 0, 0, 861, 863, 3, 48, 24, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 5, 59, 0, 0, 865, 866, 5, 75, 0, 0, 866, 869, 3, 110, 55, 0, 867, 868, 5, 148, 0, 0, 868, 870, 3, 66, 33, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 875, 1, 0, 0, 0, 871, 873, 3, 132, 66, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 3, 134, 67, 0, 875, 872, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 878, 1, 0, 0, 0, 877, 879, 3, 56, 28, 0, 878, 877, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 61, 1, 0, 0, 0, 880, 882, 5, 61, 0, 0, 881, 883, 5, 55, 0, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 3, 178, 89, 0, 885, 63, 1, 0, 0, 0, 886, 887, 5, 63, 0, 0, 887, 890, 7, 9, 0, 0, 888, 889, 5, 80, 0, 0, 889, 891, 5, 70, 0, 0, 890, 888, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 895, 1, 0, 0, 0, 892, 893, 3, 178, 89, 0, 893, 894, 5, 2, 0, 0, 894, 896, 1, 0, 0, 0, 895, 892, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 3, 222, 111, 0, 898, 65, 1, 0, 0, 0, 899, 900, 6, 33, -1, 0, 900, 988, 3, 70, 35, 0, 901, 988, 5, 187, 0, 0, 902, 903, 3, 178, 89, 0, 903, 904, 5, 2, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 3, 180, 90, 0, 908, 909, 5, 2, 0, 0, 909, 911, 1, 0, 0, 0, 910, 905, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 988, 3, 186, 93, 0, 913, 914, 3, 164, 82, 0, 914, 915, 3, 66, 33, 20, 915, 988, 1, 0, 0, 0, 916, 917, 3, 176, 88, 0, 917, 930, 5, 3, 0, 0, 918, 920, 5, 62, 0, 0, 919, 918, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 926, 3, 66, 33, 0, 922, 923, 5, 5, 0, 0, 923, 925, 3, 66, 33, 0, 924, 922, 1, 0, 0, 0, 925, 928, 1, 0, 0, 0, 926, 924, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 931, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 929, 931, 5, 7, 0, 0, 930, 919, 1, 0, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 934, 5, 4, 0, 0, 933, 935, 3, 114, 57, 0, 934, 933, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 1, 0, 0, 0, 936, 938, 3, 118, 59, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 988, 1, 0, 0, 0, 939, 940, 5, 3, 0, 0, 940, 945, 3, 66, 33, 0, 941, 942, 5, 5, 0, 0, 942, 944, 3, 66, 33, 0, 943, 941, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 945, 1, 0, 0, 0, 948, 949, 5, 4, 0, 0, 949, 988, 1, 0, 0, 0, 950, 951, 5, 43, 0, 0, 951, 952, 5, 3, 0, 0, 952, 953, 3, 66, 33, 0, 953, 954, 5, 33, 0, 0, 954, 955, 3, 30, 15, 0, 955, 956, 5, 4, 0, 0, 956, 988, 1, 0, 0, 0, 957, 959, 5, 102, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 5, 70, 0, 0, 961, 958, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 5, 3, 0, 0, 964, 965, 3, 82, 41, 0, 965, 966, 5, 4, 0, 0, 966, 988, 1, 0, 0, 0, 967, 969, 5, 42, 0, 0, 968, 970, 3, 66, 33, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 976, 1, 0, 0, 0, 971, 972, 5, 147, 0, 0, 972, 973, 3, 66, 33, 0, 973, 974, 5, 135, 0, 0, 974, 975, 3, 66, 33, 0, 975, 977, 1, 0, 0, 0, 976, 971, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 982, 1, 0, 0, 0, 980, 981, 5, 65, 0, 0, 981, 983, 3, 66, 33, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, 5, 66, 0, 0, 985, 988, 1, 0, 0, 0, 986, 988, 3, 68, 34, 0, 987, 899, 1, 0, 0, 0, 987, 901, 1, 0, 0, 0, 987, 910, 1, 0, 0, 0, 987, 913, 1, 0, 0, 0, 987, 916, 1, 0, 0, 0, 987, 939, 1, 0, 0, 0, 987, 950, 1, 0, 0, 0, 987, 961, 1, 0, 0, 0, 987, 967, 1, 0, 0, 0, 987, 986, 1, 0, 0, 0, 988, 1102, 1, 0, 0, 0, 989, 990, 10, 19, 0, 0, 990, 991, 5, 11, 0, 0, 991, 1101, 3, 66, 33, 20, 992, 993, 10, 18, 0, 0, 993, 994, 7, 10, 0, 0, 994, 1101, 3, 66, 33, 19, 995, 996, 10, 17, 0, 0, 996, 997, 7, 4, 0, 0, 997, 1101, 3, 66, 33, 18, 998, 999, 10, 16, 0, 0, 999, 1000, 7, 11, 0, 0, 1000, 1101, 3, 66, 33, 17, 1001, 1002, 10, 15, 0, 0, 1002, 1003, 7, 12, 0, 0, 1003, 1101, 3, 66, 33, 16, 1004, 1017, 10, 14, 0, 0, 1005, 1018, 5, 6, 0, 0, 1006, 1018, 5, 22, 0, 0, 1007, 1018, 5, 23, 0, 0, 1008, 1018, 5, 24, 0, 0, 1009, 1018, 5, 92, 0, 0, 1010, 1011, 5, 92, 0, 0, 1011, 1018, 5, 102, 0, 0, 1012, 1018, 5, 83, 0, 0, 1013, 1018, 5, 97, 0, 0, 1014, 1018, 5, 77, 0, 0, 1015, 1018, 5, 99, 0, 0, 1016, 1018, 5, 118, 0, 0, 1017, 1005, 1, 0, 0, 0, 1017, 1006, 1, 0, 0, 0, 1017, 1007, 1, 0, 0, 0, 1017, 1008, 1, 0, 0, 0, 1017, 1009, 1, 0, 0, 0, 1017, 1010, 1, 0, 0, 0, 1017, 1012, 1, 0, 0, 0, 1017, 1013, 1, 0, 0, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1101, 3, 66, 33, 15, 1020, 1021, 10, 13, 0, 0, 1021, 1022, 5, 32, 0, 0, 1022, 1101, 3, 66, 33, 14, 1023, 1024, 10, 12, 0, 0, 1024, 1025, 5, 108, 0, 0, 1025, 1101, 3, 66, 33, 13, 1026, 1028, 10, 5, 0, 0, 1027, 1029, 5, 102, 0, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 5, 39, 0, 0, 1031, 1032, 3, 66, 33, 0, 1032, 1033, 5, 32, 0, 0, 1033, 1034, 3, 66, 33, 6, 1034, 1101, 1, 0, 0, 0, 1035, 1036, 10, 8, 0, 0, 1036, 1037, 5, 45, 0, 0, 1037, 1101, 3, 188, 94, 0, 1038, 1040, 10, 7, 0, 0, 1039, 1041, 5, 102, 0, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 7, 13, 0, 0, 1043, 1046, 3, 66, 33, 0, 1044, 1045, 5, 67, 0, 0, 1045, 1047, 3, 66, 33, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1101, 1, 0, 0, 0, 1048, 1053, 10, 6, 0, 0, 1049, 1054, 5, 93, 0, 0, 1050, 1054, 5, 103, 0, 0, 1051, 1052, 5, 102, 0, 0, 1052, 1054, 5, 104, 0, 0, 1053, 1049, 1, 0, 0, 0, 1053, 1050, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1054, 1101, 1, 0, 0, 0, 1055, 1057, 10, 4, 0, 0, 1056, 1058, 5, 102, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1098, 5, 83, 0, 0, 1060, 1070, 5, 3, 0, 0, 1061, 1071, 3, 82, 41, 0, 1062, 1067, 3, 66, 33, 0, 1063, 1064, 5, 5, 0, 0, 1064, 1066, 3, 66, 33, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1061, 1, 0, 0, 0, 1070, 1062, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1099, 5, 4, 0, 0, 1073, 1074, 3, 178, 89, 0, 1074, 1075, 5, 2, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1073, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1099, 3, 180, 90, 0, 1079, 1080, 3, 178, 89, 0, 1080, 1081, 5, 2, 0, 0, 1081, 1083, 1, 0, 0, 0, 1082, 1079, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 3, 220, 110, 0, 1085, 1094, 5, 3, 0, 0, 1086, 1091, 3, 66, 33, 0, 1087, 1088, 5, 5, 0, 0, 1088, 1090, 3, 66, 33, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1093, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1095, 1, 0, 0, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1086, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 5, 4, 0, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1060, 1, 0, 0, 0, 1098, 1076, 1, 0, 0, 0, 1098, 1082, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 989, 1, 0, 0, 0, 1100, 992, 1, 0, 0, 0, 1100, 995, 1, 0, 0, 0, 1100, 998, 1, 0, 0, 0, 1100, 1001, 1, 0, 0, 0, 1100, 1004, 1, 0, 0, 0, 1100, 1020, 1, 0, 0, 0, 1100, 1023, 1, 0, 0, 0, 1100, 1026, 1, 0, 0, 0, 1100, 1035, 1, 0, 0, 0, 1100, 1038, 1, 0, 0, 0, 1100, 1048, 1, 0, 0, 0, 1100, 1055, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 67, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1106, 5, 115, 0, 0, 1106, 1111, 5, 3, 0, 0, 1107, 1112, 5, 81, 0, 0, 1108, 1109, 7, 14, 0, 0, 1109, 1110, 5, 5, 0, 0, 1110, 1112, 3, 166, 83, 0, 1111, 1107, 1, 0, 0, 0, 1111, 1108, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 5, 4, 0, 0, 1114, 69, 1, 0, 0, 0, 1115, 1116, 7, 15, 0, 0, 1116, 71, 1, 0, 0, 0, 1117, 1119, 3, 48, 24, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1125, 1, 0, 0, 0, 1120, 1126, 5, 88, 0, 0, 1121, 1126, 5, 122, 0, 0, 1122, 1123, 5, 88, 0, 0, 1123, 1124, 5, 108, 0, 0, 1124, 1126, 7, 8, 0, 0, 1125, 1120, 1, 0, 0, 0, 1125, 1121, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1131, 5, 91, 0, 0, 1128, 1129, 3, 178, 89, 0, 1129, 1130, 5, 2, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1128, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 3, 180, 90, 0, 1134, 1135, 5, 33, 0, 0, 1135, 1137, 3, 204, 102, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1149, 1, 0, 0, 0, 1138, 1139, 5, 3, 0, 0, 1139, 1144, 3, 186, 93, 0, 1140, 1141, 5, 5, 0, 0, 1141, 1143, 3, 186, 93, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1147, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1148, 5, 4, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1138, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1180, 1, 0, 0, 0, 1151, 1152, 5, 144, 0, 0, 1152, 1153, 5, 3, 0, 0, 1153, 1158, 3, 66, 33, 0, 1154, 1155, 5, 5, 0, 0, 1155, 1157, 3, 66, 33, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1176, 5, 4, 0, 0, 1162, 1163, 5, 5, 0, 0, 1163, 1164, 5, 3, 0, 0, 1164, 1169, 3, 66, 33, 0, 1165, 1166, 5, 5, 0, 0, 1166, 1168, 3, 66, 33, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1172, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1173, 5, 4, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1162, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1181, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1181, 3, 82, 41, 0, 1180, 1151, 1, 0, 0, 0, 1180, 1179, 1, 0, 0, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1184, 3, 74, 37, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1187, 3, 56, 28, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1191, 1, 0, 0, 0, 1188, 1189, 5, 56, 0, 0, 1189, 1191, 5, 144, 0, 0, 1190, 1118, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 73, 1, 0, 0, 0, 1192, 1193, 5, 107, 0, 0, 1193, 1208, 5, 48, 0, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1200, 3, 24, 12, 0, 1196, 1197, 5, 5, 0, 0, 1197, 1199, 3, 24, 12, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1206, 5, 4, 0, 0, 1204, 1205, 5, 148, 0, 0, 1205, 1207, 3, 66, 33, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1194, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1237, 5, 183, 0, 0, 1211, 1238, 5, 184, 0, 0, 1212, 1213, 5, 141, 0, 0, 1213, 1216, 5, 131, 0, 0, 1214, 1217, 3, 186, 93, 0, 1215, 1217, 3, 106, 53, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1215, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 5, 6, 0, 0, 1219, 1230, 3, 66, 33, 0, 1220, 1223, 5, 5, 0, 0, 1221, 1224, 3, 186, 93, 0, 1222, 1224, 3, 106, 53, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 5, 6, 0, 0, 1226, 1227, 3, 66, 33, 0, 1227, 1229, 1, 0, 0, 0, 1228, 1220, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1235, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, 5, 148, 0, 0, 1234, 1236, 3, 66, 33, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1211, 1, 0, 0, 0, 1237, 1212, 1, 0, 0, 0, 1238, 75, 1, 0, 0, 0, 1239, 1243, 5, 112, 0, 0, 1240, 1241, 3, 178, 89, 0, 1241, 1242, 5, 2, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1240, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1252, 3, 200, 100, 0, 1246, 1247, 5, 6, 0, 0, 1247, 1253, 3, 78, 39, 0, 1248, 1249, 5, 3, 0, 0, 1249, 1250, 3, 78, 39, 0, 1250, 1251, 5, 4, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1246, 1, 0, 0, 0, 1252, 1248, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 77, 1, 0, 0, 0, 1254, 1258, 3, 34, 17, 0, 1255, 1258, 3, 174, 87, 0, 1256, 1258, 5, 188, 0, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 79, 1, 0, 0, 0, 1259, 1270, 5, 119, 0, 0, 1260, 1271, 3, 188, 94, 0, 1261, 1262, 3, 178, 89, 0, 1262, 1263, 5, 2, 0, 0, 1263, 1265, 1, 0, 0, 0, 1264, 1261, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1269, 3, 180, 90, 0, 1267, 1269, 3, 192, 96, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1260, 1, 0, 0, 0, 1270, 1264, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 81, 1, 0, 0, 0, 1272, 1274, 3, 130, 65, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1281, 3, 86, 43, 0, 1276, 1277, 3, 102, 51, 0, 1277, 1278, 3, 86, 43, 0, 1278, 1280, 1, 0, 0, 0, 1279, 1276, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1286, 3, 132, 66, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1289, 3, 134, 67, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 83, 1, 0, 0, 0, 1290, 1298, 3, 94, 47, 0, 1291, 1292, 3, 98, 49, 0, 1292, 1294, 3, 94, 47, 0, 1293, 1295, 3, 100, 50, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1291, 1, 0, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 85, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1301, 1303, 5, 130, 0, 0, 1302, 1304, 7, 16, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1310, 3, 96, 48, 0, 1306, 1307, 5, 5, 0, 0, 1307, 1309, 3, 96, 48, 0, 1308, 1306, 1, 0, 0, 0, 1309, 1312, 1, 0, 0, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1325, 1, 0, 0, 0, 1312, 1310, 1, 0, 0, 0, 1313, 1323, 5, 75, 0, 0, 1314, 1319, 3, 94, 47, 0, 1315, 1316, 5, 5, 0, 0, 1316, 1318, 3, 94, 47, 0, 1317, 1315, 1, 0, 0, 0, 1318, 1321, 1, 0, 0, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1324, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1324, 3, 84, 42, 0, 1323, 1314, 1, 0, 0, 0, 1323, 1322, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1313, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1329, 1, 0, 0, 0, 1327, 1328, 5, 148, 0, 0, 1328, 1330, 3, 66, 33, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1345, 1, 0, 0, 0, 1331, 1332, 5, 78, 0, 0, 1332, 1333, 5, 40, 0, 0, 1333, 1338, 3, 66, 33, 0, 1334, 1335, 5, 5, 0, 0, 1335, 1337, 3, 66, 33, 0, 1336, 1334, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1343, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1342, 5, 79, 0, 0, 1342, 1344, 3, 66, 33, 0, 1343, 1341, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1331, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1361, 1, 0, 0, 0, 1347, 1348, 5, 174, 0, 0, 1348, 1349, 3, 208, 104, 0, 1349, 1350, 5, 33, 0, 0, 1350, 1358, 3, 116, 58, 0, 1351, 1352, 5, 5, 0, 0, 1352, 1353, 3, 208, 104, 0, 1353, 1354, 5, 33, 0, 0, 1354, 1355, 3, 116, 58, 0, 1355, 1357, 1, 0, 0, 0, 1356, 1351, 1, 0, 0, 0, 1357, 1360, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1362, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1347, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1392, 1, 0, 0, 0, 1363, 1364, 5, 144, 0, 0, 1364, 1365, 5, 3, 0, 0, 1365, 1370, 3, 66, 33, 0, 1366, 1367, 5, 5, 0, 0, 1367, 1369, 3, 66, 33, 0, 1368, 1366, 1, 0, 0, 0, 1369, 1372, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1388, 5, 4, 0, 0, 1374, 1375, 5, 5, 0, 0, 1375, 1376, 5, 3, 0, 0, 1376, 1381, 3, 66, 33, 0, 1377, 1378, 5, 5, 0, 0, 1378, 1380, 3, 66, 33, 0, 1379, 1377, 1, 0, 0, 0, 1380, 1383, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 1, 0, 0, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1385, 5, 4, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1374, 1, 0, 0, 0, 1387, 1390, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1392, 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1391, 1301, 1, 0, 0, 0, 1391, 1363, 1, 0, 0, 0, 1392, 87, 1, 0, 0, 0, 1393, 1394, 3, 82, 41, 0, 1394, 89, 1, 0, 0, 0, 1395, 1397, 3, 130, 65, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 3, 86, 43, 0, 1399, 1401, 3, 132, 66, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 1, 0, 0, 0, 1402, 1404, 3, 134, 67, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 91, 1, 0, 0, 0, 1405, 1407, 3, 130, 65, 0, 1406, 1405, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1418, 3, 86, 43, 0, 1409, 1411, 5, 139, 0, 0, 1410, 1412, 5, 29, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1416, 1, 0, 0, 0, 1413, 1416, 5, 90, 0, 0, 1414, 1416, 5, 68, 0, 0, 1415, 1409, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1415, 1414, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1419, 3, 86, 43, 0, 1418, 1415, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1418, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1423, 1, 0, 0, 0, 1422, 1424, 3, 132, 66, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1427, 3, 134, 67, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 93, 1, 0, 0, 0, 1428, 1429, 3, 178, 89, 0, 1429, 1430, 5, 2, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1428, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1438, 3, 180, 90, 0, 1434, 1436, 5, 33, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1439, 3, 204, 102, 0, 1438, 1435, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1445, 1, 0, 0, 0, 1440, 1441, 5, 85, 0, 0, 1441, 1442, 5, 40, 0, 0, 1442, 1446, 3, 192, 96, 0, 1443, 1444, 5, 102, 0, 0, 1444, 1446, 5, 85, 0, 0, 1445, 1440, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1493, 1, 0, 0, 0, 1447, 1448, 3, 178, 89, 0, 1448, 1449, 5, 2, 0, 0, 1449, 1451, 1, 0, 0, 0, 1450, 1447, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 3, 220, 110, 0, 1453, 1454, 5, 3, 0, 0, 1454, 1459, 3, 66, 33, 0, 1455, 1456, 5, 5, 0, 0, 1456, 1458, 3, 66, 33, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1461, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1462, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1467, 5, 4, 0, 0, 1463, 1465, 5, 33, 0, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1468, 3, 204, 102, 0, 1467, 1464, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1493, 1, 0, 0, 0, 1469, 1479, 5, 3, 0, 0, 1470, 1475, 3, 94, 47, 0, 1471, 1472, 5, 5, 0, 0, 1472, 1474, 3, 94, 47, 0, 1473, 1471, 1, 0, 0, 0, 1474, 1477, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1480, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1480, 3, 84, 42, 0, 1479, 1470, 1, 0, 0, 0, 1479, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 5, 4, 0, 0, 1482, 1493, 1, 0, 0, 0, 1483, 1484, 5, 3, 0, 0, 1484, 1485, 3, 82, 41, 0, 1485, 1490, 5, 4, 0, 0, 1486, 1488, 5, 33, 0, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1491, 3, 204, 102, 0, 1490, 1487, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1493, 1, 0, 0, 0, 1492, 1431, 1, 0, 0, 0, 1492, 1450, 1, 0, 0, 0, 1492, 1469, 1, 0, 0, 0, 1492, 1483, 1, 0, 0, 0, 1493, 95, 1, 0, 0, 0, 1494, 1507, 5, 7, 0, 0, 1495, 1496, 3, 180, 90, 0, 1496, 1497, 5, 2, 0, 0, 1497, 1498, 5, 7, 0, 0, 1498, 1507, 1, 0, 0, 0, 1499, 1504, 3, 66, 33, 0, 1500, 1502, 5, 33, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 3, 170, 85, 0, 1504, 1501, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1494, 1, 0, 0, 0, 1506, 1495, 1, 0, 0, 0, 1506, 1499, 1, 0, 0, 0, 1507, 97, 1, 0, 0, 0, 1508, 1522, 5, 5, 0, 0, 1509, 1511, 5, 100, 0, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1518, 1, 0, 0, 0, 1512, 1514, 5, 96, 0, 0, 1513, 1515, 5, 110, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1519, 5, 87, 0, 0, 1517, 1519, 5, 51, 0, 0, 1518, 1512, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 5, 94, 0, 0, 1521, 1508, 1, 0, 0, 0, 1521, 1510, 1, 0, 0, 0, 1522, 99, 1, 0, 0, 0, 1523, 1524, 5, 107, 0, 0, 1524, 1538, 3, 66, 33, 0, 1525, 1526, 5, 142, 0, 0, 1526, 1527, 5, 3, 0, 0, 1527, 1532, 3, 186, 93, 0, 1528, 1529, 5, 5, 0, 0, 1529, 1531, 3, 186, 93, 0, 1530, 1528, 1, 0, 0, 0, 1531, 1534, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1535, 1536, 5, 4, 0, 0, 1536, 1538, 1, 0, 0, 0, 1537, 1523, 1, 0, 0, 0, 1537, 1525, 1, 0, 0, 0, 1538, 101, 1, 0, 0, 0, 1539, 1541, 5, 139, 0, 0, 1540, 1542, 5, 29, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1546, 1, 0, 0, 0, 1543, 1546, 5, 90, 0, 0, 1544, 1546, 5, 68, 0, 0, 1545, 1539, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1546, 103, 1, 0, 0, 0, 1547, 1549, 3, 48, 24, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1553, 5, 141, 0, 0, 1551, 1552, 5, 108, 0, 0, 1552, 1554, 7, 8, 0, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 3, 110, 55, 0, 1556, 1559, 5, 131, 0, 0, 1557, 1560, 3, 186, 93, 0, 1558, 1560, 3, 106, 53, 0, 1559, 1557, 1, 0, 0, 0, 1559, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 6, 0, 0, 1562, 1573, 3, 66, 33, 0, 1563, 1566, 5, 5, 0, 0, 1564, 1567, 3, 186, 93, 0, 1565, 1567, 3, 106, 53, 0, 1566, 1564, 1, 0, 0, 0, 1566, 1565, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 5, 6, 0, 0, 1569, 1570, 3, 66, 33, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1563, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1578, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 148, 0, 0, 1577, 1579, 3, 66, 33, 0, 1578, 1576, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1581, 1, 0, 0, 0, 1580, 1582, 3, 56, 28, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 105, 1, 0, 0, 0, 1583, 1584, 5, 3, 0, 0, 1584, 1589, 3, 186, 93, 0, 1585, 1586, 5, 5, 0, 0, 1586, 1588, 3, 186, 93, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 4, 0, 0, 1593, 107, 1, 0, 0, 0, 1594, 1596, 3, 48, 24, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1600, 5, 141, 0, 0, 1598, 1599, 5, 108, 0, 0, 1599, 1601, 7, 8, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 3, 110, 55, 0, 1603, 1606, 5, 131, 0, 0, 1604, 1607, 3, 186, 93, 0, 1605, 1607, 3, 106, 53, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1605, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 5, 6, 0, 0, 1609, 1620, 3, 66, 33, 0, 1610, 1613, 5, 5, 0, 0, 1611, 1614, 3, 186, 93, 0, 1612, 1614, 3, 106, 53, 0, 1613, 1611, 1, 0, 0, 0, 1613, 1612, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 5, 6, 0, 0, 1616, 1617, 3, 66, 33, 0, 1617, 1619, 1, 0, 0, 0, 1618, 1610, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1625, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1624, 5, 148, 0, 0, 1624, 1626, 3, 66, 33, 0, 1625, 1623, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1631, 1, 0, 0, 0, 1627, 1629, 3, 132, 66, 0, 1628, 1627, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 3, 134, 67, 0, 1631, 1628, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 109, 1, 0, 0, 0, 1633, 1634, 3, 178, 89, 0, 1634, 1635, 5, 2, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1633, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1641, 3, 180, 90, 0, 1639, 1640, 5, 33, 0, 0, 1640, 1642, 3, 210, 105, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1648, 1, 0, 0, 0, 1643, 1644, 5, 85, 0, 0, 1644, 1645, 5, 40, 0, 0, 1645, 1649, 3, 192, 96, 0, 1646, 1647, 5, 102, 0, 0, 1647, 1649, 5, 85, 0, 0, 1648, 1643, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 111, 1, 0, 0, 0, 1650, 1652, 5, 143, 0, 0, 1651, 1653, 3, 178, 89, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1656, 1, 0, 0, 0, 1654, 1655, 5, 91, 0, 0, 1655, 1657, 3, 212, 106, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 113, 1, 0, 0, 0, 1658, 1659, 5, 178, 0, 0, 1659, 1660, 5, 3, 0, 0, 1660, 1661, 5, 148, 0, 0, 1661, 1662, 3, 66, 33, 0, 1662, 1663, 5, 4, 0, 0, 1663, 115, 1, 0, 0, 0, 1664, 1666, 5, 3, 0, 0, 1665, 1667, 3, 214, 107, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1678, 1, 0, 0, 0, 1668, 1669, 5, 153, 0, 0, 1669, 1670, 5, 40, 0, 0, 1670, 1675, 3, 66, 33, 0, 1671, 1672, 5, 5, 0, 0, 1672, 1674, 3, 66, 33, 0, 1673, 1671, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1679, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1668, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 5, 109, 0, 0, 1681, 1682, 5, 40, 0, 0, 1682, 1687, 3, 136, 68, 0, 1683, 1684, 5, 5, 0, 0, 1684, 1686, 3, 136, 68, 0, 1685, 1683, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1692, 3, 120, 60, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 5, 4, 0, 0, 1694, 117, 1, 0, 0, 0, 1695, 1729, 5, 152, 0, 0, 1696, 1730, 3, 208, 104, 0, 1697, 1699, 5, 3, 0, 0, 1698, 1700, 3, 214, 107, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1711, 1, 0, 0, 0, 1701, 1702, 5, 153, 0, 0, 1702, 1703, 5, 40, 0, 0, 1703, 1708, 3, 66, 33, 0, 1704, 1705, 5, 5, 0, 0, 1705, 1707, 3, 66, 33, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1712, 1, 0, 0, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1701, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1723, 1, 0, 0, 0, 1713, 1714, 5, 109, 0, 0, 1714, 1715, 5, 40, 0, 0, 1715, 1720, 3, 136, 68, 0, 1716, 1717, 5, 5, 0, 0, 1717, 1719, 3, 136, 68, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1722, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1724, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1713, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1726, 1, 0, 0, 0, 1725, 1727, 3, 120, 60, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 5, 4, 0, 0, 1729, 1696, 1, 0, 0, 0, 1729, 1697, 1, 0, 0, 0, 1730, 119, 1, 0, 0, 0, 1731, 1739, 3, 122, 61, 0, 1732, 1733, 5, 180, 0, 0, 1733, 1734, 5, 101, 0, 0, 1734, 1740, 5, 182, 0, 0, 1735, 1736, 5, 157, 0, 0, 1736, 1740, 5, 127, 0, 0, 1737, 1740, 5, 78, 0, 0, 1738, 1740, 5, 181, 0, 0, 1739, 1732, 1, 0, 0, 0, 1739, 1735, 1, 0, 0, 0, 1739, 1737, 1, 0, 0, 0, 1739, 1738, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 121, 1, 0, 0, 0, 1741, 1748, 7, 17, 0, 0, 1742, 1749, 3, 144, 72, 0, 1743, 1744, 5, 39, 0, 0, 1744, 1745, 3, 140, 70, 0, 1745, 1746, 5, 32, 0, 0, 1746, 1747, 3, 142, 71, 0, 1747, 1749, 1, 0, 0, 0, 1748, 1742, 1, 0, 0, 0, 1748, 1743, 1, 0, 0, 0, 1749, 123, 1, 0, 0, 0, 1750, 1751, 3, 216, 108, 0, 1751, 1761, 5, 3, 0, 0, 1752, 1757, 3, 66, 33, 0, 1753, 1754, 5, 5, 0, 0, 1754, 1756, 3, 66, 33, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1759, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1762, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1762, 5, 7, 0, 0, 1761, 1752, 1, 0, 0, 0, 1761, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 5, 4, 0, 0, 1764, 125, 1, 0, 0, 0, 1765, 1766, 3, 218, 109, 0, 1766, 1779, 5, 3, 0, 0, 1767, 1769, 5, 62, 0, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1775, 3, 66, 33, 0, 1771, 1772, 5, 5, 0, 0, 1772, 1774, 3, 66, 33, 0, 1773, 1771, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1780, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1780, 5, 7, 0, 0, 1779, 1768, 1, 0, 0, 0, 1779, 1778, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 5, 4, 0, 0, 1782, 1784, 3, 114, 57, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 127, 1, 0, 0, 0, 1785, 1786, 3, 146, 73, 0, 1786, 1796, 5, 3, 0, 0, 1787, 1792, 3, 66, 33, 0, 1788, 1789, 5, 5, 0, 0, 1789, 1791, 3, 66, 33, 0, 1790, 1788, 1, 0, 0, 0, 1791, 1794, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1797, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1797, 5, 7, 0, 0, 1796, 1787, 1, 0, 0, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 5, 4, 0, 0, 1799, 1801, 3, 114, 57, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1805, 5, 152, 0, 0, 1803, 1806, 3, 116, 58, 0, 1804, 1806, 3, 208, 104, 0, 1805, 1803, 1, 0, 0, 0, 1805, 1804, 1, 0, 0, 0, 1806, 129, 1, 0, 0, 0, 1807, 1809, 5, 149, 0, 0, 1808, 1810, 5, 116, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1816, 3, 54, 27, 0, 1812, 1813, 5, 5, 0, 0, 1813, 1815, 3, 54, 27, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1818, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 131, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1819, 1820, 5, 109, 0, 0, 1820, 1821, 5, 40, 0, 0, 1821, 1826, 3, 136, 68, 0, 1822, 1823, 5, 5, 0, 0, 1823, 1825, 3, 136, 68, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 133, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1830, 5, 98, 0, 0, 1830, 1833, 3, 66, 33, 0, 1831, 1832, 7, 18, 0, 0, 1832, 1834, 3, 66, 33, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 135, 1, 0, 0, 0, 1835, 1838, 3, 66, 33, 0, 1836, 1837, 5, 45, 0, 0, 1837, 1839, 3, 188, 94, 0, 1838, 1836, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1841, 1, 0, 0, 0, 1840, 1842, 3, 138, 69, 0, 1841, 1840, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1844, 5, 175, 0, 0, 1844, 1846, 7, 19, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 137, 1, 0, 0, 0, 1847, 1848, 7, 20, 0, 0, 1848, 139, 1, 0, 0, 0, 1849, 1850, 3, 66, 33, 0, 1850, 1851, 5, 155, 0, 0, 1851, 1860, 1, 0, 0, 0, 1852, 1853, 3, 66, 33, 0, 1853, 1854, 5, 158, 0, 0, 1854, 1860, 1, 0, 0, 0, 1855, 1856, 5, 157, 0, 0, 1856, 1860, 5, 127, 0, 0, 1857, 1858, 5, 156, 0, 0, 1858, 1860, 5, 155, 0, 0, 1859, 1849, 1, 0, 0, 0, 1859, 1852, 1, 0, 0, 0, 1859, 1855, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 141, 1, 0, 0, 0, 1861, 1862, 3, 66, 33, 0, 1862, 1863, 5, 155, 0, 0, 1863, 1872, 1, 0, 0, 0, 1864, 1865, 3, 66, 33, 0, 1865, 1866, 5, 158, 0, 0, 1866, 1872, 1, 0, 0, 0, 1867, 1868, 5, 157, 0, 0, 1868, 1872, 5, 127, 0, 0, 1869, 1870, 5, 156, 0, 0, 1870, 1872, 5, 158, 0, 0, 1871, 1861, 1, 0, 0, 0, 1871, 1864, 1, 0, 0, 0, 1871, 1867, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1872, 143, 1, 0, 0, 0, 1873, 1874, 3, 66, 33, 0, 1874, 1875, 5, 155, 0, 0, 1875, 1881, 1, 0, 0, 0, 1876, 1877, 5, 156, 0, 0, 1877, 1881, 5, 155, 0, 0, 1878, 1879, 5, 157, 0, 0, 1879, 1881, 5, 127, 0, 0, 1880, 1873, 1, 0, 0, 0, 1880, 1876, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1881, 145, 1, 0, 0, 0, 1882, 1883, 7, 21, 0, 0, 1883, 1884, 5, 3, 0, 0, 1884, 1885, 3, 66, 33, 0, 1885, 1886, 5, 4, 0, 0, 1886, 1887, 5, 152, 0, 0, 1887, 1889, 5, 3, 0, 0, 1888, 1890, 3, 152, 76, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1893, 3, 156, 78, 0, 1892, 1894, 3, 122, 61, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 5, 4, 0, 0, 1896, 1968, 1, 0, 0, 0, 1897, 1898, 7, 22, 0, 0, 1898, 1899, 5, 3, 0, 0, 1899, 1900, 5, 4, 0, 0, 1900, 1901, 5, 152, 0, 0, 1901, 1903, 5, 3, 0, 0, 1902, 1904, 3, 152, 76, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1906, 1, 0, 0, 0, 1905, 1907, 3, 154, 77, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1968, 5, 4, 0, 0, 1909, 1910, 7, 23, 0, 0, 1910, 1911, 5, 3, 0, 0, 1911, 1912, 5, 4, 0, 0, 1912, 1913, 5, 152, 0, 0, 1913, 1915, 5, 3, 0, 0, 1914, 1916, 3, 152, 76, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 3, 156, 78, 0, 1918, 1919, 5, 4, 0, 0, 1919, 1968, 1, 0, 0, 0, 1920, 1921, 7, 24, 0, 0, 1921, 1922, 5, 3, 0, 0, 1922, 1924, 3, 66, 33, 0, 1923, 1925, 3, 148, 74, 0, 1924, 1923, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1928, 3, 150, 75, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 5, 4, 0, 0, 1930, 1931, 5, 152, 0, 0, 1931, 1933, 5, 3, 0, 0, 1932, 1934, 3, 152, 76, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 3, 156, 78, 0, 1936, 1937, 5, 4, 0, 0, 1937, 1968, 1, 0, 0, 0, 1938, 1939, 5, 164, 0, 0, 1939, 1940, 5, 3, 0, 0, 1940, 1941, 3, 66, 33, 0, 1941, 1942, 5, 5, 0, 0, 1942, 1943, 3, 34, 17, 0, 1943, 1944, 5, 4, 0, 0, 1944, 1945, 5, 152, 0, 0, 1945, 1947, 5, 3, 0, 0, 1946, 1948, 3, 152, 76, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1951, 3, 156, 78, 0, 1950, 1952, 3, 122, 61, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 5, 4, 0, 0, 1954, 1968, 1, 0, 0, 0, 1955, 1956, 5, 165, 0, 0, 1956, 1957, 5, 3, 0, 0, 1957, 1958, 3, 66, 33, 0, 1958, 1959, 5, 4, 0, 0, 1959, 1960, 5, 152, 0, 0, 1960, 1962, 5, 3, 0, 0, 1961, 1963, 3, 152, 76, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 3, 156, 78, 0, 1965, 1966, 5, 4, 0, 0, 1966, 1968, 1, 0, 0, 0, 1967, 1882, 1, 0, 0, 0, 1967, 1897, 1, 0, 0, 0, 1967, 1909, 1, 0, 0, 0, 1967, 1920, 1, 0, 0, 0, 1967, 1938, 1, 0, 0, 0, 1967, 1955, 1, 0, 0, 0, 1968, 147, 1, 0, 0, 0, 1969, 1970, 5, 5, 0, 0, 1970, 1971, 3, 34, 17, 0, 1971, 149, 1, 0, 0, 0, 1972, 1973, 5, 5, 0, 0, 1973, 1974, 3, 34, 17, 0, 1974, 151, 1, 0, 0, 0, 1975, 1976, 5, 153, 0, 0, 1976, 1978, 5, 40, 0, 0, 1977, 1979, 3, 66, 33, 0, 1978, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 153, 1, 0, 0, 0, 1982, 1983, 5, 109, 0, 0, 1983, 1985, 5, 40, 0, 0, 1984, 1986, 3, 66, 33, 0, 1985, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1985, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 155, 1, 0, 0, 0, 1989, 1990, 5, 109, 0, 0, 1990, 1991, 5, 40, 0, 0, 1991, 1992, 3, 156, 78, 0, 1992, 157, 1, 0, 0, 0, 1993, 1995, 3, 66, 33, 0, 1994, 1996, 3, 138, 69, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2004, 1, 0, 0, 0, 1997, 1998, 5, 5, 0, 0, 1998, 2000, 3, 66, 33, 0, 1999, 2001, 3, 138, 69, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 1997, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 159, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2008, 3, 82, 41, 0, 2008, 161, 1, 0, 0, 0, 2009, 2010, 3, 82, 41, 0, 2010, 163, 1, 0, 0, 0, 2011, 2012, 7, 25, 0, 0, 2012, 165, 1, 0, 0, 0, 2013, 2014, 5, 188, 0, 0, 2014, 167, 1, 0, 0, 0, 2015, 2018, 3, 66, 33, 0, 2016, 2018, 3, 28, 14, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2016, 1, 0, 0, 0, 2018, 169, 1, 0, 0, 0, 2019, 2020, 7, 26, 0, 0, 2020, 171, 1, 0, 0, 0, 2021, 2022, 7, 27, 0, 0, 2022, 173, 1, 0, 0, 0, 2023, 2024, 3, 222, 111, 0, 2024, 175, 1, 0, 0, 0, 2025, 2026, 3, 222, 111, 0, 2026, 177, 1, 0, 0, 0, 2027, 2028, 3, 222, 111, 0, 2028, 179, 1, 0, 0, 0, 2029, 2030, 3, 222, 111, 0, 2030, 181, 1, 0, 0, 0, 2031, 2032, 3, 222, 111, 0, 2032, 183, 1, 0, 0, 0, 2033, 2034, 3, 222, 111, 0, 2034, 185, 1, 0, 0, 0, 2035, 2036, 3, 222, 111, 0, 2036, 187, 1, 0, 0, 0, 2037, 2038, 3, 222, 111, 0, 2038, 189, 1, 0, 0, 0, 2039, 2040, 3, 222, 111, 0, 2040, 191, 1, 0, 0, 0, 2041, 2042, 3, 222, 111, 0, 2042, 193, 1, 0, 0, 0, 2043, 2044, 3, 222, 111, 0, 2044, 195, 1, 0, 0, 0, 2045, 2046, 3, 222, 111, 0, 2046, 197, 1, 0, 0, 0, 2047, 2048, 3, 222, 111, 0, 2048, 199, 1, 0, 0, 0, 2049, 2050, 3, 222, 111, 0, 2050, 201, 1, 0, 0, 0, 2051, 2052, 3, 222, 111, 0, 2052, 203, 1, 0, 0, 0, 2053, 2054, 3, 222, 111, 0, 2054, 205, 1, 0, 0, 0, 2055, 2056, 3, 222, 111, 0, 2056, 207, 1, 0, 0, 0, 2057, 2058, 3, 222, 111, 0, 2058, 209, 1, 0, 0, 0, 2059, 2060, 3, 222, 111, 0, 2060, 211, 1, 0, 0, 0, 2061, 2062, 3, 222, 111, 0, 2062, 213, 1, 0, 0, 0, 2063, 2064, 3, 222, 111, 0, 2064, 215, 1, 0, 0, 0, 2065, 2066, 3, 222, 111, 0, 2066, 217, 1, 0, 0, 0, 2067, 2068, 3, 222, 111, 0, 2068, 219, 1, 0, 0, 0, 2069, 2070, 3, 222, 111, 0, 2070, 221, 1, 0, 0, 0, 2071, 2079, 5, 185, 0, 0, 2072, 2079, 3, 172, 86, 0, 2073, 2079, 5, 188, 0, 0, 2074, 2075, 5, 3, 0, 0, 2075, 2076, 3, 222, 111, 0, 2076, 2077, 5, 4, 0, 0, 2077, 2079, 1, 0, 0, 0, 2078, 2071, 1, 0, 0, 0, 2078, 2072, 1, 0, 0, 0, 2078, 2073, 1, 0, 0, 0, 2078, 2074, 1, 0, 0, 0, 2079, 223, 1, 0, 0, 0, 299, 227, 235, 242, 247, 253, 259, 261, 287, 294, 301, 307, 311, 316, 319, 326, 329, 333, 341, 345, 347, 351, 355, 359, 362, 369, 375, 381, 386, 397, 403, 407, 411, 414, 418, 424, 429, 438, 445, 451, 455, 459, 464, 470, 482, 486, 491, 494, 497, 502, 505, 519, 526, 533, 535, 538, 544, 549, 557, 562, 577, 583, 593, 598, 608, 612, 614, 618, 623, 625, 633, 639, 644, 651, 662, 665, 667, 674, 678, 685, 691, 697, 703, 708, 717, 722, 733, 738, 749, 754, 758, 774, 784, 789, 797, 809, 814, 825, 828, 830, 836, 839, 841, 845, 849, 856, 859, 862, 869, 872, 875, 878, 882, 890, 895, 905, 910, 919, 926, 930, 934, 937, 945, 958, 961, 969, 978, 982, 987, 1017, 1028, 1040, 1046, 1053, 1057, 1067, 1070, 1076, 1082, 1091, 1094, 1098, 1100, 1102, 1111, 1118, 1125, 1131, 1136, 1144, 1149, 1158, 1169, 1176, 1180, 1183, 1186, 1190, 1200, 1206, 1208, 1216, 1223, 1230, 1235, 1237, 1243, 1252, 1257, 1264, 1268, 1270, 1273, 1281, 1285, 1288, 1294, 1298, 1303, 1310, 1319, 1323, 1325, 1329, 1338, 1343, 1345, 1358, 1361, 1370, 1381, 1388, 1391, 1396, 1400, 1403, 1406, 1411, 1415, 1420, 1423, 1426, 1431, 1435, 1438, 1445, 1450, 1459, 1464, 1467, 1475, 1479, 1487, 1490, 1492, 1501, 1504, 1506, 1510, 1514, 1518, 1521, 1532, 1537, 1541, 1545, 1548, 1553, 1559, 1566, 1573, 1578, 1581, 1589, 1595, 1600, 1606, 1613, 1620, 1625, 1628, 1631, 1636, 1641, 1648, 1652, 1656, 1666, 1675, 1678, 1687, 1691, 1699, 1708, 1711, 1720, 1723, 1726, 1729, 1739, 1748, 1757, 1761, 1768, 1775, 1779, 1783, 1792, 1796, 1800, 1805, 1809, 1816, 1826, 1833, 1838, 1841, 1845, 1859, 1871, 1880, 1889, 1893, 1903, 1906, 1915, 1924, 1927, 1933, 1947, 1951, 1962, 1967, 1980, 1987, 1995, 2000, 2004, 2017, 2078] \ No newline at end of file +[4, 1, 194, 2082, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 1, 0, 5, 0, 226, 8, 0, 10, 0, 12, 0, 229, 9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 234, 8, 1, 10, 1, 12, 1, 237, 9, 1, 1, 1, 1, 1, 4, 1, 241, 8, 1, 11, 1, 12, 1, 242, 1, 1, 5, 1, 246, 8, 1, 10, 1, 12, 1, 249, 9, 1, 1, 1, 5, 1, 252, 8, 1, 10, 1, 12, 1, 255, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, 260, 8, 2, 3, 2, 262, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 288, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 295, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 302, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 308, 8, 3, 1, 3, 1, 3, 3, 3, 312, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 317, 8, 3, 1, 3, 3, 3, 320, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 327, 8, 4, 1, 4, 3, 4, 330, 8, 4, 1, 5, 1, 5, 3, 5, 334, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 342, 8, 6, 1, 6, 1, 6, 3, 6, 346, 8, 6, 3, 6, 348, 8, 6, 1, 7, 1, 7, 3, 7, 352, 8, 7, 1, 8, 1, 8, 3, 8, 356, 8, 8, 1, 8, 1, 8, 3, 8, 360, 8, 8, 1, 8, 3, 8, 363, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 370, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 376, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 382, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 387, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 396, 8, 11, 10, 11, 12, 11, 399, 9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 404, 8, 11, 1, 12, 1, 12, 3, 12, 408, 8, 12, 1, 12, 1, 12, 3, 12, 412, 8, 12, 1, 12, 3, 12, 415, 8, 12, 1, 13, 1, 13, 3, 13, 419, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 425, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 430, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 437, 8, 13, 10, 13, 12, 13, 440, 9, 13, 1, 13, 1, 13, 5, 13, 444, 8, 13, 10, 13, 12, 13, 447, 9, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 453, 8, 13, 1, 13, 1, 13, 3, 13, 457, 8, 13, 1, 14, 1, 14, 3, 14, 461, 8, 14, 1, 14, 5, 14, 464, 8, 14, 10, 14, 12, 14, 467, 9, 14, 1, 15, 4, 15, 470, 8, 15, 11, 15, 12, 15, 471, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 484, 8, 15, 1, 16, 1, 16, 3, 16, 488, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 493, 8, 16, 1, 16, 3, 16, 496, 8, 16, 1, 16, 3, 16, 499, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 504, 8, 16, 1, 16, 3, 16, 507, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 521, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 528, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 535, 8, 16, 3, 16, 537, 8, 16, 1, 17, 3, 17, 540, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 546, 8, 18, 1, 18, 1, 18, 1, 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 557, 8, 18, 10, 18, 12, 18, 560, 9, 18, 1, 18, 1, 18, 3, 18, 564, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 577, 8, 18, 10, 18, 12, 18, 580, 9, 18, 1, 18, 1, 18, 1, 18, 3, 18, 585, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 593, 8, 19, 10, 19, 12, 19, 596, 9, 19, 1, 19, 1, 19, 3, 19, 600, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 610, 8, 19, 1, 19, 1, 19, 5, 19, 614, 8, 19, 10, 19, 12, 19, 617, 9, 19, 1, 19, 3, 19, 620, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 625, 8, 19, 3, 19, 627, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 641, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 646, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 653, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 662, 8, 21, 10, 21, 12, 21, 665, 9, 21, 3, 21, 667, 8, 21, 3, 21, 669, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 676, 8, 21, 1, 21, 1, 21, 3, 21, 680, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 687, 8, 21, 1, 21, 1, 21, 4, 21, 691, 8, 21, 11, 21, 12, 21, 692, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 699, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 705, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 710, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 717, 8, 22, 10, 22, 12, 22, 720, 9, 22, 1, 22, 1, 22, 3, 22, 724, 8, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 735, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 740, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 749, 8, 23, 10, 23, 12, 23, 752, 9, 23, 1, 23, 1, 23, 3, 23, 756, 8, 23, 1, 24, 1, 24, 3, 24, 760, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 774, 8, 24, 10, 24, 12, 24, 777, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 784, 8, 25, 10, 25, 12, 25, 787, 9, 25, 1, 25, 1, 25, 3, 25, 791, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 799, 8, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 809, 8, 27, 10, 27, 12, 27, 812, 9, 27, 1, 27, 1, 27, 3, 27, 816, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 827, 8, 28, 1, 28, 3, 28, 830, 8, 28, 3, 28, 832, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 838, 8, 28, 1, 28, 3, 28, 841, 8, 28, 3, 28, 843, 8, 28, 5, 28, 845, 8, 28, 10, 28, 12, 28, 848, 9, 28, 1, 29, 3, 29, 851, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 858, 8, 29, 1, 29, 3, 29, 861, 8, 29, 1, 30, 3, 30, 864, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 871, 8, 30, 1, 30, 3, 30, 874, 8, 30, 1, 30, 3, 30, 877, 8, 30, 1, 30, 3, 30, 880, 8, 30, 1, 31, 1, 31, 3, 31, 884, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 892, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 897, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 907, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 912, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 921, 8, 33, 1, 33, 1, 33, 1, 33, 5, 33, 926, 8, 33, 10, 33, 12, 33, 929, 9, 33, 1, 33, 3, 33, 932, 8, 33, 1, 33, 1, 33, 3, 33, 936, 8, 33, 1, 33, 3, 33, 939, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 945, 8, 33, 10, 33, 12, 33, 948, 9, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 960, 8, 33, 1, 33, 3, 33, 963, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 971, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 4, 33, 978, 8, 33, 11, 33, 12, 33, 979, 1, 33, 1, 33, 3, 33, 984, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 989, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1019, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1030, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1042, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1048, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1055, 8, 33, 1, 33, 1, 33, 3, 33, 1059, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1067, 8, 33, 10, 33, 12, 33, 1070, 9, 33, 3, 33, 1072, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1078, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1084, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1091, 8, 33, 10, 33, 12, 33, 1094, 9, 33, 3, 33, 1096, 8, 33, 1, 33, 1, 33, 3, 33, 1100, 8, 33, 5, 33, 1102, 8, 33, 10, 33, 12, 33, 1105, 9, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1113, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 3, 36, 1120, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1127, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1133, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1138, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1144, 8, 36, 10, 36, 12, 36, 1147, 9, 36, 1, 36, 1, 36, 3, 36, 1151, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1158, 8, 36, 10, 36, 12, 36, 1161, 9, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1169, 8, 36, 10, 36, 12, 36, 1172, 9, 36, 1, 36, 1, 36, 5, 36, 1176, 8, 36, 10, 36, 12, 36, 1179, 9, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 3, 36, 1185, 8, 36, 1, 36, 3, 36, 1188, 8, 36, 1, 36, 1, 36, 3, 36, 1192, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1200, 8, 37, 10, 37, 12, 37, 1203, 9, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1208, 8, 37, 3, 37, 1210, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1218, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1225, 8, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1230, 8, 37, 10, 37, 12, 37, 1233, 9, 37, 1, 37, 1, 37, 3, 37, 1237, 8, 37, 3, 37, 1239, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1245, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1254, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1259, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1266, 8, 40, 1, 40, 1, 40, 3, 40, 1270, 8, 40, 3, 40, 1272, 8, 40, 1, 41, 3, 41, 1275, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1281, 8, 41, 10, 41, 12, 41, 1284, 9, 41, 1, 41, 3, 41, 1287, 8, 41, 1, 41, 3, 41, 1290, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1296, 8, 42, 5, 42, 1298, 8, 42, 10, 42, 12, 42, 1301, 9, 42, 1, 43, 1, 43, 3, 43, 1305, 8, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1310, 8, 43, 10, 43, 12, 43, 1313, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1319, 8, 43, 10, 43, 12, 43, 1322, 9, 43, 1, 43, 3, 43, 1325, 8, 43, 3, 43, 1327, 8, 43, 1, 43, 1, 43, 3, 43, 1331, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1338, 8, 43, 10, 43, 12, 43, 1341, 9, 43, 1, 43, 1, 43, 3, 43, 1345, 8, 43, 3, 43, 1347, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1358, 8, 43, 10, 43, 12, 43, 1361, 9, 43, 3, 43, 1363, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1370, 8, 43, 10, 43, 12, 43, 1373, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1381, 8, 43, 10, 43, 12, 43, 1384, 9, 43, 1, 43, 1, 43, 5, 43, 1388, 8, 43, 10, 43, 12, 43, 1391, 9, 43, 3, 43, 1393, 8, 43, 1, 44, 1, 44, 1, 45, 3, 45, 1398, 8, 45, 1, 45, 1, 45, 3, 45, 1402, 8, 45, 1, 45, 3, 45, 1405, 8, 45, 1, 46, 3, 46, 1408, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1413, 8, 46, 1, 46, 1, 46, 3, 46, 1417, 8, 46, 1, 46, 4, 46, 1420, 8, 46, 11, 46, 12, 46, 1421, 1, 46, 3, 46, 1425, 8, 46, 1, 46, 3, 46, 1428, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1433, 8, 47, 1, 47, 1, 47, 3, 47, 1437, 8, 47, 1, 47, 3, 47, 1440, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1447, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1452, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1459, 8, 47, 10, 47, 12, 47, 1462, 9, 47, 1, 47, 1, 47, 3, 47, 1466, 8, 47, 1, 47, 3, 47, 1469, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1475, 8, 47, 10, 47, 12, 47, 1478, 9, 47, 1, 47, 3, 47, 1481, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1489, 8, 47, 1, 47, 3, 47, 1492, 8, 47, 3, 47, 1494, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1503, 8, 48, 1, 48, 3, 48, 1506, 8, 48, 3, 48, 1508, 8, 48, 1, 49, 1, 49, 3, 49, 1512, 8, 49, 1, 49, 1, 49, 3, 49, 1516, 8, 49, 1, 49, 1, 49, 3, 49, 1520, 8, 49, 1, 49, 3, 49, 1523, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1532, 8, 50, 10, 50, 12, 50, 1535, 9, 50, 1, 50, 1, 50, 3, 50, 1539, 8, 50, 1, 51, 1, 51, 3, 51, 1543, 8, 51, 1, 51, 1, 51, 3, 51, 1547, 8, 51, 1, 52, 3, 52, 1550, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1555, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1561, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1568, 8, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1573, 8, 52, 10, 52, 12, 52, 1576, 9, 52, 1, 52, 1, 52, 3, 52, 1580, 8, 52, 1, 52, 3, 52, 1583, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1589, 8, 53, 10, 53, 12, 53, 1592, 9, 53, 1, 53, 1, 53, 1, 54, 3, 54, 1597, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1602, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1608, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1615, 8, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1620, 8, 54, 10, 54, 12, 54, 1623, 9, 54, 1, 54, 1, 54, 3, 54, 1627, 8, 54, 1, 54, 3, 54, 1630, 8, 54, 1, 54, 3, 54, 1633, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1638, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1643, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1650, 8, 55, 1, 56, 1, 56, 3, 56, 1654, 8, 56, 1, 56, 1, 56, 3, 56, 1658, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1668, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1675, 8, 58, 10, 58, 12, 58, 1678, 9, 58, 3, 58, 1680, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1687, 8, 58, 10, 58, 12, 58, 1690, 9, 58, 1, 58, 3, 58, 1693, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1701, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1708, 8, 59, 10, 59, 12, 59, 1711, 9, 59, 3, 59, 1713, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1720, 8, 59, 10, 59, 12, 59, 1723, 9, 59, 3, 59, 1725, 8, 59, 1, 59, 3, 59, 1728, 8, 59, 1, 59, 3, 59, 1731, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1741, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1750, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1757, 8, 62, 10, 62, 12, 62, 1760, 9, 62, 1, 62, 3, 62, 1763, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 1770, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1775, 8, 63, 10, 63, 12, 63, 1778, 9, 63, 1, 63, 3, 63, 1781, 8, 63, 1, 63, 1, 63, 3, 63, 1785, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1792, 8, 64, 10, 64, 12, 64, 1795, 9, 64, 1, 64, 3, 64, 1798, 8, 64, 1, 64, 1, 64, 3, 64, 1802, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1807, 8, 64, 1, 65, 1, 65, 3, 65, 1811, 8, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1816, 8, 65, 10, 65, 12, 65, 1819, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1826, 8, 66, 10, 66, 12, 66, 1829, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1835, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1840, 8, 68, 1, 68, 3, 68, 1843, 8, 68, 1, 68, 1, 68, 3, 68, 1847, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1861, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1873, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1882, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1891, 8, 73, 1, 73, 1, 73, 3, 73, 1895, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1905, 8, 73, 1, 73, 3, 73, 1908, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1917, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1926, 8, 73, 1, 73, 3, 73, 1929, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1935, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1949, 8, 73, 1, 73, 1, 73, 3, 73, 1953, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1964, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1969, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 4, 76, 1980, 8, 76, 11, 76, 12, 76, 1981, 1, 77, 1, 77, 1, 77, 4, 77, 1987, 8, 77, 11, 77, 12, 77, 1988, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1997, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2002, 8, 79, 5, 79, 2004, 8, 79, 10, 79, 12, 79, 2007, 9, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2019, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2080, 8, 111, 1, 111, 2, 438, 471, 1, 66, 112, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 134, 135, 2, 0, 147, 147, 172, 172, 1, 0, 8, 9, 2, 0, 59, 59, 142, 142, 2, 0, 56, 56, 104, 104, 2, 0, 58, 58, 82, 82, 5, 0, 25, 25, 72, 72, 81, 81, 122, 122, 126, 126, 4, 0, 84, 84, 133, 133, 139, 139, 146, 146, 2, 0, 7, 7, 12, 13, 1, 0, 14, 17, 1, 0, 18, 21, 4, 0, 77, 77, 97, 97, 99, 99, 118, 118, 3, 0, 25, 25, 72, 72, 126, 126, 5, 0, 52, 54, 104, 104, 173, 174, 187, 187, 189, 190, 2, 0, 29, 29, 62, 62, 3, 0, 128, 128, 155, 155, 180, 180, 2, 0, 5, 5, 106, 106, 1, 0, 177, 178, 2, 0, 34, 34, 60, 60, 2, 0, 152, 152, 163, 163, 2, 0, 160, 160, 167, 167, 2, 0, 161, 161, 168, 169, 2, 0, 162, 162, 164, 164, 2, 0, 8, 10, 102, 102, 2, 0, 186, 186, 189, 189, 1, 0, 25, 181, 2369, 0, 227, 1, 0, 0, 0, 2, 235, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 6, 289, 1, 0, 0, 0, 8, 321, 1, 0, 0, 0, 10, 331, 1, 0, 0, 0, 12, 339, 1, 0, 0, 0, 14, 349, 1, 0, 0, 0, 16, 353, 1, 0, 0, 0, 18, 364, 1, 0, 0, 0, 20, 367, 1, 0, 0, 0, 22, 373, 1, 0, 0, 0, 24, 407, 1, 0, 0, 0, 26, 416, 1, 0, 0, 0, 28, 458, 1, 0, 0, 0, 30, 469, 1, 0, 0, 0, 32, 487, 1, 0, 0, 0, 34, 539, 1, 0, 0, 0, 36, 545, 1, 0, 0, 0, 38, 586, 1, 0, 0, 0, 40, 628, 1, 0, 0, 0, 42, 632, 1, 0, 0, 0, 44, 696, 1, 0, 0, 0, 46, 728, 1, 0, 0, 0, 48, 757, 1, 0, 0, 0, 50, 778, 1, 0, 0, 0, 52, 792, 1, 0, 0, 0, 54, 803, 1, 0, 0, 0, 56, 822, 1, 0, 0, 0, 58, 850, 1, 0, 0, 0, 60, 863, 1, 0, 0, 0, 62, 881, 1, 0, 0, 0, 64, 887, 1, 0, 0, 0, 66, 988, 1, 0, 0, 0, 68, 1106, 1, 0, 0, 0, 70, 1116, 1, 0, 0, 0, 72, 1191, 1, 0, 0, 0, 74, 1193, 1, 0, 0, 0, 76, 1240, 1, 0, 0, 0, 78, 1258, 1, 0, 0, 0, 80, 1260, 1, 0, 0, 0, 82, 1274, 1, 0, 0, 0, 84, 1291, 1, 0, 0, 0, 86, 1392, 1, 0, 0, 0, 88, 1394, 1, 0, 0, 0, 90, 1397, 1, 0, 0, 0, 92, 1407, 1, 0, 0, 0, 94, 1493, 1, 0, 0, 0, 96, 1507, 1, 0, 0, 0, 98, 1522, 1, 0, 0, 0, 100, 1538, 1, 0, 0, 0, 102, 1546, 1, 0, 0, 0, 104, 1549, 1, 0, 0, 0, 106, 1584, 1, 0, 0, 0, 108, 1596, 1, 0, 0, 0, 110, 1637, 1, 0, 0, 0, 112, 1651, 1, 0, 0, 0, 114, 1659, 1, 0, 0, 0, 116, 1665, 1, 0, 0, 0, 118, 1696, 1, 0, 0, 0, 120, 1732, 1, 0, 0, 0, 122, 1742, 1, 0, 0, 0, 124, 1751, 1, 0, 0, 0, 126, 1766, 1, 0, 0, 0, 128, 1786, 1, 0, 0, 0, 130, 1808, 1, 0, 0, 0, 132, 1820, 1, 0, 0, 0, 134, 1830, 1, 0, 0, 0, 136, 1836, 1, 0, 0, 0, 138, 1848, 1, 0, 0, 0, 140, 1860, 1, 0, 0, 0, 142, 1872, 1, 0, 0, 0, 144, 1881, 1, 0, 0, 0, 146, 1968, 1, 0, 0, 0, 148, 1970, 1, 0, 0, 0, 150, 1973, 1, 0, 0, 0, 152, 1976, 1, 0, 0, 0, 154, 1983, 1, 0, 0, 0, 156, 1990, 1, 0, 0, 0, 158, 1994, 1, 0, 0, 0, 160, 2008, 1, 0, 0, 0, 162, 2010, 1, 0, 0, 0, 164, 2012, 1, 0, 0, 0, 166, 2014, 1, 0, 0, 0, 168, 2018, 1, 0, 0, 0, 170, 2020, 1, 0, 0, 0, 172, 2022, 1, 0, 0, 0, 174, 2024, 1, 0, 0, 0, 176, 2026, 1, 0, 0, 0, 178, 2028, 1, 0, 0, 0, 180, 2030, 1, 0, 0, 0, 182, 2032, 1, 0, 0, 0, 184, 2034, 1, 0, 0, 0, 186, 2036, 1, 0, 0, 0, 188, 2038, 1, 0, 0, 0, 190, 2040, 1, 0, 0, 0, 192, 2042, 1, 0, 0, 0, 194, 2044, 1, 0, 0, 0, 196, 2046, 1, 0, 0, 0, 198, 2048, 1, 0, 0, 0, 200, 2050, 1, 0, 0, 0, 202, 2052, 1, 0, 0, 0, 204, 2054, 1, 0, 0, 0, 206, 2056, 1, 0, 0, 0, 208, 2058, 1, 0, 0, 0, 210, 2060, 1, 0, 0, 0, 212, 2062, 1, 0, 0, 0, 214, 2064, 1, 0, 0, 0, 216, 2066, 1, 0, 0, 0, 218, 2068, 1, 0, 0, 0, 220, 2070, 1, 0, 0, 0, 222, 2079, 1, 0, 0, 0, 224, 226, 3, 2, 1, 0, 225, 224, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 230, 231, 5, 0, 0, 1, 231, 1, 1, 0, 0, 0, 232, 234, 5, 1, 0, 0, 233, 232, 1, 0, 0, 0, 234, 237, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 238, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 238, 247, 3, 4, 2, 0, 239, 241, 5, 1, 0, 0, 240, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 246, 3, 4, 2, 0, 245, 240, 1, 0, 0, 0, 246, 249, 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 253, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 250, 252, 5, 1, 0, 0, 251, 250, 1, 0, 0, 0, 252, 255, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 3, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, 259, 5, 71, 0, 0, 257, 258, 5, 114, 0, 0, 258, 260, 5, 111, 0, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 262, 1, 0, 0, 0, 261, 256, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 287, 1, 0, 0, 0, 263, 288, 3, 6, 3, 0, 264, 288, 3, 8, 4, 0, 265, 288, 3, 10, 5, 0, 266, 288, 3, 12, 6, 0, 267, 288, 3, 14, 7, 0, 268, 288, 3, 22, 11, 0, 269, 288, 3, 26, 13, 0, 270, 288, 3, 42, 21, 0, 271, 288, 3, 44, 22, 0, 272, 288, 3, 46, 23, 0, 273, 288, 3, 58, 29, 0, 274, 288, 3, 60, 30, 0, 275, 288, 3, 62, 31, 0, 276, 288, 3, 64, 32, 0, 277, 288, 3, 72, 36, 0, 278, 288, 3, 76, 38, 0, 279, 288, 3, 80, 40, 0, 280, 288, 3, 20, 10, 0, 281, 288, 3, 16, 8, 0, 282, 288, 3, 18, 9, 0, 283, 288, 3, 82, 41, 0, 284, 288, 3, 104, 52, 0, 285, 288, 3, 108, 54, 0, 286, 288, 3, 112, 56, 0, 287, 263, 1, 0, 0, 0, 287, 264, 1, 0, 0, 0, 287, 265, 1, 0, 0, 0, 287, 266, 1, 0, 0, 0, 287, 267, 1, 0, 0, 0, 287, 268, 1, 0, 0, 0, 287, 269, 1, 0, 0, 0, 287, 270, 1, 0, 0, 0, 287, 271, 1, 0, 0, 0, 287, 272, 1, 0, 0, 0, 287, 273, 1, 0, 0, 0, 287, 274, 1, 0, 0, 0, 287, 275, 1, 0, 0, 0, 287, 276, 1, 0, 0, 0, 287, 277, 1, 0, 0, 0, 287, 278, 1, 0, 0, 0, 287, 279, 1, 0, 0, 0, 287, 280, 1, 0, 0, 0, 287, 281, 1, 0, 0, 0, 287, 282, 1, 0, 0, 0, 287, 283, 1, 0, 0, 0, 287, 284, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 287, 286, 1, 0, 0, 0, 288, 5, 1, 0, 0, 0, 289, 290, 5, 30, 0, 0, 290, 294, 5, 133, 0, 0, 291, 292, 3, 178, 89, 0, 292, 293, 5, 2, 0, 0, 293, 295, 1, 0, 0, 0, 294, 291, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 319, 3, 180, 90, 0, 297, 307, 5, 121, 0, 0, 298, 299, 5, 137, 0, 0, 299, 308, 3, 184, 92, 0, 300, 302, 5, 46, 0, 0, 301, 300, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 3, 186, 93, 0, 304, 305, 5, 137, 0, 0, 305, 306, 3, 186, 93, 0, 306, 308, 1, 0, 0, 0, 307, 298, 1, 0, 0, 0, 307, 301, 1, 0, 0, 0, 308, 320, 1, 0, 0, 0, 309, 311, 5, 27, 0, 0, 310, 312, 5, 46, 0, 0, 311, 310, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 320, 3, 28, 14, 0, 314, 316, 5, 63, 0, 0, 315, 317, 5, 46, 0, 0, 316, 315, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 320, 3, 186, 93, 0, 319, 297, 1, 0, 0, 0, 319, 309, 1, 0, 0, 0, 319, 314, 1, 0, 0, 0, 320, 7, 1, 0, 0, 0, 321, 329, 5, 31, 0, 0, 322, 330, 3, 178, 89, 0, 323, 324, 3, 178, 89, 0, 324, 325, 5, 2, 0, 0, 325, 327, 1, 0, 0, 0, 326, 323, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 330, 3, 182, 91, 0, 329, 322, 1, 0, 0, 0, 329, 326, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 9, 1, 0, 0, 0, 331, 333, 5, 35, 0, 0, 332, 334, 5, 55, 0, 0, 333, 332, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 336, 3, 66, 33, 0, 336, 337, 5, 33, 0, 0, 337, 338, 3, 178, 89, 0, 338, 11, 1, 0, 0, 0, 339, 341, 5, 38, 0, 0, 340, 342, 7, 0, 0, 0, 341, 340, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 347, 1, 0, 0, 0, 343, 345, 5, 138, 0, 0, 344, 346, 3, 206, 103, 0, 345, 344, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 348, 1, 0, 0, 0, 347, 343, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 13, 1, 0, 0, 0, 349, 351, 7, 1, 0, 0, 350, 352, 5, 138, 0, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 15, 1, 0, 0, 0, 353, 355, 5, 126, 0, 0, 354, 356, 5, 138, 0, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 362, 1, 0, 0, 0, 357, 359, 5, 137, 0, 0, 358, 360, 5, 129, 0, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 3, 202, 101, 0, 362, 357, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 17, 1, 0, 0, 0, 364, 365, 5, 129, 0, 0, 365, 366, 3, 202, 101, 0, 366, 19, 1, 0, 0, 0, 367, 369, 5, 120, 0, 0, 368, 370, 5, 129, 0, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 3, 202, 101, 0, 372, 21, 1, 0, 0, 0, 373, 375, 5, 50, 0, 0, 374, 376, 5, 141, 0, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 381, 5, 84, 0, 0, 378, 379, 5, 80, 0, 0, 379, 380, 5, 102, 0, 0, 380, 382, 5, 70, 0, 0, 381, 378, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 386, 1, 0, 0, 0, 383, 384, 3, 178, 89, 0, 384, 385, 5, 2, 0, 0, 385, 387, 1, 0, 0, 0, 386, 383, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 3, 192, 96, 0, 389, 390, 5, 107, 0, 0, 390, 391, 3, 180, 90, 0, 391, 392, 5, 3, 0, 0, 392, 397, 3, 24, 12, 0, 393, 394, 5, 5, 0, 0, 394, 396, 3, 24, 12, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 403, 5, 4, 0, 0, 401, 402, 5, 149, 0, 0, 402, 404, 3, 66, 33, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 23, 1, 0, 0, 0, 405, 408, 3, 186, 93, 0, 406, 408, 3, 66, 33, 0, 407, 405, 1, 0, 0, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 45, 0, 0, 410, 412, 3, 188, 94, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 138, 69, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 25, 1, 0, 0, 0, 416, 418, 5, 50, 0, 0, 417, 419, 7, 2, 0, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 424, 5, 133, 0, 0, 421, 422, 5, 80, 0, 0, 422, 423, 5, 102, 0, 0, 423, 425, 5, 70, 0, 0, 424, 421, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 429, 1, 0, 0, 0, 426, 427, 3, 178, 89, 0, 427, 428, 5, 2, 0, 0, 428, 430, 1, 0, 0, 0, 429, 426, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 456, 3, 180, 90, 0, 432, 433, 5, 3, 0, 0, 433, 438, 3, 28, 14, 0, 434, 435, 5, 5, 0, 0, 435, 437, 3, 28, 14, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 439, 445, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 5, 0, 0, 442, 444, 3, 36, 18, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 448, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 452, 5, 4, 0, 0, 449, 450, 5, 151, 0, 0, 450, 453, 5, 186, 0, 0, 451, 453, 5, 132, 0, 0, 452, 449, 1, 0, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 457, 1, 0, 0, 0, 454, 455, 5, 33, 0, 0, 455, 457, 3, 82, 41, 0, 456, 432, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 27, 1, 0, 0, 0, 458, 460, 3, 186, 93, 0, 459, 461, 3, 30, 15, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 465, 1, 0, 0, 0, 462, 464, 3, 32, 16, 0, 463, 462, 1, 0, 0, 0, 464, 467, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 29, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 468, 470, 3, 174, 87, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 483, 1, 0, 0, 0, 473, 474, 5, 3, 0, 0, 474, 475, 3, 34, 17, 0, 475, 476, 5, 4, 0, 0, 476, 484, 1, 0, 0, 0, 477, 478, 5, 3, 0, 0, 478, 479, 3, 34, 17, 0, 479, 480, 5, 5, 0, 0, 480, 481, 3, 34, 17, 0, 481, 482, 5, 4, 0, 0, 482, 484, 1, 0, 0, 0, 483, 473, 1, 0, 0, 0, 483, 477, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 31, 1, 0, 0, 0, 485, 486, 5, 49, 0, 0, 486, 488, 3, 174, 87, 0, 487, 485, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 536, 1, 0, 0, 0, 489, 490, 5, 113, 0, 0, 490, 492, 5, 95, 0, 0, 491, 493, 3, 138, 69, 0, 492, 491, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 495, 1, 0, 0, 0, 494, 496, 3, 40, 20, 0, 495, 494, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 498, 1, 0, 0, 0, 497, 499, 5, 36, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 537, 1, 0, 0, 0, 500, 501, 5, 102, 0, 0, 501, 504, 5, 104, 0, 0, 502, 504, 5, 141, 0, 0, 503, 500, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 506, 1, 0, 0, 0, 505, 507, 3, 40, 20, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 537, 1, 0, 0, 0, 508, 509, 5, 44, 0, 0, 509, 510, 5, 3, 0, 0, 510, 511, 3, 66, 33, 0, 511, 512, 5, 4, 0, 0, 512, 537, 1, 0, 0, 0, 513, 520, 5, 56, 0, 0, 514, 521, 3, 34, 17, 0, 515, 521, 3, 70, 35, 0, 516, 517, 5, 3, 0, 0, 517, 518, 3, 66, 33, 0, 518, 519, 5, 4, 0, 0, 519, 521, 1, 0, 0, 0, 520, 514, 1, 0, 0, 0, 520, 515, 1, 0, 0, 0, 520, 516, 1, 0, 0, 0, 521, 537, 1, 0, 0, 0, 522, 523, 5, 45, 0, 0, 523, 537, 3, 188, 94, 0, 524, 537, 3, 38, 19, 0, 525, 526, 5, 170, 0, 0, 526, 528, 5, 171, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 5, 33, 0, 0, 530, 531, 5, 3, 0, 0, 531, 532, 3, 66, 33, 0, 532, 534, 5, 4, 0, 0, 533, 535, 7, 3, 0, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 537, 1, 0, 0, 0, 536, 489, 1, 0, 0, 0, 536, 503, 1, 0, 0, 0, 536, 508, 1, 0, 0, 0, 536, 513, 1, 0, 0, 0, 536, 522, 1, 0, 0, 0, 536, 524, 1, 0, 0, 0, 536, 527, 1, 0, 0, 0, 537, 33, 1, 0, 0, 0, 538, 540, 7, 4, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 5, 187, 0, 0, 542, 35, 1, 0, 0, 0, 543, 544, 5, 49, 0, 0, 544, 546, 3, 174, 87, 0, 545, 543, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 584, 1, 0, 0, 0, 547, 548, 5, 113, 0, 0, 548, 551, 5, 95, 0, 0, 549, 551, 5, 141, 0, 0, 550, 547, 1, 0, 0, 0, 550, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 3, 0, 0, 553, 558, 3, 24, 12, 0, 554, 555, 5, 5, 0, 0, 555, 557, 3, 24, 12, 0, 556, 554, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 561, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 5, 4, 0, 0, 562, 564, 3, 40, 20, 0, 563, 562, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 585, 1, 0, 0, 0, 565, 566, 5, 44, 0, 0, 566, 567, 5, 3, 0, 0, 567, 568, 3, 66, 33, 0, 568, 569, 5, 4, 0, 0, 569, 585, 1, 0, 0, 0, 570, 571, 5, 74, 0, 0, 571, 572, 5, 95, 0, 0, 572, 573, 5, 3, 0, 0, 573, 578, 3, 186, 93, 0, 574, 575, 5, 5, 0, 0, 575, 577, 3, 186, 93, 0, 576, 574, 1, 0, 0, 0, 577, 580, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 581, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 582, 5, 4, 0, 0, 582, 583, 3, 38, 19, 0, 583, 585, 1, 0, 0, 0, 584, 550, 1, 0, 0, 0, 584, 565, 1, 0, 0, 0, 584, 570, 1, 0, 0, 0, 585, 37, 1, 0, 0, 0, 586, 587, 5, 117, 0, 0, 587, 599, 3, 190, 95, 0, 588, 589, 5, 3, 0, 0, 589, 594, 3, 186, 93, 0, 590, 591, 5, 5, 0, 0, 591, 593, 3, 186, 93, 0, 592, 590, 1, 0, 0, 0, 593, 596, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 597, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 597, 598, 5, 4, 0, 0, 598, 600, 1, 0, 0, 0, 599, 588, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 615, 1, 0, 0, 0, 601, 602, 5, 107, 0, 0, 602, 609, 7, 5, 0, 0, 603, 604, 5, 131, 0, 0, 604, 610, 7, 6, 0, 0, 605, 610, 5, 41, 0, 0, 606, 610, 5, 123, 0, 0, 607, 608, 5, 101, 0, 0, 608, 610, 5, 26, 0, 0, 609, 603, 1, 0, 0, 0, 609, 605, 1, 0, 0, 0, 609, 606, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 610, 614, 1, 0, 0, 0, 611, 612, 5, 99, 0, 0, 612, 614, 3, 174, 87, 0, 613, 601, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 626, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 620, 5, 102, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 624, 5, 57, 0, 0, 622, 623, 5, 86, 0, 0, 623, 625, 7, 7, 0, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 619, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 39, 1, 0, 0, 0, 628, 629, 5, 107, 0, 0, 629, 630, 5, 48, 0, 0, 630, 631, 7, 8, 0, 0, 631, 41, 1, 0, 0, 0, 632, 634, 5, 50, 0, 0, 633, 635, 7, 2, 0, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 640, 5, 139, 0, 0, 637, 638, 5, 80, 0, 0, 638, 639, 5, 102, 0, 0, 639, 641, 5, 70, 0, 0, 640, 637, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 645, 1, 0, 0, 0, 642, 643, 3, 178, 89, 0, 643, 644, 5, 2, 0, 0, 644, 646, 1, 0, 0, 0, 645, 642, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 652, 3, 194, 97, 0, 648, 653, 5, 37, 0, 0, 649, 653, 5, 28, 0, 0, 650, 651, 5, 89, 0, 0, 651, 653, 5, 105, 0, 0, 652, 648, 1, 0, 0, 0, 652, 649, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 668, 1, 0, 0, 0, 654, 669, 5, 59, 0, 0, 655, 669, 5, 88, 0, 0, 656, 666, 5, 142, 0, 0, 657, 658, 5, 105, 0, 0, 658, 663, 3, 186, 93, 0, 659, 660, 5, 5, 0, 0, 660, 662, 3, 186, 93, 0, 661, 659, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 657, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 669, 1, 0, 0, 0, 668, 654, 1, 0, 0, 0, 668, 655, 1, 0, 0, 0, 668, 656, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 671, 5, 107, 0, 0, 671, 675, 3, 180, 90, 0, 672, 673, 5, 73, 0, 0, 673, 674, 5, 64, 0, 0, 674, 676, 5, 127, 0, 0, 675, 672, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 678, 5, 148, 0, 0, 678, 680, 3, 66, 33, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 690, 5, 38, 0, 0, 682, 687, 3, 104, 52, 0, 683, 687, 3, 72, 36, 0, 684, 687, 3, 58, 29, 0, 685, 687, 3, 82, 41, 0, 686, 682, 1, 0, 0, 0, 686, 683, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 5, 1, 0, 0, 689, 691, 1, 0, 0, 0, 690, 686, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 66, 0, 0, 695, 43, 1, 0, 0, 0, 696, 698, 5, 50, 0, 0, 697, 699, 7, 2, 0, 0, 698, 697, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 704, 5, 146, 0, 0, 701, 702, 5, 80, 0, 0, 702, 703, 5, 102, 0, 0, 703, 705, 5, 70, 0, 0, 704, 701, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 709, 1, 0, 0, 0, 706, 707, 3, 178, 89, 0, 707, 708, 5, 2, 0, 0, 708, 710, 1, 0, 0, 0, 709, 706, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 723, 3, 196, 98, 0, 712, 713, 5, 3, 0, 0, 713, 718, 3, 186, 93, 0, 714, 715, 5, 5, 0, 0, 715, 717, 3, 186, 93, 0, 716, 714, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 721, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 721, 722, 5, 4, 0, 0, 722, 724, 1, 0, 0, 0, 723, 712, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 5, 33, 0, 0, 726, 727, 3, 82, 41, 0, 727, 45, 1, 0, 0, 0, 728, 729, 5, 50, 0, 0, 729, 730, 5, 147, 0, 0, 730, 734, 5, 133, 0, 0, 731, 732, 5, 80, 0, 0, 732, 733, 5, 102, 0, 0, 733, 735, 5, 70, 0, 0, 734, 731, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 739, 1, 0, 0, 0, 736, 737, 3, 178, 89, 0, 737, 738, 5, 2, 0, 0, 738, 740, 1, 0, 0, 0, 739, 736, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 3, 180, 90, 0, 742, 743, 5, 143, 0, 0, 743, 755, 3, 198, 99, 0, 744, 745, 5, 3, 0, 0, 745, 750, 3, 168, 84, 0, 746, 747, 5, 5, 0, 0, 747, 749, 3, 168, 84, 0, 748, 746, 1, 0, 0, 0, 749, 752, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 753, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 753, 754, 5, 4, 0, 0, 754, 756, 1, 0, 0, 0, 755, 744, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 47, 1, 0, 0, 0, 757, 759, 5, 150, 0, 0, 758, 760, 5, 116, 0, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 3, 50, 25, 0, 762, 763, 5, 33, 0, 0, 763, 764, 5, 3, 0, 0, 764, 765, 3, 82, 41, 0, 765, 775, 5, 4, 0, 0, 766, 767, 5, 5, 0, 0, 767, 768, 3, 50, 25, 0, 768, 769, 5, 33, 0, 0, 769, 770, 5, 3, 0, 0, 770, 771, 3, 82, 41, 0, 771, 772, 5, 4, 0, 0, 772, 774, 1, 0, 0, 0, 773, 766, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 49, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 790, 3, 180, 90, 0, 779, 780, 5, 3, 0, 0, 780, 785, 3, 186, 93, 0, 781, 782, 5, 5, 0, 0, 782, 784, 3, 186, 93, 0, 783, 781, 1, 0, 0, 0, 784, 787, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 789, 5, 4, 0, 0, 789, 791, 1, 0, 0, 0, 790, 779, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 51, 1, 0, 0, 0, 792, 793, 3, 50, 25, 0, 793, 794, 5, 33, 0, 0, 794, 795, 5, 3, 0, 0, 795, 796, 3, 160, 80, 0, 796, 798, 5, 140, 0, 0, 797, 799, 5, 29, 0, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 3, 162, 81, 0, 801, 802, 5, 4, 0, 0, 802, 53, 1, 0, 0, 0, 803, 815, 3, 180, 90, 0, 804, 805, 5, 3, 0, 0, 805, 810, 3, 186, 93, 0, 806, 807, 5, 5, 0, 0, 807, 809, 3, 186, 93, 0, 808, 806, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 814, 5, 4, 0, 0, 814, 816, 1, 0, 0, 0, 815, 804, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 33, 0, 0, 818, 819, 5, 3, 0, 0, 819, 820, 3, 82, 41, 0, 820, 821, 5, 4, 0, 0, 821, 55, 1, 0, 0, 0, 822, 831, 5, 124, 0, 0, 823, 832, 5, 7, 0, 0, 824, 829, 3, 66, 33, 0, 825, 827, 5, 33, 0, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 830, 3, 170, 85, 0, 829, 826, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 832, 1, 0, 0, 0, 831, 823, 1, 0, 0, 0, 831, 824, 1, 0, 0, 0, 832, 846, 1, 0, 0, 0, 833, 842, 5, 5, 0, 0, 834, 843, 5, 7, 0, 0, 835, 840, 3, 66, 33, 0, 836, 838, 5, 33, 0, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 841, 3, 170, 85, 0, 840, 837, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, 1, 0, 0, 0, 842, 834, 1, 0, 0, 0, 842, 835, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 833, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 57, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 849, 851, 3, 48, 24, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 5, 59, 0, 0, 853, 854, 5, 75, 0, 0, 854, 857, 3, 110, 55, 0, 855, 856, 5, 149, 0, 0, 856, 858, 3, 66, 33, 0, 857, 855, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 1, 0, 0, 0, 859, 861, 3, 56, 28, 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 59, 1, 0, 0, 0, 862, 864, 3, 48, 24, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 5, 59, 0, 0, 866, 867, 5, 75, 0, 0, 867, 870, 3, 110, 55, 0, 868, 869, 5, 149, 0, 0, 869, 871, 3, 66, 33, 0, 870, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 876, 1, 0, 0, 0, 872, 874, 3, 132, 66, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 877, 3, 134, 67, 0, 876, 873, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 1, 0, 0, 0, 878, 880, 3, 56, 28, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 61, 1, 0, 0, 0, 881, 883, 5, 61, 0, 0, 882, 884, 5, 55, 0, 0, 883, 882, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 3, 178, 89, 0, 886, 63, 1, 0, 0, 0, 887, 888, 5, 63, 0, 0, 888, 891, 7, 9, 0, 0, 889, 890, 5, 80, 0, 0, 890, 892, 5, 70, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 896, 1, 0, 0, 0, 893, 894, 3, 178, 89, 0, 894, 895, 5, 2, 0, 0, 895, 897, 1, 0, 0, 0, 896, 893, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 3, 222, 111, 0, 899, 65, 1, 0, 0, 0, 900, 901, 6, 33, -1, 0, 901, 989, 3, 70, 35, 0, 902, 989, 5, 188, 0, 0, 903, 904, 3, 178, 89, 0, 904, 905, 5, 2, 0, 0, 905, 907, 1, 0, 0, 0, 906, 903, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 909, 3, 180, 90, 0, 909, 910, 5, 2, 0, 0, 910, 912, 1, 0, 0, 0, 911, 906, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 989, 3, 186, 93, 0, 914, 915, 3, 164, 82, 0, 915, 916, 3, 66, 33, 20, 916, 989, 1, 0, 0, 0, 917, 918, 3, 176, 88, 0, 918, 931, 5, 3, 0, 0, 919, 921, 5, 62, 0, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 927, 3, 66, 33, 0, 923, 924, 5, 5, 0, 0, 924, 926, 3, 66, 33, 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 932, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 932, 5, 7, 0, 0, 931, 920, 1, 0, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 5, 4, 0, 0, 934, 936, 3, 114, 57, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 939, 3, 118, 59, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 989, 1, 0, 0, 0, 940, 941, 5, 3, 0, 0, 941, 946, 3, 66, 33, 0, 942, 943, 5, 5, 0, 0, 943, 945, 3, 66, 33, 0, 944, 942, 1, 0, 0, 0, 945, 948, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 949, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 949, 950, 5, 4, 0, 0, 950, 989, 1, 0, 0, 0, 951, 952, 5, 43, 0, 0, 952, 953, 5, 3, 0, 0, 953, 954, 3, 66, 33, 0, 954, 955, 5, 33, 0, 0, 955, 956, 3, 30, 15, 0, 956, 957, 5, 4, 0, 0, 957, 989, 1, 0, 0, 0, 958, 960, 5, 102, 0, 0, 959, 958, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 963, 5, 70, 0, 0, 962, 959, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 5, 3, 0, 0, 965, 966, 3, 82, 41, 0, 966, 967, 5, 4, 0, 0, 967, 989, 1, 0, 0, 0, 968, 970, 5, 42, 0, 0, 969, 971, 3, 66, 33, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 977, 1, 0, 0, 0, 972, 973, 5, 148, 0, 0, 973, 974, 3, 66, 33, 0, 974, 975, 5, 136, 0, 0, 975, 976, 3, 66, 33, 0, 976, 978, 1, 0, 0, 0, 977, 972, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 977, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 983, 1, 0, 0, 0, 981, 982, 5, 65, 0, 0, 982, 984, 3, 66, 33, 0, 983, 981, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 986, 5, 66, 0, 0, 986, 989, 1, 0, 0, 0, 987, 989, 3, 68, 34, 0, 988, 900, 1, 0, 0, 0, 988, 902, 1, 0, 0, 0, 988, 911, 1, 0, 0, 0, 988, 914, 1, 0, 0, 0, 988, 917, 1, 0, 0, 0, 988, 940, 1, 0, 0, 0, 988, 951, 1, 0, 0, 0, 988, 962, 1, 0, 0, 0, 988, 968, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 1103, 1, 0, 0, 0, 990, 991, 10, 19, 0, 0, 991, 992, 5, 11, 0, 0, 992, 1102, 3, 66, 33, 20, 993, 994, 10, 18, 0, 0, 994, 995, 7, 10, 0, 0, 995, 1102, 3, 66, 33, 19, 996, 997, 10, 17, 0, 0, 997, 998, 7, 4, 0, 0, 998, 1102, 3, 66, 33, 18, 999, 1000, 10, 16, 0, 0, 1000, 1001, 7, 11, 0, 0, 1001, 1102, 3, 66, 33, 17, 1002, 1003, 10, 15, 0, 0, 1003, 1004, 7, 12, 0, 0, 1004, 1102, 3, 66, 33, 16, 1005, 1018, 10, 14, 0, 0, 1006, 1019, 5, 6, 0, 0, 1007, 1019, 5, 22, 0, 0, 1008, 1019, 5, 23, 0, 0, 1009, 1019, 5, 24, 0, 0, 1010, 1019, 5, 92, 0, 0, 1011, 1012, 5, 92, 0, 0, 1012, 1019, 5, 102, 0, 0, 1013, 1019, 5, 83, 0, 0, 1014, 1019, 5, 97, 0, 0, 1015, 1019, 5, 77, 0, 0, 1016, 1019, 5, 99, 0, 0, 1017, 1019, 5, 118, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1007, 1, 0, 0, 0, 1018, 1008, 1, 0, 0, 0, 1018, 1009, 1, 0, 0, 0, 1018, 1010, 1, 0, 0, 0, 1018, 1011, 1, 0, 0, 0, 1018, 1013, 1, 0, 0, 0, 1018, 1014, 1, 0, 0, 0, 1018, 1015, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1017, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1102, 3, 66, 33, 15, 1021, 1022, 10, 13, 0, 0, 1022, 1023, 5, 32, 0, 0, 1023, 1102, 3, 66, 33, 14, 1024, 1025, 10, 12, 0, 0, 1025, 1026, 5, 108, 0, 0, 1026, 1102, 3, 66, 33, 13, 1027, 1029, 10, 5, 0, 0, 1028, 1030, 5, 102, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 5, 39, 0, 0, 1032, 1033, 3, 66, 33, 0, 1033, 1034, 5, 32, 0, 0, 1034, 1035, 3, 66, 33, 6, 1035, 1102, 1, 0, 0, 0, 1036, 1037, 10, 8, 0, 0, 1037, 1038, 5, 45, 0, 0, 1038, 1102, 3, 188, 94, 0, 1039, 1041, 10, 7, 0, 0, 1040, 1042, 5, 102, 0, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 7, 13, 0, 0, 1044, 1047, 3, 66, 33, 0, 1045, 1046, 5, 67, 0, 0, 1046, 1048, 3, 66, 33, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1102, 1, 0, 0, 0, 1049, 1054, 10, 6, 0, 0, 1050, 1055, 5, 93, 0, 0, 1051, 1055, 5, 103, 0, 0, 1052, 1053, 5, 102, 0, 0, 1053, 1055, 5, 104, 0, 0, 1054, 1050, 1, 0, 0, 0, 1054, 1051, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1055, 1102, 1, 0, 0, 0, 1056, 1058, 10, 4, 0, 0, 1057, 1059, 5, 102, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1099, 5, 83, 0, 0, 1061, 1071, 5, 3, 0, 0, 1062, 1072, 3, 82, 41, 0, 1063, 1068, 3, 66, 33, 0, 1064, 1065, 5, 5, 0, 0, 1065, 1067, 3, 66, 33, 0, 1066, 1064, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1072, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1071, 1062, 1, 0, 0, 0, 1071, 1063, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1100, 5, 4, 0, 0, 1074, 1075, 3, 178, 89, 0, 1075, 1076, 5, 2, 0, 0, 1076, 1078, 1, 0, 0, 0, 1077, 1074, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1100, 3, 180, 90, 0, 1080, 1081, 3, 178, 89, 0, 1081, 1082, 5, 2, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1080, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 3, 220, 110, 0, 1086, 1095, 5, 3, 0, 0, 1087, 1092, 3, 66, 33, 0, 1088, 1089, 5, 5, 0, 0, 1089, 1091, 3, 66, 33, 0, 1090, 1088, 1, 0, 0, 0, 1091, 1094, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1096, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1087, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 5, 4, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1061, 1, 0, 0, 0, 1099, 1077, 1, 0, 0, 0, 1099, 1083, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, 990, 1, 0, 0, 0, 1101, 993, 1, 0, 0, 0, 1101, 996, 1, 0, 0, 0, 1101, 999, 1, 0, 0, 0, 1101, 1002, 1, 0, 0, 0, 1101, 1005, 1, 0, 0, 0, 1101, 1021, 1, 0, 0, 0, 1101, 1024, 1, 0, 0, 0, 1101, 1027, 1, 0, 0, 0, 1101, 1036, 1, 0, 0, 0, 1101, 1039, 1, 0, 0, 0, 1101, 1049, 1, 0, 0, 0, 1101, 1056, 1, 0, 0, 0, 1102, 1105, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 67, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1106, 1107, 5, 115, 0, 0, 1107, 1112, 5, 3, 0, 0, 1108, 1113, 5, 81, 0, 0, 1109, 1110, 7, 14, 0, 0, 1110, 1111, 5, 5, 0, 0, 1111, 1113, 3, 166, 83, 0, 1112, 1108, 1, 0, 0, 0, 1112, 1109, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1115, 5, 4, 0, 0, 1115, 69, 1, 0, 0, 0, 1116, 1117, 7, 15, 0, 0, 1117, 71, 1, 0, 0, 0, 1118, 1120, 3, 48, 24, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1126, 1, 0, 0, 0, 1121, 1127, 5, 88, 0, 0, 1122, 1127, 5, 122, 0, 0, 1123, 1124, 5, 88, 0, 0, 1124, 1125, 5, 108, 0, 0, 1125, 1127, 7, 8, 0, 0, 1126, 1121, 1, 0, 0, 0, 1126, 1122, 1, 0, 0, 0, 1126, 1123, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1132, 5, 91, 0, 0, 1129, 1130, 3, 178, 89, 0, 1130, 1131, 5, 2, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, 1129, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 3, 180, 90, 0, 1135, 1136, 5, 33, 0, 0, 1136, 1138, 3, 204, 102, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1150, 1, 0, 0, 0, 1139, 1140, 5, 3, 0, 0, 1140, 1145, 3, 186, 93, 0, 1141, 1142, 5, 5, 0, 0, 1142, 1144, 3, 186, 93, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1147, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1149, 5, 4, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1139, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1181, 1, 0, 0, 0, 1152, 1153, 5, 145, 0, 0, 1153, 1154, 5, 3, 0, 0, 1154, 1159, 3, 66, 33, 0, 1155, 1156, 5, 5, 0, 0, 1156, 1158, 3, 66, 33, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1161, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1162, 1177, 5, 4, 0, 0, 1163, 1164, 5, 5, 0, 0, 1164, 1165, 5, 3, 0, 0, 1165, 1170, 3, 66, 33, 0, 1166, 1167, 5, 5, 0, 0, 1167, 1169, 3, 66, 33, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1172, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1174, 5, 4, 0, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1163, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1182, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1182, 3, 82, 41, 0, 1181, 1152, 1, 0, 0, 0, 1181, 1180, 1, 0, 0, 0, 1182, 1184, 1, 0, 0, 0, 1183, 1185, 3, 74, 37, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 3, 56, 28, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1192, 1, 0, 0, 0, 1189, 1190, 5, 56, 0, 0, 1190, 1192, 5, 145, 0, 0, 1191, 1119, 1, 0, 0, 0, 1191, 1189, 1, 0, 0, 0, 1192, 73, 1, 0, 0, 0, 1193, 1194, 5, 107, 0, 0, 1194, 1209, 5, 48, 0, 0, 1195, 1196, 5, 3, 0, 0, 1196, 1201, 3, 24, 12, 0, 1197, 1198, 5, 5, 0, 0, 1198, 1200, 3, 24, 12, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1204, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 5, 4, 0, 0, 1205, 1206, 5, 149, 0, 0, 1206, 1208, 3, 66, 33, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1210, 1, 0, 0, 0, 1209, 1195, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1238, 5, 184, 0, 0, 1212, 1239, 5, 185, 0, 0, 1213, 1214, 5, 142, 0, 0, 1214, 1217, 5, 131, 0, 0, 1215, 1218, 3, 186, 93, 0, 1216, 1218, 3, 106, 53, 0, 1217, 1215, 1, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 5, 6, 0, 0, 1220, 1231, 3, 66, 33, 0, 1221, 1224, 5, 5, 0, 0, 1222, 1225, 3, 186, 93, 0, 1223, 1225, 3, 106, 53, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 5, 6, 0, 0, 1227, 1228, 3, 66, 33, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1221, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1236, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1235, 5, 149, 0, 0, 1235, 1237, 3, 66, 33, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1239, 1, 0, 0, 0, 1238, 1212, 1, 0, 0, 0, 1238, 1213, 1, 0, 0, 0, 1239, 75, 1, 0, 0, 0, 1240, 1244, 5, 112, 0, 0, 1241, 1242, 3, 178, 89, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1241, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1253, 3, 200, 100, 0, 1247, 1248, 5, 6, 0, 0, 1248, 1254, 3, 78, 39, 0, 1249, 1250, 5, 3, 0, 0, 1250, 1251, 3, 78, 39, 0, 1251, 1252, 5, 4, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1247, 1, 0, 0, 0, 1253, 1249, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 77, 1, 0, 0, 0, 1255, 1259, 3, 34, 17, 0, 1256, 1259, 3, 174, 87, 0, 1257, 1259, 5, 189, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1258, 1257, 1, 0, 0, 0, 1259, 79, 1, 0, 0, 0, 1260, 1271, 5, 119, 0, 0, 1261, 1272, 3, 188, 94, 0, 1262, 1263, 3, 178, 89, 0, 1263, 1264, 5, 2, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1262, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1270, 3, 180, 90, 0, 1268, 1270, 3, 192, 96, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1261, 1, 0, 0, 0, 1271, 1265, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 81, 1, 0, 0, 0, 1273, 1275, 3, 130, 65, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1282, 3, 86, 43, 0, 1277, 1278, 3, 102, 51, 0, 1278, 1279, 3, 86, 43, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1277, 1, 0, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1287, 3, 132, 66, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 3, 134, 67, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 83, 1, 0, 0, 0, 1291, 1299, 3, 94, 47, 0, 1292, 1293, 3, 98, 49, 0, 1293, 1295, 3, 94, 47, 0, 1294, 1296, 3, 100, 50, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1292, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 85, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1304, 5, 130, 0, 0, 1303, 1305, 7, 16, 0, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1311, 3, 96, 48, 0, 1307, 1308, 5, 5, 0, 0, 1308, 1310, 3, 96, 48, 0, 1309, 1307, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1326, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1324, 5, 75, 0, 0, 1315, 1320, 3, 94, 47, 0, 1316, 1317, 5, 5, 0, 0, 1317, 1319, 3, 94, 47, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1325, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1325, 3, 84, 42, 0, 1324, 1315, 1, 0, 0, 0, 1324, 1323, 1, 0, 0, 0, 1325, 1327, 1, 0, 0, 0, 1326, 1314, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1330, 1, 0, 0, 0, 1328, 1329, 5, 149, 0, 0, 1329, 1331, 3, 66, 33, 0, 1330, 1328, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1346, 1, 0, 0, 0, 1332, 1333, 5, 78, 0, 0, 1333, 1334, 5, 40, 0, 0, 1334, 1339, 3, 66, 33, 0, 1335, 1336, 5, 5, 0, 0, 1336, 1338, 3, 66, 33, 0, 1337, 1335, 1, 0, 0, 0, 1338, 1341, 1, 0, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1344, 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1342, 1343, 5, 79, 0, 0, 1343, 1345, 3, 66, 33, 0, 1344, 1342, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, 1, 0, 0, 0, 1346, 1332, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1362, 1, 0, 0, 0, 1348, 1349, 5, 175, 0, 0, 1349, 1350, 3, 208, 104, 0, 1350, 1351, 5, 33, 0, 0, 1351, 1359, 3, 116, 58, 0, 1352, 1353, 5, 5, 0, 0, 1353, 1354, 3, 208, 104, 0, 1354, 1355, 5, 33, 0, 0, 1355, 1356, 3, 116, 58, 0, 1356, 1358, 1, 0, 0, 0, 1357, 1352, 1, 0, 0, 0, 1358, 1361, 1, 0, 0, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1363, 1, 0, 0, 0, 1361, 1359, 1, 0, 0, 0, 1362, 1348, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1393, 1, 0, 0, 0, 1364, 1365, 5, 145, 0, 0, 1365, 1366, 5, 3, 0, 0, 1366, 1371, 3, 66, 33, 0, 1367, 1368, 5, 5, 0, 0, 1368, 1370, 3, 66, 33, 0, 1369, 1367, 1, 0, 0, 0, 1370, 1373, 1, 0, 0, 0, 1371, 1369, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 1, 0, 0, 0, 1373, 1371, 1, 0, 0, 0, 1374, 1389, 5, 4, 0, 0, 1375, 1376, 5, 5, 0, 0, 1376, 1377, 5, 3, 0, 0, 1377, 1382, 3, 66, 33, 0, 1378, 1379, 5, 5, 0, 0, 1379, 1381, 3, 66, 33, 0, 1380, 1378, 1, 0, 0, 0, 1381, 1384, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1385, 1386, 5, 4, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1375, 1, 0, 0, 0, 1388, 1391, 1, 0, 0, 0, 1389, 1387, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1393, 1, 0, 0, 0, 1391, 1389, 1, 0, 0, 0, 1392, 1302, 1, 0, 0, 0, 1392, 1364, 1, 0, 0, 0, 1393, 87, 1, 0, 0, 0, 1394, 1395, 3, 82, 41, 0, 1395, 89, 1, 0, 0, 0, 1396, 1398, 3, 130, 65, 0, 1397, 1396, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, 3, 86, 43, 0, 1400, 1402, 3, 132, 66, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1404, 1, 0, 0, 0, 1403, 1405, 3, 134, 67, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 91, 1, 0, 0, 0, 1406, 1408, 3, 130, 65, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1419, 3, 86, 43, 0, 1410, 1412, 5, 140, 0, 0, 1411, 1413, 5, 29, 0, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1417, 1, 0, 0, 0, 1414, 1417, 5, 90, 0, 0, 1415, 1417, 5, 68, 0, 0, 1416, 1410, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 3, 86, 43, 0, 1419, 1416, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 3, 132, 66, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 93, 1, 0, 0, 0, 1429, 1430, 3, 178, 89, 0, 1430, 1431, 5, 2, 0, 0, 1431, 1433, 1, 0, 0, 0, 1432, 1429, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1439, 3, 180, 90, 0, 1435, 1437, 5, 33, 0, 0, 1436, 1435, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 3, 204, 102, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1446, 1, 0, 0, 0, 1441, 1442, 5, 85, 0, 0, 1442, 1443, 5, 40, 0, 0, 1443, 1447, 3, 192, 96, 0, 1444, 1445, 5, 102, 0, 0, 1445, 1447, 5, 85, 0, 0, 1446, 1441, 1, 0, 0, 0, 1446, 1444, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1494, 1, 0, 0, 0, 1448, 1449, 3, 178, 89, 0, 1449, 1450, 5, 2, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1448, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 3, 220, 110, 0, 1454, 1455, 5, 3, 0, 0, 1455, 1460, 3, 66, 33, 0, 1456, 1457, 5, 5, 0, 0, 1457, 1459, 3, 66, 33, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1462, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1463, 1, 0, 0, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1468, 5, 4, 0, 0, 1464, 1466, 5, 33, 0, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1469, 3, 204, 102, 0, 1468, 1465, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1494, 1, 0, 0, 0, 1470, 1480, 5, 3, 0, 0, 1471, 1476, 3, 94, 47, 0, 1472, 1473, 5, 5, 0, 0, 1473, 1475, 3, 94, 47, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1478, 1, 0, 0, 0, 1476, 1474, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1481, 1, 0, 0, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1481, 3, 84, 42, 0, 1480, 1471, 1, 0, 0, 0, 1480, 1479, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 4, 0, 0, 1483, 1494, 1, 0, 0, 0, 1484, 1485, 5, 3, 0, 0, 1485, 1486, 3, 82, 41, 0, 1486, 1491, 5, 4, 0, 0, 1487, 1489, 5, 33, 0, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 3, 204, 102, 0, 1491, 1488, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1432, 1, 0, 0, 0, 1493, 1451, 1, 0, 0, 0, 1493, 1470, 1, 0, 0, 0, 1493, 1484, 1, 0, 0, 0, 1494, 95, 1, 0, 0, 0, 1495, 1508, 5, 7, 0, 0, 1496, 1497, 3, 180, 90, 0, 1497, 1498, 5, 2, 0, 0, 1498, 1499, 5, 7, 0, 0, 1499, 1508, 1, 0, 0, 0, 1500, 1505, 3, 66, 33, 0, 1501, 1503, 5, 33, 0, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1506, 3, 170, 85, 0, 1505, 1502, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1495, 1, 0, 0, 0, 1507, 1496, 1, 0, 0, 0, 1507, 1500, 1, 0, 0, 0, 1508, 97, 1, 0, 0, 0, 1509, 1523, 5, 5, 0, 0, 1510, 1512, 5, 100, 0, 0, 1511, 1510, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1519, 1, 0, 0, 0, 1513, 1515, 5, 96, 0, 0, 1514, 1516, 5, 110, 0, 0, 1515, 1514, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1520, 1, 0, 0, 0, 1517, 1520, 5, 87, 0, 0, 1518, 1520, 5, 51, 0, 0, 1519, 1513, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1523, 5, 94, 0, 0, 1522, 1509, 1, 0, 0, 0, 1522, 1511, 1, 0, 0, 0, 1523, 99, 1, 0, 0, 0, 1524, 1525, 5, 107, 0, 0, 1525, 1539, 3, 66, 33, 0, 1526, 1527, 5, 143, 0, 0, 1527, 1528, 5, 3, 0, 0, 1528, 1533, 3, 186, 93, 0, 1529, 1530, 5, 5, 0, 0, 1530, 1532, 3, 186, 93, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1535, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1536, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1536, 1537, 5, 4, 0, 0, 1537, 1539, 1, 0, 0, 0, 1538, 1524, 1, 0, 0, 0, 1538, 1526, 1, 0, 0, 0, 1539, 101, 1, 0, 0, 0, 1540, 1542, 5, 140, 0, 0, 1541, 1543, 5, 29, 0, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1547, 1, 0, 0, 0, 1544, 1547, 5, 90, 0, 0, 1545, 1547, 5, 68, 0, 0, 1546, 1540, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1546, 1545, 1, 0, 0, 0, 1547, 103, 1, 0, 0, 0, 1548, 1550, 3, 48, 24, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 5, 142, 0, 0, 1552, 1553, 5, 108, 0, 0, 1553, 1555, 7, 8, 0, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 3, 110, 55, 0, 1557, 1560, 5, 131, 0, 0, 1558, 1561, 3, 186, 93, 0, 1559, 1561, 3, 106, 53, 0, 1560, 1558, 1, 0, 0, 0, 1560, 1559, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 5, 6, 0, 0, 1563, 1574, 3, 66, 33, 0, 1564, 1567, 5, 5, 0, 0, 1565, 1568, 3, 186, 93, 0, 1566, 1568, 3, 106, 53, 0, 1567, 1565, 1, 0, 0, 0, 1567, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 6, 0, 0, 1570, 1571, 3, 66, 33, 0, 1571, 1573, 1, 0, 0, 0, 1572, 1564, 1, 0, 0, 0, 1573, 1576, 1, 0, 0, 0, 1574, 1572, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1579, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1577, 1578, 5, 149, 0, 0, 1578, 1580, 3, 66, 33, 0, 1579, 1577, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1582, 1, 0, 0, 0, 1581, 1583, 3, 56, 28, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 105, 1, 0, 0, 0, 1584, 1585, 5, 3, 0, 0, 1585, 1590, 3, 186, 93, 0, 1586, 1587, 5, 5, 0, 0, 1587, 1589, 3, 186, 93, 0, 1588, 1586, 1, 0, 0, 0, 1589, 1592, 1, 0, 0, 0, 1590, 1588, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1590, 1, 0, 0, 0, 1593, 1594, 5, 4, 0, 0, 1594, 107, 1, 0, 0, 0, 1595, 1597, 3, 48, 24, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1601, 5, 142, 0, 0, 1599, 1600, 5, 108, 0, 0, 1600, 1602, 7, 8, 0, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 3, 110, 55, 0, 1604, 1607, 5, 131, 0, 0, 1605, 1608, 3, 186, 93, 0, 1606, 1608, 3, 106, 53, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 5, 6, 0, 0, 1610, 1621, 3, 66, 33, 0, 1611, 1614, 5, 5, 0, 0, 1612, 1615, 3, 186, 93, 0, 1613, 1615, 3, 106, 53, 0, 1614, 1612, 1, 0, 0, 0, 1614, 1613, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 5, 6, 0, 0, 1617, 1618, 3, 66, 33, 0, 1618, 1620, 1, 0, 0, 0, 1619, 1611, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1626, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1625, 5, 149, 0, 0, 1625, 1627, 3, 66, 33, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1632, 1, 0, 0, 0, 1628, 1630, 3, 132, 66, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 3, 134, 67, 0, 1632, 1629, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 109, 1, 0, 0, 0, 1634, 1635, 3, 178, 89, 0, 1635, 1636, 5, 2, 0, 0, 1636, 1638, 1, 0, 0, 0, 1637, 1634, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1642, 3, 180, 90, 0, 1640, 1641, 5, 33, 0, 0, 1641, 1643, 3, 210, 105, 0, 1642, 1640, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1649, 1, 0, 0, 0, 1644, 1645, 5, 85, 0, 0, 1645, 1646, 5, 40, 0, 0, 1646, 1650, 3, 192, 96, 0, 1647, 1648, 5, 102, 0, 0, 1648, 1650, 5, 85, 0, 0, 1649, 1644, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 111, 1, 0, 0, 0, 1651, 1653, 5, 144, 0, 0, 1652, 1654, 3, 178, 89, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1656, 5, 91, 0, 0, 1656, 1658, 3, 212, 106, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 113, 1, 0, 0, 0, 1659, 1660, 5, 179, 0, 0, 1660, 1661, 5, 3, 0, 0, 1661, 1662, 5, 149, 0, 0, 1662, 1663, 3, 66, 33, 0, 1663, 1664, 5, 4, 0, 0, 1664, 115, 1, 0, 0, 0, 1665, 1667, 5, 3, 0, 0, 1666, 1668, 3, 214, 107, 0, 1667, 1666, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1679, 1, 0, 0, 0, 1669, 1670, 5, 154, 0, 0, 1670, 1671, 5, 40, 0, 0, 1671, 1676, 3, 66, 33, 0, 1672, 1673, 5, 5, 0, 0, 1673, 1675, 3, 66, 33, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1680, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1669, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 5, 109, 0, 0, 1682, 1683, 5, 40, 0, 0, 1683, 1688, 3, 136, 68, 0, 1684, 1685, 5, 5, 0, 0, 1685, 1687, 3, 136, 68, 0, 1686, 1684, 1, 0, 0, 0, 1687, 1690, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1692, 1, 0, 0, 0, 1690, 1688, 1, 0, 0, 0, 1691, 1693, 3, 120, 60, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 5, 4, 0, 0, 1695, 117, 1, 0, 0, 0, 1696, 1730, 5, 153, 0, 0, 1697, 1731, 3, 208, 104, 0, 1698, 1700, 5, 3, 0, 0, 1699, 1701, 3, 214, 107, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1712, 1, 0, 0, 0, 1702, 1703, 5, 154, 0, 0, 1703, 1704, 5, 40, 0, 0, 1704, 1709, 3, 66, 33, 0, 1705, 1706, 5, 5, 0, 0, 1706, 1708, 3, 66, 33, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1713, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1702, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1724, 1, 0, 0, 0, 1714, 1715, 5, 109, 0, 0, 1715, 1716, 5, 40, 0, 0, 1716, 1721, 3, 136, 68, 0, 1717, 1718, 5, 5, 0, 0, 1718, 1720, 3, 136, 68, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1723, 1, 0, 0, 0, 1721, 1719, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1725, 1, 0, 0, 0, 1723, 1721, 1, 0, 0, 0, 1724, 1714, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1727, 1, 0, 0, 0, 1726, 1728, 3, 120, 60, 0, 1727, 1726, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1731, 5, 4, 0, 0, 1730, 1697, 1, 0, 0, 0, 1730, 1698, 1, 0, 0, 0, 1731, 119, 1, 0, 0, 0, 1732, 1740, 3, 122, 61, 0, 1733, 1734, 5, 181, 0, 0, 1734, 1735, 5, 101, 0, 0, 1735, 1741, 5, 183, 0, 0, 1736, 1737, 5, 158, 0, 0, 1737, 1741, 5, 127, 0, 0, 1738, 1741, 5, 78, 0, 0, 1739, 1741, 5, 182, 0, 0, 1740, 1733, 1, 0, 0, 0, 1740, 1736, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 121, 1, 0, 0, 0, 1742, 1749, 7, 17, 0, 0, 1743, 1750, 3, 144, 72, 0, 1744, 1745, 5, 39, 0, 0, 1745, 1746, 3, 140, 70, 0, 1746, 1747, 5, 32, 0, 0, 1747, 1748, 3, 142, 71, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1743, 1, 0, 0, 0, 1749, 1744, 1, 0, 0, 0, 1750, 123, 1, 0, 0, 0, 1751, 1752, 3, 216, 108, 0, 1752, 1762, 5, 3, 0, 0, 1753, 1758, 3, 66, 33, 0, 1754, 1755, 5, 5, 0, 0, 1755, 1757, 3, 66, 33, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1760, 1, 0, 0, 0, 1758, 1756, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1763, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1763, 5, 7, 0, 0, 1762, 1753, 1, 0, 0, 0, 1762, 1761, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 5, 4, 0, 0, 1765, 125, 1, 0, 0, 0, 1766, 1767, 3, 218, 109, 0, 1767, 1780, 5, 3, 0, 0, 1768, 1770, 5, 62, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1776, 3, 66, 33, 0, 1772, 1773, 5, 5, 0, 0, 1773, 1775, 3, 66, 33, 0, 1774, 1772, 1, 0, 0, 0, 1775, 1778, 1, 0, 0, 0, 1776, 1774, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1781, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1781, 5, 7, 0, 0, 1780, 1769, 1, 0, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1784, 5, 4, 0, 0, 1783, 1785, 3, 114, 57, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 127, 1, 0, 0, 0, 1786, 1787, 3, 146, 73, 0, 1787, 1797, 5, 3, 0, 0, 1788, 1793, 3, 66, 33, 0, 1789, 1790, 5, 5, 0, 0, 1790, 1792, 3, 66, 33, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1798, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1798, 5, 7, 0, 0, 1797, 1788, 1, 0, 0, 0, 1797, 1796, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, 5, 4, 0, 0, 1800, 1802, 3, 114, 57, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1806, 5, 153, 0, 0, 1804, 1807, 3, 116, 58, 0, 1805, 1807, 3, 208, 104, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1805, 1, 0, 0, 0, 1807, 129, 1, 0, 0, 0, 1808, 1810, 5, 150, 0, 0, 1809, 1811, 5, 116, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1817, 3, 54, 27, 0, 1813, 1814, 5, 5, 0, 0, 1814, 1816, 3, 54, 27, 0, 1815, 1813, 1, 0, 0, 0, 1816, 1819, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 131, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 1821, 5, 109, 0, 0, 1821, 1822, 5, 40, 0, 0, 1822, 1827, 3, 136, 68, 0, 1823, 1824, 5, 5, 0, 0, 1824, 1826, 3, 136, 68, 0, 1825, 1823, 1, 0, 0, 0, 1826, 1829, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 133, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1831, 5, 98, 0, 0, 1831, 1834, 3, 66, 33, 0, 1832, 1833, 7, 18, 0, 0, 1833, 1835, 3, 66, 33, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 135, 1, 0, 0, 0, 1836, 1839, 3, 66, 33, 0, 1837, 1838, 5, 45, 0, 0, 1838, 1840, 3, 188, 94, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1843, 3, 138, 69, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1845, 5, 176, 0, 0, 1845, 1847, 7, 19, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 137, 1, 0, 0, 0, 1848, 1849, 7, 20, 0, 0, 1849, 139, 1, 0, 0, 0, 1850, 1851, 3, 66, 33, 0, 1851, 1852, 5, 156, 0, 0, 1852, 1861, 1, 0, 0, 0, 1853, 1854, 3, 66, 33, 0, 1854, 1855, 5, 159, 0, 0, 1855, 1861, 1, 0, 0, 0, 1856, 1857, 5, 158, 0, 0, 1857, 1861, 5, 127, 0, 0, 1858, 1859, 5, 157, 0, 0, 1859, 1861, 5, 156, 0, 0, 1860, 1850, 1, 0, 0, 0, 1860, 1853, 1, 0, 0, 0, 1860, 1856, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1861, 141, 1, 0, 0, 0, 1862, 1863, 3, 66, 33, 0, 1863, 1864, 5, 156, 0, 0, 1864, 1873, 1, 0, 0, 0, 1865, 1866, 3, 66, 33, 0, 1866, 1867, 5, 159, 0, 0, 1867, 1873, 1, 0, 0, 0, 1868, 1869, 5, 158, 0, 0, 1869, 1873, 5, 127, 0, 0, 1870, 1871, 5, 157, 0, 0, 1871, 1873, 5, 159, 0, 0, 1872, 1862, 1, 0, 0, 0, 1872, 1865, 1, 0, 0, 0, 1872, 1868, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1873, 143, 1, 0, 0, 0, 1874, 1875, 3, 66, 33, 0, 1875, 1876, 5, 156, 0, 0, 1876, 1882, 1, 0, 0, 0, 1877, 1878, 5, 157, 0, 0, 1878, 1882, 5, 156, 0, 0, 1879, 1880, 5, 158, 0, 0, 1880, 1882, 5, 127, 0, 0, 1881, 1874, 1, 0, 0, 0, 1881, 1877, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 145, 1, 0, 0, 0, 1883, 1884, 7, 21, 0, 0, 1884, 1885, 5, 3, 0, 0, 1885, 1886, 3, 66, 33, 0, 1886, 1887, 5, 4, 0, 0, 1887, 1888, 5, 153, 0, 0, 1888, 1890, 5, 3, 0, 0, 1889, 1891, 3, 152, 76, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1894, 3, 156, 78, 0, 1893, 1895, 3, 122, 61, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 5, 4, 0, 0, 1897, 1969, 1, 0, 0, 0, 1898, 1899, 7, 22, 0, 0, 1899, 1900, 5, 3, 0, 0, 1900, 1901, 5, 4, 0, 0, 1901, 1902, 5, 153, 0, 0, 1902, 1904, 5, 3, 0, 0, 1903, 1905, 3, 152, 76, 0, 1904, 1903, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1907, 1, 0, 0, 0, 1906, 1908, 3, 154, 77, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1969, 5, 4, 0, 0, 1910, 1911, 7, 23, 0, 0, 1911, 1912, 5, 3, 0, 0, 1912, 1913, 5, 4, 0, 0, 1913, 1914, 5, 153, 0, 0, 1914, 1916, 5, 3, 0, 0, 1915, 1917, 3, 152, 76, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 3, 156, 78, 0, 1919, 1920, 5, 4, 0, 0, 1920, 1969, 1, 0, 0, 0, 1921, 1922, 7, 24, 0, 0, 1922, 1923, 5, 3, 0, 0, 1923, 1925, 3, 66, 33, 0, 1924, 1926, 3, 148, 74, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1928, 1, 0, 0, 0, 1927, 1929, 3, 150, 75, 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 5, 4, 0, 0, 1931, 1932, 5, 153, 0, 0, 1932, 1934, 5, 3, 0, 0, 1933, 1935, 3, 152, 76, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 3, 156, 78, 0, 1937, 1938, 5, 4, 0, 0, 1938, 1969, 1, 0, 0, 0, 1939, 1940, 5, 165, 0, 0, 1940, 1941, 5, 3, 0, 0, 1941, 1942, 3, 66, 33, 0, 1942, 1943, 5, 5, 0, 0, 1943, 1944, 3, 34, 17, 0, 1944, 1945, 5, 4, 0, 0, 1945, 1946, 5, 153, 0, 0, 1946, 1948, 5, 3, 0, 0, 1947, 1949, 3, 152, 76, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1952, 3, 156, 78, 0, 1951, 1953, 3, 122, 61, 0, 1952, 1951, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 5, 4, 0, 0, 1955, 1969, 1, 0, 0, 0, 1956, 1957, 5, 166, 0, 0, 1957, 1958, 5, 3, 0, 0, 1958, 1959, 3, 66, 33, 0, 1959, 1960, 5, 4, 0, 0, 1960, 1961, 5, 153, 0, 0, 1961, 1963, 5, 3, 0, 0, 1962, 1964, 3, 152, 76, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 3, 156, 78, 0, 1966, 1967, 5, 4, 0, 0, 1967, 1969, 1, 0, 0, 0, 1968, 1883, 1, 0, 0, 0, 1968, 1898, 1, 0, 0, 0, 1968, 1910, 1, 0, 0, 0, 1968, 1921, 1, 0, 0, 0, 1968, 1939, 1, 0, 0, 0, 1968, 1956, 1, 0, 0, 0, 1969, 147, 1, 0, 0, 0, 1970, 1971, 5, 5, 0, 0, 1971, 1972, 3, 34, 17, 0, 1972, 149, 1, 0, 0, 0, 1973, 1974, 5, 5, 0, 0, 1974, 1975, 3, 34, 17, 0, 1975, 151, 1, 0, 0, 0, 1976, 1977, 5, 154, 0, 0, 1977, 1979, 5, 40, 0, 0, 1978, 1980, 3, 66, 33, 0, 1979, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 153, 1, 0, 0, 0, 1983, 1984, 5, 109, 0, 0, 1984, 1986, 5, 40, 0, 0, 1985, 1987, 3, 66, 33, 0, 1986, 1985, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 155, 1, 0, 0, 0, 1990, 1991, 5, 109, 0, 0, 1991, 1992, 5, 40, 0, 0, 1992, 1993, 3, 156, 78, 0, 1993, 157, 1, 0, 0, 0, 1994, 1996, 3, 66, 33, 0, 1995, 1997, 3, 138, 69, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2005, 1, 0, 0, 0, 1998, 1999, 5, 5, 0, 0, 1999, 2001, 3, 66, 33, 0, 2000, 2002, 3, 138, 69, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, 2003, 1998, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 159, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2009, 3, 82, 41, 0, 2009, 161, 1, 0, 0, 0, 2010, 2011, 3, 82, 41, 0, 2011, 163, 1, 0, 0, 0, 2012, 2013, 7, 25, 0, 0, 2013, 165, 1, 0, 0, 0, 2014, 2015, 5, 189, 0, 0, 2015, 167, 1, 0, 0, 0, 2016, 2019, 3, 66, 33, 0, 2017, 2019, 3, 28, 14, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2017, 1, 0, 0, 0, 2019, 169, 1, 0, 0, 0, 2020, 2021, 7, 26, 0, 0, 2021, 171, 1, 0, 0, 0, 2022, 2023, 7, 27, 0, 0, 2023, 173, 1, 0, 0, 0, 2024, 2025, 3, 222, 111, 0, 2025, 175, 1, 0, 0, 0, 2026, 2027, 3, 222, 111, 0, 2027, 177, 1, 0, 0, 0, 2028, 2029, 3, 222, 111, 0, 2029, 179, 1, 0, 0, 0, 2030, 2031, 3, 222, 111, 0, 2031, 181, 1, 0, 0, 0, 2032, 2033, 3, 222, 111, 0, 2033, 183, 1, 0, 0, 0, 2034, 2035, 3, 222, 111, 0, 2035, 185, 1, 0, 0, 0, 2036, 2037, 3, 222, 111, 0, 2037, 187, 1, 0, 0, 0, 2038, 2039, 3, 222, 111, 0, 2039, 189, 1, 0, 0, 0, 2040, 2041, 3, 222, 111, 0, 2041, 191, 1, 0, 0, 0, 2042, 2043, 3, 222, 111, 0, 2043, 193, 1, 0, 0, 0, 2044, 2045, 3, 222, 111, 0, 2045, 195, 1, 0, 0, 0, 2046, 2047, 3, 222, 111, 0, 2047, 197, 1, 0, 0, 0, 2048, 2049, 3, 222, 111, 0, 2049, 199, 1, 0, 0, 0, 2050, 2051, 3, 222, 111, 0, 2051, 201, 1, 0, 0, 0, 2052, 2053, 3, 222, 111, 0, 2053, 203, 1, 0, 0, 0, 2054, 2055, 3, 222, 111, 0, 2055, 205, 1, 0, 0, 0, 2056, 2057, 3, 222, 111, 0, 2057, 207, 1, 0, 0, 0, 2058, 2059, 3, 222, 111, 0, 2059, 209, 1, 0, 0, 0, 2060, 2061, 3, 222, 111, 0, 2061, 211, 1, 0, 0, 0, 2062, 2063, 3, 222, 111, 0, 2063, 213, 1, 0, 0, 0, 2064, 2065, 3, 222, 111, 0, 2065, 215, 1, 0, 0, 0, 2066, 2067, 3, 222, 111, 0, 2067, 217, 1, 0, 0, 0, 2068, 2069, 3, 222, 111, 0, 2069, 219, 1, 0, 0, 0, 2070, 2071, 3, 222, 111, 0, 2071, 221, 1, 0, 0, 0, 2072, 2080, 5, 186, 0, 0, 2073, 2080, 3, 172, 86, 0, 2074, 2080, 5, 189, 0, 0, 2075, 2076, 5, 3, 0, 0, 2076, 2077, 3, 222, 111, 0, 2077, 2078, 5, 4, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2072, 1, 0, 0, 0, 2079, 2073, 1, 0, 0, 0, 2079, 2074, 1, 0, 0, 0, 2079, 2075, 1, 0, 0, 0, 2080, 223, 1, 0, 0, 0, 299, 227, 235, 242, 247, 253, 259, 261, 287, 294, 301, 307, 311, 316, 319, 326, 329, 333, 341, 345, 347, 351, 355, 359, 362, 369, 375, 381, 386, 397, 403, 407, 411, 414, 418, 424, 429, 438, 445, 452, 456, 460, 465, 471, 483, 487, 492, 495, 498, 503, 506, 520, 527, 534, 536, 539, 545, 550, 558, 563, 578, 584, 594, 599, 609, 613, 615, 619, 624, 626, 634, 640, 645, 652, 663, 666, 668, 675, 679, 686, 692, 698, 704, 709, 718, 723, 734, 739, 750, 755, 759, 775, 785, 790, 798, 810, 815, 826, 829, 831, 837, 840, 842, 846, 850, 857, 860, 863, 870, 873, 876, 879, 883, 891, 896, 906, 911, 920, 927, 931, 935, 938, 946, 959, 962, 970, 979, 983, 988, 1018, 1029, 1041, 1047, 1054, 1058, 1068, 1071, 1077, 1083, 1092, 1095, 1099, 1101, 1103, 1112, 1119, 1126, 1132, 1137, 1145, 1150, 1159, 1170, 1177, 1181, 1184, 1187, 1191, 1201, 1207, 1209, 1217, 1224, 1231, 1236, 1238, 1244, 1253, 1258, 1265, 1269, 1271, 1274, 1282, 1286, 1289, 1295, 1299, 1304, 1311, 1320, 1324, 1326, 1330, 1339, 1344, 1346, 1359, 1362, 1371, 1382, 1389, 1392, 1397, 1401, 1404, 1407, 1412, 1416, 1421, 1424, 1427, 1432, 1436, 1439, 1446, 1451, 1460, 1465, 1468, 1476, 1480, 1488, 1491, 1493, 1502, 1505, 1507, 1511, 1515, 1519, 1522, 1533, 1538, 1542, 1546, 1549, 1554, 1560, 1567, 1574, 1579, 1582, 1590, 1596, 1601, 1607, 1614, 1621, 1626, 1629, 1632, 1637, 1642, 1649, 1653, 1657, 1667, 1676, 1679, 1688, 1692, 1700, 1709, 1712, 1721, 1724, 1727, 1730, 1740, 1749, 1758, 1762, 1769, 1776, 1780, 1784, 1793, 1797, 1801, 1806, 1810, 1817, 1827, 1834, 1839, 1842, 1846, 1860, 1872, 1881, 1890, 1894, 1904, 1907, 1916, 1925, 1928, 1934, 1948, 1952, 1963, 1968, 1981, 1988, 1996, 2001, 2005, 2018, 2079] \ No newline at end of file diff --git a/internal/engine/sqlite/parser/SQLiteParser.tokens b/internal/engine/sqlite/parser/SQLiteParser.tokens index 104daff119..4514f9ee50 100644 --- a/internal/engine/sqlite/parser/SQLiteParser.tokens +++ b/internal/engine/sqlite/parser/SQLiteParser.tokens @@ -129,68 +129,69 @@ ROWS_=128 SAVEPOINT_=129 SELECT_=130 SET_=131 -TABLE_=132 -TEMP_=133 -TEMPORARY_=134 -THEN_=135 -TO_=136 -TRANSACTION_=137 -TRIGGER_=138 -UNION_=139 -UNIQUE_=140 -UPDATE_=141 -USING_=142 -VACUUM_=143 -VALUES_=144 -VIEW_=145 -VIRTUAL_=146 -WHEN_=147 -WHERE_=148 -WITH_=149 -WITHOUT_=150 -FIRST_VALUE_=151 -OVER_=152 -PARTITION_=153 -RANGE_=154 -PRECEDING_=155 -UNBOUNDED_=156 -CURRENT_=157 -FOLLOWING_=158 -CUME_DIST_=159 -DENSE_RANK_=160 -LAG_=161 -LAST_VALUE_=162 -LEAD_=163 -NTH_VALUE_=164 -NTILE_=165 -PERCENT_RANK_=166 -RANK_=167 -ROW_NUMBER_=168 -GENERATED_=169 -ALWAYS_=170 -STORED_=171 -TRUE_=172 -FALSE_=173 -WINDOW_=174 -NULLS_=175 -FIRST_=176 -LAST_=177 -FILTER_=178 -GROUPS_=179 -EXCLUDE_=180 -TIES_=181 -OTHERS_=182 -DO_=183 -NOTHING_=184 -IDENTIFIER=185 -NUMERIC_LITERAL=186 -BIND_PARAMETER=187 -STRING_LITERAL=188 -BLOB_LITERAL=189 -SINGLE_LINE_COMMENT=190 -MULTILINE_COMMENT=191 -SPACES=192 -UNEXPECTED_CHAR=193 +STRICT_=132 +TABLE_=133 +TEMP_=134 +TEMPORARY_=135 +THEN_=136 +TO_=137 +TRANSACTION_=138 +TRIGGER_=139 +UNION_=140 +UNIQUE_=141 +UPDATE_=142 +USING_=143 +VACUUM_=144 +VALUES_=145 +VIEW_=146 +VIRTUAL_=147 +WHEN_=148 +WHERE_=149 +WITH_=150 +WITHOUT_=151 +FIRST_VALUE_=152 +OVER_=153 +PARTITION_=154 +RANGE_=155 +PRECEDING_=156 +UNBOUNDED_=157 +CURRENT_=158 +FOLLOWING_=159 +CUME_DIST_=160 +DENSE_RANK_=161 +LAG_=162 +LAST_VALUE_=163 +LEAD_=164 +NTH_VALUE_=165 +NTILE_=166 +PERCENT_RANK_=167 +RANK_=168 +ROW_NUMBER_=169 +GENERATED_=170 +ALWAYS_=171 +STORED_=172 +TRUE_=173 +FALSE_=174 +WINDOW_=175 +NULLS_=176 +FIRST_=177 +LAST_=178 +FILTER_=179 +GROUPS_=180 +EXCLUDE_=181 +TIES_=182 +OTHERS_=183 +DO_=184 +NOTHING_=185 +IDENTIFIER=186 +NUMERIC_LITERAL=187 +BIND_PARAMETER=188 +STRING_LITERAL=189 +BLOB_LITERAL=190 +SINGLE_LINE_COMMENT=191 +MULTILINE_COMMENT=192 +SPACES=193 +UNEXPECTED_CHAR=194 ';'=1 '.'=2 '('=3 diff --git a/internal/engine/sqlite/parser/sqlite_lexer.go b/internal/engine/sqlite/parser/sqlite_lexer.go index d2b0056ac6..5556b18abf 100644 --- a/internal/engine/sqlite/parser/sqlite_lexer.go +++ b/internal/engine/sqlite/parser/sqlite_lexer.go @@ -1,4 +1,4 @@ -// Code generated from SQLiteLexer.g4 by ANTLR 4.10.1. DO NOT EDIT. +// Code generated from SQLiteLexer.g4 by ANTLR 4.12.0. DO NOT EDIT. package parser @@ -7,7 +7,7 @@ import ( "sync" "unicode" - "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr/v4" ) // Suppress unused import error @@ -67,8 +67,8 @@ func sqlitelexerLexerInit() { "OUTER_", "PLAN_", "PRAGMA_", "PRIMARY_", "QUERY_", "RAISE_", "RECURSIVE_", "REFERENCES_", "REGEXP_", "REINDEX_", "RELEASE_", "RENAME_", "REPLACE_", "RESTRICT_", "RETURNING_", "RIGHT_", "ROLLBACK_", "ROW_", "ROWS_", "SAVEPOINT_", - "SELECT_", "SET_", "TABLE_", "TEMP_", "TEMPORARY_", "THEN_", "TO_", - "TRANSACTION_", "TRIGGER_", "UNION_", "UNIQUE_", "UPDATE_", "USING_", + "SELECT_", "SET_", "STRICT_", "TABLE_", "TEMP_", "TEMPORARY_", "THEN_", + "TO_", "TRANSACTION_", "TRIGGER_", "UNION_", "UNIQUE_", "UPDATE_", "USING_", "VACUUM_", "VALUES_", "VIEW_", "VIRTUAL_", "WHEN_", "WHERE_", "WITH_", "WITHOUT_", "FIRST_VALUE_", "OVER_", "PARTITION_", "RANGE_", "PRECEDING_", "UNBOUNDED_", "CURRENT_", "FOLLOWING_", "CUME_DIST_", "DENSE_RANK_", @@ -98,8 +98,8 @@ func sqlitelexerLexerInit() { "OUTER_", "PLAN_", "PRAGMA_", "PRIMARY_", "QUERY_", "RAISE_", "RECURSIVE_", "REFERENCES_", "REGEXP_", "REINDEX_", "RELEASE_", "RENAME_", "REPLACE_", "RESTRICT_", "RETURNING_", "RIGHT_", "ROLLBACK_", "ROW_", "ROWS_", "SAVEPOINT_", - "SELECT_", "SET_", "TABLE_", "TEMP_", "TEMPORARY_", "THEN_", "TO_", - "TRANSACTION_", "TRIGGER_", "UNION_", "UNIQUE_", "UPDATE_", "USING_", + "SELECT_", "SET_", "STRICT_", "TABLE_", "TEMP_", "TEMPORARY_", "THEN_", + "TO_", "TRANSACTION_", "TRIGGER_", "UNION_", "UNIQUE_", "UPDATE_", "USING_", "VACUUM_", "VALUES_", "VIEW_", "VIRTUAL_", "WHEN_", "WHERE_", "WITH_", "WITHOUT_", "FIRST_VALUE_", "OVER_", "PARTITION_", "RANGE_", "PRECEDING_", "UNBOUNDED_", "CURRENT_", "FOLLOWING_", "CUME_DIST_", "DENSE_RANK_", @@ -114,7 +114,7 @@ func sqlitelexerLexerInit() { } staticData.predictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 0, 193, 1808, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, + 4, 0, 194, 1817, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, @@ -160,152 +160,153 @@ func sqlitelexerLexerInit() { 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, - 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, - 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, - 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, - 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, - 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, - 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, - 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, - 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, - 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, - 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, - 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, + 2, 221, 7, 221, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, + 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, + 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, + 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, + 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, + 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, + 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, + 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, + 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, + 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, + 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, - 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, - 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, - 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, - 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, - 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, - 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, - 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, - 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, - 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, - 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, - 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, - 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, + 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, + 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, + 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, + 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, + 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, + 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, + 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, + 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, + 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, + 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, + 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, + 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, - 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, - 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, - 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, - 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, - 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, - 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, - 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, - 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, - 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, - 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, - 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, - 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, - 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, - 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, - 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, - 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, - 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, - 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, - 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, - 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, - 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, - 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, - 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, - 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, - 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, - 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, - 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, - 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, - 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, - 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, - 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, - 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, - 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, - 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, - 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, - 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, - 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, - 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, - 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, - 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, - 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, - 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, - 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, - 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, - 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, - 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, - 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, - 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, - 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, - 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, - 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, - 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, - 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, - 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, - 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, - 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, - 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, - 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, - 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, - 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, - 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, - 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, - 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, - 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, - 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, - 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, - 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, - 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, - 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, - 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, + 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, + 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, + 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, + 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, + 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, + 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, + 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, + 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, + 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, + 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, + 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, + 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, + 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, + 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, + 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, + 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, + 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, + 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, + 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, + 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, + 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, + 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, + 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, + 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, + 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, + 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, + 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, + 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, + 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, + 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, + 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, + 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, + 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, + 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, + 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, + 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, + 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, + 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, + 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, + 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, + 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, + 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, + 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, + 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, + 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, + 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, + 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, + 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, + 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, + 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, + 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, + 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, + 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, + 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, + 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, + 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, + 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, + 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, + 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, + 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, + 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, + 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, + 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, + 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, + 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, + 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, + 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, + 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, + 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, + 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, - 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, - 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, - 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, - 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, - 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, - 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, - 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, - 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, - 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, - 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, - 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, - 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, - 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, - 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, - 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, - 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, - 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, - 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, - 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, - 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, - 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, - 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, - 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, - 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 1614, 8, 184, 10, - 184, 12, 184, 1617, 9, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, - 184, 1624, 8, 184, 10, 184, 12, 184, 1627, 9, 184, 1, 184, 1, 184, 1, 184, - 5, 184, 1632, 8, 184, 10, 184, 12, 184, 1635, 9, 184, 1, 184, 1, 184, 1, - 184, 5, 184, 1640, 8, 184, 10, 184, 12, 184, 1643, 9, 184, 3, 184, 1645, - 8, 184, 1, 185, 4, 185, 1648, 8, 185, 11, 185, 12, 185, 1649, 1, 185, 1, - 185, 5, 185, 1654, 8, 185, 10, 185, 12, 185, 1657, 9, 185, 3, 185, 1659, - 8, 185, 1, 185, 1, 185, 4, 185, 1663, 8, 185, 11, 185, 12, 185, 1664, 3, - 185, 1667, 8, 185, 1, 185, 1, 185, 3, 185, 1671, 8, 185, 1, 185, 4, 185, - 1674, 8, 185, 11, 185, 12, 185, 1675, 3, 185, 1678, 8, 185, 1, 185, 1, - 185, 1, 185, 1, 185, 4, 185, 1684, 8, 185, 11, 185, 12, 185, 1685, 3, 185, - 1688, 8, 185, 1, 186, 1, 186, 5, 186, 1692, 8, 186, 10, 186, 12, 186, 1695, - 9, 186, 1, 186, 1, 186, 3, 186, 1699, 8, 186, 1, 187, 1, 187, 1, 187, 1, - 187, 5, 187, 1705, 8, 187, 10, 187, 12, 187, 1708, 9, 187, 1, 187, 1, 187, - 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 5, 189, 1719, 8, - 189, 10, 189, 12, 189, 1722, 9, 189, 1, 189, 3, 189, 1725, 8, 189, 1, 189, - 1, 189, 3, 189, 1729, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, - 190, 5, 190, 1737, 8, 190, 10, 190, 12, 190, 1740, 9, 190, 1, 190, 1, 190, - 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, - 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, - 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, - 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, - 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, - 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, - 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, - 1, 220, 1, 220, 1, 1738, 0, 221, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, + 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, + 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, + 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, + 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, + 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, + 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, + 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, + 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, + 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, + 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, + 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, + 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, + 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, + 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, + 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, + 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, + 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, + 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, + 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, + 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, + 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, + 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, + 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, + 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, + 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 1623, 8, 185, 10, + 185, 12, 185, 1626, 9, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, + 185, 1633, 8, 185, 10, 185, 12, 185, 1636, 9, 185, 1, 185, 1, 185, 1, 185, + 5, 185, 1641, 8, 185, 10, 185, 12, 185, 1644, 9, 185, 1, 185, 1, 185, 1, + 185, 5, 185, 1649, 8, 185, 10, 185, 12, 185, 1652, 9, 185, 3, 185, 1654, + 8, 185, 1, 186, 4, 186, 1657, 8, 186, 11, 186, 12, 186, 1658, 1, 186, 1, + 186, 5, 186, 1663, 8, 186, 10, 186, 12, 186, 1666, 9, 186, 3, 186, 1668, + 8, 186, 1, 186, 1, 186, 4, 186, 1672, 8, 186, 11, 186, 12, 186, 1673, 3, + 186, 1676, 8, 186, 1, 186, 1, 186, 3, 186, 1680, 8, 186, 1, 186, 4, 186, + 1683, 8, 186, 11, 186, 12, 186, 1684, 3, 186, 1687, 8, 186, 1, 186, 1, + 186, 1, 186, 1, 186, 4, 186, 1693, 8, 186, 11, 186, 12, 186, 1694, 3, 186, + 1697, 8, 186, 1, 187, 1, 187, 5, 187, 1701, 8, 187, 10, 187, 12, 187, 1704, + 9, 187, 1, 187, 1, 187, 3, 187, 1708, 8, 187, 1, 188, 1, 188, 1, 188, 1, + 188, 5, 188, 1714, 8, 188, 10, 188, 12, 188, 1717, 9, 188, 1, 188, 1, 188, + 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 1728, 8, + 190, 10, 190, 12, 190, 1731, 9, 190, 1, 190, 3, 190, 1734, 8, 190, 1, 190, + 1, 190, 3, 190, 1738, 8, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, + 191, 5, 191, 1746, 8, 191, 10, 191, 12, 191, 1749, 9, 191, 1, 191, 1, 191, + 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, + 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, + 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, + 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, + 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, + 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, + 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, + 1, 221, 1, 221, 1, 1747, 0, 222, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, @@ -329,638 +330,642 @@ func sqlitelexerLexerInit() { 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, - 381, 191, 383, 192, 385, 193, 387, 0, 389, 0, 391, 0, 393, 0, 395, 0, 397, - 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, - 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, - 0, 435, 0, 437, 0, 439, 0, 441, 0, 1, 0, 38, 1, 0, 34, 34, 1, 0, 96, 96, - 1, 0, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, - 95, 97, 122, 2, 0, 43, 43, 45, 45, 3, 0, 36, 36, 58, 58, 64, 64, 1, 0, - 39, 39, 2, 0, 10, 10, 13, 13, 3, 0, 9, 11, 13, 13, 32, 32, 3, 0, 48, 57, - 65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, - 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, - 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, - 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, - 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, - 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, - 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, - 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, - 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, - 1806, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, - 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, - 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, - 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, - 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, - 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, - 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, - 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, - 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, - 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, - 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, - 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, - 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, - 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, - 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, - 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, - 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, - 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, - 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, - 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, - 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, - 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, - 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, - 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, - 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, - 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, - 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, - 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, - 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, - 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, - 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, - 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, - 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, - 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, - 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, - 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, - 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, - 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, - 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, - 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, - 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, - 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, - 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, - 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, - 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, - 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, - 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, - 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, - 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, - 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, - 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, - 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, - 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 1, 443, 1, 0, - 0, 0, 3, 445, 1, 0, 0, 0, 5, 447, 1, 0, 0, 0, 7, 449, 1, 0, 0, 0, 9, 451, - 1, 0, 0, 0, 11, 453, 1, 0, 0, 0, 13, 455, 1, 0, 0, 0, 15, 457, 1, 0, 0, - 0, 17, 459, 1, 0, 0, 0, 19, 461, 1, 0, 0, 0, 21, 463, 1, 0, 0, 0, 23, 466, - 1, 0, 0, 0, 25, 468, 1, 0, 0, 0, 27, 470, 1, 0, 0, 0, 29, 473, 1, 0, 0, - 0, 31, 476, 1, 0, 0, 0, 33, 478, 1, 0, 0, 0, 35, 480, 1, 0, 0, 0, 37, 482, - 1, 0, 0, 0, 39, 485, 1, 0, 0, 0, 41, 487, 1, 0, 0, 0, 43, 490, 1, 0, 0, - 0, 45, 493, 1, 0, 0, 0, 47, 496, 1, 0, 0, 0, 49, 499, 1, 0, 0, 0, 51, 505, - 1, 0, 0, 0, 53, 512, 1, 0, 0, 0, 55, 516, 1, 0, 0, 0, 57, 522, 1, 0, 0, - 0, 59, 526, 1, 0, 0, 0, 61, 532, 1, 0, 0, 0, 63, 540, 1, 0, 0, 0, 65, 544, - 1, 0, 0, 0, 67, 547, 1, 0, 0, 0, 69, 551, 1, 0, 0, 0, 71, 558, 1, 0, 0, - 0, 73, 572, 1, 0, 0, 0, 75, 579, 1, 0, 0, 0, 77, 585, 1, 0, 0, 0, 79, 593, - 1, 0, 0, 0, 81, 596, 1, 0, 0, 0, 83, 604, 1, 0, 0, 0, 85, 609, 1, 0, 0, - 0, 87, 614, 1, 0, 0, 0, 89, 620, 1, 0, 0, 0, 91, 628, 1, 0, 0, 0, 93, 635, - 1, 0, 0, 0, 95, 642, 1, 0, 0, 0, 97, 651, 1, 0, 0, 0, 99, 662, 1, 0, 0, - 0, 101, 669, 1, 0, 0, 0, 103, 675, 1, 0, 0, 0, 105, 688, 1, 0, 0, 0, 107, - 701, 1, 0, 0, 0, 109, 719, 1, 0, 0, 0, 111, 728, 1, 0, 0, 0, 113, 736, - 1, 0, 0, 0, 115, 747, 1, 0, 0, 0, 117, 756, 1, 0, 0, 0, 119, 763, 1, 0, - 0, 0, 121, 768, 1, 0, 0, 0, 123, 775, 1, 0, 0, 0, 125, 784, 1, 0, 0, 0, - 127, 789, 1, 0, 0, 0, 129, 794, 1, 0, 0, 0, 131, 799, 1, 0, 0, 0, 133, - 803, 1, 0, 0, 0, 135, 810, 1, 0, 0, 0, 137, 817, 1, 0, 0, 0, 139, 827, - 1, 0, 0, 0, 141, 834, 1, 0, 0, 0, 143, 842, 1, 0, 0, 0, 145, 847, 1, 0, - 0, 0, 147, 851, 1, 0, 0, 0, 149, 859, 1, 0, 0, 0, 151, 864, 1, 0, 0, 0, - 153, 869, 1, 0, 0, 0, 155, 874, 1, 0, 0, 0, 157, 880, 1, 0, 0, 0, 159, - 887, 1, 0, 0, 0, 161, 890, 1, 0, 0, 0, 163, 897, 1, 0, 0, 0, 165, 907, - 1, 0, 0, 0, 167, 910, 1, 0, 0, 0, 169, 916, 1, 0, 0, 0, 171, 924, 1, 0, - 0, 0, 173, 934, 1, 0, 0, 0, 175, 940, 1, 0, 0, 0, 177, 947, 1, 0, 0, 0, - 179, 955, 1, 0, 0, 0, 181, 965, 1, 0, 0, 0, 183, 970, 1, 0, 0, 0, 185, - 973, 1, 0, 0, 0, 187, 980, 1, 0, 0, 0, 189, 985, 1, 0, 0, 0, 191, 989, - 1, 0, 0, 0, 193, 994, 1, 0, 0, 0, 195, 999, 1, 0, 0, 0, 197, 1005, 1, 0, - 0, 0, 199, 1011, 1, 0, 0, 0, 201, 1019, 1, 0, 0, 0, 203, 1022, 1, 0, 0, - 0, 205, 1026, 1, 0, 0, 0, 207, 1034, 1, 0, 0, 0, 209, 1039, 1, 0, 0, 0, - 211, 1042, 1, 0, 0, 0, 213, 1049, 1, 0, 0, 0, 215, 1052, 1, 0, 0, 0, 217, - 1055, 1, 0, 0, 0, 219, 1061, 1, 0, 0, 0, 221, 1067, 1, 0, 0, 0, 223, 1072, - 1, 0, 0, 0, 225, 1079, 1, 0, 0, 0, 227, 1087, 1, 0, 0, 0, 229, 1093, 1, - 0, 0, 0, 231, 1099, 1, 0, 0, 0, 233, 1109, 1, 0, 0, 0, 235, 1120, 1, 0, - 0, 0, 237, 1127, 1, 0, 0, 0, 239, 1135, 1, 0, 0, 0, 241, 1143, 1, 0, 0, - 0, 243, 1150, 1, 0, 0, 0, 245, 1158, 1, 0, 0, 0, 247, 1167, 1, 0, 0, 0, - 249, 1177, 1, 0, 0, 0, 251, 1183, 1, 0, 0, 0, 253, 1192, 1, 0, 0, 0, 255, - 1196, 1, 0, 0, 0, 257, 1201, 1, 0, 0, 0, 259, 1211, 1, 0, 0, 0, 261, 1218, - 1, 0, 0, 0, 263, 1222, 1, 0, 0, 0, 265, 1228, 1, 0, 0, 0, 267, 1233, 1, - 0, 0, 0, 269, 1243, 1, 0, 0, 0, 271, 1248, 1, 0, 0, 0, 273, 1251, 1, 0, - 0, 0, 275, 1263, 1, 0, 0, 0, 277, 1271, 1, 0, 0, 0, 279, 1277, 1, 0, 0, - 0, 281, 1284, 1, 0, 0, 0, 283, 1291, 1, 0, 0, 0, 285, 1297, 1, 0, 0, 0, - 287, 1304, 1, 0, 0, 0, 289, 1311, 1, 0, 0, 0, 291, 1316, 1, 0, 0, 0, 293, - 1324, 1, 0, 0, 0, 295, 1329, 1, 0, 0, 0, 297, 1335, 1, 0, 0, 0, 299, 1340, - 1, 0, 0, 0, 301, 1348, 1, 0, 0, 0, 303, 1360, 1, 0, 0, 0, 305, 1365, 1, - 0, 0, 0, 307, 1375, 1, 0, 0, 0, 309, 1381, 1, 0, 0, 0, 311, 1391, 1, 0, - 0, 0, 313, 1401, 1, 0, 0, 0, 315, 1409, 1, 0, 0, 0, 317, 1419, 1, 0, 0, - 0, 319, 1429, 1, 0, 0, 0, 321, 1440, 1, 0, 0, 0, 323, 1444, 1, 0, 0, 0, - 325, 1455, 1, 0, 0, 0, 327, 1460, 1, 0, 0, 0, 329, 1470, 1, 0, 0, 0, 331, - 1476, 1, 0, 0, 0, 333, 1489, 1, 0, 0, 0, 335, 1494, 1, 0, 0, 0, 337, 1505, - 1, 0, 0, 0, 339, 1515, 1, 0, 0, 0, 341, 1522, 1, 0, 0, 0, 343, 1529, 1, - 0, 0, 0, 345, 1534, 1, 0, 0, 0, 347, 1540, 1, 0, 0, 0, 349, 1547, 1, 0, - 0, 0, 351, 1553, 1, 0, 0, 0, 353, 1559, 1, 0, 0, 0, 355, 1564, 1, 0, 0, - 0, 357, 1571, 1, 0, 0, 0, 359, 1578, 1, 0, 0, 0, 361, 1586, 1, 0, 0, 0, - 363, 1591, 1, 0, 0, 0, 365, 1598, 1, 0, 0, 0, 367, 1601, 1, 0, 0, 0, 369, - 1644, 1, 0, 0, 0, 371, 1687, 1, 0, 0, 0, 373, 1698, 1, 0, 0, 0, 375, 1700, - 1, 0, 0, 0, 377, 1711, 1, 0, 0, 0, 379, 1714, 1, 0, 0, 0, 381, 1732, 1, - 0, 0, 0, 383, 1746, 1, 0, 0, 0, 385, 1750, 1, 0, 0, 0, 387, 1752, 1, 0, - 0, 0, 389, 1754, 1, 0, 0, 0, 391, 1756, 1, 0, 0, 0, 393, 1758, 1, 0, 0, - 0, 395, 1760, 1, 0, 0, 0, 397, 1762, 1, 0, 0, 0, 399, 1764, 1, 0, 0, 0, - 401, 1766, 1, 0, 0, 0, 403, 1768, 1, 0, 0, 0, 405, 1770, 1, 0, 0, 0, 407, - 1772, 1, 0, 0, 0, 409, 1774, 1, 0, 0, 0, 411, 1776, 1, 0, 0, 0, 413, 1778, - 1, 0, 0, 0, 415, 1780, 1, 0, 0, 0, 417, 1782, 1, 0, 0, 0, 419, 1784, 1, - 0, 0, 0, 421, 1786, 1, 0, 0, 0, 423, 1788, 1, 0, 0, 0, 425, 1790, 1, 0, - 0, 0, 427, 1792, 1, 0, 0, 0, 429, 1794, 1, 0, 0, 0, 431, 1796, 1, 0, 0, - 0, 433, 1798, 1, 0, 0, 0, 435, 1800, 1, 0, 0, 0, 437, 1802, 1, 0, 0, 0, - 439, 1804, 1, 0, 0, 0, 441, 1806, 1, 0, 0, 0, 443, 444, 5, 59, 0, 0, 444, - 2, 1, 0, 0, 0, 445, 446, 5, 46, 0, 0, 446, 4, 1, 0, 0, 0, 447, 448, 5, - 40, 0, 0, 448, 6, 1, 0, 0, 0, 449, 450, 5, 41, 0, 0, 450, 8, 1, 0, 0, 0, - 451, 452, 5, 44, 0, 0, 452, 10, 1, 0, 0, 0, 453, 454, 5, 61, 0, 0, 454, - 12, 1, 0, 0, 0, 455, 456, 5, 42, 0, 0, 456, 14, 1, 0, 0, 0, 457, 458, 5, - 43, 0, 0, 458, 16, 1, 0, 0, 0, 459, 460, 5, 45, 0, 0, 460, 18, 1, 0, 0, - 0, 461, 462, 5, 126, 0, 0, 462, 20, 1, 0, 0, 0, 463, 464, 5, 124, 0, 0, - 464, 465, 5, 124, 0, 0, 465, 22, 1, 0, 0, 0, 466, 467, 5, 47, 0, 0, 467, - 24, 1, 0, 0, 0, 468, 469, 5, 37, 0, 0, 469, 26, 1, 0, 0, 0, 470, 471, 5, - 60, 0, 0, 471, 472, 5, 60, 0, 0, 472, 28, 1, 0, 0, 0, 473, 474, 5, 62, - 0, 0, 474, 475, 5, 62, 0, 0, 475, 30, 1, 0, 0, 0, 476, 477, 5, 38, 0, 0, - 477, 32, 1, 0, 0, 0, 478, 479, 5, 124, 0, 0, 479, 34, 1, 0, 0, 0, 480, - 481, 5, 60, 0, 0, 481, 36, 1, 0, 0, 0, 482, 483, 5, 60, 0, 0, 483, 484, - 5, 61, 0, 0, 484, 38, 1, 0, 0, 0, 485, 486, 5, 62, 0, 0, 486, 40, 1, 0, - 0, 0, 487, 488, 5, 62, 0, 0, 488, 489, 5, 61, 0, 0, 489, 42, 1, 0, 0, 0, - 490, 491, 5, 61, 0, 0, 491, 492, 5, 61, 0, 0, 492, 44, 1, 0, 0, 0, 493, - 494, 5, 33, 0, 0, 494, 495, 5, 61, 0, 0, 495, 46, 1, 0, 0, 0, 496, 497, - 5, 60, 0, 0, 497, 498, 5, 62, 0, 0, 498, 48, 1, 0, 0, 0, 499, 500, 3, 391, - 195, 0, 500, 501, 3, 393, 196, 0, 501, 502, 3, 419, 209, 0, 502, 503, 3, - 425, 212, 0, 503, 504, 3, 429, 214, 0, 504, 50, 1, 0, 0, 0, 505, 506, 3, - 391, 195, 0, 506, 507, 3, 395, 197, 0, 507, 508, 3, 429, 214, 0, 508, 509, - 3, 407, 203, 0, 509, 510, 3, 419, 209, 0, 510, 511, 3, 417, 208, 0, 511, - 52, 1, 0, 0, 0, 512, 513, 3, 391, 195, 0, 513, 514, 3, 397, 198, 0, 514, - 515, 3, 397, 198, 0, 515, 54, 1, 0, 0, 0, 516, 517, 3, 391, 195, 0, 517, - 518, 3, 401, 200, 0, 518, 519, 3, 429, 214, 0, 519, 520, 3, 399, 199, 0, - 520, 521, 3, 425, 212, 0, 521, 56, 1, 0, 0, 0, 522, 523, 3, 391, 195, 0, - 523, 524, 3, 413, 206, 0, 524, 525, 3, 413, 206, 0, 525, 58, 1, 0, 0, 0, - 526, 527, 3, 391, 195, 0, 527, 528, 3, 413, 206, 0, 528, 529, 3, 429, 214, - 0, 529, 530, 3, 399, 199, 0, 530, 531, 3, 425, 212, 0, 531, 60, 1, 0, 0, - 0, 532, 533, 3, 391, 195, 0, 533, 534, 3, 417, 208, 0, 534, 535, 3, 391, - 195, 0, 535, 536, 3, 413, 206, 0, 536, 537, 3, 439, 219, 0, 537, 538, 3, - 441, 220, 0, 538, 539, 3, 399, 199, 0, 539, 62, 1, 0, 0, 0, 540, 541, 3, - 391, 195, 0, 541, 542, 3, 417, 208, 0, 542, 543, 3, 397, 198, 0, 543, 64, - 1, 0, 0, 0, 544, 545, 3, 391, 195, 0, 545, 546, 3, 427, 213, 0, 546, 66, - 1, 0, 0, 0, 547, 548, 3, 391, 195, 0, 548, 549, 3, 427, 213, 0, 549, 550, - 3, 395, 197, 0, 550, 68, 1, 0, 0, 0, 551, 552, 3, 391, 195, 0, 552, 553, - 3, 429, 214, 0, 553, 554, 3, 429, 214, 0, 554, 555, 3, 391, 195, 0, 555, - 556, 3, 395, 197, 0, 556, 557, 3, 405, 202, 0, 557, 70, 1, 0, 0, 0, 558, - 559, 3, 391, 195, 0, 559, 560, 3, 431, 215, 0, 560, 561, 3, 429, 214, 0, - 561, 562, 3, 419, 209, 0, 562, 563, 3, 407, 203, 0, 563, 564, 3, 417, 208, - 0, 564, 565, 3, 395, 197, 0, 565, 566, 3, 425, 212, 0, 566, 567, 3, 399, - 199, 0, 567, 568, 3, 415, 207, 0, 568, 569, 3, 399, 199, 0, 569, 570, 3, - 417, 208, 0, 570, 571, 3, 429, 214, 0, 571, 72, 1, 0, 0, 0, 572, 573, 3, - 393, 196, 0, 573, 574, 3, 399, 199, 0, 574, 575, 3, 401, 200, 0, 575, 576, - 3, 419, 209, 0, 576, 577, 3, 425, 212, 0, 577, 578, 3, 399, 199, 0, 578, - 74, 1, 0, 0, 0, 579, 580, 3, 393, 196, 0, 580, 581, 3, 399, 199, 0, 581, - 582, 3, 403, 201, 0, 582, 583, 3, 407, 203, 0, 583, 584, 3, 417, 208, 0, - 584, 76, 1, 0, 0, 0, 585, 586, 3, 393, 196, 0, 586, 587, 3, 399, 199, 0, - 587, 588, 3, 429, 214, 0, 588, 589, 3, 435, 217, 0, 589, 590, 3, 399, 199, - 0, 590, 591, 3, 399, 199, 0, 591, 592, 3, 417, 208, 0, 592, 78, 1, 0, 0, - 0, 593, 594, 3, 393, 196, 0, 594, 595, 3, 439, 219, 0, 595, 80, 1, 0, 0, - 0, 596, 597, 3, 395, 197, 0, 597, 598, 3, 391, 195, 0, 598, 599, 3, 427, - 213, 0, 599, 600, 3, 395, 197, 0, 600, 601, 3, 391, 195, 0, 601, 602, 3, - 397, 198, 0, 602, 603, 3, 399, 199, 0, 603, 82, 1, 0, 0, 0, 604, 605, 3, - 395, 197, 0, 605, 606, 3, 391, 195, 0, 606, 607, 3, 427, 213, 0, 607, 608, - 3, 399, 199, 0, 608, 84, 1, 0, 0, 0, 609, 610, 3, 395, 197, 0, 610, 611, - 3, 391, 195, 0, 611, 612, 3, 427, 213, 0, 612, 613, 3, 429, 214, 0, 613, - 86, 1, 0, 0, 0, 614, 615, 3, 395, 197, 0, 615, 616, 3, 405, 202, 0, 616, - 617, 3, 399, 199, 0, 617, 618, 3, 395, 197, 0, 618, 619, 3, 411, 205, 0, - 619, 88, 1, 0, 0, 0, 620, 621, 3, 395, 197, 0, 621, 622, 3, 419, 209, 0, - 622, 623, 3, 413, 206, 0, 623, 624, 3, 413, 206, 0, 624, 625, 3, 391, 195, - 0, 625, 626, 3, 429, 214, 0, 626, 627, 3, 399, 199, 0, 627, 90, 1, 0, 0, - 0, 628, 629, 3, 395, 197, 0, 629, 630, 3, 419, 209, 0, 630, 631, 3, 413, - 206, 0, 631, 632, 3, 431, 215, 0, 632, 633, 3, 415, 207, 0, 633, 634, 3, - 417, 208, 0, 634, 92, 1, 0, 0, 0, 635, 636, 3, 395, 197, 0, 636, 637, 3, - 419, 209, 0, 637, 638, 3, 415, 207, 0, 638, 639, 3, 415, 207, 0, 639, 640, - 3, 407, 203, 0, 640, 641, 3, 429, 214, 0, 641, 94, 1, 0, 0, 0, 642, 643, - 3, 395, 197, 0, 643, 644, 3, 419, 209, 0, 644, 645, 3, 417, 208, 0, 645, - 646, 3, 401, 200, 0, 646, 647, 3, 413, 206, 0, 647, 648, 3, 407, 203, 0, - 648, 649, 3, 395, 197, 0, 649, 650, 3, 429, 214, 0, 650, 96, 1, 0, 0, 0, - 651, 652, 3, 395, 197, 0, 652, 653, 3, 419, 209, 0, 653, 654, 3, 417, 208, - 0, 654, 655, 3, 427, 213, 0, 655, 656, 3, 429, 214, 0, 656, 657, 3, 425, - 212, 0, 657, 658, 3, 391, 195, 0, 658, 659, 3, 407, 203, 0, 659, 660, 3, - 417, 208, 0, 660, 661, 3, 429, 214, 0, 661, 98, 1, 0, 0, 0, 662, 663, 3, - 395, 197, 0, 663, 664, 3, 425, 212, 0, 664, 665, 3, 399, 199, 0, 665, 666, - 3, 391, 195, 0, 666, 667, 3, 429, 214, 0, 667, 668, 3, 399, 199, 0, 668, - 100, 1, 0, 0, 0, 669, 670, 3, 395, 197, 0, 670, 671, 3, 425, 212, 0, 671, - 672, 3, 419, 209, 0, 672, 673, 3, 427, 213, 0, 673, 674, 3, 427, 213, 0, - 674, 102, 1, 0, 0, 0, 675, 676, 3, 395, 197, 0, 676, 677, 3, 431, 215, - 0, 677, 678, 3, 425, 212, 0, 678, 679, 3, 425, 212, 0, 679, 680, 3, 399, - 199, 0, 680, 681, 3, 417, 208, 0, 681, 682, 3, 429, 214, 0, 682, 683, 5, - 95, 0, 0, 683, 684, 3, 397, 198, 0, 684, 685, 3, 391, 195, 0, 685, 686, - 3, 429, 214, 0, 686, 687, 3, 399, 199, 0, 687, 104, 1, 0, 0, 0, 688, 689, - 3, 395, 197, 0, 689, 690, 3, 431, 215, 0, 690, 691, 3, 425, 212, 0, 691, - 692, 3, 425, 212, 0, 692, 693, 3, 399, 199, 0, 693, 694, 3, 417, 208, 0, - 694, 695, 3, 429, 214, 0, 695, 696, 5, 95, 0, 0, 696, 697, 3, 429, 214, - 0, 697, 698, 3, 407, 203, 0, 698, 699, 3, 415, 207, 0, 699, 700, 3, 399, - 199, 0, 700, 106, 1, 0, 0, 0, 701, 702, 3, 395, 197, 0, 702, 703, 3, 431, - 215, 0, 703, 704, 3, 425, 212, 0, 704, 705, 3, 425, 212, 0, 705, 706, 3, - 399, 199, 0, 706, 707, 3, 417, 208, 0, 707, 708, 3, 429, 214, 0, 708, 709, - 5, 95, 0, 0, 709, 710, 3, 429, 214, 0, 710, 711, 3, 407, 203, 0, 711, 712, - 3, 415, 207, 0, 712, 713, 3, 399, 199, 0, 713, 714, 3, 427, 213, 0, 714, - 715, 3, 429, 214, 0, 715, 716, 3, 391, 195, 0, 716, 717, 3, 415, 207, 0, - 717, 718, 3, 421, 210, 0, 718, 108, 1, 0, 0, 0, 719, 720, 3, 397, 198, - 0, 720, 721, 3, 391, 195, 0, 721, 722, 3, 429, 214, 0, 722, 723, 3, 391, - 195, 0, 723, 724, 3, 393, 196, 0, 724, 725, 3, 391, 195, 0, 725, 726, 3, - 427, 213, 0, 726, 727, 3, 399, 199, 0, 727, 110, 1, 0, 0, 0, 728, 729, - 3, 397, 198, 0, 729, 730, 3, 399, 199, 0, 730, 731, 3, 401, 200, 0, 731, - 732, 3, 391, 195, 0, 732, 733, 3, 431, 215, 0, 733, 734, 3, 413, 206, 0, - 734, 735, 3, 429, 214, 0, 735, 112, 1, 0, 0, 0, 736, 737, 3, 397, 198, - 0, 737, 738, 3, 399, 199, 0, 738, 739, 3, 401, 200, 0, 739, 740, 3, 399, - 199, 0, 740, 741, 3, 425, 212, 0, 741, 742, 3, 425, 212, 0, 742, 743, 3, - 391, 195, 0, 743, 744, 3, 393, 196, 0, 744, 745, 3, 413, 206, 0, 745, 746, - 3, 399, 199, 0, 746, 114, 1, 0, 0, 0, 747, 748, 3, 397, 198, 0, 748, 749, - 3, 399, 199, 0, 749, 750, 3, 401, 200, 0, 750, 751, 3, 399, 199, 0, 751, - 752, 3, 425, 212, 0, 752, 753, 3, 425, 212, 0, 753, 754, 3, 399, 199, 0, - 754, 755, 3, 397, 198, 0, 755, 116, 1, 0, 0, 0, 756, 757, 3, 397, 198, - 0, 757, 758, 3, 399, 199, 0, 758, 759, 3, 413, 206, 0, 759, 760, 3, 399, - 199, 0, 760, 761, 3, 429, 214, 0, 761, 762, 3, 399, 199, 0, 762, 118, 1, - 0, 0, 0, 763, 764, 3, 397, 198, 0, 764, 765, 3, 399, 199, 0, 765, 766, - 3, 427, 213, 0, 766, 767, 3, 395, 197, 0, 767, 120, 1, 0, 0, 0, 768, 769, - 3, 397, 198, 0, 769, 770, 3, 399, 199, 0, 770, 771, 3, 429, 214, 0, 771, - 772, 3, 391, 195, 0, 772, 773, 3, 395, 197, 0, 773, 774, 3, 405, 202, 0, - 774, 122, 1, 0, 0, 0, 775, 776, 3, 397, 198, 0, 776, 777, 3, 407, 203, - 0, 777, 778, 3, 427, 213, 0, 778, 779, 3, 429, 214, 0, 779, 780, 3, 407, - 203, 0, 780, 781, 3, 417, 208, 0, 781, 782, 3, 395, 197, 0, 782, 783, 3, - 429, 214, 0, 783, 124, 1, 0, 0, 0, 784, 785, 3, 397, 198, 0, 785, 786, - 3, 425, 212, 0, 786, 787, 3, 419, 209, 0, 787, 788, 3, 421, 210, 0, 788, - 126, 1, 0, 0, 0, 789, 790, 3, 399, 199, 0, 790, 791, 3, 391, 195, 0, 791, - 792, 3, 395, 197, 0, 792, 793, 3, 405, 202, 0, 793, 128, 1, 0, 0, 0, 794, - 795, 3, 399, 199, 0, 795, 796, 3, 413, 206, 0, 796, 797, 3, 427, 213, 0, - 797, 798, 3, 399, 199, 0, 798, 130, 1, 0, 0, 0, 799, 800, 3, 399, 199, - 0, 800, 801, 3, 417, 208, 0, 801, 802, 3, 397, 198, 0, 802, 132, 1, 0, - 0, 0, 803, 804, 3, 399, 199, 0, 804, 805, 3, 427, 213, 0, 805, 806, 3, - 395, 197, 0, 806, 807, 3, 391, 195, 0, 807, 808, 3, 421, 210, 0, 808, 809, - 3, 399, 199, 0, 809, 134, 1, 0, 0, 0, 810, 811, 3, 399, 199, 0, 811, 812, - 3, 437, 218, 0, 812, 813, 3, 395, 197, 0, 813, 814, 3, 399, 199, 0, 814, - 815, 3, 421, 210, 0, 815, 816, 3, 429, 214, 0, 816, 136, 1, 0, 0, 0, 817, - 818, 3, 399, 199, 0, 818, 819, 3, 437, 218, 0, 819, 820, 3, 395, 197, 0, - 820, 821, 3, 413, 206, 0, 821, 822, 3, 431, 215, 0, 822, 823, 3, 427, 213, - 0, 823, 824, 3, 407, 203, 0, 824, 825, 3, 433, 216, 0, 825, 826, 3, 399, - 199, 0, 826, 138, 1, 0, 0, 0, 827, 828, 3, 399, 199, 0, 828, 829, 3, 437, - 218, 0, 829, 830, 3, 407, 203, 0, 830, 831, 3, 427, 213, 0, 831, 832, 3, - 429, 214, 0, 832, 833, 3, 427, 213, 0, 833, 140, 1, 0, 0, 0, 834, 835, - 3, 399, 199, 0, 835, 836, 3, 437, 218, 0, 836, 837, 3, 421, 210, 0, 837, - 838, 3, 413, 206, 0, 838, 839, 3, 391, 195, 0, 839, 840, 3, 407, 203, 0, - 840, 841, 3, 417, 208, 0, 841, 142, 1, 0, 0, 0, 842, 843, 3, 401, 200, - 0, 843, 844, 3, 391, 195, 0, 844, 845, 3, 407, 203, 0, 845, 846, 3, 413, - 206, 0, 846, 144, 1, 0, 0, 0, 847, 848, 3, 401, 200, 0, 848, 849, 3, 419, - 209, 0, 849, 850, 3, 425, 212, 0, 850, 146, 1, 0, 0, 0, 851, 852, 3, 401, - 200, 0, 852, 853, 3, 419, 209, 0, 853, 854, 3, 425, 212, 0, 854, 855, 3, - 399, 199, 0, 855, 856, 3, 407, 203, 0, 856, 857, 3, 403, 201, 0, 857, 858, - 3, 417, 208, 0, 858, 148, 1, 0, 0, 0, 859, 860, 3, 401, 200, 0, 860, 861, - 3, 425, 212, 0, 861, 862, 3, 419, 209, 0, 862, 863, 3, 415, 207, 0, 863, - 150, 1, 0, 0, 0, 864, 865, 3, 401, 200, 0, 865, 866, 3, 431, 215, 0, 866, - 867, 3, 413, 206, 0, 867, 868, 3, 413, 206, 0, 868, 152, 1, 0, 0, 0, 869, - 870, 3, 403, 201, 0, 870, 871, 3, 413, 206, 0, 871, 872, 3, 419, 209, 0, - 872, 873, 3, 393, 196, 0, 873, 154, 1, 0, 0, 0, 874, 875, 3, 403, 201, - 0, 875, 876, 3, 425, 212, 0, 876, 877, 3, 419, 209, 0, 877, 878, 3, 431, - 215, 0, 878, 879, 3, 421, 210, 0, 879, 156, 1, 0, 0, 0, 880, 881, 3, 405, - 202, 0, 881, 882, 3, 391, 195, 0, 882, 883, 3, 433, 216, 0, 883, 884, 3, - 407, 203, 0, 884, 885, 3, 417, 208, 0, 885, 886, 3, 403, 201, 0, 886, 158, - 1, 0, 0, 0, 887, 888, 3, 407, 203, 0, 888, 889, 3, 401, 200, 0, 889, 160, - 1, 0, 0, 0, 890, 891, 3, 407, 203, 0, 891, 892, 3, 403, 201, 0, 892, 893, - 3, 417, 208, 0, 893, 894, 3, 419, 209, 0, 894, 895, 3, 425, 212, 0, 895, - 896, 3, 399, 199, 0, 896, 162, 1, 0, 0, 0, 897, 898, 3, 407, 203, 0, 898, - 899, 3, 415, 207, 0, 899, 900, 3, 415, 207, 0, 900, 901, 3, 399, 199, 0, - 901, 902, 3, 397, 198, 0, 902, 903, 3, 407, 203, 0, 903, 904, 3, 391, 195, - 0, 904, 905, 3, 429, 214, 0, 905, 906, 3, 399, 199, 0, 906, 164, 1, 0, - 0, 0, 907, 908, 3, 407, 203, 0, 908, 909, 3, 417, 208, 0, 909, 166, 1, - 0, 0, 0, 910, 911, 3, 407, 203, 0, 911, 912, 3, 417, 208, 0, 912, 913, - 3, 397, 198, 0, 913, 914, 3, 399, 199, 0, 914, 915, 3, 437, 218, 0, 915, - 168, 1, 0, 0, 0, 916, 917, 3, 407, 203, 0, 917, 918, 3, 417, 208, 0, 918, - 919, 3, 397, 198, 0, 919, 920, 3, 399, 199, 0, 920, 921, 3, 437, 218, 0, - 921, 922, 3, 399, 199, 0, 922, 923, 3, 397, 198, 0, 923, 170, 1, 0, 0, - 0, 924, 925, 3, 407, 203, 0, 925, 926, 3, 417, 208, 0, 926, 927, 3, 407, - 203, 0, 927, 928, 3, 429, 214, 0, 928, 929, 3, 407, 203, 0, 929, 930, 3, - 391, 195, 0, 930, 931, 3, 413, 206, 0, 931, 932, 3, 413, 206, 0, 932, 933, - 3, 439, 219, 0, 933, 172, 1, 0, 0, 0, 934, 935, 3, 407, 203, 0, 935, 936, - 3, 417, 208, 0, 936, 937, 3, 417, 208, 0, 937, 938, 3, 399, 199, 0, 938, - 939, 3, 425, 212, 0, 939, 174, 1, 0, 0, 0, 940, 941, 3, 407, 203, 0, 941, - 942, 3, 417, 208, 0, 942, 943, 3, 427, 213, 0, 943, 944, 3, 399, 199, 0, - 944, 945, 3, 425, 212, 0, 945, 946, 3, 429, 214, 0, 946, 176, 1, 0, 0, - 0, 947, 948, 3, 407, 203, 0, 948, 949, 3, 417, 208, 0, 949, 950, 3, 427, - 213, 0, 950, 951, 3, 429, 214, 0, 951, 952, 3, 399, 199, 0, 952, 953, 3, - 391, 195, 0, 953, 954, 3, 397, 198, 0, 954, 178, 1, 0, 0, 0, 955, 956, - 3, 407, 203, 0, 956, 957, 3, 417, 208, 0, 957, 958, 3, 429, 214, 0, 958, - 959, 3, 399, 199, 0, 959, 960, 3, 425, 212, 0, 960, 961, 3, 427, 213, 0, - 961, 962, 3, 399, 199, 0, 962, 963, 3, 395, 197, 0, 963, 964, 3, 429, 214, - 0, 964, 180, 1, 0, 0, 0, 965, 966, 3, 407, 203, 0, 966, 967, 3, 417, 208, - 0, 967, 968, 3, 429, 214, 0, 968, 969, 3, 419, 209, 0, 969, 182, 1, 0, - 0, 0, 970, 971, 3, 407, 203, 0, 971, 972, 3, 427, 213, 0, 972, 184, 1, - 0, 0, 0, 973, 974, 3, 407, 203, 0, 974, 975, 3, 427, 213, 0, 975, 976, - 3, 417, 208, 0, 976, 977, 3, 431, 215, 0, 977, 978, 3, 413, 206, 0, 978, - 979, 3, 413, 206, 0, 979, 186, 1, 0, 0, 0, 980, 981, 3, 409, 204, 0, 981, - 982, 3, 419, 209, 0, 982, 983, 3, 407, 203, 0, 983, 984, 3, 417, 208, 0, - 984, 188, 1, 0, 0, 0, 985, 986, 3, 411, 205, 0, 986, 987, 3, 399, 199, - 0, 987, 988, 3, 439, 219, 0, 988, 190, 1, 0, 0, 0, 989, 990, 3, 413, 206, - 0, 990, 991, 3, 399, 199, 0, 991, 992, 3, 401, 200, 0, 992, 993, 3, 429, - 214, 0, 993, 192, 1, 0, 0, 0, 994, 995, 3, 413, 206, 0, 995, 996, 3, 407, - 203, 0, 996, 997, 3, 411, 205, 0, 997, 998, 3, 399, 199, 0, 998, 194, 1, - 0, 0, 0, 999, 1000, 3, 413, 206, 0, 1000, 1001, 3, 407, 203, 0, 1001, 1002, - 3, 415, 207, 0, 1002, 1003, 3, 407, 203, 0, 1003, 1004, 3, 429, 214, 0, - 1004, 196, 1, 0, 0, 0, 1005, 1006, 3, 415, 207, 0, 1006, 1007, 3, 391, - 195, 0, 1007, 1008, 3, 429, 214, 0, 1008, 1009, 3, 395, 197, 0, 1009, 1010, - 3, 405, 202, 0, 1010, 198, 1, 0, 0, 0, 1011, 1012, 3, 417, 208, 0, 1012, - 1013, 3, 391, 195, 0, 1013, 1014, 3, 429, 214, 0, 1014, 1015, 3, 431, 215, - 0, 1015, 1016, 3, 425, 212, 0, 1016, 1017, 3, 391, 195, 0, 1017, 1018, - 3, 413, 206, 0, 1018, 200, 1, 0, 0, 0, 1019, 1020, 3, 417, 208, 0, 1020, - 1021, 3, 419, 209, 0, 1021, 202, 1, 0, 0, 0, 1022, 1023, 3, 417, 208, 0, - 1023, 1024, 3, 419, 209, 0, 1024, 1025, 3, 429, 214, 0, 1025, 204, 1, 0, - 0, 0, 1026, 1027, 3, 417, 208, 0, 1027, 1028, 3, 419, 209, 0, 1028, 1029, - 3, 429, 214, 0, 1029, 1030, 3, 417, 208, 0, 1030, 1031, 3, 431, 215, 0, - 1031, 1032, 3, 413, 206, 0, 1032, 1033, 3, 413, 206, 0, 1033, 206, 1, 0, - 0, 0, 1034, 1035, 3, 417, 208, 0, 1035, 1036, 3, 431, 215, 0, 1036, 1037, - 3, 413, 206, 0, 1037, 1038, 3, 413, 206, 0, 1038, 208, 1, 0, 0, 0, 1039, - 1040, 3, 419, 209, 0, 1040, 1041, 3, 401, 200, 0, 1041, 210, 1, 0, 0, 0, - 1042, 1043, 3, 419, 209, 0, 1043, 1044, 3, 401, 200, 0, 1044, 1045, 3, - 401, 200, 0, 1045, 1046, 3, 427, 213, 0, 1046, 1047, 3, 399, 199, 0, 1047, - 1048, 3, 429, 214, 0, 1048, 212, 1, 0, 0, 0, 1049, 1050, 3, 419, 209, 0, - 1050, 1051, 3, 417, 208, 0, 1051, 214, 1, 0, 0, 0, 1052, 1053, 3, 419, - 209, 0, 1053, 1054, 3, 425, 212, 0, 1054, 216, 1, 0, 0, 0, 1055, 1056, - 3, 419, 209, 0, 1056, 1057, 3, 425, 212, 0, 1057, 1058, 3, 397, 198, 0, - 1058, 1059, 3, 399, 199, 0, 1059, 1060, 3, 425, 212, 0, 1060, 218, 1, 0, - 0, 0, 1061, 1062, 3, 419, 209, 0, 1062, 1063, 3, 431, 215, 0, 1063, 1064, - 3, 429, 214, 0, 1064, 1065, 3, 399, 199, 0, 1065, 1066, 3, 425, 212, 0, - 1066, 220, 1, 0, 0, 0, 1067, 1068, 3, 421, 210, 0, 1068, 1069, 3, 413, - 206, 0, 1069, 1070, 3, 391, 195, 0, 1070, 1071, 3, 417, 208, 0, 1071, 222, - 1, 0, 0, 0, 1072, 1073, 3, 421, 210, 0, 1073, 1074, 3, 425, 212, 0, 1074, - 1075, 3, 391, 195, 0, 1075, 1076, 3, 403, 201, 0, 1076, 1077, 3, 415, 207, - 0, 1077, 1078, 3, 391, 195, 0, 1078, 224, 1, 0, 0, 0, 1079, 1080, 3, 421, - 210, 0, 1080, 1081, 3, 425, 212, 0, 1081, 1082, 3, 407, 203, 0, 1082, 1083, - 3, 415, 207, 0, 1083, 1084, 3, 391, 195, 0, 1084, 1085, 3, 425, 212, 0, - 1085, 1086, 3, 439, 219, 0, 1086, 226, 1, 0, 0, 0, 1087, 1088, 3, 423, - 211, 0, 1088, 1089, 3, 431, 215, 0, 1089, 1090, 3, 399, 199, 0, 1090, 1091, - 3, 425, 212, 0, 1091, 1092, 3, 439, 219, 0, 1092, 228, 1, 0, 0, 0, 1093, - 1094, 3, 425, 212, 0, 1094, 1095, 3, 391, 195, 0, 1095, 1096, 3, 407, 203, - 0, 1096, 1097, 3, 427, 213, 0, 1097, 1098, 3, 399, 199, 0, 1098, 230, 1, - 0, 0, 0, 1099, 1100, 3, 425, 212, 0, 1100, 1101, 3, 399, 199, 0, 1101, - 1102, 3, 395, 197, 0, 1102, 1103, 3, 431, 215, 0, 1103, 1104, 3, 425, 212, - 0, 1104, 1105, 3, 427, 213, 0, 1105, 1106, 3, 407, 203, 0, 1106, 1107, - 3, 433, 216, 0, 1107, 1108, 3, 399, 199, 0, 1108, 232, 1, 0, 0, 0, 1109, - 1110, 3, 425, 212, 0, 1110, 1111, 3, 399, 199, 0, 1111, 1112, 3, 401, 200, - 0, 1112, 1113, 3, 399, 199, 0, 1113, 1114, 3, 425, 212, 0, 1114, 1115, - 3, 399, 199, 0, 1115, 1116, 3, 417, 208, 0, 1116, 1117, 3, 395, 197, 0, - 1117, 1118, 3, 399, 199, 0, 1118, 1119, 3, 427, 213, 0, 1119, 234, 1, 0, - 0, 0, 1120, 1121, 3, 425, 212, 0, 1121, 1122, 3, 399, 199, 0, 1122, 1123, - 3, 403, 201, 0, 1123, 1124, 3, 399, 199, 0, 1124, 1125, 3, 437, 218, 0, - 1125, 1126, 3, 421, 210, 0, 1126, 236, 1, 0, 0, 0, 1127, 1128, 3, 425, - 212, 0, 1128, 1129, 3, 399, 199, 0, 1129, 1130, 3, 407, 203, 0, 1130, 1131, - 3, 417, 208, 0, 1131, 1132, 3, 397, 198, 0, 1132, 1133, 3, 399, 199, 0, - 1133, 1134, 3, 437, 218, 0, 1134, 238, 1, 0, 0, 0, 1135, 1136, 3, 425, - 212, 0, 1136, 1137, 3, 399, 199, 0, 1137, 1138, 3, 413, 206, 0, 1138, 1139, - 3, 399, 199, 0, 1139, 1140, 3, 391, 195, 0, 1140, 1141, 3, 427, 213, 0, - 1141, 1142, 3, 399, 199, 0, 1142, 240, 1, 0, 0, 0, 1143, 1144, 3, 425, - 212, 0, 1144, 1145, 3, 399, 199, 0, 1145, 1146, 3, 417, 208, 0, 1146, 1147, - 3, 391, 195, 0, 1147, 1148, 3, 415, 207, 0, 1148, 1149, 3, 399, 199, 0, - 1149, 242, 1, 0, 0, 0, 1150, 1151, 3, 425, 212, 0, 1151, 1152, 3, 399, - 199, 0, 1152, 1153, 3, 421, 210, 0, 1153, 1154, 3, 413, 206, 0, 1154, 1155, - 3, 391, 195, 0, 1155, 1156, 3, 395, 197, 0, 1156, 1157, 3, 399, 199, 0, - 1157, 244, 1, 0, 0, 0, 1158, 1159, 3, 425, 212, 0, 1159, 1160, 3, 399, - 199, 0, 1160, 1161, 3, 427, 213, 0, 1161, 1162, 3, 429, 214, 0, 1162, 1163, - 3, 425, 212, 0, 1163, 1164, 3, 407, 203, 0, 1164, 1165, 3, 395, 197, 0, - 1165, 1166, 3, 429, 214, 0, 1166, 246, 1, 0, 0, 0, 1167, 1168, 3, 425, - 212, 0, 1168, 1169, 3, 399, 199, 0, 1169, 1170, 3, 429, 214, 0, 1170, 1171, - 3, 431, 215, 0, 1171, 1172, 3, 425, 212, 0, 1172, 1173, 3, 417, 208, 0, - 1173, 1174, 3, 407, 203, 0, 1174, 1175, 3, 417, 208, 0, 1175, 1176, 3, - 403, 201, 0, 1176, 248, 1, 0, 0, 0, 1177, 1178, 3, 425, 212, 0, 1178, 1179, - 3, 407, 203, 0, 1179, 1180, 3, 403, 201, 0, 1180, 1181, 3, 405, 202, 0, - 1181, 1182, 3, 429, 214, 0, 1182, 250, 1, 0, 0, 0, 1183, 1184, 3, 425, - 212, 0, 1184, 1185, 3, 419, 209, 0, 1185, 1186, 3, 413, 206, 0, 1186, 1187, - 3, 413, 206, 0, 1187, 1188, 3, 393, 196, 0, 1188, 1189, 3, 391, 195, 0, - 1189, 1190, 3, 395, 197, 0, 1190, 1191, 3, 411, 205, 0, 1191, 252, 1, 0, - 0, 0, 1192, 1193, 3, 425, 212, 0, 1193, 1194, 3, 419, 209, 0, 1194, 1195, - 3, 435, 217, 0, 1195, 254, 1, 0, 0, 0, 1196, 1197, 3, 425, 212, 0, 1197, - 1198, 3, 419, 209, 0, 1198, 1199, 3, 435, 217, 0, 1199, 1200, 3, 427, 213, - 0, 1200, 256, 1, 0, 0, 0, 1201, 1202, 3, 427, 213, 0, 1202, 1203, 3, 391, - 195, 0, 1203, 1204, 3, 433, 216, 0, 1204, 1205, 3, 399, 199, 0, 1205, 1206, - 3, 421, 210, 0, 1206, 1207, 3, 419, 209, 0, 1207, 1208, 3, 407, 203, 0, - 1208, 1209, 3, 417, 208, 0, 1209, 1210, 3, 429, 214, 0, 1210, 258, 1, 0, - 0, 0, 1211, 1212, 3, 427, 213, 0, 1212, 1213, 3, 399, 199, 0, 1213, 1214, - 3, 413, 206, 0, 1214, 1215, 3, 399, 199, 0, 1215, 1216, 3, 395, 197, 0, - 1216, 1217, 3, 429, 214, 0, 1217, 260, 1, 0, 0, 0, 1218, 1219, 3, 427, - 213, 0, 1219, 1220, 3, 399, 199, 0, 1220, 1221, 3, 429, 214, 0, 1221, 262, - 1, 0, 0, 0, 1222, 1223, 3, 429, 214, 0, 1223, 1224, 3, 391, 195, 0, 1224, - 1225, 3, 393, 196, 0, 1225, 1226, 3, 413, 206, 0, 1226, 1227, 3, 399, 199, - 0, 1227, 264, 1, 0, 0, 0, 1228, 1229, 3, 429, 214, 0, 1229, 1230, 3, 399, - 199, 0, 1230, 1231, 3, 415, 207, 0, 1231, 1232, 3, 421, 210, 0, 1232, 266, - 1, 0, 0, 0, 1233, 1234, 3, 429, 214, 0, 1234, 1235, 3, 399, 199, 0, 1235, - 1236, 3, 415, 207, 0, 1236, 1237, 3, 421, 210, 0, 1237, 1238, 3, 419, 209, - 0, 1238, 1239, 3, 425, 212, 0, 1239, 1240, 3, 391, 195, 0, 1240, 1241, - 3, 425, 212, 0, 1241, 1242, 3, 439, 219, 0, 1242, 268, 1, 0, 0, 0, 1243, - 1244, 3, 429, 214, 0, 1244, 1245, 3, 405, 202, 0, 1245, 1246, 3, 399, 199, - 0, 1246, 1247, 3, 417, 208, 0, 1247, 270, 1, 0, 0, 0, 1248, 1249, 3, 429, - 214, 0, 1249, 1250, 3, 419, 209, 0, 1250, 272, 1, 0, 0, 0, 1251, 1252, - 3, 429, 214, 0, 1252, 1253, 3, 425, 212, 0, 1253, 1254, 3, 391, 195, 0, - 1254, 1255, 3, 417, 208, 0, 1255, 1256, 3, 427, 213, 0, 1256, 1257, 3, - 391, 195, 0, 1257, 1258, 3, 395, 197, 0, 1258, 1259, 3, 429, 214, 0, 1259, - 1260, 3, 407, 203, 0, 1260, 1261, 3, 419, 209, 0, 1261, 1262, 3, 417, 208, - 0, 1262, 274, 1, 0, 0, 0, 1263, 1264, 3, 429, 214, 0, 1264, 1265, 3, 425, - 212, 0, 1265, 1266, 3, 407, 203, 0, 1266, 1267, 3, 403, 201, 0, 1267, 1268, - 3, 403, 201, 0, 1268, 1269, 3, 399, 199, 0, 1269, 1270, 3, 425, 212, 0, - 1270, 276, 1, 0, 0, 0, 1271, 1272, 3, 431, 215, 0, 1272, 1273, 3, 417, - 208, 0, 1273, 1274, 3, 407, 203, 0, 1274, 1275, 3, 419, 209, 0, 1275, 1276, - 3, 417, 208, 0, 1276, 278, 1, 0, 0, 0, 1277, 1278, 3, 431, 215, 0, 1278, - 1279, 3, 417, 208, 0, 1279, 1280, 3, 407, 203, 0, 1280, 1281, 3, 423, 211, - 0, 1281, 1282, 3, 431, 215, 0, 1282, 1283, 3, 399, 199, 0, 1283, 280, 1, - 0, 0, 0, 1284, 1285, 3, 431, 215, 0, 1285, 1286, 3, 421, 210, 0, 1286, - 1287, 3, 397, 198, 0, 1287, 1288, 3, 391, 195, 0, 1288, 1289, 3, 429, 214, - 0, 1289, 1290, 3, 399, 199, 0, 1290, 282, 1, 0, 0, 0, 1291, 1292, 3, 431, - 215, 0, 1292, 1293, 3, 427, 213, 0, 1293, 1294, 3, 407, 203, 0, 1294, 1295, - 3, 417, 208, 0, 1295, 1296, 3, 403, 201, 0, 1296, 284, 1, 0, 0, 0, 1297, - 1298, 3, 433, 216, 0, 1298, 1299, 3, 391, 195, 0, 1299, 1300, 3, 395, 197, - 0, 1300, 1301, 3, 431, 215, 0, 1301, 1302, 3, 431, 215, 0, 1302, 1303, - 3, 415, 207, 0, 1303, 286, 1, 0, 0, 0, 1304, 1305, 3, 433, 216, 0, 1305, - 1306, 3, 391, 195, 0, 1306, 1307, 3, 413, 206, 0, 1307, 1308, 3, 431, 215, - 0, 1308, 1309, 3, 399, 199, 0, 1309, 1310, 3, 427, 213, 0, 1310, 288, 1, - 0, 0, 0, 1311, 1312, 3, 433, 216, 0, 1312, 1313, 3, 407, 203, 0, 1313, - 1314, 3, 399, 199, 0, 1314, 1315, 3, 435, 217, 0, 1315, 290, 1, 0, 0, 0, - 1316, 1317, 3, 433, 216, 0, 1317, 1318, 3, 407, 203, 0, 1318, 1319, 3, - 425, 212, 0, 1319, 1320, 3, 429, 214, 0, 1320, 1321, 3, 431, 215, 0, 1321, - 1322, 3, 391, 195, 0, 1322, 1323, 3, 413, 206, 0, 1323, 292, 1, 0, 0, 0, - 1324, 1325, 3, 435, 217, 0, 1325, 1326, 3, 405, 202, 0, 1326, 1327, 3, - 399, 199, 0, 1327, 1328, 3, 417, 208, 0, 1328, 294, 1, 0, 0, 0, 1329, 1330, - 3, 435, 217, 0, 1330, 1331, 3, 405, 202, 0, 1331, 1332, 3, 399, 199, 0, - 1332, 1333, 3, 425, 212, 0, 1333, 1334, 3, 399, 199, 0, 1334, 296, 1, 0, - 0, 0, 1335, 1336, 3, 435, 217, 0, 1336, 1337, 3, 407, 203, 0, 1337, 1338, - 3, 429, 214, 0, 1338, 1339, 3, 405, 202, 0, 1339, 298, 1, 0, 0, 0, 1340, - 1341, 3, 435, 217, 0, 1341, 1342, 3, 407, 203, 0, 1342, 1343, 3, 429, 214, - 0, 1343, 1344, 3, 405, 202, 0, 1344, 1345, 3, 419, 209, 0, 1345, 1346, - 3, 431, 215, 0, 1346, 1347, 3, 429, 214, 0, 1347, 300, 1, 0, 0, 0, 1348, - 1349, 3, 401, 200, 0, 1349, 1350, 3, 407, 203, 0, 1350, 1351, 3, 425, 212, - 0, 1351, 1352, 3, 427, 213, 0, 1352, 1353, 3, 429, 214, 0, 1353, 1354, - 5, 95, 0, 0, 1354, 1355, 3, 433, 216, 0, 1355, 1356, 3, 391, 195, 0, 1356, - 1357, 3, 413, 206, 0, 1357, 1358, 3, 431, 215, 0, 1358, 1359, 3, 399, 199, - 0, 1359, 302, 1, 0, 0, 0, 1360, 1361, 3, 419, 209, 0, 1361, 1362, 3, 433, - 216, 0, 1362, 1363, 3, 399, 199, 0, 1363, 1364, 3, 425, 212, 0, 1364, 304, - 1, 0, 0, 0, 1365, 1366, 3, 421, 210, 0, 1366, 1367, 3, 391, 195, 0, 1367, - 1368, 3, 425, 212, 0, 1368, 1369, 3, 429, 214, 0, 1369, 1370, 3, 407, 203, - 0, 1370, 1371, 3, 429, 214, 0, 1371, 1372, 3, 407, 203, 0, 1372, 1373, - 3, 419, 209, 0, 1373, 1374, 3, 417, 208, 0, 1374, 306, 1, 0, 0, 0, 1375, - 1376, 3, 425, 212, 0, 1376, 1377, 3, 391, 195, 0, 1377, 1378, 3, 417, 208, - 0, 1378, 1379, 3, 403, 201, 0, 1379, 1380, 3, 399, 199, 0, 1380, 308, 1, - 0, 0, 0, 1381, 1382, 3, 421, 210, 0, 1382, 1383, 3, 425, 212, 0, 1383, - 1384, 3, 399, 199, 0, 1384, 1385, 3, 395, 197, 0, 1385, 1386, 3, 399, 199, - 0, 1386, 1387, 3, 397, 198, 0, 1387, 1388, 3, 407, 203, 0, 1388, 1389, - 3, 417, 208, 0, 1389, 1390, 3, 403, 201, 0, 1390, 310, 1, 0, 0, 0, 1391, - 1392, 3, 431, 215, 0, 1392, 1393, 3, 417, 208, 0, 1393, 1394, 3, 393, 196, - 0, 1394, 1395, 3, 419, 209, 0, 1395, 1396, 3, 431, 215, 0, 1396, 1397, - 3, 417, 208, 0, 1397, 1398, 3, 397, 198, 0, 1398, 1399, 3, 399, 199, 0, - 1399, 1400, 3, 397, 198, 0, 1400, 312, 1, 0, 0, 0, 1401, 1402, 3, 395, - 197, 0, 1402, 1403, 3, 431, 215, 0, 1403, 1404, 3, 425, 212, 0, 1404, 1405, - 3, 425, 212, 0, 1405, 1406, 3, 399, 199, 0, 1406, 1407, 3, 417, 208, 0, - 1407, 1408, 3, 429, 214, 0, 1408, 314, 1, 0, 0, 0, 1409, 1410, 3, 401, - 200, 0, 1410, 1411, 3, 419, 209, 0, 1411, 1412, 3, 413, 206, 0, 1412, 1413, - 3, 413, 206, 0, 1413, 1414, 3, 419, 209, 0, 1414, 1415, 3, 435, 217, 0, - 1415, 1416, 3, 407, 203, 0, 1416, 1417, 3, 417, 208, 0, 1417, 1418, 3, - 403, 201, 0, 1418, 316, 1, 0, 0, 0, 1419, 1420, 3, 395, 197, 0, 1420, 1421, - 3, 431, 215, 0, 1421, 1422, 3, 415, 207, 0, 1422, 1423, 3, 399, 199, 0, - 1423, 1424, 5, 95, 0, 0, 1424, 1425, 3, 397, 198, 0, 1425, 1426, 3, 407, - 203, 0, 1426, 1427, 3, 427, 213, 0, 1427, 1428, 3, 429, 214, 0, 1428, 318, - 1, 0, 0, 0, 1429, 1430, 3, 397, 198, 0, 1430, 1431, 3, 399, 199, 0, 1431, - 1432, 3, 417, 208, 0, 1432, 1433, 3, 427, 213, 0, 1433, 1434, 3, 399, 199, - 0, 1434, 1435, 5, 95, 0, 0, 1435, 1436, 3, 425, 212, 0, 1436, 1437, 3, - 391, 195, 0, 1437, 1438, 3, 417, 208, 0, 1438, 1439, 3, 411, 205, 0, 1439, - 320, 1, 0, 0, 0, 1440, 1441, 3, 413, 206, 0, 1441, 1442, 3, 391, 195, 0, - 1442, 1443, 3, 403, 201, 0, 1443, 322, 1, 0, 0, 0, 1444, 1445, 3, 413, - 206, 0, 1445, 1446, 3, 391, 195, 0, 1446, 1447, 3, 427, 213, 0, 1447, 1448, - 3, 429, 214, 0, 1448, 1449, 5, 95, 0, 0, 1449, 1450, 3, 433, 216, 0, 1450, - 1451, 3, 391, 195, 0, 1451, 1452, 3, 413, 206, 0, 1452, 1453, 3, 431, 215, - 0, 1453, 1454, 3, 399, 199, 0, 1454, 324, 1, 0, 0, 0, 1455, 1456, 3, 413, - 206, 0, 1456, 1457, 3, 399, 199, 0, 1457, 1458, 3, 391, 195, 0, 1458, 1459, - 3, 397, 198, 0, 1459, 326, 1, 0, 0, 0, 1460, 1461, 3, 417, 208, 0, 1461, - 1462, 3, 429, 214, 0, 1462, 1463, 3, 405, 202, 0, 1463, 1464, 5, 95, 0, - 0, 1464, 1465, 3, 433, 216, 0, 1465, 1466, 3, 391, 195, 0, 1466, 1467, - 3, 413, 206, 0, 1467, 1468, 3, 431, 215, 0, 1468, 1469, 3, 399, 199, 0, - 1469, 328, 1, 0, 0, 0, 1470, 1471, 3, 417, 208, 0, 1471, 1472, 3, 429, - 214, 0, 1472, 1473, 3, 407, 203, 0, 1473, 1474, 3, 413, 206, 0, 1474, 1475, - 3, 399, 199, 0, 1475, 330, 1, 0, 0, 0, 1476, 1477, 3, 421, 210, 0, 1477, - 1478, 3, 399, 199, 0, 1478, 1479, 3, 425, 212, 0, 1479, 1480, 3, 395, 197, - 0, 1480, 1481, 3, 399, 199, 0, 1481, 1482, 3, 417, 208, 0, 1482, 1483, - 3, 429, 214, 0, 1483, 1484, 5, 95, 0, 0, 1484, 1485, 3, 425, 212, 0, 1485, - 1486, 3, 391, 195, 0, 1486, 1487, 3, 417, 208, 0, 1487, 1488, 3, 411, 205, - 0, 1488, 332, 1, 0, 0, 0, 1489, 1490, 3, 425, 212, 0, 1490, 1491, 3, 391, - 195, 0, 1491, 1492, 3, 417, 208, 0, 1492, 1493, 3, 411, 205, 0, 1493, 334, - 1, 0, 0, 0, 1494, 1495, 3, 425, 212, 0, 1495, 1496, 3, 419, 209, 0, 1496, - 1497, 3, 435, 217, 0, 1497, 1498, 5, 95, 0, 0, 1498, 1499, 3, 417, 208, - 0, 1499, 1500, 3, 431, 215, 0, 1500, 1501, 3, 415, 207, 0, 1501, 1502, - 3, 393, 196, 0, 1502, 1503, 3, 399, 199, 0, 1503, 1504, 3, 425, 212, 0, - 1504, 336, 1, 0, 0, 0, 1505, 1506, 3, 403, 201, 0, 1506, 1507, 3, 399, - 199, 0, 1507, 1508, 3, 417, 208, 0, 1508, 1509, 3, 399, 199, 0, 1509, 1510, - 3, 425, 212, 0, 1510, 1511, 3, 391, 195, 0, 1511, 1512, 3, 429, 214, 0, - 1512, 1513, 3, 399, 199, 0, 1513, 1514, 3, 397, 198, 0, 1514, 338, 1, 0, - 0, 0, 1515, 1516, 3, 391, 195, 0, 1516, 1517, 3, 413, 206, 0, 1517, 1518, - 3, 435, 217, 0, 1518, 1519, 3, 391, 195, 0, 1519, 1520, 3, 439, 219, 0, - 1520, 1521, 3, 427, 213, 0, 1521, 340, 1, 0, 0, 0, 1522, 1523, 3, 427, - 213, 0, 1523, 1524, 3, 429, 214, 0, 1524, 1525, 3, 419, 209, 0, 1525, 1526, - 3, 425, 212, 0, 1526, 1527, 3, 399, 199, 0, 1527, 1528, 3, 397, 198, 0, - 1528, 342, 1, 0, 0, 0, 1529, 1530, 3, 429, 214, 0, 1530, 1531, 3, 425, - 212, 0, 1531, 1532, 3, 431, 215, 0, 1532, 1533, 3, 399, 199, 0, 1533, 344, - 1, 0, 0, 0, 1534, 1535, 3, 401, 200, 0, 1535, 1536, 3, 391, 195, 0, 1536, - 1537, 3, 413, 206, 0, 1537, 1538, 3, 427, 213, 0, 1538, 1539, 3, 399, 199, - 0, 1539, 346, 1, 0, 0, 0, 1540, 1541, 3, 435, 217, 0, 1541, 1542, 3, 407, - 203, 0, 1542, 1543, 3, 417, 208, 0, 1543, 1544, 3, 397, 198, 0, 1544, 1545, - 3, 419, 209, 0, 1545, 1546, 3, 435, 217, 0, 1546, 348, 1, 0, 0, 0, 1547, - 1548, 3, 417, 208, 0, 1548, 1549, 3, 431, 215, 0, 1549, 1550, 3, 413, 206, - 0, 1550, 1551, 3, 413, 206, 0, 1551, 1552, 3, 427, 213, 0, 1552, 350, 1, - 0, 0, 0, 1553, 1554, 3, 401, 200, 0, 1554, 1555, 3, 407, 203, 0, 1555, - 1556, 3, 425, 212, 0, 1556, 1557, 3, 427, 213, 0, 1557, 1558, 3, 429, 214, - 0, 1558, 352, 1, 0, 0, 0, 1559, 1560, 3, 413, 206, 0, 1560, 1561, 3, 391, - 195, 0, 1561, 1562, 3, 427, 213, 0, 1562, 1563, 3, 429, 214, 0, 1563, 354, - 1, 0, 0, 0, 1564, 1565, 3, 401, 200, 0, 1565, 1566, 3, 407, 203, 0, 1566, - 1567, 3, 413, 206, 0, 1567, 1568, 3, 429, 214, 0, 1568, 1569, 3, 399, 199, - 0, 1569, 1570, 3, 425, 212, 0, 1570, 356, 1, 0, 0, 0, 1571, 1572, 3, 403, - 201, 0, 1572, 1573, 3, 425, 212, 0, 1573, 1574, 3, 419, 209, 0, 1574, 1575, - 3, 431, 215, 0, 1575, 1576, 3, 421, 210, 0, 1576, 1577, 3, 427, 213, 0, - 1577, 358, 1, 0, 0, 0, 1578, 1579, 3, 399, 199, 0, 1579, 1580, 3, 437, - 218, 0, 1580, 1581, 3, 395, 197, 0, 1581, 1582, 3, 413, 206, 0, 1582, 1583, - 3, 431, 215, 0, 1583, 1584, 3, 397, 198, 0, 1584, 1585, 3, 399, 199, 0, - 1585, 360, 1, 0, 0, 0, 1586, 1587, 3, 429, 214, 0, 1587, 1588, 3, 407, - 203, 0, 1588, 1589, 3, 399, 199, 0, 1589, 1590, 3, 427, 213, 0, 1590, 362, - 1, 0, 0, 0, 1591, 1592, 3, 419, 209, 0, 1592, 1593, 3, 429, 214, 0, 1593, - 1594, 3, 405, 202, 0, 1594, 1595, 3, 399, 199, 0, 1595, 1596, 3, 425, 212, - 0, 1596, 1597, 3, 427, 213, 0, 1597, 364, 1, 0, 0, 0, 1598, 1599, 3, 397, - 198, 0, 1599, 1600, 3, 419, 209, 0, 1600, 366, 1, 0, 0, 0, 1601, 1602, - 3, 417, 208, 0, 1602, 1603, 3, 419, 209, 0, 1603, 1604, 3, 429, 214, 0, - 1604, 1605, 3, 405, 202, 0, 1605, 1606, 3, 407, 203, 0, 1606, 1607, 3, - 417, 208, 0, 1607, 1608, 3, 403, 201, 0, 1608, 368, 1, 0, 0, 0, 1609, 1615, - 5, 34, 0, 0, 1610, 1614, 8, 0, 0, 0, 1611, 1612, 5, 34, 0, 0, 1612, 1614, - 5, 34, 0, 0, 1613, 1610, 1, 0, 0, 0, 1613, 1611, 1, 0, 0, 0, 1614, 1617, - 1, 0, 0, 0, 1615, 1613, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1618, - 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1618, 1645, 5, 34, 0, 0, 1619, 1625, - 5, 96, 0, 0, 1620, 1624, 8, 1, 0, 0, 1621, 1622, 5, 96, 0, 0, 1622, 1624, - 5, 96, 0, 0, 1623, 1620, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1627, - 1, 0, 0, 0, 1625, 1623, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1628, - 1, 0, 0, 0, 1627, 1625, 1, 0, 0, 0, 1628, 1645, 5, 96, 0, 0, 1629, 1633, - 5, 91, 0, 0, 1630, 1632, 8, 2, 0, 0, 1631, 1630, 1, 0, 0, 0, 1632, 1635, - 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, - 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1645, 5, 93, 0, 0, 1637, 1641, - 7, 3, 0, 0, 1638, 1640, 7, 4, 0, 0, 1639, 1638, 1, 0, 0, 0, 1640, 1643, - 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1645, - 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1644, 1609, 1, 0, 0, 0, 1644, 1619, - 1, 0, 0, 0, 1644, 1629, 1, 0, 0, 0, 1644, 1637, 1, 0, 0, 0, 1645, 370, - 1, 0, 0, 0, 1646, 1648, 3, 389, 194, 0, 1647, 1646, 1, 0, 0, 0, 1648, 1649, - 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1658, - 1, 0, 0, 0, 1651, 1655, 5, 46, 0, 0, 1652, 1654, 3, 389, 194, 0, 1653, - 1652, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, - 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1658, - 1651, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1667, 1, 0, 0, 0, 1660, - 1662, 5, 46, 0, 0, 1661, 1663, 3, 389, 194, 0, 1662, 1661, 1, 0, 0, 0, - 1663, 1664, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, - 1665, 1667, 1, 0, 0, 0, 1666, 1647, 1, 0, 0, 0, 1666, 1660, 1, 0, 0, 0, - 1667, 1677, 1, 0, 0, 0, 1668, 1670, 3, 399, 199, 0, 1669, 1671, 7, 5, 0, - 0, 1670, 1669, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 1, 0, 0, - 0, 1672, 1674, 3, 389, 194, 0, 1673, 1672, 1, 0, 0, 0, 1674, 1675, 1, 0, - 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, - 0, 0, 1677, 1668, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1688, 1, 0, - 0, 0, 1679, 1680, 5, 48, 0, 0, 1680, 1681, 5, 120, 0, 0, 1681, 1683, 1, - 0, 0, 0, 1682, 1684, 3, 387, 193, 0, 1683, 1682, 1, 0, 0, 0, 1684, 1685, - 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1688, - 1, 0, 0, 0, 1687, 1666, 1, 0, 0, 0, 1687, 1679, 1, 0, 0, 0, 1688, 372, - 1, 0, 0, 0, 1689, 1693, 5, 63, 0, 0, 1690, 1692, 3, 389, 194, 0, 1691, - 1690, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, - 1694, 1, 0, 0, 0, 1694, 1699, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, - 1697, 7, 6, 0, 0, 1697, 1699, 3, 369, 184, 0, 1698, 1689, 1, 0, 0, 0, 1698, - 1696, 1, 0, 0, 0, 1699, 374, 1, 0, 0, 0, 1700, 1706, 5, 39, 0, 0, 1701, - 1705, 8, 7, 0, 0, 1702, 1703, 5, 39, 0, 0, 1703, 1705, 5, 39, 0, 0, 1704, - 1701, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, - 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, - 1706, 1, 0, 0, 0, 1709, 1710, 5, 39, 0, 0, 1710, 376, 1, 0, 0, 0, 1711, - 1712, 3, 437, 218, 0, 1712, 1713, 3, 375, 187, 0, 1713, 378, 1, 0, 0, 0, - 1714, 1715, 5, 45, 0, 0, 1715, 1716, 5, 45, 0, 0, 1716, 1720, 1, 0, 0, - 0, 1717, 1719, 8, 8, 0, 0, 1718, 1717, 1, 0, 0, 0, 1719, 1722, 1, 0, 0, - 0, 1720, 1718, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1728, 1, 0, 0, - 0, 1722, 1720, 1, 0, 0, 0, 1723, 1725, 5, 13, 0, 0, 1724, 1723, 1, 0, 0, - 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1729, 5, 10, 0, - 0, 1727, 1729, 5, 0, 0, 1, 1728, 1724, 1, 0, 0, 0, 1728, 1727, 1, 0, 0, - 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 6, 189, 0, 0, 1731, 380, 1, 0, 0, - 0, 1732, 1733, 5, 47, 0, 0, 1733, 1734, 5, 42, 0, 0, 1734, 1738, 1, 0, - 0, 0, 1735, 1737, 9, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, - 0, 0, 1738, 1739, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1741, 1, 0, - 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 42, 0, 0, 1742, 1743, 5, 47, - 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 6, 190, 0, 0, 1745, 382, 1, 0, - 0, 0, 1746, 1747, 7, 9, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 6, 191, - 0, 0, 1749, 384, 1, 0, 0, 0, 1750, 1751, 9, 0, 0, 0, 1751, 386, 1, 0, 0, - 0, 1752, 1753, 7, 10, 0, 0, 1753, 388, 1, 0, 0, 0, 1754, 1755, 7, 11, 0, - 0, 1755, 390, 1, 0, 0, 0, 1756, 1757, 7, 12, 0, 0, 1757, 392, 1, 0, 0, - 0, 1758, 1759, 7, 13, 0, 0, 1759, 394, 1, 0, 0, 0, 1760, 1761, 7, 14, 0, - 0, 1761, 396, 1, 0, 0, 0, 1762, 1763, 7, 15, 0, 0, 1763, 398, 1, 0, 0, - 0, 1764, 1765, 7, 16, 0, 0, 1765, 400, 1, 0, 0, 0, 1766, 1767, 7, 17, 0, - 0, 1767, 402, 1, 0, 0, 0, 1768, 1769, 7, 18, 0, 0, 1769, 404, 1, 0, 0, - 0, 1770, 1771, 7, 19, 0, 0, 1771, 406, 1, 0, 0, 0, 1772, 1773, 7, 20, 0, - 0, 1773, 408, 1, 0, 0, 0, 1774, 1775, 7, 21, 0, 0, 1775, 410, 1, 0, 0, - 0, 1776, 1777, 7, 22, 0, 0, 1777, 412, 1, 0, 0, 0, 1778, 1779, 7, 23, 0, - 0, 1779, 414, 1, 0, 0, 0, 1780, 1781, 7, 24, 0, 0, 1781, 416, 1, 0, 0, - 0, 1782, 1783, 7, 25, 0, 0, 1783, 418, 1, 0, 0, 0, 1784, 1785, 7, 26, 0, - 0, 1785, 420, 1, 0, 0, 0, 1786, 1787, 7, 27, 0, 0, 1787, 422, 1, 0, 0, - 0, 1788, 1789, 7, 28, 0, 0, 1789, 424, 1, 0, 0, 0, 1790, 1791, 7, 29, 0, - 0, 1791, 426, 1, 0, 0, 0, 1792, 1793, 7, 30, 0, 0, 1793, 428, 1, 0, 0, - 0, 1794, 1795, 7, 31, 0, 0, 1795, 430, 1, 0, 0, 0, 1796, 1797, 7, 32, 0, - 0, 1797, 432, 1, 0, 0, 0, 1798, 1799, 7, 33, 0, 0, 1799, 434, 1, 0, 0, - 0, 1800, 1801, 7, 34, 0, 0, 1801, 436, 1, 0, 0, 0, 1802, 1803, 7, 35, 0, - 0, 1803, 438, 1, 0, 0, 0, 1804, 1805, 7, 36, 0, 0, 1805, 440, 1, 0, 0, - 0, 1806, 1807, 7, 37, 0, 0, 1807, 442, 1, 0, 0, 0, 26, 0, 1613, 1615, 1623, - 1625, 1633, 1641, 1644, 1649, 1655, 1658, 1664, 1666, 1670, 1675, 1677, - 1685, 1687, 1693, 1698, 1704, 1706, 1720, 1724, 1728, 1738, 1, 0, 1, 0, + 381, 191, 383, 192, 385, 193, 387, 194, 389, 0, 391, 0, 393, 0, 395, 0, + 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, + 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, + 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 1, 0, 38, 1, 0, 34, 34, + 1, 0, 96, 96, 1, 0, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, + 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 3, 0, 36, 36, 58, 58, 64, + 64, 1, 0, 39, 39, 2, 0, 10, 10, 13, 13, 3, 0, 9, 11, 13, 13, 32, 32, 3, + 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, + 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, + 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, + 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, + 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, + 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, + 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, + 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, + 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, + 122, 122, 1815, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, + 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, + 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, + 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, + 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, + 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, + 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, + 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, + 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, + 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, + 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, + 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, + 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, + 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, + 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, + 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, + 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, + 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, + 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, + 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, + 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, + 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, + 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, + 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, + 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, + 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, + 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, + 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, + 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, + 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, + 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, + 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, + 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, + 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, + 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, + 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, + 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, + 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, + 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, + 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, + 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, + 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, + 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, + 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, + 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, + 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, + 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, + 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, + 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, + 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, + 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, + 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, + 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, + 387, 1, 0, 0, 0, 1, 445, 1, 0, 0, 0, 3, 447, 1, 0, 0, 0, 5, 449, 1, 0, + 0, 0, 7, 451, 1, 0, 0, 0, 9, 453, 1, 0, 0, 0, 11, 455, 1, 0, 0, 0, 13, + 457, 1, 0, 0, 0, 15, 459, 1, 0, 0, 0, 17, 461, 1, 0, 0, 0, 19, 463, 1, + 0, 0, 0, 21, 465, 1, 0, 0, 0, 23, 468, 1, 0, 0, 0, 25, 470, 1, 0, 0, 0, + 27, 472, 1, 0, 0, 0, 29, 475, 1, 0, 0, 0, 31, 478, 1, 0, 0, 0, 33, 480, + 1, 0, 0, 0, 35, 482, 1, 0, 0, 0, 37, 484, 1, 0, 0, 0, 39, 487, 1, 0, 0, + 0, 41, 489, 1, 0, 0, 0, 43, 492, 1, 0, 0, 0, 45, 495, 1, 0, 0, 0, 47, 498, + 1, 0, 0, 0, 49, 501, 1, 0, 0, 0, 51, 507, 1, 0, 0, 0, 53, 514, 1, 0, 0, + 0, 55, 518, 1, 0, 0, 0, 57, 524, 1, 0, 0, 0, 59, 528, 1, 0, 0, 0, 61, 534, + 1, 0, 0, 0, 63, 542, 1, 0, 0, 0, 65, 546, 1, 0, 0, 0, 67, 549, 1, 0, 0, + 0, 69, 553, 1, 0, 0, 0, 71, 560, 1, 0, 0, 0, 73, 574, 1, 0, 0, 0, 75, 581, + 1, 0, 0, 0, 77, 587, 1, 0, 0, 0, 79, 595, 1, 0, 0, 0, 81, 598, 1, 0, 0, + 0, 83, 606, 1, 0, 0, 0, 85, 611, 1, 0, 0, 0, 87, 616, 1, 0, 0, 0, 89, 622, + 1, 0, 0, 0, 91, 630, 1, 0, 0, 0, 93, 637, 1, 0, 0, 0, 95, 644, 1, 0, 0, + 0, 97, 653, 1, 0, 0, 0, 99, 664, 1, 0, 0, 0, 101, 671, 1, 0, 0, 0, 103, + 677, 1, 0, 0, 0, 105, 690, 1, 0, 0, 0, 107, 703, 1, 0, 0, 0, 109, 721, + 1, 0, 0, 0, 111, 730, 1, 0, 0, 0, 113, 738, 1, 0, 0, 0, 115, 749, 1, 0, + 0, 0, 117, 758, 1, 0, 0, 0, 119, 765, 1, 0, 0, 0, 121, 770, 1, 0, 0, 0, + 123, 777, 1, 0, 0, 0, 125, 786, 1, 0, 0, 0, 127, 791, 1, 0, 0, 0, 129, + 796, 1, 0, 0, 0, 131, 801, 1, 0, 0, 0, 133, 805, 1, 0, 0, 0, 135, 812, + 1, 0, 0, 0, 137, 819, 1, 0, 0, 0, 139, 829, 1, 0, 0, 0, 141, 836, 1, 0, + 0, 0, 143, 844, 1, 0, 0, 0, 145, 849, 1, 0, 0, 0, 147, 853, 1, 0, 0, 0, + 149, 861, 1, 0, 0, 0, 151, 866, 1, 0, 0, 0, 153, 871, 1, 0, 0, 0, 155, + 876, 1, 0, 0, 0, 157, 882, 1, 0, 0, 0, 159, 889, 1, 0, 0, 0, 161, 892, + 1, 0, 0, 0, 163, 899, 1, 0, 0, 0, 165, 909, 1, 0, 0, 0, 167, 912, 1, 0, + 0, 0, 169, 918, 1, 0, 0, 0, 171, 926, 1, 0, 0, 0, 173, 936, 1, 0, 0, 0, + 175, 942, 1, 0, 0, 0, 177, 949, 1, 0, 0, 0, 179, 957, 1, 0, 0, 0, 181, + 967, 1, 0, 0, 0, 183, 972, 1, 0, 0, 0, 185, 975, 1, 0, 0, 0, 187, 982, + 1, 0, 0, 0, 189, 987, 1, 0, 0, 0, 191, 991, 1, 0, 0, 0, 193, 996, 1, 0, + 0, 0, 195, 1001, 1, 0, 0, 0, 197, 1007, 1, 0, 0, 0, 199, 1013, 1, 0, 0, + 0, 201, 1021, 1, 0, 0, 0, 203, 1024, 1, 0, 0, 0, 205, 1028, 1, 0, 0, 0, + 207, 1036, 1, 0, 0, 0, 209, 1041, 1, 0, 0, 0, 211, 1044, 1, 0, 0, 0, 213, + 1051, 1, 0, 0, 0, 215, 1054, 1, 0, 0, 0, 217, 1057, 1, 0, 0, 0, 219, 1063, + 1, 0, 0, 0, 221, 1069, 1, 0, 0, 0, 223, 1074, 1, 0, 0, 0, 225, 1081, 1, + 0, 0, 0, 227, 1089, 1, 0, 0, 0, 229, 1095, 1, 0, 0, 0, 231, 1101, 1, 0, + 0, 0, 233, 1111, 1, 0, 0, 0, 235, 1122, 1, 0, 0, 0, 237, 1129, 1, 0, 0, + 0, 239, 1137, 1, 0, 0, 0, 241, 1145, 1, 0, 0, 0, 243, 1152, 1, 0, 0, 0, + 245, 1160, 1, 0, 0, 0, 247, 1169, 1, 0, 0, 0, 249, 1179, 1, 0, 0, 0, 251, + 1185, 1, 0, 0, 0, 253, 1194, 1, 0, 0, 0, 255, 1198, 1, 0, 0, 0, 257, 1203, + 1, 0, 0, 0, 259, 1213, 1, 0, 0, 0, 261, 1220, 1, 0, 0, 0, 263, 1224, 1, + 0, 0, 0, 265, 1231, 1, 0, 0, 0, 267, 1237, 1, 0, 0, 0, 269, 1242, 1, 0, + 0, 0, 271, 1252, 1, 0, 0, 0, 273, 1257, 1, 0, 0, 0, 275, 1260, 1, 0, 0, + 0, 277, 1272, 1, 0, 0, 0, 279, 1280, 1, 0, 0, 0, 281, 1286, 1, 0, 0, 0, + 283, 1293, 1, 0, 0, 0, 285, 1300, 1, 0, 0, 0, 287, 1306, 1, 0, 0, 0, 289, + 1313, 1, 0, 0, 0, 291, 1320, 1, 0, 0, 0, 293, 1325, 1, 0, 0, 0, 295, 1333, + 1, 0, 0, 0, 297, 1338, 1, 0, 0, 0, 299, 1344, 1, 0, 0, 0, 301, 1349, 1, + 0, 0, 0, 303, 1357, 1, 0, 0, 0, 305, 1369, 1, 0, 0, 0, 307, 1374, 1, 0, + 0, 0, 309, 1384, 1, 0, 0, 0, 311, 1390, 1, 0, 0, 0, 313, 1400, 1, 0, 0, + 0, 315, 1410, 1, 0, 0, 0, 317, 1418, 1, 0, 0, 0, 319, 1428, 1, 0, 0, 0, + 321, 1438, 1, 0, 0, 0, 323, 1449, 1, 0, 0, 0, 325, 1453, 1, 0, 0, 0, 327, + 1464, 1, 0, 0, 0, 329, 1469, 1, 0, 0, 0, 331, 1479, 1, 0, 0, 0, 333, 1485, + 1, 0, 0, 0, 335, 1498, 1, 0, 0, 0, 337, 1503, 1, 0, 0, 0, 339, 1514, 1, + 0, 0, 0, 341, 1524, 1, 0, 0, 0, 343, 1531, 1, 0, 0, 0, 345, 1538, 1, 0, + 0, 0, 347, 1543, 1, 0, 0, 0, 349, 1549, 1, 0, 0, 0, 351, 1556, 1, 0, 0, + 0, 353, 1562, 1, 0, 0, 0, 355, 1568, 1, 0, 0, 0, 357, 1573, 1, 0, 0, 0, + 359, 1580, 1, 0, 0, 0, 361, 1587, 1, 0, 0, 0, 363, 1595, 1, 0, 0, 0, 365, + 1600, 1, 0, 0, 0, 367, 1607, 1, 0, 0, 0, 369, 1610, 1, 0, 0, 0, 371, 1653, + 1, 0, 0, 0, 373, 1696, 1, 0, 0, 0, 375, 1707, 1, 0, 0, 0, 377, 1709, 1, + 0, 0, 0, 379, 1720, 1, 0, 0, 0, 381, 1723, 1, 0, 0, 0, 383, 1741, 1, 0, + 0, 0, 385, 1755, 1, 0, 0, 0, 387, 1759, 1, 0, 0, 0, 389, 1761, 1, 0, 0, + 0, 391, 1763, 1, 0, 0, 0, 393, 1765, 1, 0, 0, 0, 395, 1767, 1, 0, 0, 0, + 397, 1769, 1, 0, 0, 0, 399, 1771, 1, 0, 0, 0, 401, 1773, 1, 0, 0, 0, 403, + 1775, 1, 0, 0, 0, 405, 1777, 1, 0, 0, 0, 407, 1779, 1, 0, 0, 0, 409, 1781, + 1, 0, 0, 0, 411, 1783, 1, 0, 0, 0, 413, 1785, 1, 0, 0, 0, 415, 1787, 1, + 0, 0, 0, 417, 1789, 1, 0, 0, 0, 419, 1791, 1, 0, 0, 0, 421, 1793, 1, 0, + 0, 0, 423, 1795, 1, 0, 0, 0, 425, 1797, 1, 0, 0, 0, 427, 1799, 1, 0, 0, + 0, 429, 1801, 1, 0, 0, 0, 431, 1803, 1, 0, 0, 0, 433, 1805, 1, 0, 0, 0, + 435, 1807, 1, 0, 0, 0, 437, 1809, 1, 0, 0, 0, 439, 1811, 1, 0, 0, 0, 441, + 1813, 1, 0, 0, 0, 443, 1815, 1, 0, 0, 0, 445, 446, 5, 59, 0, 0, 446, 2, + 1, 0, 0, 0, 447, 448, 5, 46, 0, 0, 448, 4, 1, 0, 0, 0, 449, 450, 5, 40, + 0, 0, 450, 6, 1, 0, 0, 0, 451, 452, 5, 41, 0, 0, 452, 8, 1, 0, 0, 0, 453, + 454, 5, 44, 0, 0, 454, 10, 1, 0, 0, 0, 455, 456, 5, 61, 0, 0, 456, 12, + 1, 0, 0, 0, 457, 458, 5, 42, 0, 0, 458, 14, 1, 0, 0, 0, 459, 460, 5, 43, + 0, 0, 460, 16, 1, 0, 0, 0, 461, 462, 5, 45, 0, 0, 462, 18, 1, 0, 0, 0, + 463, 464, 5, 126, 0, 0, 464, 20, 1, 0, 0, 0, 465, 466, 5, 124, 0, 0, 466, + 467, 5, 124, 0, 0, 467, 22, 1, 0, 0, 0, 468, 469, 5, 47, 0, 0, 469, 24, + 1, 0, 0, 0, 470, 471, 5, 37, 0, 0, 471, 26, 1, 0, 0, 0, 472, 473, 5, 60, + 0, 0, 473, 474, 5, 60, 0, 0, 474, 28, 1, 0, 0, 0, 475, 476, 5, 62, 0, 0, + 476, 477, 5, 62, 0, 0, 477, 30, 1, 0, 0, 0, 478, 479, 5, 38, 0, 0, 479, + 32, 1, 0, 0, 0, 480, 481, 5, 124, 0, 0, 481, 34, 1, 0, 0, 0, 482, 483, + 5, 60, 0, 0, 483, 36, 1, 0, 0, 0, 484, 485, 5, 60, 0, 0, 485, 486, 5, 61, + 0, 0, 486, 38, 1, 0, 0, 0, 487, 488, 5, 62, 0, 0, 488, 40, 1, 0, 0, 0, + 489, 490, 5, 62, 0, 0, 490, 491, 5, 61, 0, 0, 491, 42, 1, 0, 0, 0, 492, + 493, 5, 61, 0, 0, 493, 494, 5, 61, 0, 0, 494, 44, 1, 0, 0, 0, 495, 496, + 5, 33, 0, 0, 496, 497, 5, 61, 0, 0, 497, 46, 1, 0, 0, 0, 498, 499, 5, 60, + 0, 0, 499, 500, 5, 62, 0, 0, 500, 48, 1, 0, 0, 0, 501, 502, 3, 393, 196, + 0, 502, 503, 3, 395, 197, 0, 503, 504, 3, 421, 210, 0, 504, 505, 3, 427, + 213, 0, 505, 506, 3, 431, 215, 0, 506, 50, 1, 0, 0, 0, 507, 508, 3, 393, + 196, 0, 508, 509, 3, 397, 198, 0, 509, 510, 3, 431, 215, 0, 510, 511, 3, + 409, 204, 0, 511, 512, 3, 421, 210, 0, 512, 513, 3, 419, 209, 0, 513, 52, + 1, 0, 0, 0, 514, 515, 3, 393, 196, 0, 515, 516, 3, 399, 199, 0, 516, 517, + 3, 399, 199, 0, 517, 54, 1, 0, 0, 0, 518, 519, 3, 393, 196, 0, 519, 520, + 3, 403, 201, 0, 520, 521, 3, 431, 215, 0, 521, 522, 3, 401, 200, 0, 522, + 523, 3, 427, 213, 0, 523, 56, 1, 0, 0, 0, 524, 525, 3, 393, 196, 0, 525, + 526, 3, 415, 207, 0, 526, 527, 3, 415, 207, 0, 527, 58, 1, 0, 0, 0, 528, + 529, 3, 393, 196, 0, 529, 530, 3, 415, 207, 0, 530, 531, 3, 431, 215, 0, + 531, 532, 3, 401, 200, 0, 532, 533, 3, 427, 213, 0, 533, 60, 1, 0, 0, 0, + 534, 535, 3, 393, 196, 0, 535, 536, 3, 419, 209, 0, 536, 537, 3, 393, 196, + 0, 537, 538, 3, 415, 207, 0, 538, 539, 3, 441, 220, 0, 539, 540, 3, 443, + 221, 0, 540, 541, 3, 401, 200, 0, 541, 62, 1, 0, 0, 0, 542, 543, 3, 393, + 196, 0, 543, 544, 3, 419, 209, 0, 544, 545, 3, 399, 199, 0, 545, 64, 1, + 0, 0, 0, 546, 547, 3, 393, 196, 0, 547, 548, 3, 429, 214, 0, 548, 66, 1, + 0, 0, 0, 549, 550, 3, 393, 196, 0, 550, 551, 3, 429, 214, 0, 551, 552, + 3, 397, 198, 0, 552, 68, 1, 0, 0, 0, 553, 554, 3, 393, 196, 0, 554, 555, + 3, 431, 215, 0, 555, 556, 3, 431, 215, 0, 556, 557, 3, 393, 196, 0, 557, + 558, 3, 397, 198, 0, 558, 559, 3, 407, 203, 0, 559, 70, 1, 0, 0, 0, 560, + 561, 3, 393, 196, 0, 561, 562, 3, 433, 216, 0, 562, 563, 3, 431, 215, 0, + 563, 564, 3, 421, 210, 0, 564, 565, 3, 409, 204, 0, 565, 566, 3, 419, 209, + 0, 566, 567, 3, 397, 198, 0, 567, 568, 3, 427, 213, 0, 568, 569, 3, 401, + 200, 0, 569, 570, 3, 417, 208, 0, 570, 571, 3, 401, 200, 0, 571, 572, 3, + 419, 209, 0, 572, 573, 3, 431, 215, 0, 573, 72, 1, 0, 0, 0, 574, 575, 3, + 395, 197, 0, 575, 576, 3, 401, 200, 0, 576, 577, 3, 403, 201, 0, 577, 578, + 3, 421, 210, 0, 578, 579, 3, 427, 213, 0, 579, 580, 3, 401, 200, 0, 580, + 74, 1, 0, 0, 0, 581, 582, 3, 395, 197, 0, 582, 583, 3, 401, 200, 0, 583, + 584, 3, 405, 202, 0, 584, 585, 3, 409, 204, 0, 585, 586, 3, 419, 209, 0, + 586, 76, 1, 0, 0, 0, 587, 588, 3, 395, 197, 0, 588, 589, 3, 401, 200, 0, + 589, 590, 3, 431, 215, 0, 590, 591, 3, 437, 218, 0, 591, 592, 3, 401, 200, + 0, 592, 593, 3, 401, 200, 0, 593, 594, 3, 419, 209, 0, 594, 78, 1, 0, 0, + 0, 595, 596, 3, 395, 197, 0, 596, 597, 3, 441, 220, 0, 597, 80, 1, 0, 0, + 0, 598, 599, 3, 397, 198, 0, 599, 600, 3, 393, 196, 0, 600, 601, 3, 429, + 214, 0, 601, 602, 3, 397, 198, 0, 602, 603, 3, 393, 196, 0, 603, 604, 3, + 399, 199, 0, 604, 605, 3, 401, 200, 0, 605, 82, 1, 0, 0, 0, 606, 607, 3, + 397, 198, 0, 607, 608, 3, 393, 196, 0, 608, 609, 3, 429, 214, 0, 609, 610, + 3, 401, 200, 0, 610, 84, 1, 0, 0, 0, 611, 612, 3, 397, 198, 0, 612, 613, + 3, 393, 196, 0, 613, 614, 3, 429, 214, 0, 614, 615, 3, 431, 215, 0, 615, + 86, 1, 0, 0, 0, 616, 617, 3, 397, 198, 0, 617, 618, 3, 407, 203, 0, 618, + 619, 3, 401, 200, 0, 619, 620, 3, 397, 198, 0, 620, 621, 3, 413, 206, 0, + 621, 88, 1, 0, 0, 0, 622, 623, 3, 397, 198, 0, 623, 624, 3, 421, 210, 0, + 624, 625, 3, 415, 207, 0, 625, 626, 3, 415, 207, 0, 626, 627, 3, 393, 196, + 0, 627, 628, 3, 431, 215, 0, 628, 629, 3, 401, 200, 0, 629, 90, 1, 0, 0, + 0, 630, 631, 3, 397, 198, 0, 631, 632, 3, 421, 210, 0, 632, 633, 3, 415, + 207, 0, 633, 634, 3, 433, 216, 0, 634, 635, 3, 417, 208, 0, 635, 636, 3, + 419, 209, 0, 636, 92, 1, 0, 0, 0, 637, 638, 3, 397, 198, 0, 638, 639, 3, + 421, 210, 0, 639, 640, 3, 417, 208, 0, 640, 641, 3, 417, 208, 0, 641, 642, + 3, 409, 204, 0, 642, 643, 3, 431, 215, 0, 643, 94, 1, 0, 0, 0, 644, 645, + 3, 397, 198, 0, 645, 646, 3, 421, 210, 0, 646, 647, 3, 419, 209, 0, 647, + 648, 3, 403, 201, 0, 648, 649, 3, 415, 207, 0, 649, 650, 3, 409, 204, 0, + 650, 651, 3, 397, 198, 0, 651, 652, 3, 431, 215, 0, 652, 96, 1, 0, 0, 0, + 653, 654, 3, 397, 198, 0, 654, 655, 3, 421, 210, 0, 655, 656, 3, 419, 209, + 0, 656, 657, 3, 429, 214, 0, 657, 658, 3, 431, 215, 0, 658, 659, 3, 427, + 213, 0, 659, 660, 3, 393, 196, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3, + 419, 209, 0, 662, 663, 3, 431, 215, 0, 663, 98, 1, 0, 0, 0, 664, 665, 3, + 397, 198, 0, 665, 666, 3, 427, 213, 0, 666, 667, 3, 401, 200, 0, 667, 668, + 3, 393, 196, 0, 668, 669, 3, 431, 215, 0, 669, 670, 3, 401, 200, 0, 670, + 100, 1, 0, 0, 0, 671, 672, 3, 397, 198, 0, 672, 673, 3, 427, 213, 0, 673, + 674, 3, 421, 210, 0, 674, 675, 3, 429, 214, 0, 675, 676, 3, 429, 214, 0, + 676, 102, 1, 0, 0, 0, 677, 678, 3, 397, 198, 0, 678, 679, 3, 433, 216, + 0, 679, 680, 3, 427, 213, 0, 680, 681, 3, 427, 213, 0, 681, 682, 3, 401, + 200, 0, 682, 683, 3, 419, 209, 0, 683, 684, 3, 431, 215, 0, 684, 685, 5, + 95, 0, 0, 685, 686, 3, 399, 199, 0, 686, 687, 3, 393, 196, 0, 687, 688, + 3, 431, 215, 0, 688, 689, 3, 401, 200, 0, 689, 104, 1, 0, 0, 0, 690, 691, + 3, 397, 198, 0, 691, 692, 3, 433, 216, 0, 692, 693, 3, 427, 213, 0, 693, + 694, 3, 427, 213, 0, 694, 695, 3, 401, 200, 0, 695, 696, 3, 419, 209, 0, + 696, 697, 3, 431, 215, 0, 697, 698, 5, 95, 0, 0, 698, 699, 3, 431, 215, + 0, 699, 700, 3, 409, 204, 0, 700, 701, 3, 417, 208, 0, 701, 702, 3, 401, + 200, 0, 702, 106, 1, 0, 0, 0, 703, 704, 3, 397, 198, 0, 704, 705, 3, 433, + 216, 0, 705, 706, 3, 427, 213, 0, 706, 707, 3, 427, 213, 0, 707, 708, 3, + 401, 200, 0, 708, 709, 3, 419, 209, 0, 709, 710, 3, 431, 215, 0, 710, 711, + 5, 95, 0, 0, 711, 712, 3, 431, 215, 0, 712, 713, 3, 409, 204, 0, 713, 714, + 3, 417, 208, 0, 714, 715, 3, 401, 200, 0, 715, 716, 3, 429, 214, 0, 716, + 717, 3, 431, 215, 0, 717, 718, 3, 393, 196, 0, 718, 719, 3, 417, 208, 0, + 719, 720, 3, 423, 211, 0, 720, 108, 1, 0, 0, 0, 721, 722, 3, 399, 199, + 0, 722, 723, 3, 393, 196, 0, 723, 724, 3, 431, 215, 0, 724, 725, 3, 393, + 196, 0, 725, 726, 3, 395, 197, 0, 726, 727, 3, 393, 196, 0, 727, 728, 3, + 429, 214, 0, 728, 729, 3, 401, 200, 0, 729, 110, 1, 0, 0, 0, 730, 731, + 3, 399, 199, 0, 731, 732, 3, 401, 200, 0, 732, 733, 3, 403, 201, 0, 733, + 734, 3, 393, 196, 0, 734, 735, 3, 433, 216, 0, 735, 736, 3, 415, 207, 0, + 736, 737, 3, 431, 215, 0, 737, 112, 1, 0, 0, 0, 738, 739, 3, 399, 199, + 0, 739, 740, 3, 401, 200, 0, 740, 741, 3, 403, 201, 0, 741, 742, 3, 401, + 200, 0, 742, 743, 3, 427, 213, 0, 743, 744, 3, 427, 213, 0, 744, 745, 3, + 393, 196, 0, 745, 746, 3, 395, 197, 0, 746, 747, 3, 415, 207, 0, 747, 748, + 3, 401, 200, 0, 748, 114, 1, 0, 0, 0, 749, 750, 3, 399, 199, 0, 750, 751, + 3, 401, 200, 0, 751, 752, 3, 403, 201, 0, 752, 753, 3, 401, 200, 0, 753, + 754, 3, 427, 213, 0, 754, 755, 3, 427, 213, 0, 755, 756, 3, 401, 200, 0, + 756, 757, 3, 399, 199, 0, 757, 116, 1, 0, 0, 0, 758, 759, 3, 399, 199, + 0, 759, 760, 3, 401, 200, 0, 760, 761, 3, 415, 207, 0, 761, 762, 3, 401, + 200, 0, 762, 763, 3, 431, 215, 0, 763, 764, 3, 401, 200, 0, 764, 118, 1, + 0, 0, 0, 765, 766, 3, 399, 199, 0, 766, 767, 3, 401, 200, 0, 767, 768, + 3, 429, 214, 0, 768, 769, 3, 397, 198, 0, 769, 120, 1, 0, 0, 0, 770, 771, + 3, 399, 199, 0, 771, 772, 3, 401, 200, 0, 772, 773, 3, 431, 215, 0, 773, + 774, 3, 393, 196, 0, 774, 775, 3, 397, 198, 0, 775, 776, 3, 407, 203, 0, + 776, 122, 1, 0, 0, 0, 777, 778, 3, 399, 199, 0, 778, 779, 3, 409, 204, + 0, 779, 780, 3, 429, 214, 0, 780, 781, 3, 431, 215, 0, 781, 782, 3, 409, + 204, 0, 782, 783, 3, 419, 209, 0, 783, 784, 3, 397, 198, 0, 784, 785, 3, + 431, 215, 0, 785, 124, 1, 0, 0, 0, 786, 787, 3, 399, 199, 0, 787, 788, + 3, 427, 213, 0, 788, 789, 3, 421, 210, 0, 789, 790, 3, 423, 211, 0, 790, + 126, 1, 0, 0, 0, 791, 792, 3, 401, 200, 0, 792, 793, 3, 393, 196, 0, 793, + 794, 3, 397, 198, 0, 794, 795, 3, 407, 203, 0, 795, 128, 1, 0, 0, 0, 796, + 797, 3, 401, 200, 0, 797, 798, 3, 415, 207, 0, 798, 799, 3, 429, 214, 0, + 799, 800, 3, 401, 200, 0, 800, 130, 1, 0, 0, 0, 801, 802, 3, 401, 200, + 0, 802, 803, 3, 419, 209, 0, 803, 804, 3, 399, 199, 0, 804, 132, 1, 0, + 0, 0, 805, 806, 3, 401, 200, 0, 806, 807, 3, 429, 214, 0, 807, 808, 3, + 397, 198, 0, 808, 809, 3, 393, 196, 0, 809, 810, 3, 423, 211, 0, 810, 811, + 3, 401, 200, 0, 811, 134, 1, 0, 0, 0, 812, 813, 3, 401, 200, 0, 813, 814, + 3, 439, 219, 0, 814, 815, 3, 397, 198, 0, 815, 816, 3, 401, 200, 0, 816, + 817, 3, 423, 211, 0, 817, 818, 3, 431, 215, 0, 818, 136, 1, 0, 0, 0, 819, + 820, 3, 401, 200, 0, 820, 821, 3, 439, 219, 0, 821, 822, 3, 397, 198, 0, + 822, 823, 3, 415, 207, 0, 823, 824, 3, 433, 216, 0, 824, 825, 3, 429, 214, + 0, 825, 826, 3, 409, 204, 0, 826, 827, 3, 435, 217, 0, 827, 828, 3, 401, + 200, 0, 828, 138, 1, 0, 0, 0, 829, 830, 3, 401, 200, 0, 830, 831, 3, 439, + 219, 0, 831, 832, 3, 409, 204, 0, 832, 833, 3, 429, 214, 0, 833, 834, 3, + 431, 215, 0, 834, 835, 3, 429, 214, 0, 835, 140, 1, 0, 0, 0, 836, 837, + 3, 401, 200, 0, 837, 838, 3, 439, 219, 0, 838, 839, 3, 423, 211, 0, 839, + 840, 3, 415, 207, 0, 840, 841, 3, 393, 196, 0, 841, 842, 3, 409, 204, 0, + 842, 843, 3, 419, 209, 0, 843, 142, 1, 0, 0, 0, 844, 845, 3, 403, 201, + 0, 845, 846, 3, 393, 196, 0, 846, 847, 3, 409, 204, 0, 847, 848, 3, 415, + 207, 0, 848, 144, 1, 0, 0, 0, 849, 850, 3, 403, 201, 0, 850, 851, 3, 421, + 210, 0, 851, 852, 3, 427, 213, 0, 852, 146, 1, 0, 0, 0, 853, 854, 3, 403, + 201, 0, 854, 855, 3, 421, 210, 0, 855, 856, 3, 427, 213, 0, 856, 857, 3, + 401, 200, 0, 857, 858, 3, 409, 204, 0, 858, 859, 3, 405, 202, 0, 859, 860, + 3, 419, 209, 0, 860, 148, 1, 0, 0, 0, 861, 862, 3, 403, 201, 0, 862, 863, + 3, 427, 213, 0, 863, 864, 3, 421, 210, 0, 864, 865, 3, 417, 208, 0, 865, + 150, 1, 0, 0, 0, 866, 867, 3, 403, 201, 0, 867, 868, 3, 433, 216, 0, 868, + 869, 3, 415, 207, 0, 869, 870, 3, 415, 207, 0, 870, 152, 1, 0, 0, 0, 871, + 872, 3, 405, 202, 0, 872, 873, 3, 415, 207, 0, 873, 874, 3, 421, 210, 0, + 874, 875, 3, 395, 197, 0, 875, 154, 1, 0, 0, 0, 876, 877, 3, 405, 202, + 0, 877, 878, 3, 427, 213, 0, 878, 879, 3, 421, 210, 0, 879, 880, 3, 433, + 216, 0, 880, 881, 3, 423, 211, 0, 881, 156, 1, 0, 0, 0, 882, 883, 3, 407, + 203, 0, 883, 884, 3, 393, 196, 0, 884, 885, 3, 435, 217, 0, 885, 886, 3, + 409, 204, 0, 886, 887, 3, 419, 209, 0, 887, 888, 3, 405, 202, 0, 888, 158, + 1, 0, 0, 0, 889, 890, 3, 409, 204, 0, 890, 891, 3, 403, 201, 0, 891, 160, + 1, 0, 0, 0, 892, 893, 3, 409, 204, 0, 893, 894, 3, 405, 202, 0, 894, 895, + 3, 419, 209, 0, 895, 896, 3, 421, 210, 0, 896, 897, 3, 427, 213, 0, 897, + 898, 3, 401, 200, 0, 898, 162, 1, 0, 0, 0, 899, 900, 3, 409, 204, 0, 900, + 901, 3, 417, 208, 0, 901, 902, 3, 417, 208, 0, 902, 903, 3, 401, 200, 0, + 903, 904, 3, 399, 199, 0, 904, 905, 3, 409, 204, 0, 905, 906, 3, 393, 196, + 0, 906, 907, 3, 431, 215, 0, 907, 908, 3, 401, 200, 0, 908, 164, 1, 0, + 0, 0, 909, 910, 3, 409, 204, 0, 910, 911, 3, 419, 209, 0, 911, 166, 1, + 0, 0, 0, 912, 913, 3, 409, 204, 0, 913, 914, 3, 419, 209, 0, 914, 915, + 3, 399, 199, 0, 915, 916, 3, 401, 200, 0, 916, 917, 3, 439, 219, 0, 917, + 168, 1, 0, 0, 0, 918, 919, 3, 409, 204, 0, 919, 920, 3, 419, 209, 0, 920, + 921, 3, 399, 199, 0, 921, 922, 3, 401, 200, 0, 922, 923, 3, 439, 219, 0, + 923, 924, 3, 401, 200, 0, 924, 925, 3, 399, 199, 0, 925, 170, 1, 0, 0, + 0, 926, 927, 3, 409, 204, 0, 927, 928, 3, 419, 209, 0, 928, 929, 3, 409, + 204, 0, 929, 930, 3, 431, 215, 0, 930, 931, 3, 409, 204, 0, 931, 932, 3, + 393, 196, 0, 932, 933, 3, 415, 207, 0, 933, 934, 3, 415, 207, 0, 934, 935, + 3, 441, 220, 0, 935, 172, 1, 0, 0, 0, 936, 937, 3, 409, 204, 0, 937, 938, + 3, 419, 209, 0, 938, 939, 3, 419, 209, 0, 939, 940, 3, 401, 200, 0, 940, + 941, 3, 427, 213, 0, 941, 174, 1, 0, 0, 0, 942, 943, 3, 409, 204, 0, 943, + 944, 3, 419, 209, 0, 944, 945, 3, 429, 214, 0, 945, 946, 3, 401, 200, 0, + 946, 947, 3, 427, 213, 0, 947, 948, 3, 431, 215, 0, 948, 176, 1, 0, 0, + 0, 949, 950, 3, 409, 204, 0, 950, 951, 3, 419, 209, 0, 951, 952, 3, 429, + 214, 0, 952, 953, 3, 431, 215, 0, 953, 954, 3, 401, 200, 0, 954, 955, 3, + 393, 196, 0, 955, 956, 3, 399, 199, 0, 956, 178, 1, 0, 0, 0, 957, 958, + 3, 409, 204, 0, 958, 959, 3, 419, 209, 0, 959, 960, 3, 431, 215, 0, 960, + 961, 3, 401, 200, 0, 961, 962, 3, 427, 213, 0, 962, 963, 3, 429, 214, 0, + 963, 964, 3, 401, 200, 0, 964, 965, 3, 397, 198, 0, 965, 966, 3, 431, 215, + 0, 966, 180, 1, 0, 0, 0, 967, 968, 3, 409, 204, 0, 968, 969, 3, 419, 209, + 0, 969, 970, 3, 431, 215, 0, 970, 971, 3, 421, 210, 0, 971, 182, 1, 0, + 0, 0, 972, 973, 3, 409, 204, 0, 973, 974, 3, 429, 214, 0, 974, 184, 1, + 0, 0, 0, 975, 976, 3, 409, 204, 0, 976, 977, 3, 429, 214, 0, 977, 978, + 3, 419, 209, 0, 978, 979, 3, 433, 216, 0, 979, 980, 3, 415, 207, 0, 980, + 981, 3, 415, 207, 0, 981, 186, 1, 0, 0, 0, 982, 983, 3, 411, 205, 0, 983, + 984, 3, 421, 210, 0, 984, 985, 3, 409, 204, 0, 985, 986, 3, 419, 209, 0, + 986, 188, 1, 0, 0, 0, 987, 988, 3, 413, 206, 0, 988, 989, 3, 401, 200, + 0, 989, 990, 3, 441, 220, 0, 990, 190, 1, 0, 0, 0, 991, 992, 3, 415, 207, + 0, 992, 993, 3, 401, 200, 0, 993, 994, 3, 403, 201, 0, 994, 995, 3, 431, + 215, 0, 995, 192, 1, 0, 0, 0, 996, 997, 3, 415, 207, 0, 997, 998, 3, 409, + 204, 0, 998, 999, 3, 413, 206, 0, 999, 1000, 3, 401, 200, 0, 1000, 194, + 1, 0, 0, 0, 1001, 1002, 3, 415, 207, 0, 1002, 1003, 3, 409, 204, 0, 1003, + 1004, 3, 417, 208, 0, 1004, 1005, 3, 409, 204, 0, 1005, 1006, 3, 431, 215, + 0, 1006, 196, 1, 0, 0, 0, 1007, 1008, 3, 417, 208, 0, 1008, 1009, 3, 393, + 196, 0, 1009, 1010, 3, 431, 215, 0, 1010, 1011, 3, 397, 198, 0, 1011, 1012, + 3, 407, 203, 0, 1012, 198, 1, 0, 0, 0, 1013, 1014, 3, 419, 209, 0, 1014, + 1015, 3, 393, 196, 0, 1015, 1016, 3, 431, 215, 0, 1016, 1017, 3, 433, 216, + 0, 1017, 1018, 3, 427, 213, 0, 1018, 1019, 3, 393, 196, 0, 1019, 1020, + 3, 415, 207, 0, 1020, 200, 1, 0, 0, 0, 1021, 1022, 3, 419, 209, 0, 1022, + 1023, 3, 421, 210, 0, 1023, 202, 1, 0, 0, 0, 1024, 1025, 3, 419, 209, 0, + 1025, 1026, 3, 421, 210, 0, 1026, 1027, 3, 431, 215, 0, 1027, 204, 1, 0, + 0, 0, 1028, 1029, 3, 419, 209, 0, 1029, 1030, 3, 421, 210, 0, 1030, 1031, + 3, 431, 215, 0, 1031, 1032, 3, 419, 209, 0, 1032, 1033, 3, 433, 216, 0, + 1033, 1034, 3, 415, 207, 0, 1034, 1035, 3, 415, 207, 0, 1035, 206, 1, 0, + 0, 0, 1036, 1037, 3, 419, 209, 0, 1037, 1038, 3, 433, 216, 0, 1038, 1039, + 3, 415, 207, 0, 1039, 1040, 3, 415, 207, 0, 1040, 208, 1, 0, 0, 0, 1041, + 1042, 3, 421, 210, 0, 1042, 1043, 3, 403, 201, 0, 1043, 210, 1, 0, 0, 0, + 1044, 1045, 3, 421, 210, 0, 1045, 1046, 3, 403, 201, 0, 1046, 1047, 3, + 403, 201, 0, 1047, 1048, 3, 429, 214, 0, 1048, 1049, 3, 401, 200, 0, 1049, + 1050, 3, 431, 215, 0, 1050, 212, 1, 0, 0, 0, 1051, 1052, 3, 421, 210, 0, + 1052, 1053, 3, 419, 209, 0, 1053, 214, 1, 0, 0, 0, 1054, 1055, 3, 421, + 210, 0, 1055, 1056, 3, 427, 213, 0, 1056, 216, 1, 0, 0, 0, 1057, 1058, + 3, 421, 210, 0, 1058, 1059, 3, 427, 213, 0, 1059, 1060, 3, 399, 199, 0, + 1060, 1061, 3, 401, 200, 0, 1061, 1062, 3, 427, 213, 0, 1062, 218, 1, 0, + 0, 0, 1063, 1064, 3, 421, 210, 0, 1064, 1065, 3, 433, 216, 0, 1065, 1066, + 3, 431, 215, 0, 1066, 1067, 3, 401, 200, 0, 1067, 1068, 3, 427, 213, 0, + 1068, 220, 1, 0, 0, 0, 1069, 1070, 3, 423, 211, 0, 1070, 1071, 3, 415, + 207, 0, 1071, 1072, 3, 393, 196, 0, 1072, 1073, 3, 419, 209, 0, 1073, 222, + 1, 0, 0, 0, 1074, 1075, 3, 423, 211, 0, 1075, 1076, 3, 427, 213, 0, 1076, + 1077, 3, 393, 196, 0, 1077, 1078, 3, 405, 202, 0, 1078, 1079, 3, 417, 208, + 0, 1079, 1080, 3, 393, 196, 0, 1080, 224, 1, 0, 0, 0, 1081, 1082, 3, 423, + 211, 0, 1082, 1083, 3, 427, 213, 0, 1083, 1084, 3, 409, 204, 0, 1084, 1085, + 3, 417, 208, 0, 1085, 1086, 3, 393, 196, 0, 1086, 1087, 3, 427, 213, 0, + 1087, 1088, 3, 441, 220, 0, 1088, 226, 1, 0, 0, 0, 1089, 1090, 3, 425, + 212, 0, 1090, 1091, 3, 433, 216, 0, 1091, 1092, 3, 401, 200, 0, 1092, 1093, + 3, 427, 213, 0, 1093, 1094, 3, 441, 220, 0, 1094, 228, 1, 0, 0, 0, 1095, + 1096, 3, 427, 213, 0, 1096, 1097, 3, 393, 196, 0, 1097, 1098, 3, 409, 204, + 0, 1098, 1099, 3, 429, 214, 0, 1099, 1100, 3, 401, 200, 0, 1100, 230, 1, + 0, 0, 0, 1101, 1102, 3, 427, 213, 0, 1102, 1103, 3, 401, 200, 0, 1103, + 1104, 3, 397, 198, 0, 1104, 1105, 3, 433, 216, 0, 1105, 1106, 3, 427, 213, + 0, 1106, 1107, 3, 429, 214, 0, 1107, 1108, 3, 409, 204, 0, 1108, 1109, + 3, 435, 217, 0, 1109, 1110, 3, 401, 200, 0, 1110, 232, 1, 0, 0, 0, 1111, + 1112, 3, 427, 213, 0, 1112, 1113, 3, 401, 200, 0, 1113, 1114, 3, 403, 201, + 0, 1114, 1115, 3, 401, 200, 0, 1115, 1116, 3, 427, 213, 0, 1116, 1117, + 3, 401, 200, 0, 1117, 1118, 3, 419, 209, 0, 1118, 1119, 3, 397, 198, 0, + 1119, 1120, 3, 401, 200, 0, 1120, 1121, 3, 429, 214, 0, 1121, 234, 1, 0, + 0, 0, 1122, 1123, 3, 427, 213, 0, 1123, 1124, 3, 401, 200, 0, 1124, 1125, + 3, 405, 202, 0, 1125, 1126, 3, 401, 200, 0, 1126, 1127, 3, 439, 219, 0, + 1127, 1128, 3, 423, 211, 0, 1128, 236, 1, 0, 0, 0, 1129, 1130, 3, 427, + 213, 0, 1130, 1131, 3, 401, 200, 0, 1131, 1132, 3, 409, 204, 0, 1132, 1133, + 3, 419, 209, 0, 1133, 1134, 3, 399, 199, 0, 1134, 1135, 3, 401, 200, 0, + 1135, 1136, 3, 439, 219, 0, 1136, 238, 1, 0, 0, 0, 1137, 1138, 3, 427, + 213, 0, 1138, 1139, 3, 401, 200, 0, 1139, 1140, 3, 415, 207, 0, 1140, 1141, + 3, 401, 200, 0, 1141, 1142, 3, 393, 196, 0, 1142, 1143, 3, 429, 214, 0, + 1143, 1144, 3, 401, 200, 0, 1144, 240, 1, 0, 0, 0, 1145, 1146, 3, 427, + 213, 0, 1146, 1147, 3, 401, 200, 0, 1147, 1148, 3, 419, 209, 0, 1148, 1149, + 3, 393, 196, 0, 1149, 1150, 3, 417, 208, 0, 1150, 1151, 3, 401, 200, 0, + 1151, 242, 1, 0, 0, 0, 1152, 1153, 3, 427, 213, 0, 1153, 1154, 3, 401, + 200, 0, 1154, 1155, 3, 423, 211, 0, 1155, 1156, 3, 415, 207, 0, 1156, 1157, + 3, 393, 196, 0, 1157, 1158, 3, 397, 198, 0, 1158, 1159, 3, 401, 200, 0, + 1159, 244, 1, 0, 0, 0, 1160, 1161, 3, 427, 213, 0, 1161, 1162, 3, 401, + 200, 0, 1162, 1163, 3, 429, 214, 0, 1163, 1164, 3, 431, 215, 0, 1164, 1165, + 3, 427, 213, 0, 1165, 1166, 3, 409, 204, 0, 1166, 1167, 3, 397, 198, 0, + 1167, 1168, 3, 431, 215, 0, 1168, 246, 1, 0, 0, 0, 1169, 1170, 3, 427, + 213, 0, 1170, 1171, 3, 401, 200, 0, 1171, 1172, 3, 431, 215, 0, 1172, 1173, + 3, 433, 216, 0, 1173, 1174, 3, 427, 213, 0, 1174, 1175, 3, 419, 209, 0, + 1175, 1176, 3, 409, 204, 0, 1176, 1177, 3, 419, 209, 0, 1177, 1178, 3, + 405, 202, 0, 1178, 248, 1, 0, 0, 0, 1179, 1180, 3, 427, 213, 0, 1180, 1181, + 3, 409, 204, 0, 1181, 1182, 3, 405, 202, 0, 1182, 1183, 3, 407, 203, 0, + 1183, 1184, 3, 431, 215, 0, 1184, 250, 1, 0, 0, 0, 1185, 1186, 3, 427, + 213, 0, 1186, 1187, 3, 421, 210, 0, 1187, 1188, 3, 415, 207, 0, 1188, 1189, + 3, 415, 207, 0, 1189, 1190, 3, 395, 197, 0, 1190, 1191, 3, 393, 196, 0, + 1191, 1192, 3, 397, 198, 0, 1192, 1193, 3, 413, 206, 0, 1193, 252, 1, 0, + 0, 0, 1194, 1195, 3, 427, 213, 0, 1195, 1196, 3, 421, 210, 0, 1196, 1197, + 3, 437, 218, 0, 1197, 254, 1, 0, 0, 0, 1198, 1199, 3, 427, 213, 0, 1199, + 1200, 3, 421, 210, 0, 1200, 1201, 3, 437, 218, 0, 1201, 1202, 3, 429, 214, + 0, 1202, 256, 1, 0, 0, 0, 1203, 1204, 3, 429, 214, 0, 1204, 1205, 3, 393, + 196, 0, 1205, 1206, 3, 435, 217, 0, 1206, 1207, 3, 401, 200, 0, 1207, 1208, + 3, 423, 211, 0, 1208, 1209, 3, 421, 210, 0, 1209, 1210, 3, 409, 204, 0, + 1210, 1211, 3, 419, 209, 0, 1211, 1212, 3, 431, 215, 0, 1212, 258, 1, 0, + 0, 0, 1213, 1214, 3, 429, 214, 0, 1214, 1215, 3, 401, 200, 0, 1215, 1216, + 3, 415, 207, 0, 1216, 1217, 3, 401, 200, 0, 1217, 1218, 3, 397, 198, 0, + 1218, 1219, 3, 431, 215, 0, 1219, 260, 1, 0, 0, 0, 1220, 1221, 3, 429, + 214, 0, 1221, 1222, 3, 401, 200, 0, 1222, 1223, 3, 431, 215, 0, 1223, 262, + 1, 0, 0, 0, 1224, 1225, 3, 429, 214, 0, 1225, 1226, 3, 431, 215, 0, 1226, + 1227, 3, 427, 213, 0, 1227, 1228, 3, 409, 204, 0, 1228, 1229, 3, 397, 198, + 0, 1229, 1230, 3, 431, 215, 0, 1230, 264, 1, 0, 0, 0, 1231, 1232, 3, 431, + 215, 0, 1232, 1233, 3, 393, 196, 0, 1233, 1234, 3, 395, 197, 0, 1234, 1235, + 3, 415, 207, 0, 1235, 1236, 3, 401, 200, 0, 1236, 266, 1, 0, 0, 0, 1237, + 1238, 3, 431, 215, 0, 1238, 1239, 3, 401, 200, 0, 1239, 1240, 3, 417, 208, + 0, 1240, 1241, 3, 423, 211, 0, 1241, 268, 1, 0, 0, 0, 1242, 1243, 3, 431, + 215, 0, 1243, 1244, 3, 401, 200, 0, 1244, 1245, 3, 417, 208, 0, 1245, 1246, + 3, 423, 211, 0, 1246, 1247, 3, 421, 210, 0, 1247, 1248, 3, 427, 213, 0, + 1248, 1249, 3, 393, 196, 0, 1249, 1250, 3, 427, 213, 0, 1250, 1251, 3, + 441, 220, 0, 1251, 270, 1, 0, 0, 0, 1252, 1253, 3, 431, 215, 0, 1253, 1254, + 3, 407, 203, 0, 1254, 1255, 3, 401, 200, 0, 1255, 1256, 3, 419, 209, 0, + 1256, 272, 1, 0, 0, 0, 1257, 1258, 3, 431, 215, 0, 1258, 1259, 3, 421, + 210, 0, 1259, 274, 1, 0, 0, 0, 1260, 1261, 3, 431, 215, 0, 1261, 1262, + 3, 427, 213, 0, 1262, 1263, 3, 393, 196, 0, 1263, 1264, 3, 419, 209, 0, + 1264, 1265, 3, 429, 214, 0, 1265, 1266, 3, 393, 196, 0, 1266, 1267, 3, + 397, 198, 0, 1267, 1268, 3, 431, 215, 0, 1268, 1269, 3, 409, 204, 0, 1269, + 1270, 3, 421, 210, 0, 1270, 1271, 3, 419, 209, 0, 1271, 276, 1, 0, 0, 0, + 1272, 1273, 3, 431, 215, 0, 1273, 1274, 3, 427, 213, 0, 1274, 1275, 3, + 409, 204, 0, 1275, 1276, 3, 405, 202, 0, 1276, 1277, 3, 405, 202, 0, 1277, + 1278, 3, 401, 200, 0, 1278, 1279, 3, 427, 213, 0, 1279, 278, 1, 0, 0, 0, + 1280, 1281, 3, 433, 216, 0, 1281, 1282, 3, 419, 209, 0, 1282, 1283, 3, + 409, 204, 0, 1283, 1284, 3, 421, 210, 0, 1284, 1285, 3, 419, 209, 0, 1285, + 280, 1, 0, 0, 0, 1286, 1287, 3, 433, 216, 0, 1287, 1288, 3, 419, 209, 0, + 1288, 1289, 3, 409, 204, 0, 1289, 1290, 3, 425, 212, 0, 1290, 1291, 3, + 433, 216, 0, 1291, 1292, 3, 401, 200, 0, 1292, 282, 1, 0, 0, 0, 1293, 1294, + 3, 433, 216, 0, 1294, 1295, 3, 423, 211, 0, 1295, 1296, 3, 399, 199, 0, + 1296, 1297, 3, 393, 196, 0, 1297, 1298, 3, 431, 215, 0, 1298, 1299, 3, + 401, 200, 0, 1299, 284, 1, 0, 0, 0, 1300, 1301, 3, 433, 216, 0, 1301, 1302, + 3, 429, 214, 0, 1302, 1303, 3, 409, 204, 0, 1303, 1304, 3, 419, 209, 0, + 1304, 1305, 3, 405, 202, 0, 1305, 286, 1, 0, 0, 0, 1306, 1307, 3, 435, + 217, 0, 1307, 1308, 3, 393, 196, 0, 1308, 1309, 3, 397, 198, 0, 1309, 1310, + 3, 433, 216, 0, 1310, 1311, 3, 433, 216, 0, 1311, 1312, 3, 417, 208, 0, + 1312, 288, 1, 0, 0, 0, 1313, 1314, 3, 435, 217, 0, 1314, 1315, 3, 393, + 196, 0, 1315, 1316, 3, 415, 207, 0, 1316, 1317, 3, 433, 216, 0, 1317, 1318, + 3, 401, 200, 0, 1318, 1319, 3, 429, 214, 0, 1319, 290, 1, 0, 0, 0, 1320, + 1321, 3, 435, 217, 0, 1321, 1322, 3, 409, 204, 0, 1322, 1323, 3, 401, 200, + 0, 1323, 1324, 3, 437, 218, 0, 1324, 292, 1, 0, 0, 0, 1325, 1326, 3, 435, + 217, 0, 1326, 1327, 3, 409, 204, 0, 1327, 1328, 3, 427, 213, 0, 1328, 1329, + 3, 431, 215, 0, 1329, 1330, 3, 433, 216, 0, 1330, 1331, 3, 393, 196, 0, + 1331, 1332, 3, 415, 207, 0, 1332, 294, 1, 0, 0, 0, 1333, 1334, 3, 437, + 218, 0, 1334, 1335, 3, 407, 203, 0, 1335, 1336, 3, 401, 200, 0, 1336, 1337, + 3, 419, 209, 0, 1337, 296, 1, 0, 0, 0, 1338, 1339, 3, 437, 218, 0, 1339, + 1340, 3, 407, 203, 0, 1340, 1341, 3, 401, 200, 0, 1341, 1342, 3, 427, 213, + 0, 1342, 1343, 3, 401, 200, 0, 1343, 298, 1, 0, 0, 0, 1344, 1345, 3, 437, + 218, 0, 1345, 1346, 3, 409, 204, 0, 1346, 1347, 3, 431, 215, 0, 1347, 1348, + 3, 407, 203, 0, 1348, 300, 1, 0, 0, 0, 1349, 1350, 3, 437, 218, 0, 1350, + 1351, 3, 409, 204, 0, 1351, 1352, 3, 431, 215, 0, 1352, 1353, 3, 407, 203, + 0, 1353, 1354, 3, 421, 210, 0, 1354, 1355, 3, 433, 216, 0, 1355, 1356, + 3, 431, 215, 0, 1356, 302, 1, 0, 0, 0, 1357, 1358, 3, 403, 201, 0, 1358, + 1359, 3, 409, 204, 0, 1359, 1360, 3, 427, 213, 0, 1360, 1361, 3, 429, 214, + 0, 1361, 1362, 3, 431, 215, 0, 1362, 1363, 5, 95, 0, 0, 1363, 1364, 3, + 435, 217, 0, 1364, 1365, 3, 393, 196, 0, 1365, 1366, 3, 415, 207, 0, 1366, + 1367, 3, 433, 216, 0, 1367, 1368, 3, 401, 200, 0, 1368, 304, 1, 0, 0, 0, + 1369, 1370, 3, 421, 210, 0, 1370, 1371, 3, 435, 217, 0, 1371, 1372, 3, + 401, 200, 0, 1372, 1373, 3, 427, 213, 0, 1373, 306, 1, 0, 0, 0, 1374, 1375, + 3, 423, 211, 0, 1375, 1376, 3, 393, 196, 0, 1376, 1377, 3, 427, 213, 0, + 1377, 1378, 3, 431, 215, 0, 1378, 1379, 3, 409, 204, 0, 1379, 1380, 3, + 431, 215, 0, 1380, 1381, 3, 409, 204, 0, 1381, 1382, 3, 421, 210, 0, 1382, + 1383, 3, 419, 209, 0, 1383, 308, 1, 0, 0, 0, 1384, 1385, 3, 427, 213, 0, + 1385, 1386, 3, 393, 196, 0, 1386, 1387, 3, 419, 209, 0, 1387, 1388, 3, + 405, 202, 0, 1388, 1389, 3, 401, 200, 0, 1389, 310, 1, 0, 0, 0, 1390, 1391, + 3, 423, 211, 0, 1391, 1392, 3, 427, 213, 0, 1392, 1393, 3, 401, 200, 0, + 1393, 1394, 3, 397, 198, 0, 1394, 1395, 3, 401, 200, 0, 1395, 1396, 3, + 399, 199, 0, 1396, 1397, 3, 409, 204, 0, 1397, 1398, 3, 419, 209, 0, 1398, + 1399, 3, 405, 202, 0, 1399, 312, 1, 0, 0, 0, 1400, 1401, 3, 433, 216, 0, + 1401, 1402, 3, 419, 209, 0, 1402, 1403, 3, 395, 197, 0, 1403, 1404, 3, + 421, 210, 0, 1404, 1405, 3, 433, 216, 0, 1405, 1406, 3, 419, 209, 0, 1406, + 1407, 3, 399, 199, 0, 1407, 1408, 3, 401, 200, 0, 1408, 1409, 3, 399, 199, + 0, 1409, 314, 1, 0, 0, 0, 1410, 1411, 3, 397, 198, 0, 1411, 1412, 3, 433, + 216, 0, 1412, 1413, 3, 427, 213, 0, 1413, 1414, 3, 427, 213, 0, 1414, 1415, + 3, 401, 200, 0, 1415, 1416, 3, 419, 209, 0, 1416, 1417, 3, 431, 215, 0, + 1417, 316, 1, 0, 0, 0, 1418, 1419, 3, 403, 201, 0, 1419, 1420, 3, 421, + 210, 0, 1420, 1421, 3, 415, 207, 0, 1421, 1422, 3, 415, 207, 0, 1422, 1423, + 3, 421, 210, 0, 1423, 1424, 3, 437, 218, 0, 1424, 1425, 3, 409, 204, 0, + 1425, 1426, 3, 419, 209, 0, 1426, 1427, 3, 405, 202, 0, 1427, 318, 1, 0, + 0, 0, 1428, 1429, 3, 397, 198, 0, 1429, 1430, 3, 433, 216, 0, 1430, 1431, + 3, 417, 208, 0, 1431, 1432, 3, 401, 200, 0, 1432, 1433, 5, 95, 0, 0, 1433, + 1434, 3, 399, 199, 0, 1434, 1435, 3, 409, 204, 0, 1435, 1436, 3, 429, 214, + 0, 1436, 1437, 3, 431, 215, 0, 1437, 320, 1, 0, 0, 0, 1438, 1439, 3, 399, + 199, 0, 1439, 1440, 3, 401, 200, 0, 1440, 1441, 3, 419, 209, 0, 1441, 1442, + 3, 429, 214, 0, 1442, 1443, 3, 401, 200, 0, 1443, 1444, 5, 95, 0, 0, 1444, + 1445, 3, 427, 213, 0, 1445, 1446, 3, 393, 196, 0, 1446, 1447, 3, 419, 209, + 0, 1447, 1448, 3, 413, 206, 0, 1448, 322, 1, 0, 0, 0, 1449, 1450, 3, 415, + 207, 0, 1450, 1451, 3, 393, 196, 0, 1451, 1452, 3, 405, 202, 0, 1452, 324, + 1, 0, 0, 0, 1453, 1454, 3, 415, 207, 0, 1454, 1455, 3, 393, 196, 0, 1455, + 1456, 3, 429, 214, 0, 1456, 1457, 3, 431, 215, 0, 1457, 1458, 5, 95, 0, + 0, 1458, 1459, 3, 435, 217, 0, 1459, 1460, 3, 393, 196, 0, 1460, 1461, + 3, 415, 207, 0, 1461, 1462, 3, 433, 216, 0, 1462, 1463, 3, 401, 200, 0, + 1463, 326, 1, 0, 0, 0, 1464, 1465, 3, 415, 207, 0, 1465, 1466, 3, 401, + 200, 0, 1466, 1467, 3, 393, 196, 0, 1467, 1468, 3, 399, 199, 0, 1468, 328, + 1, 0, 0, 0, 1469, 1470, 3, 419, 209, 0, 1470, 1471, 3, 431, 215, 0, 1471, + 1472, 3, 407, 203, 0, 1472, 1473, 5, 95, 0, 0, 1473, 1474, 3, 435, 217, + 0, 1474, 1475, 3, 393, 196, 0, 1475, 1476, 3, 415, 207, 0, 1476, 1477, + 3, 433, 216, 0, 1477, 1478, 3, 401, 200, 0, 1478, 330, 1, 0, 0, 0, 1479, + 1480, 3, 419, 209, 0, 1480, 1481, 3, 431, 215, 0, 1481, 1482, 3, 409, 204, + 0, 1482, 1483, 3, 415, 207, 0, 1483, 1484, 3, 401, 200, 0, 1484, 332, 1, + 0, 0, 0, 1485, 1486, 3, 423, 211, 0, 1486, 1487, 3, 401, 200, 0, 1487, + 1488, 3, 427, 213, 0, 1488, 1489, 3, 397, 198, 0, 1489, 1490, 3, 401, 200, + 0, 1490, 1491, 3, 419, 209, 0, 1491, 1492, 3, 431, 215, 0, 1492, 1493, + 5, 95, 0, 0, 1493, 1494, 3, 427, 213, 0, 1494, 1495, 3, 393, 196, 0, 1495, + 1496, 3, 419, 209, 0, 1496, 1497, 3, 413, 206, 0, 1497, 334, 1, 0, 0, 0, + 1498, 1499, 3, 427, 213, 0, 1499, 1500, 3, 393, 196, 0, 1500, 1501, 3, + 419, 209, 0, 1501, 1502, 3, 413, 206, 0, 1502, 336, 1, 0, 0, 0, 1503, 1504, + 3, 427, 213, 0, 1504, 1505, 3, 421, 210, 0, 1505, 1506, 3, 437, 218, 0, + 1506, 1507, 5, 95, 0, 0, 1507, 1508, 3, 419, 209, 0, 1508, 1509, 3, 433, + 216, 0, 1509, 1510, 3, 417, 208, 0, 1510, 1511, 3, 395, 197, 0, 1511, 1512, + 3, 401, 200, 0, 1512, 1513, 3, 427, 213, 0, 1513, 338, 1, 0, 0, 0, 1514, + 1515, 3, 405, 202, 0, 1515, 1516, 3, 401, 200, 0, 1516, 1517, 3, 419, 209, + 0, 1517, 1518, 3, 401, 200, 0, 1518, 1519, 3, 427, 213, 0, 1519, 1520, + 3, 393, 196, 0, 1520, 1521, 3, 431, 215, 0, 1521, 1522, 3, 401, 200, 0, + 1522, 1523, 3, 399, 199, 0, 1523, 340, 1, 0, 0, 0, 1524, 1525, 3, 393, + 196, 0, 1525, 1526, 3, 415, 207, 0, 1526, 1527, 3, 437, 218, 0, 1527, 1528, + 3, 393, 196, 0, 1528, 1529, 3, 441, 220, 0, 1529, 1530, 3, 429, 214, 0, + 1530, 342, 1, 0, 0, 0, 1531, 1532, 3, 429, 214, 0, 1532, 1533, 3, 431, + 215, 0, 1533, 1534, 3, 421, 210, 0, 1534, 1535, 3, 427, 213, 0, 1535, 1536, + 3, 401, 200, 0, 1536, 1537, 3, 399, 199, 0, 1537, 344, 1, 0, 0, 0, 1538, + 1539, 3, 431, 215, 0, 1539, 1540, 3, 427, 213, 0, 1540, 1541, 3, 433, 216, + 0, 1541, 1542, 3, 401, 200, 0, 1542, 346, 1, 0, 0, 0, 1543, 1544, 3, 403, + 201, 0, 1544, 1545, 3, 393, 196, 0, 1545, 1546, 3, 415, 207, 0, 1546, 1547, + 3, 429, 214, 0, 1547, 1548, 3, 401, 200, 0, 1548, 348, 1, 0, 0, 0, 1549, + 1550, 3, 437, 218, 0, 1550, 1551, 3, 409, 204, 0, 1551, 1552, 3, 419, 209, + 0, 1552, 1553, 3, 399, 199, 0, 1553, 1554, 3, 421, 210, 0, 1554, 1555, + 3, 437, 218, 0, 1555, 350, 1, 0, 0, 0, 1556, 1557, 3, 419, 209, 0, 1557, + 1558, 3, 433, 216, 0, 1558, 1559, 3, 415, 207, 0, 1559, 1560, 3, 415, 207, + 0, 1560, 1561, 3, 429, 214, 0, 1561, 352, 1, 0, 0, 0, 1562, 1563, 3, 403, + 201, 0, 1563, 1564, 3, 409, 204, 0, 1564, 1565, 3, 427, 213, 0, 1565, 1566, + 3, 429, 214, 0, 1566, 1567, 3, 431, 215, 0, 1567, 354, 1, 0, 0, 0, 1568, + 1569, 3, 415, 207, 0, 1569, 1570, 3, 393, 196, 0, 1570, 1571, 3, 429, 214, + 0, 1571, 1572, 3, 431, 215, 0, 1572, 356, 1, 0, 0, 0, 1573, 1574, 3, 403, + 201, 0, 1574, 1575, 3, 409, 204, 0, 1575, 1576, 3, 415, 207, 0, 1576, 1577, + 3, 431, 215, 0, 1577, 1578, 3, 401, 200, 0, 1578, 1579, 3, 427, 213, 0, + 1579, 358, 1, 0, 0, 0, 1580, 1581, 3, 405, 202, 0, 1581, 1582, 3, 427, + 213, 0, 1582, 1583, 3, 421, 210, 0, 1583, 1584, 3, 433, 216, 0, 1584, 1585, + 3, 423, 211, 0, 1585, 1586, 3, 429, 214, 0, 1586, 360, 1, 0, 0, 0, 1587, + 1588, 3, 401, 200, 0, 1588, 1589, 3, 439, 219, 0, 1589, 1590, 3, 397, 198, + 0, 1590, 1591, 3, 415, 207, 0, 1591, 1592, 3, 433, 216, 0, 1592, 1593, + 3, 399, 199, 0, 1593, 1594, 3, 401, 200, 0, 1594, 362, 1, 0, 0, 0, 1595, + 1596, 3, 431, 215, 0, 1596, 1597, 3, 409, 204, 0, 1597, 1598, 3, 401, 200, + 0, 1598, 1599, 3, 429, 214, 0, 1599, 364, 1, 0, 0, 0, 1600, 1601, 3, 421, + 210, 0, 1601, 1602, 3, 431, 215, 0, 1602, 1603, 3, 407, 203, 0, 1603, 1604, + 3, 401, 200, 0, 1604, 1605, 3, 427, 213, 0, 1605, 1606, 3, 429, 214, 0, + 1606, 366, 1, 0, 0, 0, 1607, 1608, 3, 399, 199, 0, 1608, 1609, 3, 421, + 210, 0, 1609, 368, 1, 0, 0, 0, 1610, 1611, 3, 419, 209, 0, 1611, 1612, + 3, 421, 210, 0, 1612, 1613, 3, 431, 215, 0, 1613, 1614, 3, 407, 203, 0, + 1614, 1615, 3, 409, 204, 0, 1615, 1616, 3, 419, 209, 0, 1616, 1617, 3, + 405, 202, 0, 1617, 370, 1, 0, 0, 0, 1618, 1624, 5, 34, 0, 0, 1619, 1623, + 8, 0, 0, 0, 1620, 1621, 5, 34, 0, 0, 1621, 1623, 5, 34, 0, 0, 1622, 1619, + 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1626, 1, 0, 0, 0, 1624, 1622, + 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1624, + 1, 0, 0, 0, 1627, 1654, 5, 34, 0, 0, 1628, 1634, 5, 96, 0, 0, 1629, 1633, + 8, 1, 0, 0, 1630, 1631, 5, 96, 0, 0, 1631, 1633, 5, 96, 0, 0, 1632, 1629, + 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1633, 1636, 1, 0, 0, 0, 1634, 1632, + 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1634, + 1, 0, 0, 0, 1637, 1654, 5, 96, 0, 0, 1638, 1642, 5, 91, 0, 0, 1639, 1641, + 8, 2, 0, 0, 1640, 1639, 1, 0, 0, 0, 1641, 1644, 1, 0, 0, 0, 1642, 1640, + 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1645, 1, 0, 0, 0, 1644, 1642, + 1, 0, 0, 0, 1645, 1654, 5, 93, 0, 0, 1646, 1650, 7, 3, 0, 0, 1647, 1649, + 7, 4, 0, 0, 1648, 1647, 1, 0, 0, 0, 1649, 1652, 1, 0, 0, 0, 1650, 1648, + 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1654, 1, 0, 0, 0, 1652, 1650, + 1, 0, 0, 0, 1653, 1618, 1, 0, 0, 0, 1653, 1628, 1, 0, 0, 0, 1653, 1638, + 1, 0, 0, 0, 1653, 1646, 1, 0, 0, 0, 1654, 372, 1, 0, 0, 0, 1655, 1657, + 3, 391, 195, 0, 1656, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1656, + 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1667, 1, 0, 0, 0, 1660, 1664, + 5, 46, 0, 0, 1661, 1663, 3, 391, 195, 0, 1662, 1661, 1, 0, 0, 0, 1663, + 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, + 1668, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1660, 1, 0, 0, 0, 1667, + 1668, 1, 0, 0, 0, 1668, 1676, 1, 0, 0, 0, 1669, 1671, 5, 46, 0, 0, 1670, + 1672, 3, 391, 195, 0, 1671, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, + 1671, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 1, 0, 0, 0, 1675, + 1656, 1, 0, 0, 0, 1675, 1669, 1, 0, 0, 0, 1676, 1686, 1, 0, 0, 0, 1677, + 1679, 3, 401, 200, 0, 1678, 1680, 7, 5, 0, 0, 1679, 1678, 1, 0, 0, 0, 1679, + 1680, 1, 0, 0, 0, 1680, 1682, 1, 0, 0, 0, 1681, 1683, 3, 391, 195, 0, 1682, + 1681, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1684, + 1685, 1, 0, 0, 0, 1685, 1687, 1, 0, 0, 0, 1686, 1677, 1, 0, 0, 0, 1686, + 1687, 1, 0, 0, 0, 1687, 1697, 1, 0, 0, 0, 1688, 1689, 5, 48, 0, 0, 1689, + 1690, 5, 120, 0, 0, 1690, 1692, 1, 0, 0, 0, 1691, 1693, 3, 389, 194, 0, + 1692, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, + 1694, 1695, 1, 0, 0, 0, 1695, 1697, 1, 0, 0, 0, 1696, 1675, 1, 0, 0, 0, + 1696, 1688, 1, 0, 0, 0, 1697, 374, 1, 0, 0, 0, 1698, 1702, 5, 63, 0, 0, + 1699, 1701, 3, 391, 195, 0, 1700, 1699, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, + 0, 1702, 1700, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1708, 1, 0, 0, + 0, 1704, 1702, 1, 0, 0, 0, 1705, 1706, 7, 6, 0, 0, 1706, 1708, 3, 371, + 185, 0, 1707, 1698, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 376, 1, 0, + 0, 0, 1709, 1715, 5, 39, 0, 0, 1710, 1714, 8, 7, 0, 0, 1711, 1712, 5, 39, + 0, 0, 1712, 1714, 5, 39, 0, 0, 1713, 1710, 1, 0, 0, 0, 1713, 1711, 1, 0, + 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, + 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 5, 39, + 0, 0, 1719, 378, 1, 0, 0, 0, 1720, 1721, 3, 439, 219, 0, 1721, 1722, 3, + 377, 188, 0, 1722, 380, 1, 0, 0, 0, 1723, 1724, 5, 45, 0, 0, 1724, 1725, + 5, 45, 0, 0, 1725, 1729, 1, 0, 0, 0, 1726, 1728, 8, 8, 0, 0, 1727, 1726, + 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, + 1, 0, 0, 0, 1730, 1737, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1734, + 5, 13, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, + 1, 0, 0, 0, 1735, 1738, 5, 10, 0, 0, 1736, 1738, 5, 0, 0, 1, 1737, 1733, + 1, 0, 0, 0, 1737, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, + 6, 190, 0, 0, 1740, 382, 1, 0, 0, 0, 1741, 1742, 5, 47, 0, 0, 1742, 1743, + 5, 42, 0, 0, 1743, 1747, 1, 0, 0, 0, 1744, 1746, 9, 0, 0, 0, 1745, 1744, + 1, 0, 0, 0, 1746, 1749, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1747, 1745, + 1, 0, 0, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1750, 1751, + 5, 42, 0, 0, 1751, 1752, 5, 47, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, + 6, 191, 0, 0, 1754, 384, 1, 0, 0, 0, 1755, 1756, 7, 9, 0, 0, 1756, 1757, + 1, 0, 0, 0, 1757, 1758, 6, 192, 0, 0, 1758, 386, 1, 0, 0, 0, 1759, 1760, + 9, 0, 0, 0, 1760, 388, 1, 0, 0, 0, 1761, 1762, 7, 10, 0, 0, 1762, 390, + 1, 0, 0, 0, 1763, 1764, 7, 11, 0, 0, 1764, 392, 1, 0, 0, 0, 1765, 1766, + 7, 12, 0, 0, 1766, 394, 1, 0, 0, 0, 1767, 1768, 7, 13, 0, 0, 1768, 396, + 1, 0, 0, 0, 1769, 1770, 7, 14, 0, 0, 1770, 398, 1, 0, 0, 0, 1771, 1772, + 7, 15, 0, 0, 1772, 400, 1, 0, 0, 0, 1773, 1774, 7, 16, 0, 0, 1774, 402, + 1, 0, 0, 0, 1775, 1776, 7, 17, 0, 0, 1776, 404, 1, 0, 0, 0, 1777, 1778, + 7, 18, 0, 0, 1778, 406, 1, 0, 0, 0, 1779, 1780, 7, 19, 0, 0, 1780, 408, + 1, 0, 0, 0, 1781, 1782, 7, 20, 0, 0, 1782, 410, 1, 0, 0, 0, 1783, 1784, + 7, 21, 0, 0, 1784, 412, 1, 0, 0, 0, 1785, 1786, 7, 22, 0, 0, 1786, 414, + 1, 0, 0, 0, 1787, 1788, 7, 23, 0, 0, 1788, 416, 1, 0, 0, 0, 1789, 1790, + 7, 24, 0, 0, 1790, 418, 1, 0, 0, 0, 1791, 1792, 7, 25, 0, 0, 1792, 420, + 1, 0, 0, 0, 1793, 1794, 7, 26, 0, 0, 1794, 422, 1, 0, 0, 0, 1795, 1796, + 7, 27, 0, 0, 1796, 424, 1, 0, 0, 0, 1797, 1798, 7, 28, 0, 0, 1798, 426, + 1, 0, 0, 0, 1799, 1800, 7, 29, 0, 0, 1800, 428, 1, 0, 0, 0, 1801, 1802, + 7, 30, 0, 0, 1802, 430, 1, 0, 0, 0, 1803, 1804, 7, 31, 0, 0, 1804, 432, + 1, 0, 0, 0, 1805, 1806, 7, 32, 0, 0, 1806, 434, 1, 0, 0, 0, 1807, 1808, + 7, 33, 0, 0, 1808, 436, 1, 0, 0, 0, 1809, 1810, 7, 34, 0, 0, 1810, 438, + 1, 0, 0, 0, 1811, 1812, 7, 35, 0, 0, 1812, 440, 1, 0, 0, 0, 1813, 1814, + 7, 36, 0, 0, 1814, 442, 1, 0, 0, 0, 1815, 1816, 7, 37, 0, 0, 1816, 444, + 1, 0, 0, 0, 26, 0, 1622, 1624, 1632, 1634, 1642, 1650, 1653, 1658, 1664, + 1667, 1673, 1675, 1679, 1684, 1686, 1694, 1696, 1702, 1707, 1713, 1715, + 1729, 1733, 1737, 1747, 1, 0, 1, 0, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -1132,66 +1137,67 @@ const ( SQLiteLexerSAVEPOINT_ = 129 SQLiteLexerSELECT_ = 130 SQLiteLexerSET_ = 131 - SQLiteLexerTABLE_ = 132 - SQLiteLexerTEMP_ = 133 - SQLiteLexerTEMPORARY_ = 134 - SQLiteLexerTHEN_ = 135 - SQLiteLexerTO_ = 136 - SQLiteLexerTRANSACTION_ = 137 - SQLiteLexerTRIGGER_ = 138 - SQLiteLexerUNION_ = 139 - SQLiteLexerUNIQUE_ = 140 - SQLiteLexerUPDATE_ = 141 - SQLiteLexerUSING_ = 142 - SQLiteLexerVACUUM_ = 143 - SQLiteLexerVALUES_ = 144 - SQLiteLexerVIEW_ = 145 - SQLiteLexerVIRTUAL_ = 146 - SQLiteLexerWHEN_ = 147 - SQLiteLexerWHERE_ = 148 - SQLiteLexerWITH_ = 149 - SQLiteLexerWITHOUT_ = 150 - SQLiteLexerFIRST_VALUE_ = 151 - SQLiteLexerOVER_ = 152 - SQLiteLexerPARTITION_ = 153 - SQLiteLexerRANGE_ = 154 - SQLiteLexerPRECEDING_ = 155 - SQLiteLexerUNBOUNDED_ = 156 - SQLiteLexerCURRENT_ = 157 - SQLiteLexerFOLLOWING_ = 158 - SQLiteLexerCUME_DIST_ = 159 - SQLiteLexerDENSE_RANK_ = 160 - SQLiteLexerLAG_ = 161 - SQLiteLexerLAST_VALUE_ = 162 - SQLiteLexerLEAD_ = 163 - SQLiteLexerNTH_VALUE_ = 164 - SQLiteLexerNTILE_ = 165 - SQLiteLexerPERCENT_RANK_ = 166 - SQLiteLexerRANK_ = 167 - SQLiteLexerROW_NUMBER_ = 168 - SQLiteLexerGENERATED_ = 169 - SQLiteLexerALWAYS_ = 170 - SQLiteLexerSTORED_ = 171 - SQLiteLexerTRUE_ = 172 - SQLiteLexerFALSE_ = 173 - SQLiteLexerWINDOW_ = 174 - SQLiteLexerNULLS_ = 175 - SQLiteLexerFIRST_ = 176 - SQLiteLexerLAST_ = 177 - SQLiteLexerFILTER_ = 178 - SQLiteLexerGROUPS_ = 179 - SQLiteLexerEXCLUDE_ = 180 - SQLiteLexerTIES_ = 181 - SQLiteLexerOTHERS_ = 182 - SQLiteLexerDO_ = 183 - SQLiteLexerNOTHING_ = 184 - SQLiteLexerIDENTIFIER = 185 - SQLiteLexerNUMERIC_LITERAL = 186 - SQLiteLexerBIND_PARAMETER = 187 - SQLiteLexerSTRING_LITERAL = 188 - SQLiteLexerBLOB_LITERAL = 189 - SQLiteLexerSINGLE_LINE_COMMENT = 190 - SQLiteLexerMULTILINE_COMMENT = 191 - SQLiteLexerSPACES = 192 - SQLiteLexerUNEXPECTED_CHAR = 193 + SQLiteLexerSTRICT_ = 132 + SQLiteLexerTABLE_ = 133 + SQLiteLexerTEMP_ = 134 + SQLiteLexerTEMPORARY_ = 135 + SQLiteLexerTHEN_ = 136 + SQLiteLexerTO_ = 137 + SQLiteLexerTRANSACTION_ = 138 + SQLiteLexerTRIGGER_ = 139 + SQLiteLexerUNION_ = 140 + SQLiteLexerUNIQUE_ = 141 + SQLiteLexerUPDATE_ = 142 + SQLiteLexerUSING_ = 143 + SQLiteLexerVACUUM_ = 144 + SQLiteLexerVALUES_ = 145 + SQLiteLexerVIEW_ = 146 + SQLiteLexerVIRTUAL_ = 147 + SQLiteLexerWHEN_ = 148 + SQLiteLexerWHERE_ = 149 + SQLiteLexerWITH_ = 150 + SQLiteLexerWITHOUT_ = 151 + SQLiteLexerFIRST_VALUE_ = 152 + SQLiteLexerOVER_ = 153 + SQLiteLexerPARTITION_ = 154 + SQLiteLexerRANGE_ = 155 + SQLiteLexerPRECEDING_ = 156 + SQLiteLexerUNBOUNDED_ = 157 + SQLiteLexerCURRENT_ = 158 + SQLiteLexerFOLLOWING_ = 159 + SQLiteLexerCUME_DIST_ = 160 + SQLiteLexerDENSE_RANK_ = 161 + SQLiteLexerLAG_ = 162 + SQLiteLexerLAST_VALUE_ = 163 + SQLiteLexerLEAD_ = 164 + SQLiteLexerNTH_VALUE_ = 165 + SQLiteLexerNTILE_ = 166 + SQLiteLexerPERCENT_RANK_ = 167 + SQLiteLexerRANK_ = 168 + SQLiteLexerROW_NUMBER_ = 169 + SQLiteLexerGENERATED_ = 170 + SQLiteLexerALWAYS_ = 171 + SQLiteLexerSTORED_ = 172 + SQLiteLexerTRUE_ = 173 + SQLiteLexerFALSE_ = 174 + SQLiteLexerWINDOW_ = 175 + SQLiteLexerNULLS_ = 176 + SQLiteLexerFIRST_ = 177 + SQLiteLexerLAST_ = 178 + SQLiteLexerFILTER_ = 179 + SQLiteLexerGROUPS_ = 180 + SQLiteLexerEXCLUDE_ = 181 + SQLiteLexerTIES_ = 182 + SQLiteLexerOTHERS_ = 183 + SQLiteLexerDO_ = 184 + SQLiteLexerNOTHING_ = 185 + SQLiteLexerIDENTIFIER = 186 + SQLiteLexerNUMERIC_LITERAL = 187 + SQLiteLexerBIND_PARAMETER = 188 + SQLiteLexerSTRING_LITERAL = 189 + SQLiteLexerBLOB_LITERAL = 190 + SQLiteLexerSINGLE_LINE_COMMENT = 191 + SQLiteLexerMULTILINE_COMMENT = 192 + SQLiteLexerSPACES = 193 + SQLiteLexerUNEXPECTED_CHAR = 194 ) diff --git a/internal/engine/sqlite/parser/sqlite_parser.go b/internal/engine/sqlite/parser/sqlite_parser.go index 1ced0ce6eb..2fb88c3e47 100644 --- a/internal/engine/sqlite/parser/sqlite_parser.go +++ b/internal/engine/sqlite/parser/sqlite_parser.go @@ -1,4 +1,4 @@ -// Code generated from SQLiteParser.g4 by ANTLR 4.10.1. DO NOT EDIT. +// Code generated from SQLiteParser.g4 by ANTLR 4.12.0. DO NOT EDIT. package parser // SQLiteParser @@ -7,7 +7,7 @@ import ( "strconv" "sync" - "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr/v4" ) // Suppress unused import errors @@ -56,8 +56,8 @@ func sqliteparserParserInit() { "OUTER_", "PLAN_", "PRAGMA_", "PRIMARY_", "QUERY_", "RAISE_", "RECURSIVE_", "REFERENCES_", "REGEXP_", "REINDEX_", "RELEASE_", "RENAME_", "REPLACE_", "RESTRICT_", "RETURNING_", "RIGHT_", "ROLLBACK_", "ROW_", "ROWS_", "SAVEPOINT_", - "SELECT_", "SET_", "TABLE_", "TEMP_", "TEMPORARY_", "THEN_", "TO_", - "TRANSACTION_", "TRIGGER_", "UNION_", "UNIQUE_", "UPDATE_", "USING_", + "SELECT_", "SET_", "STRICT_", "TABLE_", "TEMP_", "TEMPORARY_", "THEN_", + "TO_", "TRANSACTION_", "TRIGGER_", "UNION_", "UNIQUE_", "UPDATE_", "USING_", "VACUUM_", "VALUES_", "VIEW_", "VIRTUAL_", "WHEN_", "WHERE_", "WITH_", "WITHOUT_", "FIRST_VALUE_", "OVER_", "PARTITION_", "RANGE_", "PRECEDING_", "UNBOUNDED_", "CURRENT_", "FOLLOWING_", "CUME_DIST_", "DENSE_RANK_", @@ -98,7 +98,7 @@ func sqliteparserParserInit() { } staticData.predictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 1, 193, 2081, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, + 4, 1, 194, 2082, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, @@ -143,190 +143,190 @@ func sqliteparserParserInit() { 13, 425, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 430, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 437, 8, 13, 10, 13, 12, 13, 440, 9, 13, 1, 13, 1, 13, 5, 13, 444, 8, 13, 10, 13, 12, 13, 447, 9, 13, 1, 13, 1, 13, 1, - 13, 3, 13, 452, 8, 13, 1, 13, 1, 13, 3, 13, 456, 8, 13, 1, 14, 1, 14, 3, - 14, 460, 8, 14, 1, 14, 5, 14, 463, 8, 14, 10, 14, 12, 14, 466, 9, 14, 1, - 15, 4, 15, 469, 8, 15, 11, 15, 12, 15, 470, 1, 15, 1, 15, 1, 15, 1, 15, - 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 483, 8, 15, 1, 16, 1, - 16, 3, 16, 487, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 492, 8, 16, 1, 16, 3, - 16, 495, 8, 16, 1, 16, 3, 16, 498, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 503, - 8, 16, 1, 16, 3, 16, 506, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, - 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 520, 8, 16, 1, 16, - 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 527, 8, 16, 1, 16, 1, 16, 1, 16, 1, - 16, 1, 16, 3, 16, 534, 8, 16, 3, 16, 536, 8, 16, 1, 17, 3, 17, 539, 8, - 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 545, 8, 18, 1, 18, 1, 18, 1, 18, - 3, 18, 550, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 556, 8, 18, 10, 18, - 12, 18, 559, 9, 18, 1, 18, 1, 18, 3, 18, 563, 8, 18, 1, 18, 1, 18, 1, 18, - 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 576, 8, - 18, 10, 18, 12, 18, 579, 9, 18, 1, 18, 1, 18, 1, 18, 3, 18, 584, 8, 18, - 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 592, 8, 19, 10, 19, 12, - 19, 595, 9, 19, 1, 19, 1, 19, 3, 19, 599, 8, 19, 1, 19, 1, 19, 1, 19, 1, - 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 609, 8, 19, 1, 19, 1, 19, 5, 19, - 613, 8, 19, 10, 19, 12, 19, 616, 9, 19, 1, 19, 3, 19, 619, 8, 19, 1, 19, - 1, 19, 1, 19, 3, 19, 624, 8, 19, 3, 19, 626, 8, 19, 1, 20, 1, 20, 1, 20, - 1, 20, 1, 21, 1, 21, 3, 21, 634, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, - 21, 640, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 645, 8, 21, 1, 21, 1, 21, 1, - 21, 1, 21, 1, 21, 3, 21, 652, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, - 1, 21, 1, 21, 5, 21, 661, 8, 21, 10, 21, 12, 21, 664, 9, 21, 3, 21, 666, - 8, 21, 3, 21, 668, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 675, - 8, 21, 1, 21, 1, 21, 3, 21, 679, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, - 21, 3, 21, 686, 8, 21, 1, 21, 1, 21, 4, 21, 690, 8, 21, 11, 21, 12, 21, - 691, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 698, 8, 22, 1, 22, 1, 22, 1, 22, - 1, 22, 3, 22, 704, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 709, 8, 22, 1, 22, - 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 716, 8, 22, 10, 22, 12, 22, 719, 9, - 22, 1, 22, 1, 22, 3, 22, 723, 8, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, - 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 734, 8, 23, 1, 23, 1, 23, 1, 23, 3, - 23, 739, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, - 748, 8, 23, 10, 23, 12, 23, 751, 9, 23, 1, 23, 1, 23, 3, 23, 755, 8, 23, - 1, 24, 1, 24, 3, 24, 759, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, - 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 773, 8, 24, 10, 24, - 12, 24, 776, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 783, 8, 25, - 10, 25, 12, 25, 786, 9, 25, 1, 25, 1, 25, 3, 25, 790, 8, 25, 1, 26, 1, - 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 798, 8, 26, 1, 26, 1, 26, 1, 26, - 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 808, 8, 27, 10, 27, 12, 27, 811, - 9, 27, 1, 27, 1, 27, 3, 27, 815, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, - 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 826, 8, 28, 1, 28, 3, 28, 829, 8, - 28, 3, 28, 831, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 837, 8, 28, 1, - 28, 3, 28, 840, 8, 28, 3, 28, 842, 8, 28, 5, 28, 844, 8, 28, 10, 28, 12, - 28, 847, 9, 28, 1, 29, 3, 29, 850, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, - 29, 3, 29, 857, 8, 29, 1, 29, 3, 29, 860, 8, 29, 1, 30, 3, 30, 863, 8, - 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 870, 8, 30, 1, 30, 3, 30, - 873, 8, 30, 1, 30, 3, 30, 876, 8, 30, 1, 30, 3, 30, 879, 8, 30, 1, 31, - 1, 31, 3, 31, 883, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, - 32, 891, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 896, 8, 32, 1, 32, 1, 32, 1, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 906, 8, 33, 1, 33, 1, 33, - 1, 33, 3, 33, 911, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, - 33, 3, 33, 920, 8, 33, 1, 33, 1, 33, 1, 33, 5, 33, 925, 8, 33, 10, 33, - 12, 33, 928, 9, 33, 1, 33, 3, 33, 931, 8, 33, 1, 33, 1, 33, 3, 33, 935, - 8, 33, 1, 33, 3, 33, 938, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 944, - 8, 33, 10, 33, 12, 33, 947, 9, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 959, 8, 33, 1, 33, 3, 33, 962, 8, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 970, 8, 33, 1, 33, - 1, 33, 1, 33, 1, 33, 1, 33, 4, 33, 977, 8, 33, 11, 33, 12, 33, 978, 1, - 33, 1, 33, 3, 33, 983, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 988, 8, 33, 1, + 13, 1, 13, 3, 13, 453, 8, 13, 1, 13, 1, 13, 3, 13, 457, 8, 13, 1, 14, 1, + 14, 3, 14, 461, 8, 14, 1, 14, 5, 14, 464, 8, 14, 10, 14, 12, 14, 467, 9, + 14, 1, 15, 4, 15, 470, 8, 15, 11, 15, 12, 15, 471, 1, 15, 1, 15, 1, 15, + 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 484, 8, 15, 1, + 16, 1, 16, 3, 16, 488, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 493, 8, 16, 1, + 16, 3, 16, 496, 8, 16, 1, 16, 3, 16, 499, 8, 16, 1, 16, 1, 16, 1, 16, 3, + 16, 504, 8, 16, 1, 16, 3, 16, 507, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, + 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 521, 8, 16, + 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 528, 8, 16, 1, 16, 1, 16, 1, + 16, 1, 16, 1, 16, 3, 16, 535, 8, 16, 3, 16, 537, 8, 16, 1, 17, 3, 17, 540, + 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 546, 8, 18, 1, 18, 1, 18, 1, + 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 557, 8, 18, 10, + 18, 12, 18, 560, 9, 18, 1, 18, 1, 18, 3, 18, 564, 8, 18, 1, 18, 1, 18, + 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 577, + 8, 18, 10, 18, 12, 18, 580, 9, 18, 1, 18, 1, 18, 1, 18, 3, 18, 585, 8, + 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 593, 8, 19, 10, 19, + 12, 19, 596, 9, 19, 1, 19, 1, 19, 3, 19, 600, 8, 19, 1, 19, 1, 19, 1, 19, + 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 610, 8, 19, 1, 19, 1, 19, 5, + 19, 614, 8, 19, 10, 19, 12, 19, 617, 9, 19, 1, 19, 3, 19, 620, 8, 19, 1, + 19, 1, 19, 1, 19, 3, 19, 625, 8, 19, 3, 19, 627, 8, 19, 1, 20, 1, 20, 1, + 20, 1, 20, 1, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, + 3, 21, 641, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 646, 8, 21, 1, 21, 1, 21, + 1, 21, 1, 21, 1, 21, 3, 21, 653, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, + 21, 1, 21, 1, 21, 5, 21, 662, 8, 21, 10, 21, 12, 21, 665, 9, 21, 3, 21, + 667, 8, 21, 3, 21, 669, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, + 676, 8, 21, 1, 21, 1, 21, 3, 21, 680, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, + 1, 21, 3, 21, 687, 8, 21, 1, 21, 1, 21, 4, 21, 691, 8, 21, 11, 21, 12, + 21, 692, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 699, 8, 22, 1, 22, 1, 22, 1, + 22, 1, 22, 3, 22, 705, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 710, 8, 22, 1, + 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 717, 8, 22, 10, 22, 12, 22, 720, + 9, 22, 1, 22, 1, 22, 3, 22, 724, 8, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, + 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 735, 8, 23, 1, 23, 1, 23, 1, 23, + 3, 23, 740, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, + 23, 749, 8, 23, 10, 23, 12, 23, 752, 9, 23, 1, 23, 1, 23, 3, 23, 756, 8, + 23, 1, 24, 1, 24, 3, 24, 760, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, + 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 774, 8, 24, 10, + 24, 12, 24, 777, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 784, + 8, 25, 10, 25, 12, 25, 787, 9, 25, 1, 25, 1, 25, 3, 25, 791, 8, 25, 1, + 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 799, 8, 26, 1, 26, 1, 26, + 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 809, 8, 27, 10, 27, 12, + 27, 812, 9, 27, 1, 27, 1, 27, 3, 27, 816, 8, 27, 1, 27, 1, 27, 1, 27, 1, + 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 827, 8, 28, 1, 28, 3, 28, + 830, 8, 28, 3, 28, 832, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 838, + 8, 28, 1, 28, 3, 28, 841, 8, 28, 3, 28, 843, 8, 28, 5, 28, 845, 8, 28, + 10, 28, 12, 28, 848, 9, 28, 1, 29, 3, 29, 851, 8, 29, 1, 29, 1, 29, 1, + 29, 1, 29, 1, 29, 3, 29, 858, 8, 29, 1, 29, 3, 29, 861, 8, 29, 1, 30, 3, + 30, 864, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 871, 8, 30, 1, + 30, 3, 30, 874, 8, 30, 1, 30, 3, 30, 877, 8, 30, 1, 30, 3, 30, 880, 8, + 30, 1, 31, 1, 31, 3, 31, 884, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, + 1, 32, 3, 32, 892, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 897, 8, 32, 1, 32, + 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 907, 8, 33, 1, + 33, 1, 33, 1, 33, 3, 33, 912, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, + 1, 33, 1, 33, 3, 33, 921, 8, 33, 1, 33, 1, 33, 1, 33, 5, 33, 926, 8, 33, + 10, 33, 12, 33, 929, 9, 33, 1, 33, 3, 33, 932, 8, 33, 1, 33, 1, 33, 3, + 33, 936, 8, 33, 1, 33, 3, 33, 939, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, + 33, 945, 8, 33, 10, 33, 12, 33, 948, 9, 33, 1, 33, 1, 33, 1, 33, 1, 33, + 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 960, 8, 33, 1, 33, 3, + 33, 963, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 971, 8, + 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 4, 33, 978, 8, 33, 11, 33, 12, 33, + 979, 1, 33, 1, 33, 3, 33, 984, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 989, + 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, - 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1018, 8, 33, 1, 33, - 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1029, 8, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, - 3, 33, 1041, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1047, 8, 33, 1, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1054, 8, 33, 1, 33, 1, 33, 3, 33, - 1058, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1066, 8, - 33, 10, 33, 12, 33, 1069, 9, 33, 3, 33, 1071, 8, 33, 1, 33, 1, 33, 1, 33, - 1, 33, 3, 33, 1077, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1083, 8, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1090, 8, 33, 10, 33, 12, - 33, 1093, 9, 33, 3, 33, 1095, 8, 33, 1, 33, 1, 33, 3, 33, 1099, 8, 33, - 5, 33, 1101, 8, 33, 10, 33, 12, 33, 1104, 9, 33, 1, 34, 1, 34, 1, 34, 1, - 34, 1, 34, 1, 34, 3, 34, 1112, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, - 3, 36, 1119, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1126, 8, - 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1132, 8, 36, 1, 36, 1, 36, 1, 36, - 3, 36, 1137, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1143, 8, 36, 10, - 36, 12, 36, 1146, 9, 36, 1, 36, 1, 36, 3, 36, 1150, 8, 36, 1, 36, 1, 36, - 1, 36, 1, 36, 1, 36, 5, 36, 1157, 8, 36, 10, 36, 12, 36, 1160, 9, 36, 1, - 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1168, 8, 36, 10, 36, 12, - 36, 1171, 9, 36, 1, 36, 1, 36, 5, 36, 1175, 8, 36, 10, 36, 12, 36, 1178, - 9, 36, 1, 36, 3, 36, 1181, 8, 36, 1, 36, 3, 36, 1184, 8, 36, 1, 36, 3, - 36, 1187, 8, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 37, 1, 37, 1, 37, - 1, 37, 1, 37, 1, 37, 5, 37, 1199, 8, 37, 10, 37, 12, 37, 1202, 9, 37, 1, - 37, 1, 37, 1, 37, 3, 37, 1207, 8, 37, 3, 37, 1209, 8, 37, 1, 37, 1, 37, - 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1217, 8, 37, 1, 37, 1, 37, 1, 37, 1, - 37, 1, 37, 3, 37, 1224, 8, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1229, 8, 37, - 10, 37, 12, 37, 1232, 9, 37, 1, 37, 1, 37, 3, 37, 1236, 8, 37, 3, 37, 1238, - 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1244, 8, 38, 1, 38, 1, 38, 1, - 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1253, 8, 38, 1, 39, 1, 39, 1, 39, - 3, 39, 1258, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1265, 8, - 40, 1, 40, 1, 40, 3, 40, 1269, 8, 40, 3, 40, 1271, 8, 40, 1, 41, 3, 41, - 1274, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1280, 8, 41, 10, 41, 12, - 41, 1283, 9, 41, 1, 41, 3, 41, 1286, 8, 41, 1, 41, 3, 41, 1289, 8, 41, - 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1295, 8, 42, 5, 42, 1297, 8, 42, 10, - 42, 12, 42, 1300, 9, 42, 1, 43, 1, 43, 3, 43, 1304, 8, 43, 1, 43, 1, 43, - 1, 43, 5, 43, 1309, 8, 43, 10, 43, 12, 43, 1312, 9, 43, 1, 43, 1, 43, 1, - 43, 1, 43, 5, 43, 1318, 8, 43, 10, 43, 12, 43, 1321, 9, 43, 1, 43, 3, 43, - 1324, 8, 43, 3, 43, 1326, 8, 43, 1, 43, 1, 43, 3, 43, 1330, 8, 43, 1, 43, - 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1337, 8, 43, 10, 43, 12, 43, 1340, 9, - 43, 1, 43, 1, 43, 3, 43, 1344, 8, 43, 3, 43, 1346, 8, 43, 1, 43, 1, 43, - 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1357, 8, 43, 10, - 43, 12, 43, 1360, 9, 43, 3, 43, 1362, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, - 1, 43, 5, 43, 1369, 8, 43, 10, 43, 12, 43, 1372, 9, 43, 1, 43, 1, 43, 1, - 43, 1, 43, 1, 43, 1, 43, 5, 43, 1380, 8, 43, 10, 43, 12, 43, 1383, 9, 43, - 1, 43, 1, 43, 5, 43, 1387, 8, 43, 10, 43, 12, 43, 1390, 9, 43, 3, 43, 1392, - 8, 43, 1, 44, 1, 44, 1, 45, 3, 45, 1397, 8, 45, 1, 45, 1, 45, 3, 45, 1401, - 8, 45, 1, 45, 3, 45, 1404, 8, 45, 1, 46, 3, 46, 1407, 8, 46, 1, 46, 1, - 46, 1, 46, 3, 46, 1412, 8, 46, 1, 46, 1, 46, 3, 46, 1416, 8, 46, 1, 46, - 4, 46, 1419, 8, 46, 11, 46, 12, 46, 1420, 1, 46, 3, 46, 1424, 8, 46, 1, - 46, 3, 46, 1427, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1432, 8, 47, 1, 47, - 1, 47, 3, 47, 1436, 8, 47, 1, 47, 3, 47, 1439, 8, 47, 1, 47, 1, 47, 1, - 47, 1, 47, 1, 47, 3, 47, 1446, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1451, - 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1458, 8, 47, 10, 47, 12, - 47, 1461, 9, 47, 1, 47, 1, 47, 3, 47, 1465, 8, 47, 1, 47, 3, 47, 1468, - 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1474, 8, 47, 10, 47, 12, 47, - 1477, 9, 47, 1, 47, 3, 47, 1480, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, - 47, 1, 47, 3, 47, 1488, 8, 47, 1, 47, 3, 47, 1491, 8, 47, 3, 47, 1493, - 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1502, 8, - 48, 1, 48, 3, 48, 1505, 8, 48, 3, 48, 1507, 8, 48, 1, 49, 1, 49, 3, 49, - 1511, 8, 49, 1, 49, 1, 49, 3, 49, 1515, 8, 49, 1, 49, 1, 49, 3, 49, 1519, - 8, 49, 1, 49, 3, 49, 1522, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, - 50, 1, 50, 5, 50, 1531, 8, 50, 10, 50, 12, 50, 1534, 9, 50, 1, 50, 1, 50, - 3, 50, 1538, 8, 50, 1, 51, 1, 51, 3, 51, 1542, 8, 51, 1, 51, 1, 51, 3, - 51, 1546, 8, 51, 1, 52, 3, 52, 1549, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, - 1554, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1560, 8, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 3, 52, 1567, 8, 52, 1, 52, 1, 52, 1, 52, 5, 52, - 1572, 8, 52, 10, 52, 12, 52, 1575, 9, 52, 1, 52, 1, 52, 3, 52, 1579, 8, - 52, 1, 52, 3, 52, 1582, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1588, - 8, 53, 10, 53, 12, 53, 1591, 9, 53, 1, 53, 1, 53, 1, 54, 3, 54, 1596, 8, - 54, 1, 54, 1, 54, 1, 54, 3, 54, 1601, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, - 3, 54, 1607, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1614, 8, - 54, 1, 54, 1, 54, 1, 54, 5, 54, 1619, 8, 54, 10, 54, 12, 54, 1622, 9, 54, - 1, 54, 1, 54, 3, 54, 1626, 8, 54, 1, 54, 3, 54, 1629, 8, 54, 1, 54, 3, - 54, 1632, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1637, 8, 55, 1, 55, 1, 55, - 1, 55, 3, 55, 1642, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1649, - 8, 55, 1, 56, 1, 56, 3, 56, 1653, 8, 56, 1, 56, 1, 56, 3, 56, 1657, 8, - 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1667, - 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1674, 8, 58, 10, 58, 12, - 58, 1677, 9, 58, 3, 58, 1679, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, - 5, 58, 1686, 8, 58, 10, 58, 12, 58, 1689, 9, 58, 1, 58, 3, 58, 1692, 8, - 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1700, 8, 59, 1, 59, - 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1707, 8, 59, 10, 59, 12, 59, 1710, 9, - 59, 3, 59, 1712, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1719, - 8, 59, 10, 59, 12, 59, 1722, 9, 59, 3, 59, 1724, 8, 59, 1, 59, 3, 59, 1727, - 8, 59, 1, 59, 3, 59, 1730, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, - 60, 1, 60, 1, 60, 3, 60, 1740, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, - 1, 61, 1, 61, 3, 61, 1749, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, - 62, 1756, 8, 62, 10, 62, 12, 62, 1759, 9, 62, 1, 62, 3, 62, 1762, 8, 62, - 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 1769, 8, 63, 1, 63, 1, 63, 1, - 63, 5, 63, 1774, 8, 63, 10, 63, 12, 63, 1777, 9, 63, 1, 63, 3, 63, 1780, - 8, 63, 1, 63, 1, 63, 3, 63, 1784, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, - 64, 5, 64, 1791, 8, 64, 10, 64, 12, 64, 1794, 9, 64, 1, 64, 3, 64, 1797, - 8, 64, 1, 64, 1, 64, 3, 64, 1801, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1806, - 8, 64, 1, 65, 1, 65, 3, 65, 1810, 8, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1815, - 8, 65, 10, 65, 12, 65, 1818, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, - 5, 66, 1825, 8, 66, 10, 66, 12, 66, 1828, 9, 66, 1, 67, 1, 67, 1, 67, 1, - 67, 3, 67, 1834, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1839, 8, 68, 1, 68, - 3, 68, 1842, 8, 68, 1, 68, 1, 68, 3, 68, 1846, 8, 68, 1, 69, 1, 69, 1, + 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1019, 8, + 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, + 1030, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, + 33, 1, 33, 3, 33, 1042, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1048, + 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1055, 8, 33, 1, 33, 1, + 33, 3, 33, 1059, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, + 1067, 8, 33, 10, 33, 12, 33, 1070, 9, 33, 3, 33, 1072, 8, 33, 1, 33, 1, + 33, 1, 33, 1, 33, 3, 33, 1078, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, + 1084, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1091, 8, 33, 10, + 33, 12, 33, 1094, 9, 33, 3, 33, 1096, 8, 33, 1, 33, 1, 33, 3, 33, 1100, + 8, 33, 5, 33, 1102, 8, 33, 10, 33, 12, 33, 1105, 9, 33, 1, 34, 1, 34, 1, + 34, 1, 34, 1, 34, 1, 34, 3, 34, 1113, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, + 1, 36, 3, 36, 1120, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1127, + 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1133, 8, 36, 1, 36, 1, 36, 1, + 36, 3, 36, 1138, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1144, 8, 36, + 10, 36, 12, 36, 1147, 9, 36, 1, 36, 1, 36, 3, 36, 1151, 8, 36, 1, 36, 1, + 36, 1, 36, 1, 36, 1, 36, 5, 36, 1158, 8, 36, 10, 36, 12, 36, 1161, 9, 36, + 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1169, 8, 36, 10, 36, 12, + 36, 1172, 9, 36, 1, 36, 1, 36, 5, 36, 1176, 8, 36, 10, 36, 12, 36, 1179, + 9, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 3, 36, 1185, 8, 36, 1, 36, 3, + 36, 1188, 8, 36, 1, 36, 1, 36, 3, 36, 1192, 8, 36, 1, 37, 1, 37, 1, 37, + 1, 37, 1, 37, 1, 37, 5, 37, 1200, 8, 37, 10, 37, 12, 37, 1203, 9, 37, 1, + 37, 1, 37, 1, 37, 3, 37, 1208, 8, 37, 3, 37, 1210, 8, 37, 1, 37, 1, 37, + 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1218, 8, 37, 1, 37, 1, 37, 1, 37, 1, + 37, 1, 37, 3, 37, 1225, 8, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1230, 8, 37, + 10, 37, 12, 37, 1233, 9, 37, 1, 37, 1, 37, 3, 37, 1237, 8, 37, 3, 37, 1239, + 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1245, 8, 38, 1, 38, 1, 38, 1, + 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1254, 8, 38, 1, 39, 1, 39, 1, 39, + 3, 39, 1259, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1266, 8, + 40, 1, 40, 1, 40, 3, 40, 1270, 8, 40, 3, 40, 1272, 8, 40, 1, 41, 3, 41, + 1275, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1281, 8, 41, 10, 41, 12, + 41, 1284, 9, 41, 1, 41, 3, 41, 1287, 8, 41, 1, 41, 3, 41, 1290, 8, 41, + 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1296, 8, 42, 5, 42, 1298, 8, 42, 10, + 42, 12, 42, 1301, 9, 42, 1, 43, 1, 43, 3, 43, 1305, 8, 43, 1, 43, 1, 43, + 1, 43, 5, 43, 1310, 8, 43, 10, 43, 12, 43, 1313, 9, 43, 1, 43, 1, 43, 1, + 43, 1, 43, 5, 43, 1319, 8, 43, 10, 43, 12, 43, 1322, 9, 43, 1, 43, 3, 43, + 1325, 8, 43, 3, 43, 1327, 8, 43, 1, 43, 1, 43, 3, 43, 1331, 8, 43, 1, 43, + 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1338, 8, 43, 10, 43, 12, 43, 1341, 9, + 43, 1, 43, 1, 43, 3, 43, 1345, 8, 43, 3, 43, 1347, 8, 43, 1, 43, 1, 43, + 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1358, 8, 43, 10, + 43, 12, 43, 1361, 9, 43, 3, 43, 1363, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, + 1, 43, 5, 43, 1370, 8, 43, 10, 43, 12, 43, 1373, 9, 43, 1, 43, 1, 43, 1, + 43, 1, 43, 1, 43, 1, 43, 5, 43, 1381, 8, 43, 10, 43, 12, 43, 1384, 9, 43, + 1, 43, 1, 43, 5, 43, 1388, 8, 43, 10, 43, 12, 43, 1391, 9, 43, 3, 43, 1393, + 8, 43, 1, 44, 1, 44, 1, 45, 3, 45, 1398, 8, 45, 1, 45, 1, 45, 3, 45, 1402, + 8, 45, 1, 45, 3, 45, 1405, 8, 45, 1, 46, 3, 46, 1408, 8, 46, 1, 46, 1, + 46, 1, 46, 3, 46, 1413, 8, 46, 1, 46, 1, 46, 3, 46, 1417, 8, 46, 1, 46, + 4, 46, 1420, 8, 46, 11, 46, 12, 46, 1421, 1, 46, 3, 46, 1425, 8, 46, 1, + 46, 3, 46, 1428, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1433, 8, 47, 1, 47, + 1, 47, 3, 47, 1437, 8, 47, 1, 47, 3, 47, 1440, 8, 47, 1, 47, 1, 47, 1, + 47, 1, 47, 1, 47, 3, 47, 1447, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1452, + 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1459, 8, 47, 10, 47, 12, + 47, 1462, 9, 47, 1, 47, 1, 47, 3, 47, 1466, 8, 47, 1, 47, 3, 47, 1469, + 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1475, 8, 47, 10, 47, 12, 47, + 1478, 9, 47, 1, 47, 3, 47, 1481, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, + 47, 1, 47, 3, 47, 1489, 8, 47, 1, 47, 3, 47, 1492, 8, 47, 3, 47, 1494, + 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1503, 8, + 48, 1, 48, 3, 48, 1506, 8, 48, 3, 48, 1508, 8, 48, 1, 49, 1, 49, 3, 49, + 1512, 8, 49, 1, 49, 1, 49, 3, 49, 1516, 8, 49, 1, 49, 1, 49, 3, 49, 1520, + 8, 49, 1, 49, 3, 49, 1523, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, + 50, 1, 50, 5, 50, 1532, 8, 50, 10, 50, 12, 50, 1535, 9, 50, 1, 50, 1, 50, + 3, 50, 1539, 8, 50, 1, 51, 1, 51, 3, 51, 1543, 8, 51, 1, 51, 1, 51, 3, + 51, 1547, 8, 51, 1, 52, 3, 52, 1550, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, + 1555, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1561, 8, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 1, 52, 3, 52, 1568, 8, 52, 1, 52, 1, 52, 1, 52, 5, 52, + 1573, 8, 52, 10, 52, 12, 52, 1576, 9, 52, 1, 52, 1, 52, 3, 52, 1580, 8, + 52, 1, 52, 3, 52, 1583, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1589, + 8, 53, 10, 53, 12, 53, 1592, 9, 53, 1, 53, 1, 53, 1, 54, 3, 54, 1597, 8, + 54, 1, 54, 1, 54, 1, 54, 3, 54, 1602, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, + 3, 54, 1608, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1615, 8, + 54, 1, 54, 1, 54, 1, 54, 5, 54, 1620, 8, 54, 10, 54, 12, 54, 1623, 9, 54, + 1, 54, 1, 54, 3, 54, 1627, 8, 54, 1, 54, 3, 54, 1630, 8, 54, 1, 54, 3, + 54, 1633, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1638, 8, 55, 1, 55, 1, 55, + 1, 55, 3, 55, 1643, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1650, + 8, 55, 1, 56, 1, 56, 3, 56, 1654, 8, 56, 1, 56, 1, 56, 3, 56, 1658, 8, + 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1668, + 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1675, 8, 58, 10, 58, 12, + 58, 1678, 9, 58, 3, 58, 1680, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, + 5, 58, 1687, 8, 58, 10, 58, 12, 58, 1690, 9, 58, 1, 58, 3, 58, 1693, 8, + 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1701, 8, 59, 1, 59, + 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1708, 8, 59, 10, 59, 12, 59, 1711, 9, + 59, 3, 59, 1713, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1720, + 8, 59, 10, 59, 12, 59, 1723, 9, 59, 3, 59, 1725, 8, 59, 1, 59, 3, 59, 1728, + 8, 59, 1, 59, 3, 59, 1731, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, + 60, 1, 60, 1, 60, 3, 60, 1741, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, + 1, 61, 1, 61, 3, 61, 1750, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, + 62, 1757, 8, 62, 10, 62, 12, 62, 1760, 9, 62, 1, 62, 3, 62, 1763, 8, 62, + 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 1770, 8, 63, 1, 63, 1, 63, 1, + 63, 5, 63, 1775, 8, 63, 10, 63, 12, 63, 1778, 9, 63, 1, 63, 3, 63, 1781, + 8, 63, 1, 63, 1, 63, 3, 63, 1785, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, + 64, 5, 64, 1792, 8, 64, 10, 64, 12, 64, 1795, 9, 64, 1, 64, 3, 64, 1798, + 8, 64, 1, 64, 1, 64, 3, 64, 1802, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1807, + 8, 64, 1, 65, 1, 65, 3, 65, 1811, 8, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1816, + 8, 65, 10, 65, 12, 65, 1819, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, + 5, 66, 1826, 8, 66, 10, 66, 12, 66, 1829, 9, 66, 1, 67, 1, 67, 1, 67, 1, + 67, 3, 67, 1835, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1840, 8, 68, 1, 68, + 3, 68, 1843, 8, 68, 1, 68, 1, 68, 3, 68, 1847, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, - 1860, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, - 71, 1, 71, 3, 71, 1872, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, - 1, 72, 3, 72, 1881, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, - 73, 3, 73, 1890, 8, 73, 1, 73, 1, 73, 3, 73, 1894, 8, 73, 1, 73, 1, 73, - 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1904, 8, 73, 1, 73, 3, - 73, 1907, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, - 1916, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1925, - 8, 73, 1, 73, 3, 73, 1928, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1934, + 1861, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, + 71, 1, 71, 3, 71, 1873, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, + 1, 72, 3, 72, 1882, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, + 73, 3, 73, 1891, 8, 73, 1, 73, 1, 73, 3, 73, 1895, 8, 73, 1, 73, 1, 73, + 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1905, 8, 73, 1, 73, 3, + 73, 1908, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, + 1917, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1926, + 8, 73, 1, 73, 3, 73, 1929, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1935, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, - 73, 1, 73, 1, 73, 3, 73, 1948, 8, 73, 1, 73, 1, 73, 3, 73, 1952, 8, 73, - 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1963, - 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1968, 8, 73, 1, 74, 1, 74, 1, 74, 1, - 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 4, 76, 1979, 8, 76, 11, 76, 12, - 76, 1980, 1, 77, 1, 77, 1, 77, 4, 77, 1986, 8, 77, 11, 77, 12, 77, 1987, - 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1996, 8, 79, 1, 79, 1, - 79, 1, 79, 3, 79, 2001, 8, 79, 5, 79, 2003, 8, 79, 10, 79, 12, 79, 2006, + 73, 1, 73, 1, 73, 3, 73, 1949, 8, 73, 1, 73, 1, 73, 3, 73, 1953, 8, 73, + 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1964, + 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1969, 8, 73, 1, 74, 1, 74, 1, 74, 1, + 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 4, 76, 1980, 8, 76, 11, 76, 12, + 76, 1981, 1, 77, 1, 77, 1, 77, 4, 77, 1987, 8, 77, 11, 77, 12, 77, 1988, + 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1997, 8, 79, 1, 79, 1, + 79, 1, 79, 3, 79, 2002, 8, 79, 5, 79, 2004, 8, 79, 10, 79, 12, 79, 2007, 9, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, - 84, 3, 84, 2018, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, + 84, 3, 84, 2019, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, - 111, 1, 111, 1, 111, 1, 111, 3, 111, 2079, 8, 111, 1, 111, 2, 438, 470, + 111, 1, 111, 1, 111, 1, 111, 3, 111, 2080, 8, 111, 1, 111, 2, 438, 471, 1, 66, 112, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, @@ -334,51 +334,51 @@ func sqliteparserParserInit() { 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, - 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 133, 134, - 2, 0, 146, 146, 171, 171, 1, 0, 8, 9, 2, 0, 59, 59, 141, 141, 2, 0, 56, + 0, 28, 3, 0, 58, 58, 69, 69, 82, 82, 2, 0, 47, 47, 66, 66, 1, 0, 134, 135, + 2, 0, 147, 147, 172, 172, 1, 0, 8, 9, 2, 0, 59, 59, 142, 142, 2, 0, 56, 56, 104, 104, 2, 0, 58, 58, 82, 82, 5, 0, 25, 25, 72, 72, 81, 81, 122, - 122, 126, 126, 4, 0, 84, 84, 132, 132, 138, 138, 145, 145, 2, 0, 7, 7, + 122, 126, 126, 4, 0, 84, 84, 133, 133, 139, 139, 146, 146, 2, 0, 7, 7, 12, 13, 1, 0, 14, 17, 1, 0, 18, 21, 4, 0, 77, 77, 97, 97, 99, 99, 118, - 118, 3, 0, 25, 25, 72, 72, 126, 126, 5, 0, 52, 54, 104, 104, 172, 173, - 186, 186, 188, 189, 2, 0, 29, 29, 62, 62, 3, 0, 128, 128, 154, 154, 179, - 179, 2, 0, 5, 5, 106, 106, 1, 0, 176, 177, 2, 0, 34, 34, 60, 60, 2, 0, - 151, 151, 162, 162, 2, 0, 159, 159, 166, 166, 2, 0, 160, 160, 167, 168, - 2, 0, 161, 161, 163, 163, 2, 0, 8, 10, 102, 102, 2, 0, 185, 185, 188, 188, - 1, 0, 25, 180, 2367, 0, 227, 1, 0, 0, 0, 2, 235, 1, 0, 0, 0, 4, 261, 1, + 118, 3, 0, 25, 25, 72, 72, 126, 126, 5, 0, 52, 54, 104, 104, 173, 174, + 187, 187, 189, 190, 2, 0, 29, 29, 62, 62, 3, 0, 128, 128, 155, 155, 180, + 180, 2, 0, 5, 5, 106, 106, 1, 0, 177, 178, 2, 0, 34, 34, 60, 60, 2, 0, + 152, 152, 163, 163, 2, 0, 160, 160, 167, 167, 2, 0, 161, 161, 168, 169, + 2, 0, 162, 162, 164, 164, 2, 0, 8, 10, 102, 102, 2, 0, 186, 186, 189, 189, + 1, 0, 25, 181, 2369, 0, 227, 1, 0, 0, 0, 2, 235, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 6, 289, 1, 0, 0, 0, 8, 321, 1, 0, 0, 0, 10, 331, 1, 0, 0, 0, 12, 339, 1, 0, 0, 0, 14, 349, 1, 0, 0, 0, 16, 353, 1, 0, 0, 0, 18, 364, 1, 0, 0, 0, 20, 367, 1, 0, 0, 0, 22, 373, 1, 0, 0, 0, 24, 407, 1, 0, 0, 0, - 26, 416, 1, 0, 0, 0, 28, 457, 1, 0, 0, 0, 30, 468, 1, 0, 0, 0, 32, 486, - 1, 0, 0, 0, 34, 538, 1, 0, 0, 0, 36, 544, 1, 0, 0, 0, 38, 585, 1, 0, 0, - 0, 40, 627, 1, 0, 0, 0, 42, 631, 1, 0, 0, 0, 44, 695, 1, 0, 0, 0, 46, 727, - 1, 0, 0, 0, 48, 756, 1, 0, 0, 0, 50, 777, 1, 0, 0, 0, 52, 791, 1, 0, 0, - 0, 54, 802, 1, 0, 0, 0, 56, 821, 1, 0, 0, 0, 58, 849, 1, 0, 0, 0, 60, 862, - 1, 0, 0, 0, 62, 880, 1, 0, 0, 0, 64, 886, 1, 0, 0, 0, 66, 987, 1, 0, 0, - 0, 68, 1105, 1, 0, 0, 0, 70, 1115, 1, 0, 0, 0, 72, 1190, 1, 0, 0, 0, 74, - 1192, 1, 0, 0, 0, 76, 1239, 1, 0, 0, 0, 78, 1257, 1, 0, 0, 0, 80, 1259, - 1, 0, 0, 0, 82, 1273, 1, 0, 0, 0, 84, 1290, 1, 0, 0, 0, 86, 1391, 1, 0, - 0, 0, 88, 1393, 1, 0, 0, 0, 90, 1396, 1, 0, 0, 0, 92, 1406, 1, 0, 0, 0, - 94, 1492, 1, 0, 0, 0, 96, 1506, 1, 0, 0, 0, 98, 1521, 1, 0, 0, 0, 100, - 1537, 1, 0, 0, 0, 102, 1545, 1, 0, 0, 0, 104, 1548, 1, 0, 0, 0, 106, 1583, - 1, 0, 0, 0, 108, 1595, 1, 0, 0, 0, 110, 1636, 1, 0, 0, 0, 112, 1650, 1, - 0, 0, 0, 114, 1658, 1, 0, 0, 0, 116, 1664, 1, 0, 0, 0, 118, 1695, 1, 0, - 0, 0, 120, 1731, 1, 0, 0, 0, 122, 1741, 1, 0, 0, 0, 124, 1750, 1, 0, 0, - 0, 126, 1765, 1, 0, 0, 0, 128, 1785, 1, 0, 0, 0, 130, 1807, 1, 0, 0, 0, - 132, 1819, 1, 0, 0, 0, 134, 1829, 1, 0, 0, 0, 136, 1835, 1, 0, 0, 0, 138, - 1847, 1, 0, 0, 0, 140, 1859, 1, 0, 0, 0, 142, 1871, 1, 0, 0, 0, 144, 1880, - 1, 0, 0, 0, 146, 1967, 1, 0, 0, 0, 148, 1969, 1, 0, 0, 0, 150, 1972, 1, - 0, 0, 0, 152, 1975, 1, 0, 0, 0, 154, 1982, 1, 0, 0, 0, 156, 1989, 1, 0, - 0, 0, 158, 1993, 1, 0, 0, 0, 160, 2007, 1, 0, 0, 0, 162, 2009, 1, 0, 0, - 0, 164, 2011, 1, 0, 0, 0, 166, 2013, 1, 0, 0, 0, 168, 2017, 1, 0, 0, 0, - 170, 2019, 1, 0, 0, 0, 172, 2021, 1, 0, 0, 0, 174, 2023, 1, 0, 0, 0, 176, - 2025, 1, 0, 0, 0, 178, 2027, 1, 0, 0, 0, 180, 2029, 1, 0, 0, 0, 182, 2031, - 1, 0, 0, 0, 184, 2033, 1, 0, 0, 0, 186, 2035, 1, 0, 0, 0, 188, 2037, 1, - 0, 0, 0, 190, 2039, 1, 0, 0, 0, 192, 2041, 1, 0, 0, 0, 194, 2043, 1, 0, - 0, 0, 196, 2045, 1, 0, 0, 0, 198, 2047, 1, 0, 0, 0, 200, 2049, 1, 0, 0, - 0, 202, 2051, 1, 0, 0, 0, 204, 2053, 1, 0, 0, 0, 206, 2055, 1, 0, 0, 0, - 208, 2057, 1, 0, 0, 0, 210, 2059, 1, 0, 0, 0, 212, 2061, 1, 0, 0, 0, 214, - 2063, 1, 0, 0, 0, 216, 2065, 1, 0, 0, 0, 218, 2067, 1, 0, 0, 0, 220, 2069, - 1, 0, 0, 0, 222, 2078, 1, 0, 0, 0, 224, 226, 3, 2, 1, 0, 225, 224, 1, 0, + 26, 416, 1, 0, 0, 0, 28, 458, 1, 0, 0, 0, 30, 469, 1, 0, 0, 0, 32, 487, + 1, 0, 0, 0, 34, 539, 1, 0, 0, 0, 36, 545, 1, 0, 0, 0, 38, 586, 1, 0, 0, + 0, 40, 628, 1, 0, 0, 0, 42, 632, 1, 0, 0, 0, 44, 696, 1, 0, 0, 0, 46, 728, + 1, 0, 0, 0, 48, 757, 1, 0, 0, 0, 50, 778, 1, 0, 0, 0, 52, 792, 1, 0, 0, + 0, 54, 803, 1, 0, 0, 0, 56, 822, 1, 0, 0, 0, 58, 850, 1, 0, 0, 0, 60, 863, + 1, 0, 0, 0, 62, 881, 1, 0, 0, 0, 64, 887, 1, 0, 0, 0, 66, 988, 1, 0, 0, + 0, 68, 1106, 1, 0, 0, 0, 70, 1116, 1, 0, 0, 0, 72, 1191, 1, 0, 0, 0, 74, + 1193, 1, 0, 0, 0, 76, 1240, 1, 0, 0, 0, 78, 1258, 1, 0, 0, 0, 80, 1260, + 1, 0, 0, 0, 82, 1274, 1, 0, 0, 0, 84, 1291, 1, 0, 0, 0, 86, 1392, 1, 0, + 0, 0, 88, 1394, 1, 0, 0, 0, 90, 1397, 1, 0, 0, 0, 92, 1407, 1, 0, 0, 0, + 94, 1493, 1, 0, 0, 0, 96, 1507, 1, 0, 0, 0, 98, 1522, 1, 0, 0, 0, 100, + 1538, 1, 0, 0, 0, 102, 1546, 1, 0, 0, 0, 104, 1549, 1, 0, 0, 0, 106, 1584, + 1, 0, 0, 0, 108, 1596, 1, 0, 0, 0, 110, 1637, 1, 0, 0, 0, 112, 1651, 1, + 0, 0, 0, 114, 1659, 1, 0, 0, 0, 116, 1665, 1, 0, 0, 0, 118, 1696, 1, 0, + 0, 0, 120, 1732, 1, 0, 0, 0, 122, 1742, 1, 0, 0, 0, 124, 1751, 1, 0, 0, + 0, 126, 1766, 1, 0, 0, 0, 128, 1786, 1, 0, 0, 0, 130, 1808, 1, 0, 0, 0, + 132, 1820, 1, 0, 0, 0, 134, 1830, 1, 0, 0, 0, 136, 1836, 1, 0, 0, 0, 138, + 1848, 1, 0, 0, 0, 140, 1860, 1, 0, 0, 0, 142, 1872, 1, 0, 0, 0, 144, 1881, + 1, 0, 0, 0, 146, 1968, 1, 0, 0, 0, 148, 1970, 1, 0, 0, 0, 150, 1973, 1, + 0, 0, 0, 152, 1976, 1, 0, 0, 0, 154, 1983, 1, 0, 0, 0, 156, 1990, 1, 0, + 0, 0, 158, 1994, 1, 0, 0, 0, 160, 2008, 1, 0, 0, 0, 162, 2010, 1, 0, 0, + 0, 164, 2012, 1, 0, 0, 0, 166, 2014, 1, 0, 0, 0, 168, 2018, 1, 0, 0, 0, + 170, 2020, 1, 0, 0, 0, 172, 2022, 1, 0, 0, 0, 174, 2024, 1, 0, 0, 0, 176, + 2026, 1, 0, 0, 0, 178, 2028, 1, 0, 0, 0, 180, 2030, 1, 0, 0, 0, 182, 2032, + 1, 0, 0, 0, 184, 2034, 1, 0, 0, 0, 186, 2036, 1, 0, 0, 0, 188, 2038, 1, + 0, 0, 0, 190, 2040, 1, 0, 0, 0, 192, 2042, 1, 0, 0, 0, 194, 2044, 1, 0, + 0, 0, 196, 2046, 1, 0, 0, 0, 198, 2048, 1, 0, 0, 0, 200, 2050, 1, 0, 0, + 0, 202, 2052, 1, 0, 0, 0, 204, 2054, 1, 0, 0, 0, 206, 2056, 1, 0, 0, 0, + 208, 2058, 1, 0, 0, 0, 210, 2060, 1, 0, 0, 0, 212, 2062, 1, 0, 0, 0, 214, + 2064, 1, 0, 0, 0, 216, 2066, 1, 0, 0, 0, 218, 2068, 1, 0, 0, 0, 220, 2070, + 1, 0, 0, 0, 222, 2079, 1, 0, 0, 0, 224, 226, 3, 2, 1, 0, 225, 224, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 230, 231, 5, 0, 0, 1, 231, 1, 1, 0, 0, 0, 232, 234, 5, 1, 0, 0, 233, 232, 1, 0, 0, 0, 234, 237, 1, @@ -408,12 +408,12 @@ func sqliteparserParserInit() { 0, 0, 287, 278, 1, 0, 0, 0, 287, 279, 1, 0, 0, 0, 287, 280, 1, 0, 0, 0, 287, 281, 1, 0, 0, 0, 287, 282, 1, 0, 0, 0, 287, 283, 1, 0, 0, 0, 287, 284, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 287, 286, 1, 0, 0, 0, 288, 5, 1, - 0, 0, 0, 289, 290, 5, 30, 0, 0, 290, 294, 5, 132, 0, 0, 291, 292, 3, 178, + 0, 0, 0, 289, 290, 5, 30, 0, 0, 290, 294, 5, 133, 0, 0, 291, 292, 3, 178, 89, 0, 292, 293, 5, 2, 0, 0, 293, 295, 1, 0, 0, 0, 294, 291, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 319, 3, 180, 90, 0, 297, - 307, 5, 121, 0, 0, 298, 299, 5, 136, 0, 0, 299, 308, 3, 184, 92, 0, 300, + 307, 5, 121, 0, 0, 298, 299, 5, 137, 0, 0, 299, 308, 3, 184, 92, 0, 300, 302, 5, 46, 0, 0, 301, 300, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 303, - 1, 0, 0, 0, 303, 304, 3, 186, 93, 0, 304, 305, 5, 136, 0, 0, 305, 306, + 1, 0, 0, 0, 303, 304, 3, 186, 93, 0, 304, 305, 5, 137, 0, 0, 305, 306, 3, 186, 93, 0, 306, 308, 1, 0, 0, 0, 307, 298, 1, 0, 0, 0, 307, 301, 1, 0, 0, 0, 308, 320, 1, 0, 0, 0, 309, 311, 5, 27, 0, 0, 310, 312, 5, 46, 0, 0, 311, 310, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, @@ -429,18 +429,18 @@ func sqliteparserParserInit() { 335, 336, 3, 66, 33, 0, 336, 337, 5, 33, 0, 0, 337, 338, 3, 178, 89, 0, 338, 11, 1, 0, 0, 0, 339, 341, 5, 38, 0, 0, 340, 342, 7, 0, 0, 0, 341, 340, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 347, 1, 0, 0, 0, 343, 345, - 5, 137, 0, 0, 344, 346, 3, 206, 103, 0, 345, 344, 1, 0, 0, 0, 345, 346, + 5, 138, 0, 0, 344, 346, 3, 206, 103, 0, 345, 344, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 348, 1, 0, 0, 0, 347, 343, 1, 0, 0, 0, 347, 348, 1, 0, - 0, 0, 348, 13, 1, 0, 0, 0, 349, 351, 7, 1, 0, 0, 350, 352, 5, 137, 0, 0, + 0, 0, 348, 13, 1, 0, 0, 0, 349, 351, 7, 1, 0, 0, 350, 352, 5, 138, 0, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 15, 1, 0, 0, 0, 353, 355, - 5, 126, 0, 0, 354, 356, 5, 137, 0, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, - 0, 0, 0, 356, 362, 1, 0, 0, 0, 357, 359, 5, 136, 0, 0, 358, 360, 5, 129, + 5, 126, 0, 0, 354, 356, 5, 138, 0, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, + 0, 0, 0, 356, 362, 1, 0, 0, 0, 357, 359, 5, 137, 0, 0, 358, 360, 5, 129, 0, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 3, 202, 101, 0, 362, 357, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 17, 1, 0, 0, 0, 364, 365, 5, 129, 0, 0, 365, 366, 3, 202, 101, 0, 366, 19, 1, 0, 0, 0, 367, 369, 5, 120, 0, 0, 368, 370, 5, 129, 0, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 3, 202, - 101, 0, 372, 21, 1, 0, 0, 0, 373, 375, 5, 50, 0, 0, 374, 376, 5, 140, 0, + 101, 0, 372, 21, 1, 0, 0, 0, 373, 375, 5, 50, 0, 0, 374, 376, 5, 141, 0, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 381, 5, 84, 0, 0, 378, 379, 5, 80, 0, 0, 379, 380, 5, 102, 0, 0, 380, 382, 5, 70, 0, 0, 381, 378, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 386, 1, 0, @@ -450,696 +450,696 @@ func sqliteparserParserInit() { 392, 5, 3, 0, 0, 392, 397, 3, 24, 12, 0, 393, 394, 5, 5, 0, 0, 394, 396, 3, 24, 12, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 397, 1, 0, 0, - 0, 400, 403, 5, 4, 0, 0, 401, 402, 5, 148, 0, 0, 402, 404, 3, 66, 33, 0, + 0, 400, 403, 5, 4, 0, 0, 401, 402, 5, 149, 0, 0, 402, 404, 3, 66, 33, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 23, 1, 0, 0, 0, 405, 408, 3, 186, 93, 0, 406, 408, 3, 66, 33, 0, 407, 405, 1, 0, 0, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 45, 0, 0, 410, 412, 3, 188, 94, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 138, 69, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 25, 1, 0, 0, 0, 416, 418, 5, 50, 0, 0, 417, 419, 7, 2, 0, 0, 418, 417, - 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 424, 5, 132, + 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 424, 5, 133, 0, 0, 421, 422, 5, 80, 0, 0, 422, 423, 5, 102, 0, 0, 423, 425, 5, 70, 0, 0, 424, 421, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 429, 1, 0, 0, 0, 426, 427, 3, 178, 89, 0, 427, 428, 5, 2, 0, 0, 428, 430, 1, 0, 0, 0, 429, 426, - 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 455, 3, 180, + 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 456, 3, 180, 90, 0, 432, 433, 5, 3, 0, 0, 433, 438, 3, 28, 14, 0, 434, 435, 5, 5, 0, 0, 435, 437, 3, 28, 14, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 439, 445, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 5, 0, 0, 442, 444, 3, 36, 18, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, - 0, 0, 446, 448, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 451, 5, 4, 0, 0, - 449, 450, 5, 150, 0, 0, 450, 452, 5, 185, 0, 0, 451, 449, 1, 0, 0, 0, 451, - 452, 1, 0, 0, 0, 452, 456, 1, 0, 0, 0, 453, 454, 5, 33, 0, 0, 454, 456, - 3, 82, 41, 0, 455, 432, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 27, 1, 0, - 0, 0, 457, 459, 3, 186, 93, 0, 458, 460, 3, 30, 15, 0, 459, 458, 1, 0, - 0, 0, 459, 460, 1, 0, 0, 0, 460, 464, 1, 0, 0, 0, 461, 463, 3, 32, 16, - 0, 462, 461, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, - 465, 1, 0, 0, 0, 465, 29, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 469, 3, - 174, 87, 0, 468, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 1, 0, - 0, 0, 470, 468, 1, 0, 0, 0, 471, 482, 1, 0, 0, 0, 472, 473, 5, 3, 0, 0, - 473, 474, 3, 34, 17, 0, 474, 475, 5, 4, 0, 0, 475, 483, 1, 0, 0, 0, 476, - 477, 5, 3, 0, 0, 477, 478, 3, 34, 17, 0, 478, 479, 5, 5, 0, 0, 479, 480, - 3, 34, 17, 0, 480, 481, 5, 4, 0, 0, 481, 483, 1, 0, 0, 0, 482, 472, 1, - 0, 0, 0, 482, 476, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 31, 1, 0, 0, - 0, 484, 485, 5, 49, 0, 0, 485, 487, 3, 174, 87, 0, 486, 484, 1, 0, 0, 0, - 486, 487, 1, 0, 0, 0, 487, 535, 1, 0, 0, 0, 488, 489, 5, 113, 0, 0, 489, - 491, 5, 95, 0, 0, 490, 492, 3, 138, 69, 0, 491, 490, 1, 0, 0, 0, 491, 492, - 1, 0, 0, 0, 492, 494, 1, 0, 0, 0, 493, 495, 3, 40, 20, 0, 494, 493, 1, - 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 498, 5, 36, 0, - 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 536, 1, 0, 0, 0, 499, - 500, 5, 102, 0, 0, 500, 503, 5, 104, 0, 0, 501, 503, 5, 140, 0, 0, 502, - 499, 1, 0, 0, 0, 502, 501, 1, 0, 0, 0, 503, 505, 1, 0, 0, 0, 504, 506, - 3, 40, 20, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 536, 1, - 0, 0, 0, 507, 508, 5, 44, 0, 0, 508, 509, 5, 3, 0, 0, 509, 510, 3, 66, - 33, 0, 510, 511, 5, 4, 0, 0, 511, 536, 1, 0, 0, 0, 512, 519, 5, 56, 0, - 0, 513, 520, 3, 34, 17, 0, 514, 520, 3, 70, 35, 0, 515, 516, 5, 3, 0, 0, - 516, 517, 3, 66, 33, 0, 517, 518, 5, 4, 0, 0, 518, 520, 1, 0, 0, 0, 519, - 513, 1, 0, 0, 0, 519, 514, 1, 0, 0, 0, 519, 515, 1, 0, 0, 0, 520, 536, - 1, 0, 0, 0, 521, 522, 5, 45, 0, 0, 522, 536, 3, 188, 94, 0, 523, 536, 3, - 38, 19, 0, 524, 525, 5, 169, 0, 0, 525, 527, 5, 170, 0, 0, 526, 524, 1, - 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 5, 33, 0, - 0, 529, 530, 5, 3, 0, 0, 530, 531, 3, 66, 33, 0, 531, 533, 5, 4, 0, 0, - 532, 534, 7, 3, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, - 536, 1, 0, 0, 0, 535, 488, 1, 0, 0, 0, 535, 502, 1, 0, 0, 0, 535, 507, - 1, 0, 0, 0, 535, 512, 1, 0, 0, 0, 535, 521, 1, 0, 0, 0, 535, 523, 1, 0, - 0, 0, 535, 526, 1, 0, 0, 0, 536, 33, 1, 0, 0, 0, 537, 539, 7, 4, 0, 0, - 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, - 541, 5, 186, 0, 0, 541, 35, 1, 0, 0, 0, 542, 543, 5, 49, 0, 0, 543, 545, - 3, 174, 87, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 583, 1, - 0, 0, 0, 546, 547, 5, 113, 0, 0, 547, 550, 5, 95, 0, 0, 548, 550, 5, 140, - 0, 0, 549, 546, 1, 0, 0, 0, 549, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, - 551, 552, 5, 3, 0, 0, 552, 557, 3, 24, 12, 0, 553, 554, 5, 5, 0, 0, 554, - 556, 3, 24, 12, 0, 555, 553, 1, 0, 0, 0, 556, 559, 1, 0, 0, 0, 557, 555, - 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 1, 0, 0, 0, 559, 557, 1, 0, - 0, 0, 560, 562, 5, 4, 0, 0, 561, 563, 3, 40, 20, 0, 562, 561, 1, 0, 0, - 0, 562, 563, 1, 0, 0, 0, 563, 584, 1, 0, 0, 0, 564, 565, 5, 44, 0, 0, 565, - 566, 5, 3, 0, 0, 566, 567, 3, 66, 33, 0, 567, 568, 5, 4, 0, 0, 568, 584, - 1, 0, 0, 0, 569, 570, 5, 74, 0, 0, 570, 571, 5, 95, 0, 0, 571, 572, 5, - 3, 0, 0, 572, 577, 3, 186, 93, 0, 573, 574, 5, 5, 0, 0, 574, 576, 3, 186, - 93, 0, 575, 573, 1, 0, 0, 0, 576, 579, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, - 577, 578, 1, 0, 0, 0, 578, 580, 1, 0, 0, 0, 579, 577, 1, 0, 0, 0, 580, - 581, 5, 4, 0, 0, 581, 582, 3, 38, 19, 0, 582, 584, 1, 0, 0, 0, 583, 549, - 1, 0, 0, 0, 583, 564, 1, 0, 0, 0, 583, 569, 1, 0, 0, 0, 584, 37, 1, 0, - 0, 0, 585, 586, 5, 117, 0, 0, 586, 598, 3, 190, 95, 0, 587, 588, 5, 3, - 0, 0, 588, 593, 3, 186, 93, 0, 589, 590, 5, 5, 0, 0, 590, 592, 3, 186, - 93, 0, 591, 589, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, - 593, 594, 1, 0, 0, 0, 594, 596, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 596, - 597, 5, 4, 0, 0, 597, 599, 1, 0, 0, 0, 598, 587, 1, 0, 0, 0, 598, 599, - 1, 0, 0, 0, 599, 614, 1, 0, 0, 0, 600, 601, 5, 107, 0, 0, 601, 608, 7, - 5, 0, 0, 602, 603, 5, 131, 0, 0, 603, 609, 7, 6, 0, 0, 604, 609, 5, 41, - 0, 0, 605, 609, 5, 123, 0, 0, 606, 607, 5, 101, 0, 0, 607, 609, 5, 26, - 0, 0, 608, 602, 1, 0, 0, 0, 608, 604, 1, 0, 0, 0, 608, 605, 1, 0, 0, 0, - 608, 606, 1, 0, 0, 0, 609, 613, 1, 0, 0, 0, 610, 611, 5, 99, 0, 0, 611, - 613, 3, 174, 87, 0, 612, 600, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 616, - 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 625, 1, 0, - 0, 0, 616, 614, 1, 0, 0, 0, 617, 619, 5, 102, 0, 0, 618, 617, 1, 0, 0, - 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 623, 5, 57, 0, 0, 621, - 622, 5, 86, 0, 0, 622, 624, 7, 7, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, - 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 618, 1, 0, 0, 0, 625, 626, 1, 0, - 0, 0, 626, 39, 1, 0, 0, 0, 627, 628, 5, 107, 0, 0, 628, 629, 5, 48, 0, - 0, 629, 630, 7, 8, 0, 0, 630, 41, 1, 0, 0, 0, 631, 633, 5, 50, 0, 0, 632, - 634, 7, 2, 0, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, - 1, 0, 0, 0, 635, 639, 5, 138, 0, 0, 636, 637, 5, 80, 0, 0, 637, 638, 5, - 102, 0, 0, 638, 640, 5, 70, 0, 0, 639, 636, 1, 0, 0, 0, 639, 640, 1, 0, - 0, 0, 640, 644, 1, 0, 0, 0, 641, 642, 3, 178, 89, 0, 642, 643, 5, 2, 0, - 0, 643, 645, 1, 0, 0, 0, 644, 641, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, - 646, 1, 0, 0, 0, 646, 651, 3, 194, 97, 0, 647, 652, 5, 37, 0, 0, 648, 652, - 5, 28, 0, 0, 649, 650, 5, 89, 0, 0, 650, 652, 5, 105, 0, 0, 651, 647, 1, - 0, 0, 0, 651, 648, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, - 0, 652, 667, 1, 0, 0, 0, 653, 668, 5, 59, 0, 0, 654, 668, 5, 88, 0, 0, - 655, 665, 5, 141, 0, 0, 656, 657, 5, 105, 0, 0, 657, 662, 3, 186, 93, 0, - 658, 659, 5, 5, 0, 0, 659, 661, 3, 186, 93, 0, 660, 658, 1, 0, 0, 0, 661, - 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 666, - 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 656, 1, 0, 0, 0, 665, 666, 1, 0, - 0, 0, 666, 668, 1, 0, 0, 0, 667, 653, 1, 0, 0, 0, 667, 654, 1, 0, 0, 0, - 667, 655, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 5, 107, 0, 0, 670, - 674, 3, 180, 90, 0, 671, 672, 5, 73, 0, 0, 672, 673, 5, 64, 0, 0, 673, - 675, 5, 127, 0, 0, 674, 671, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 678, - 1, 0, 0, 0, 676, 677, 5, 147, 0, 0, 677, 679, 3, 66, 33, 0, 678, 676, 1, - 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 689, 5, 38, 0, - 0, 681, 686, 3, 104, 52, 0, 682, 686, 3, 72, 36, 0, 683, 686, 3, 58, 29, - 0, 684, 686, 3, 82, 41, 0, 685, 681, 1, 0, 0, 0, 685, 682, 1, 0, 0, 0, - 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, - 688, 5, 1, 0, 0, 688, 690, 1, 0, 0, 0, 689, 685, 1, 0, 0, 0, 690, 691, - 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, - 0, 0, 693, 694, 5, 66, 0, 0, 694, 43, 1, 0, 0, 0, 695, 697, 5, 50, 0, 0, - 696, 698, 7, 2, 0, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, - 699, 1, 0, 0, 0, 699, 703, 5, 145, 0, 0, 700, 701, 5, 80, 0, 0, 701, 702, - 5, 102, 0, 0, 702, 704, 5, 70, 0, 0, 703, 700, 1, 0, 0, 0, 703, 704, 1, - 0, 0, 0, 704, 708, 1, 0, 0, 0, 705, 706, 3, 178, 89, 0, 706, 707, 5, 2, - 0, 0, 707, 709, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, - 709, 710, 1, 0, 0, 0, 710, 722, 3, 196, 98, 0, 711, 712, 5, 3, 0, 0, 712, - 717, 3, 186, 93, 0, 713, 714, 5, 5, 0, 0, 714, 716, 3, 186, 93, 0, 715, - 713, 1, 0, 0, 0, 716, 719, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, - 1, 0, 0, 0, 718, 720, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 721, 5, 4, - 0, 0, 721, 723, 1, 0, 0, 0, 722, 711, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, - 723, 724, 1, 0, 0, 0, 724, 725, 5, 33, 0, 0, 725, 726, 3, 82, 41, 0, 726, - 45, 1, 0, 0, 0, 727, 728, 5, 50, 0, 0, 728, 729, 5, 146, 0, 0, 729, 733, - 5, 132, 0, 0, 730, 731, 5, 80, 0, 0, 731, 732, 5, 102, 0, 0, 732, 734, - 5, 70, 0, 0, 733, 730, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 738, 1, 0, - 0, 0, 735, 736, 3, 178, 89, 0, 736, 737, 5, 2, 0, 0, 737, 739, 1, 0, 0, - 0, 738, 735, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, - 741, 3, 180, 90, 0, 741, 742, 5, 142, 0, 0, 742, 754, 3, 198, 99, 0, 743, - 744, 5, 3, 0, 0, 744, 749, 3, 168, 84, 0, 745, 746, 5, 5, 0, 0, 746, 748, - 3, 168, 84, 0, 747, 745, 1, 0, 0, 0, 748, 751, 1, 0, 0, 0, 749, 747, 1, - 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 752, 1, 0, 0, 0, 751, 749, 1, 0, 0, - 0, 752, 753, 5, 4, 0, 0, 753, 755, 1, 0, 0, 0, 754, 743, 1, 0, 0, 0, 754, - 755, 1, 0, 0, 0, 755, 47, 1, 0, 0, 0, 756, 758, 5, 149, 0, 0, 757, 759, - 5, 116, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, - 0, 0, 0, 760, 761, 3, 50, 25, 0, 761, 762, 5, 33, 0, 0, 762, 763, 5, 3, - 0, 0, 763, 764, 3, 82, 41, 0, 764, 774, 5, 4, 0, 0, 765, 766, 5, 5, 0, - 0, 766, 767, 3, 50, 25, 0, 767, 768, 5, 33, 0, 0, 768, 769, 5, 3, 0, 0, - 769, 770, 3, 82, 41, 0, 770, 771, 5, 4, 0, 0, 771, 773, 1, 0, 0, 0, 772, - 765, 1, 0, 0, 0, 773, 776, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 774, 775, - 1, 0, 0, 0, 775, 49, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 789, 3, 180, - 90, 0, 778, 779, 5, 3, 0, 0, 779, 784, 3, 186, 93, 0, 780, 781, 5, 5, 0, - 0, 781, 783, 3, 186, 93, 0, 782, 780, 1, 0, 0, 0, 783, 786, 1, 0, 0, 0, - 784, 782, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 787, 1, 0, 0, 0, 786, - 784, 1, 0, 0, 0, 787, 788, 5, 4, 0, 0, 788, 790, 1, 0, 0, 0, 789, 778, - 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 51, 1, 0, 0, 0, 791, 792, 3, 50, - 25, 0, 792, 793, 5, 33, 0, 0, 793, 794, 5, 3, 0, 0, 794, 795, 3, 160, 80, - 0, 795, 797, 5, 139, 0, 0, 796, 798, 5, 29, 0, 0, 797, 796, 1, 0, 0, 0, - 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 3, 162, 81, 0, 800, - 801, 5, 4, 0, 0, 801, 53, 1, 0, 0, 0, 802, 814, 3, 180, 90, 0, 803, 804, - 5, 3, 0, 0, 804, 809, 3, 186, 93, 0, 805, 806, 5, 5, 0, 0, 806, 808, 3, - 186, 93, 0, 807, 805, 1, 0, 0, 0, 808, 811, 1, 0, 0, 0, 809, 807, 1, 0, - 0, 0, 809, 810, 1, 0, 0, 0, 810, 812, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, - 812, 813, 5, 4, 0, 0, 813, 815, 1, 0, 0, 0, 814, 803, 1, 0, 0, 0, 814, - 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 5, 33, 0, 0, 817, 818, - 5, 3, 0, 0, 818, 819, 3, 82, 41, 0, 819, 820, 5, 4, 0, 0, 820, 55, 1, 0, - 0, 0, 821, 830, 5, 124, 0, 0, 822, 831, 5, 7, 0, 0, 823, 828, 3, 66, 33, - 0, 824, 826, 5, 33, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, - 827, 1, 0, 0, 0, 827, 829, 3, 170, 85, 0, 828, 825, 1, 0, 0, 0, 828, 829, - 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 822, 1, 0, 0, 0, 830, 823, 1, 0, - 0, 0, 831, 845, 1, 0, 0, 0, 832, 841, 5, 5, 0, 0, 833, 842, 5, 7, 0, 0, - 834, 839, 3, 66, 33, 0, 835, 837, 5, 33, 0, 0, 836, 835, 1, 0, 0, 0, 836, - 837, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 3, 170, 85, 0, 839, 836, - 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 833, 1, 0, - 0, 0, 841, 834, 1, 0, 0, 0, 842, 844, 1, 0, 0, 0, 843, 832, 1, 0, 0, 0, - 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, - 57, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 850, 3, 48, 24, 0, 849, 848, - 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 5, 59, - 0, 0, 852, 853, 5, 75, 0, 0, 853, 856, 3, 110, 55, 0, 854, 855, 5, 148, - 0, 0, 855, 857, 3, 66, 33, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, - 0, 857, 859, 1, 0, 0, 0, 858, 860, 3, 56, 28, 0, 859, 858, 1, 0, 0, 0, - 859, 860, 1, 0, 0, 0, 860, 59, 1, 0, 0, 0, 861, 863, 3, 48, 24, 0, 862, - 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, - 5, 59, 0, 0, 865, 866, 5, 75, 0, 0, 866, 869, 3, 110, 55, 0, 867, 868, - 5, 148, 0, 0, 868, 870, 3, 66, 33, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, - 0, 0, 0, 870, 875, 1, 0, 0, 0, 871, 873, 3, 132, 66, 0, 872, 871, 1, 0, - 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 3, 134, 67, - 0, 875, 872, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 878, 1, 0, 0, 0, 877, - 879, 3, 56, 28, 0, 878, 877, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 61, - 1, 0, 0, 0, 880, 882, 5, 61, 0, 0, 881, 883, 5, 55, 0, 0, 882, 881, 1, - 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 3, 178, - 89, 0, 885, 63, 1, 0, 0, 0, 886, 887, 5, 63, 0, 0, 887, 890, 7, 9, 0, 0, - 888, 889, 5, 80, 0, 0, 889, 891, 5, 70, 0, 0, 890, 888, 1, 0, 0, 0, 890, - 891, 1, 0, 0, 0, 891, 895, 1, 0, 0, 0, 892, 893, 3, 178, 89, 0, 893, 894, - 5, 2, 0, 0, 894, 896, 1, 0, 0, 0, 895, 892, 1, 0, 0, 0, 895, 896, 1, 0, - 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 3, 222, 111, 0, 898, 65, 1, 0, 0, - 0, 899, 900, 6, 33, -1, 0, 900, 988, 3, 70, 35, 0, 901, 988, 5, 187, 0, - 0, 902, 903, 3, 178, 89, 0, 903, 904, 5, 2, 0, 0, 904, 906, 1, 0, 0, 0, - 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, - 908, 3, 180, 90, 0, 908, 909, 5, 2, 0, 0, 909, 911, 1, 0, 0, 0, 910, 905, - 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 988, 3, 186, - 93, 0, 913, 914, 3, 164, 82, 0, 914, 915, 3, 66, 33, 20, 915, 988, 1, 0, - 0, 0, 916, 917, 3, 176, 88, 0, 917, 930, 5, 3, 0, 0, 918, 920, 5, 62, 0, - 0, 919, 918, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, - 926, 3, 66, 33, 0, 922, 923, 5, 5, 0, 0, 923, 925, 3, 66, 33, 0, 924, 922, - 1, 0, 0, 0, 925, 928, 1, 0, 0, 0, 926, 924, 1, 0, 0, 0, 926, 927, 1, 0, - 0, 0, 927, 931, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 929, 931, 5, 7, 0, 0, - 930, 919, 1, 0, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, - 932, 1, 0, 0, 0, 932, 934, 5, 4, 0, 0, 933, 935, 3, 114, 57, 0, 934, 933, - 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 1, 0, 0, 0, 936, 938, 3, 118, - 59, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 988, 1, 0, 0, 0, - 939, 940, 5, 3, 0, 0, 940, 945, 3, 66, 33, 0, 941, 942, 5, 5, 0, 0, 942, - 944, 3, 66, 33, 0, 943, 941, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, - 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 945, 1, 0, - 0, 0, 948, 949, 5, 4, 0, 0, 949, 988, 1, 0, 0, 0, 950, 951, 5, 43, 0, 0, - 951, 952, 5, 3, 0, 0, 952, 953, 3, 66, 33, 0, 953, 954, 5, 33, 0, 0, 954, - 955, 3, 30, 15, 0, 955, 956, 5, 4, 0, 0, 956, 988, 1, 0, 0, 0, 957, 959, - 5, 102, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, - 0, 0, 0, 960, 962, 5, 70, 0, 0, 961, 958, 1, 0, 0, 0, 961, 962, 1, 0, 0, - 0, 962, 963, 1, 0, 0, 0, 963, 964, 5, 3, 0, 0, 964, 965, 3, 82, 41, 0, - 965, 966, 5, 4, 0, 0, 966, 988, 1, 0, 0, 0, 967, 969, 5, 42, 0, 0, 968, - 970, 3, 66, 33, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 976, - 1, 0, 0, 0, 971, 972, 5, 147, 0, 0, 972, 973, 3, 66, 33, 0, 973, 974, 5, - 135, 0, 0, 974, 975, 3, 66, 33, 0, 975, 977, 1, 0, 0, 0, 976, 971, 1, 0, - 0, 0, 977, 978, 1, 0, 0, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, - 979, 982, 1, 0, 0, 0, 980, 981, 5, 65, 0, 0, 981, 983, 3, 66, 33, 0, 982, - 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, - 5, 66, 0, 0, 985, 988, 1, 0, 0, 0, 986, 988, 3, 68, 34, 0, 987, 899, 1, - 0, 0, 0, 987, 901, 1, 0, 0, 0, 987, 910, 1, 0, 0, 0, 987, 913, 1, 0, 0, - 0, 987, 916, 1, 0, 0, 0, 987, 939, 1, 0, 0, 0, 987, 950, 1, 0, 0, 0, 987, - 961, 1, 0, 0, 0, 987, 967, 1, 0, 0, 0, 987, 986, 1, 0, 0, 0, 988, 1102, - 1, 0, 0, 0, 989, 990, 10, 19, 0, 0, 990, 991, 5, 11, 0, 0, 991, 1101, 3, - 66, 33, 20, 992, 993, 10, 18, 0, 0, 993, 994, 7, 10, 0, 0, 994, 1101, 3, - 66, 33, 19, 995, 996, 10, 17, 0, 0, 996, 997, 7, 4, 0, 0, 997, 1101, 3, - 66, 33, 18, 998, 999, 10, 16, 0, 0, 999, 1000, 7, 11, 0, 0, 1000, 1101, - 3, 66, 33, 17, 1001, 1002, 10, 15, 0, 0, 1002, 1003, 7, 12, 0, 0, 1003, - 1101, 3, 66, 33, 16, 1004, 1017, 10, 14, 0, 0, 1005, 1018, 5, 6, 0, 0, - 1006, 1018, 5, 22, 0, 0, 1007, 1018, 5, 23, 0, 0, 1008, 1018, 5, 24, 0, - 0, 1009, 1018, 5, 92, 0, 0, 1010, 1011, 5, 92, 0, 0, 1011, 1018, 5, 102, - 0, 0, 1012, 1018, 5, 83, 0, 0, 1013, 1018, 5, 97, 0, 0, 1014, 1018, 5, - 77, 0, 0, 1015, 1018, 5, 99, 0, 0, 1016, 1018, 5, 118, 0, 0, 1017, 1005, - 1, 0, 0, 0, 1017, 1006, 1, 0, 0, 0, 1017, 1007, 1, 0, 0, 0, 1017, 1008, - 1, 0, 0, 0, 1017, 1009, 1, 0, 0, 0, 1017, 1010, 1, 0, 0, 0, 1017, 1012, - 1, 0, 0, 0, 1017, 1013, 1, 0, 0, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1015, - 1, 0, 0, 0, 1017, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1101, - 3, 66, 33, 15, 1020, 1021, 10, 13, 0, 0, 1021, 1022, 5, 32, 0, 0, 1022, - 1101, 3, 66, 33, 14, 1023, 1024, 10, 12, 0, 0, 1024, 1025, 5, 108, 0, 0, - 1025, 1101, 3, 66, 33, 13, 1026, 1028, 10, 5, 0, 0, 1027, 1029, 5, 102, - 0, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, - 0, 0, 1030, 1031, 5, 39, 0, 0, 1031, 1032, 3, 66, 33, 0, 1032, 1033, 5, - 32, 0, 0, 1033, 1034, 3, 66, 33, 6, 1034, 1101, 1, 0, 0, 0, 1035, 1036, - 10, 8, 0, 0, 1036, 1037, 5, 45, 0, 0, 1037, 1101, 3, 188, 94, 0, 1038, - 1040, 10, 7, 0, 0, 1039, 1041, 5, 102, 0, 0, 1040, 1039, 1, 0, 0, 0, 1040, - 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 7, 13, 0, 0, 1043, - 1046, 3, 66, 33, 0, 1044, 1045, 5, 67, 0, 0, 1045, 1047, 3, 66, 33, 0, - 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1101, 1, 0, 0, 0, - 1048, 1053, 10, 6, 0, 0, 1049, 1054, 5, 93, 0, 0, 1050, 1054, 5, 103, 0, - 0, 1051, 1052, 5, 102, 0, 0, 1052, 1054, 5, 104, 0, 0, 1053, 1049, 1, 0, - 0, 0, 1053, 1050, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1054, 1101, 1, 0, - 0, 0, 1055, 1057, 10, 4, 0, 0, 1056, 1058, 5, 102, 0, 0, 1057, 1056, 1, - 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1098, 5, - 83, 0, 0, 1060, 1070, 5, 3, 0, 0, 1061, 1071, 3, 82, 41, 0, 1062, 1067, - 3, 66, 33, 0, 1063, 1064, 5, 5, 0, 0, 1064, 1066, 3, 66, 33, 0, 1065, 1063, - 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, - 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1061, - 1, 0, 0, 0, 1070, 1062, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, - 1, 0, 0, 0, 1072, 1099, 5, 4, 0, 0, 1073, 1074, 3, 178, 89, 0, 1074, 1075, - 5, 2, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1073, 1, 0, 0, 0, 1076, 1077, - 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1099, 3, 180, 90, 0, 1079, 1080, - 3, 178, 89, 0, 1080, 1081, 5, 2, 0, 0, 1081, 1083, 1, 0, 0, 0, 1082, 1079, - 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, - 3, 220, 110, 0, 1085, 1094, 5, 3, 0, 0, 1086, 1091, 3, 66, 33, 0, 1087, - 1088, 5, 5, 0, 0, 1088, 1090, 3, 66, 33, 0, 1089, 1087, 1, 0, 0, 0, 1090, - 1093, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, - 1095, 1, 0, 0, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1086, 1, 0, 0, 0, 1094, - 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 5, 4, 0, 0, 1097, - 1099, 1, 0, 0, 0, 1098, 1060, 1, 0, 0, 0, 1098, 1076, 1, 0, 0, 0, 1098, - 1082, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 989, 1, 0, 0, 0, 1100, - 992, 1, 0, 0, 0, 1100, 995, 1, 0, 0, 0, 1100, 998, 1, 0, 0, 0, 1100, 1001, - 1, 0, 0, 0, 1100, 1004, 1, 0, 0, 0, 1100, 1020, 1, 0, 0, 0, 1100, 1023, - 1, 0, 0, 0, 1100, 1026, 1, 0, 0, 0, 1100, 1035, 1, 0, 0, 0, 1100, 1038, - 1, 0, 0, 0, 1100, 1048, 1, 0, 0, 0, 1100, 1055, 1, 0, 0, 0, 1101, 1104, - 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 67, 1, - 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1106, 5, 115, 0, 0, 1106, 1111, - 5, 3, 0, 0, 1107, 1112, 5, 81, 0, 0, 1108, 1109, 7, 14, 0, 0, 1109, 1110, - 5, 5, 0, 0, 1110, 1112, 3, 166, 83, 0, 1111, 1107, 1, 0, 0, 0, 1111, 1108, - 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 5, 4, 0, 0, 1114, 69, 1, - 0, 0, 0, 1115, 1116, 7, 15, 0, 0, 1116, 71, 1, 0, 0, 0, 1117, 1119, 3, - 48, 24, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1125, - 1, 0, 0, 0, 1120, 1126, 5, 88, 0, 0, 1121, 1126, 5, 122, 0, 0, 1122, 1123, - 5, 88, 0, 0, 1123, 1124, 5, 108, 0, 0, 1124, 1126, 7, 8, 0, 0, 1125, 1120, - 1, 0, 0, 0, 1125, 1121, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1126, 1127, - 1, 0, 0, 0, 1127, 1131, 5, 91, 0, 0, 1128, 1129, 3, 178, 89, 0, 1129, 1130, - 5, 2, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1128, 1, 0, 0, 0, 1131, 1132, - 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 3, 180, 90, 0, 1134, 1135, - 5, 33, 0, 0, 1135, 1137, 3, 204, 102, 0, 1136, 1134, 1, 0, 0, 0, 1136, - 1137, 1, 0, 0, 0, 1137, 1149, 1, 0, 0, 0, 1138, 1139, 5, 3, 0, 0, 1139, - 1144, 3, 186, 93, 0, 1140, 1141, 5, 5, 0, 0, 1141, 1143, 3, 186, 93, 0, - 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, - 1144, 1145, 1, 0, 0, 0, 1145, 1147, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, - 1147, 1148, 5, 4, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1138, 1, 0, 0, 0, - 1149, 1150, 1, 0, 0, 0, 1150, 1180, 1, 0, 0, 0, 1151, 1152, 5, 144, 0, - 0, 1152, 1153, 5, 3, 0, 0, 1153, 1158, 3, 66, 33, 0, 1154, 1155, 5, 5, - 0, 0, 1155, 1157, 3, 66, 33, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1160, 1, - 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, - 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1176, 5, 4, 0, 0, 1162, 1163, 5, - 5, 0, 0, 1163, 1164, 5, 3, 0, 0, 1164, 1169, 3, 66, 33, 0, 1165, 1166, - 5, 5, 0, 0, 1166, 1168, 3, 66, 33, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1171, - 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1172, - 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1173, 5, 4, 0, 0, 1173, 1175, - 1, 0, 0, 0, 1174, 1162, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, - 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1181, 1, 0, 0, 0, 1178, 1176, - 1, 0, 0, 0, 1179, 1181, 3, 82, 41, 0, 1180, 1151, 1, 0, 0, 0, 1180, 1179, - 1, 0, 0, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1184, 3, 74, 37, 0, 1183, 1182, - 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1187, - 3, 56, 28, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1191, - 1, 0, 0, 0, 1188, 1189, 5, 56, 0, 0, 1189, 1191, 5, 144, 0, 0, 1190, 1118, - 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 73, 1, 0, 0, 0, 1192, 1193, 5, - 107, 0, 0, 1193, 1208, 5, 48, 0, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1200, - 3, 24, 12, 0, 1196, 1197, 5, 5, 0, 0, 1197, 1199, 3, 24, 12, 0, 1198, 1196, - 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, - 1, 0, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1206, - 5, 4, 0, 0, 1204, 1205, 5, 148, 0, 0, 1205, 1207, 3, 66, 33, 0, 1206, 1204, - 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1194, - 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1237, - 5, 183, 0, 0, 1211, 1238, 5, 184, 0, 0, 1212, 1213, 5, 141, 0, 0, 1213, - 1216, 5, 131, 0, 0, 1214, 1217, 3, 186, 93, 0, 1215, 1217, 3, 106, 53, - 0, 1216, 1214, 1, 0, 0, 0, 1216, 1215, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, - 0, 1218, 1219, 5, 6, 0, 0, 1219, 1230, 3, 66, 33, 0, 1220, 1223, 5, 5, - 0, 0, 1221, 1224, 3, 186, 93, 0, 1222, 1224, 3, 106, 53, 0, 1223, 1221, - 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, - 5, 6, 0, 0, 1226, 1227, 3, 66, 33, 0, 1227, 1229, 1, 0, 0, 0, 1228, 1220, - 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1231, - 1, 0, 0, 0, 1231, 1235, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, - 5, 148, 0, 0, 1234, 1236, 3, 66, 33, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, - 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1211, 1, 0, 0, 0, 1237, 1212, - 1, 0, 0, 0, 1238, 75, 1, 0, 0, 0, 1239, 1243, 5, 112, 0, 0, 1240, 1241, - 3, 178, 89, 0, 1241, 1242, 5, 2, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1240, - 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1252, - 3, 200, 100, 0, 1246, 1247, 5, 6, 0, 0, 1247, 1253, 3, 78, 39, 0, 1248, - 1249, 5, 3, 0, 0, 1249, 1250, 3, 78, 39, 0, 1250, 1251, 5, 4, 0, 0, 1251, - 1253, 1, 0, 0, 0, 1252, 1246, 1, 0, 0, 0, 1252, 1248, 1, 0, 0, 0, 1252, - 1253, 1, 0, 0, 0, 1253, 77, 1, 0, 0, 0, 1254, 1258, 3, 34, 17, 0, 1255, - 1258, 3, 174, 87, 0, 1256, 1258, 5, 188, 0, 0, 1257, 1254, 1, 0, 0, 0, - 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 79, 1, 0, 0, 0, 1259, - 1270, 5, 119, 0, 0, 1260, 1271, 3, 188, 94, 0, 1261, 1262, 3, 178, 89, - 0, 1262, 1263, 5, 2, 0, 0, 1263, 1265, 1, 0, 0, 0, 1264, 1261, 1, 0, 0, - 0, 1264, 1265, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1269, 3, 180, - 90, 0, 1267, 1269, 3, 192, 96, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, - 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1260, 1, 0, 0, 0, 1270, 1264, 1, - 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 81, 1, 0, 0, 0, 1272, 1274, 3, 130, - 65, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, - 0, 0, 1275, 1281, 3, 86, 43, 0, 1276, 1277, 3, 102, 51, 0, 1277, 1278, - 3, 86, 43, 0, 1278, 1280, 1, 0, 0, 0, 1279, 1276, 1, 0, 0, 0, 1280, 1283, - 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1285, - 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1286, 3, 132, 66, 0, 1285, 1284, - 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1289, - 3, 134, 67, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 83, - 1, 0, 0, 0, 1290, 1298, 3, 94, 47, 0, 1291, 1292, 3, 98, 49, 0, 1292, 1294, - 3, 94, 47, 0, 1293, 1295, 3, 100, 50, 0, 1294, 1293, 1, 0, 0, 0, 1294, - 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1291, 1, 0, 0, 0, 1297, - 1300, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, - 85, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1301, 1303, 5, 130, 0, 0, 1302, - 1304, 7, 16, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, - 1305, 1, 0, 0, 0, 1305, 1310, 3, 96, 48, 0, 1306, 1307, 5, 5, 0, 0, 1307, - 1309, 3, 96, 48, 0, 1308, 1306, 1, 0, 0, 0, 1309, 1312, 1, 0, 0, 0, 1310, - 1308, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1325, 1, 0, 0, 0, 1312, - 1310, 1, 0, 0, 0, 1313, 1323, 5, 75, 0, 0, 1314, 1319, 3, 94, 47, 0, 1315, - 1316, 5, 5, 0, 0, 1316, 1318, 3, 94, 47, 0, 1317, 1315, 1, 0, 0, 0, 1318, - 1321, 1, 0, 0, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, - 1324, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1324, 3, 84, 42, 0, 1323, - 1314, 1, 0, 0, 0, 1323, 1322, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, - 1313, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1329, 1, 0, 0, 0, 1327, - 1328, 5, 148, 0, 0, 1328, 1330, 3, 66, 33, 0, 1329, 1327, 1, 0, 0, 0, 1329, - 1330, 1, 0, 0, 0, 1330, 1345, 1, 0, 0, 0, 1331, 1332, 5, 78, 0, 0, 1332, - 1333, 5, 40, 0, 0, 1333, 1338, 3, 66, 33, 0, 1334, 1335, 5, 5, 0, 0, 1335, - 1337, 3, 66, 33, 0, 1336, 1334, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, - 1336, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1343, 1, 0, 0, 0, 1340, - 1338, 1, 0, 0, 0, 1341, 1342, 5, 79, 0, 0, 1342, 1344, 3, 66, 33, 0, 1343, - 1341, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1346, 1, 0, 0, 0, 1345, - 1331, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1361, 1, 0, 0, 0, 1347, - 1348, 5, 174, 0, 0, 1348, 1349, 3, 208, 104, 0, 1349, 1350, 5, 33, 0, 0, - 1350, 1358, 3, 116, 58, 0, 1351, 1352, 5, 5, 0, 0, 1352, 1353, 3, 208, - 104, 0, 1353, 1354, 5, 33, 0, 0, 1354, 1355, 3, 116, 58, 0, 1355, 1357, - 1, 0, 0, 0, 1356, 1351, 1, 0, 0, 0, 1357, 1360, 1, 0, 0, 0, 1358, 1356, - 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1362, 1, 0, 0, 0, 1360, 1358, - 1, 0, 0, 0, 1361, 1347, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1392, - 1, 0, 0, 0, 1363, 1364, 5, 144, 0, 0, 1364, 1365, 5, 3, 0, 0, 1365, 1370, - 3, 66, 33, 0, 1366, 1367, 5, 5, 0, 0, 1367, 1369, 3, 66, 33, 0, 1368, 1366, - 1, 0, 0, 0, 1369, 1372, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, - 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1388, - 5, 4, 0, 0, 1374, 1375, 5, 5, 0, 0, 1375, 1376, 5, 3, 0, 0, 1376, 1381, - 3, 66, 33, 0, 1377, 1378, 5, 5, 0, 0, 1378, 1380, 3, 66, 33, 0, 1379, 1377, - 1, 0, 0, 0, 1380, 1383, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1381, 1382, - 1, 0, 0, 0, 1382, 1384, 1, 0, 0, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1385, - 5, 4, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1374, 1, 0, 0, 0, 1387, 1390, - 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1392, - 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1391, 1301, 1, 0, 0, 0, 1391, 1363, - 1, 0, 0, 0, 1392, 87, 1, 0, 0, 0, 1393, 1394, 3, 82, 41, 0, 1394, 89, 1, - 0, 0, 0, 1395, 1397, 3, 130, 65, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, - 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 3, 86, 43, 0, 1399, 1401, - 3, 132, 66, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, - 1, 0, 0, 0, 1402, 1404, 3, 134, 67, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, - 1, 0, 0, 0, 1404, 91, 1, 0, 0, 0, 1405, 1407, 3, 130, 65, 0, 1406, 1405, - 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1418, - 3, 86, 43, 0, 1409, 1411, 5, 139, 0, 0, 1410, 1412, 5, 29, 0, 0, 1411, - 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1416, 1, 0, 0, 0, 1413, - 1416, 5, 90, 0, 0, 1414, 1416, 5, 68, 0, 0, 1415, 1409, 1, 0, 0, 0, 1415, - 1413, 1, 0, 0, 0, 1415, 1414, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, - 1419, 3, 86, 43, 0, 1418, 1415, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, - 1418, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1423, 1, 0, 0, 0, 1422, - 1424, 3, 132, 66, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, - 1426, 1, 0, 0, 0, 1425, 1427, 3, 134, 67, 0, 1426, 1425, 1, 0, 0, 0, 1426, - 1427, 1, 0, 0, 0, 1427, 93, 1, 0, 0, 0, 1428, 1429, 3, 178, 89, 0, 1429, - 1430, 5, 2, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1428, 1, 0, 0, 0, 1431, - 1432, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1438, 3, 180, 90, 0, 1434, - 1436, 5, 33, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, - 1437, 1, 0, 0, 0, 1437, 1439, 3, 204, 102, 0, 1438, 1435, 1, 0, 0, 0, 1438, - 1439, 1, 0, 0, 0, 1439, 1445, 1, 0, 0, 0, 1440, 1441, 5, 85, 0, 0, 1441, - 1442, 5, 40, 0, 0, 1442, 1446, 3, 192, 96, 0, 1443, 1444, 5, 102, 0, 0, - 1444, 1446, 5, 85, 0, 0, 1445, 1440, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, - 1445, 1446, 1, 0, 0, 0, 1446, 1493, 1, 0, 0, 0, 1447, 1448, 3, 178, 89, - 0, 1448, 1449, 5, 2, 0, 0, 1449, 1451, 1, 0, 0, 0, 1450, 1447, 1, 0, 0, - 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 3, 220, - 110, 0, 1453, 1454, 5, 3, 0, 0, 1454, 1459, 3, 66, 33, 0, 1455, 1456, 5, - 5, 0, 0, 1456, 1458, 3, 66, 33, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1461, - 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1462, - 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1467, 5, 4, 0, 0, 1463, 1465, - 5, 33, 0, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, - 1, 0, 0, 0, 1466, 1468, 3, 204, 102, 0, 1467, 1464, 1, 0, 0, 0, 1467, 1468, - 1, 0, 0, 0, 1468, 1493, 1, 0, 0, 0, 1469, 1479, 5, 3, 0, 0, 1470, 1475, - 3, 94, 47, 0, 1471, 1472, 5, 5, 0, 0, 1472, 1474, 3, 94, 47, 0, 1473, 1471, - 1, 0, 0, 0, 1474, 1477, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, - 1, 0, 0, 0, 1476, 1480, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1480, - 3, 84, 42, 0, 1479, 1470, 1, 0, 0, 0, 1479, 1478, 1, 0, 0, 0, 1480, 1481, - 1, 0, 0, 0, 1481, 1482, 5, 4, 0, 0, 1482, 1493, 1, 0, 0, 0, 1483, 1484, - 5, 3, 0, 0, 1484, 1485, 3, 82, 41, 0, 1485, 1490, 5, 4, 0, 0, 1486, 1488, - 5, 33, 0, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, - 1, 0, 0, 0, 1489, 1491, 3, 204, 102, 0, 1490, 1487, 1, 0, 0, 0, 1490, 1491, - 1, 0, 0, 0, 1491, 1493, 1, 0, 0, 0, 1492, 1431, 1, 0, 0, 0, 1492, 1450, - 1, 0, 0, 0, 1492, 1469, 1, 0, 0, 0, 1492, 1483, 1, 0, 0, 0, 1493, 95, 1, - 0, 0, 0, 1494, 1507, 5, 7, 0, 0, 1495, 1496, 3, 180, 90, 0, 1496, 1497, - 5, 2, 0, 0, 1497, 1498, 5, 7, 0, 0, 1498, 1507, 1, 0, 0, 0, 1499, 1504, - 3, 66, 33, 0, 1500, 1502, 5, 33, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, - 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 3, 170, 85, 0, 1504, 1501, - 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1494, - 1, 0, 0, 0, 1506, 1495, 1, 0, 0, 0, 1506, 1499, 1, 0, 0, 0, 1507, 97, 1, - 0, 0, 0, 1508, 1522, 5, 5, 0, 0, 1509, 1511, 5, 100, 0, 0, 1510, 1509, - 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1518, 1, 0, 0, 0, 1512, 1514, - 5, 96, 0, 0, 1513, 1515, 5, 110, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, - 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1519, 5, 87, 0, 0, 1517, 1519, - 5, 51, 0, 0, 1518, 1512, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1518, 1517, - 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, - 5, 94, 0, 0, 1521, 1508, 1, 0, 0, 0, 1521, 1510, 1, 0, 0, 0, 1522, 99, - 1, 0, 0, 0, 1523, 1524, 5, 107, 0, 0, 1524, 1538, 3, 66, 33, 0, 1525, 1526, - 5, 142, 0, 0, 1526, 1527, 5, 3, 0, 0, 1527, 1532, 3, 186, 93, 0, 1528, - 1529, 5, 5, 0, 0, 1529, 1531, 3, 186, 93, 0, 1530, 1528, 1, 0, 0, 0, 1531, - 1534, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, - 1535, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1535, 1536, 5, 4, 0, 0, 1536, - 1538, 1, 0, 0, 0, 1537, 1523, 1, 0, 0, 0, 1537, 1525, 1, 0, 0, 0, 1538, - 101, 1, 0, 0, 0, 1539, 1541, 5, 139, 0, 0, 1540, 1542, 5, 29, 0, 0, 1541, - 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1546, 1, 0, 0, 0, 1543, - 1546, 5, 90, 0, 0, 1544, 1546, 5, 68, 0, 0, 1545, 1539, 1, 0, 0, 0, 1545, - 1543, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1546, 103, 1, 0, 0, 0, 1547, - 1549, 3, 48, 24, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, - 1550, 1, 0, 0, 0, 1550, 1553, 5, 141, 0, 0, 1551, 1552, 5, 108, 0, 0, 1552, - 1554, 7, 8, 0, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, - 1555, 1, 0, 0, 0, 1555, 1556, 3, 110, 55, 0, 1556, 1559, 5, 131, 0, 0, - 1557, 1560, 3, 186, 93, 0, 1558, 1560, 3, 106, 53, 0, 1559, 1557, 1, 0, - 0, 0, 1559, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 6, - 0, 0, 1562, 1573, 3, 66, 33, 0, 1563, 1566, 5, 5, 0, 0, 1564, 1567, 3, - 186, 93, 0, 1565, 1567, 3, 106, 53, 0, 1566, 1564, 1, 0, 0, 0, 1566, 1565, - 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 5, 6, 0, 0, 1569, 1570, - 3, 66, 33, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1563, 1, 0, 0, 0, 1572, 1575, - 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1578, - 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 148, 0, 0, 1577, 1579, - 3, 66, 33, 0, 1578, 1576, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1581, - 1, 0, 0, 0, 1580, 1582, 3, 56, 28, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, - 1, 0, 0, 0, 1582, 105, 1, 0, 0, 0, 1583, 1584, 5, 3, 0, 0, 1584, 1589, - 3, 186, 93, 0, 1585, 1586, 5, 5, 0, 0, 1586, 1588, 3, 186, 93, 0, 1587, - 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, - 1590, 1, 0, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, - 1593, 5, 4, 0, 0, 1593, 107, 1, 0, 0, 0, 1594, 1596, 3, 48, 24, 0, 1595, - 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, - 1600, 5, 141, 0, 0, 1598, 1599, 5, 108, 0, 0, 1599, 1601, 7, 8, 0, 0, 1600, - 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, - 1603, 3, 110, 55, 0, 1603, 1606, 5, 131, 0, 0, 1604, 1607, 3, 186, 93, - 0, 1605, 1607, 3, 106, 53, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1605, 1, 0, - 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 5, 6, 0, 0, 1609, 1620, 3, 66, - 33, 0, 1610, 1613, 5, 5, 0, 0, 1611, 1614, 3, 186, 93, 0, 1612, 1614, 3, - 106, 53, 0, 1613, 1611, 1, 0, 0, 0, 1613, 1612, 1, 0, 0, 0, 1614, 1615, - 1, 0, 0, 0, 1615, 1616, 5, 6, 0, 0, 1616, 1617, 3, 66, 33, 0, 1617, 1619, - 1, 0, 0, 0, 1618, 1610, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, - 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1625, 1, 0, 0, 0, 1622, 1620, - 1, 0, 0, 0, 1623, 1624, 5, 148, 0, 0, 1624, 1626, 3, 66, 33, 0, 1625, 1623, - 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1631, 1, 0, 0, 0, 1627, 1629, - 3, 132, 66, 0, 1628, 1627, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, - 1, 0, 0, 0, 1630, 1632, 3, 134, 67, 0, 1631, 1628, 1, 0, 0, 0, 1631, 1632, - 1, 0, 0, 0, 1632, 109, 1, 0, 0, 0, 1633, 1634, 3, 178, 89, 0, 1634, 1635, - 5, 2, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1633, 1, 0, 0, 0, 1636, 1637, - 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1641, 3, 180, 90, 0, 1639, 1640, - 5, 33, 0, 0, 1640, 1642, 3, 210, 105, 0, 1641, 1639, 1, 0, 0, 0, 1641, - 1642, 1, 0, 0, 0, 1642, 1648, 1, 0, 0, 0, 1643, 1644, 5, 85, 0, 0, 1644, - 1645, 5, 40, 0, 0, 1645, 1649, 3, 192, 96, 0, 1646, 1647, 5, 102, 0, 0, - 1647, 1649, 5, 85, 0, 0, 1648, 1643, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, - 1648, 1649, 1, 0, 0, 0, 1649, 111, 1, 0, 0, 0, 1650, 1652, 5, 143, 0, 0, - 1651, 1653, 3, 178, 89, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, - 0, 1653, 1656, 1, 0, 0, 0, 1654, 1655, 5, 91, 0, 0, 1655, 1657, 3, 212, - 106, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 113, 1, 0, - 0, 0, 1658, 1659, 5, 178, 0, 0, 1659, 1660, 5, 3, 0, 0, 1660, 1661, 5, - 148, 0, 0, 1661, 1662, 3, 66, 33, 0, 1662, 1663, 5, 4, 0, 0, 1663, 115, - 1, 0, 0, 0, 1664, 1666, 5, 3, 0, 0, 1665, 1667, 3, 214, 107, 0, 1666, 1665, - 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1678, 1, 0, 0, 0, 1668, 1669, - 5, 153, 0, 0, 1669, 1670, 5, 40, 0, 0, 1670, 1675, 3, 66, 33, 0, 1671, - 1672, 5, 5, 0, 0, 1672, 1674, 3, 66, 33, 0, 1673, 1671, 1, 0, 0, 0, 1674, - 1677, 1, 0, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, - 1679, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1668, 1, 0, 0, 0, 1678, - 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 5, 109, 0, 0, 1681, - 1682, 5, 40, 0, 0, 1682, 1687, 3, 136, 68, 0, 1683, 1684, 5, 5, 0, 0, 1684, - 1686, 3, 136, 68, 0, 1685, 1683, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, - 1685, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, - 1687, 1, 0, 0, 0, 1690, 1692, 3, 120, 60, 0, 1691, 1690, 1, 0, 0, 0, 1691, - 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 5, 4, 0, 0, 1694, - 117, 1, 0, 0, 0, 1695, 1729, 5, 152, 0, 0, 1696, 1730, 3, 208, 104, 0, - 1697, 1699, 5, 3, 0, 0, 1698, 1700, 3, 214, 107, 0, 1699, 1698, 1, 0, 0, - 0, 1699, 1700, 1, 0, 0, 0, 1700, 1711, 1, 0, 0, 0, 1701, 1702, 5, 153, - 0, 0, 1702, 1703, 5, 40, 0, 0, 1703, 1708, 3, 66, 33, 0, 1704, 1705, 5, - 5, 0, 0, 1705, 1707, 3, 66, 33, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1710, - 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1712, - 1, 0, 0, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1701, 1, 0, 0, 0, 1711, 1712, - 1, 0, 0, 0, 1712, 1723, 1, 0, 0, 0, 1713, 1714, 5, 109, 0, 0, 1714, 1715, - 5, 40, 0, 0, 1715, 1720, 3, 136, 68, 0, 1716, 1717, 5, 5, 0, 0, 1717, 1719, - 3, 136, 68, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1722, 1, 0, 0, 0, 1720, 1718, - 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1724, 1, 0, 0, 0, 1722, 1720, - 1, 0, 0, 0, 1723, 1713, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1726, - 1, 0, 0, 0, 1725, 1727, 3, 120, 60, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, - 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 5, 4, 0, 0, 1729, 1696, - 1, 0, 0, 0, 1729, 1697, 1, 0, 0, 0, 1730, 119, 1, 0, 0, 0, 1731, 1739, - 3, 122, 61, 0, 1732, 1733, 5, 180, 0, 0, 1733, 1734, 5, 101, 0, 0, 1734, - 1740, 5, 182, 0, 0, 1735, 1736, 5, 157, 0, 0, 1736, 1740, 5, 127, 0, 0, - 1737, 1740, 5, 78, 0, 0, 1738, 1740, 5, 181, 0, 0, 1739, 1732, 1, 0, 0, - 0, 1739, 1735, 1, 0, 0, 0, 1739, 1737, 1, 0, 0, 0, 1739, 1738, 1, 0, 0, - 0, 1739, 1740, 1, 0, 0, 0, 1740, 121, 1, 0, 0, 0, 1741, 1748, 7, 17, 0, - 0, 1742, 1749, 3, 144, 72, 0, 1743, 1744, 5, 39, 0, 0, 1744, 1745, 3, 140, - 70, 0, 1745, 1746, 5, 32, 0, 0, 1746, 1747, 3, 142, 71, 0, 1747, 1749, - 1, 0, 0, 0, 1748, 1742, 1, 0, 0, 0, 1748, 1743, 1, 0, 0, 0, 1749, 123, - 1, 0, 0, 0, 1750, 1751, 3, 216, 108, 0, 1751, 1761, 5, 3, 0, 0, 1752, 1757, - 3, 66, 33, 0, 1753, 1754, 5, 5, 0, 0, 1754, 1756, 3, 66, 33, 0, 1755, 1753, - 1, 0, 0, 0, 1756, 1759, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1757, 1758, - 1, 0, 0, 0, 1758, 1762, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1762, - 5, 7, 0, 0, 1761, 1752, 1, 0, 0, 0, 1761, 1760, 1, 0, 0, 0, 1762, 1763, - 1, 0, 0, 0, 1763, 1764, 5, 4, 0, 0, 1764, 125, 1, 0, 0, 0, 1765, 1766, - 3, 218, 109, 0, 1766, 1779, 5, 3, 0, 0, 1767, 1769, 5, 62, 0, 0, 1768, - 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, - 1775, 3, 66, 33, 0, 1771, 1772, 5, 5, 0, 0, 1772, 1774, 3, 66, 33, 0, 1773, - 1771, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, - 1776, 1, 0, 0, 0, 1776, 1780, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, - 1780, 5, 7, 0, 0, 1779, 1768, 1, 0, 0, 0, 1779, 1778, 1, 0, 0, 0, 1779, - 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 5, 4, 0, 0, 1782, - 1784, 3, 114, 57, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, - 127, 1, 0, 0, 0, 1785, 1786, 3, 146, 73, 0, 1786, 1796, 5, 3, 0, 0, 1787, - 1792, 3, 66, 33, 0, 1788, 1789, 5, 5, 0, 0, 1789, 1791, 3, 66, 33, 0, 1790, - 1788, 1, 0, 0, 0, 1791, 1794, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1792, - 1793, 1, 0, 0, 0, 1793, 1797, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, - 1797, 5, 7, 0, 0, 1796, 1787, 1, 0, 0, 0, 1796, 1795, 1, 0, 0, 0, 1796, - 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 5, 4, 0, 0, 1799, - 1801, 3, 114, 57, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, - 1802, 1, 0, 0, 0, 1802, 1805, 5, 152, 0, 0, 1803, 1806, 3, 116, 58, 0, - 1804, 1806, 3, 208, 104, 0, 1805, 1803, 1, 0, 0, 0, 1805, 1804, 1, 0, 0, - 0, 1806, 129, 1, 0, 0, 0, 1807, 1809, 5, 149, 0, 0, 1808, 1810, 5, 116, - 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, - 0, 0, 1811, 1816, 3, 54, 27, 0, 1812, 1813, 5, 5, 0, 0, 1813, 1815, 3, - 54, 27, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1818, 1, 0, 0, 0, 1816, 1814, - 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 131, 1, 0, 0, 0, 1818, 1816, - 1, 0, 0, 0, 1819, 1820, 5, 109, 0, 0, 1820, 1821, 5, 40, 0, 0, 1821, 1826, - 3, 136, 68, 0, 1822, 1823, 5, 5, 0, 0, 1823, 1825, 3, 136, 68, 0, 1824, - 1822, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, - 1827, 1, 0, 0, 0, 1827, 133, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, - 1830, 5, 98, 0, 0, 1830, 1833, 3, 66, 33, 0, 1831, 1832, 7, 18, 0, 0, 1832, - 1834, 3, 66, 33, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, - 135, 1, 0, 0, 0, 1835, 1838, 3, 66, 33, 0, 1836, 1837, 5, 45, 0, 0, 1837, - 1839, 3, 188, 94, 0, 1838, 1836, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, - 1841, 1, 0, 0, 0, 1840, 1842, 3, 138, 69, 0, 1841, 1840, 1, 0, 0, 0, 1841, - 1842, 1, 0, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1844, 5, 175, 0, 0, 1844, - 1846, 7, 19, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, - 137, 1, 0, 0, 0, 1847, 1848, 7, 20, 0, 0, 1848, 139, 1, 0, 0, 0, 1849, - 1850, 3, 66, 33, 0, 1850, 1851, 5, 155, 0, 0, 1851, 1860, 1, 0, 0, 0, 1852, - 1853, 3, 66, 33, 0, 1853, 1854, 5, 158, 0, 0, 1854, 1860, 1, 0, 0, 0, 1855, - 1856, 5, 157, 0, 0, 1856, 1860, 5, 127, 0, 0, 1857, 1858, 5, 156, 0, 0, - 1858, 1860, 5, 155, 0, 0, 1859, 1849, 1, 0, 0, 0, 1859, 1852, 1, 0, 0, - 0, 1859, 1855, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 141, 1, 0, 0, - 0, 1861, 1862, 3, 66, 33, 0, 1862, 1863, 5, 155, 0, 0, 1863, 1872, 1, 0, - 0, 0, 1864, 1865, 3, 66, 33, 0, 1865, 1866, 5, 158, 0, 0, 1866, 1872, 1, - 0, 0, 0, 1867, 1868, 5, 157, 0, 0, 1868, 1872, 5, 127, 0, 0, 1869, 1870, - 5, 156, 0, 0, 1870, 1872, 5, 158, 0, 0, 1871, 1861, 1, 0, 0, 0, 1871, 1864, - 1, 0, 0, 0, 1871, 1867, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1872, 143, - 1, 0, 0, 0, 1873, 1874, 3, 66, 33, 0, 1874, 1875, 5, 155, 0, 0, 1875, 1881, - 1, 0, 0, 0, 1876, 1877, 5, 156, 0, 0, 1877, 1881, 5, 155, 0, 0, 1878, 1879, - 5, 157, 0, 0, 1879, 1881, 5, 127, 0, 0, 1880, 1873, 1, 0, 0, 0, 1880, 1876, - 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1881, 145, 1, 0, 0, 0, 1882, 1883, - 7, 21, 0, 0, 1883, 1884, 5, 3, 0, 0, 1884, 1885, 3, 66, 33, 0, 1885, 1886, - 5, 4, 0, 0, 1886, 1887, 5, 152, 0, 0, 1887, 1889, 5, 3, 0, 0, 1888, 1890, - 3, 152, 76, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, - 1, 0, 0, 0, 1891, 1893, 3, 156, 78, 0, 1892, 1894, 3, 122, 61, 0, 1893, - 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, - 1896, 5, 4, 0, 0, 1896, 1968, 1, 0, 0, 0, 1897, 1898, 7, 22, 0, 0, 1898, - 1899, 5, 3, 0, 0, 1899, 1900, 5, 4, 0, 0, 1900, 1901, 5, 152, 0, 0, 1901, - 1903, 5, 3, 0, 0, 1902, 1904, 3, 152, 76, 0, 1903, 1902, 1, 0, 0, 0, 1903, - 1904, 1, 0, 0, 0, 1904, 1906, 1, 0, 0, 0, 1905, 1907, 3, 154, 77, 0, 1906, - 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, - 1968, 5, 4, 0, 0, 1909, 1910, 7, 23, 0, 0, 1910, 1911, 5, 3, 0, 0, 1911, - 1912, 5, 4, 0, 0, 1912, 1913, 5, 152, 0, 0, 1913, 1915, 5, 3, 0, 0, 1914, - 1916, 3, 152, 76, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, - 1917, 1, 0, 0, 0, 1917, 1918, 3, 156, 78, 0, 1918, 1919, 5, 4, 0, 0, 1919, - 1968, 1, 0, 0, 0, 1920, 1921, 7, 24, 0, 0, 1921, 1922, 5, 3, 0, 0, 1922, - 1924, 3, 66, 33, 0, 1923, 1925, 3, 148, 74, 0, 1924, 1923, 1, 0, 0, 0, - 1924, 1925, 1, 0, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1928, 3, 150, 75, - 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, - 0, 1929, 1930, 5, 4, 0, 0, 1930, 1931, 5, 152, 0, 0, 1931, 1933, 5, 3, - 0, 0, 1932, 1934, 3, 152, 76, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, - 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 3, 156, 78, 0, 1936, 1937, - 5, 4, 0, 0, 1937, 1968, 1, 0, 0, 0, 1938, 1939, 5, 164, 0, 0, 1939, 1940, - 5, 3, 0, 0, 1940, 1941, 3, 66, 33, 0, 1941, 1942, 5, 5, 0, 0, 1942, 1943, - 3, 34, 17, 0, 1943, 1944, 5, 4, 0, 0, 1944, 1945, 5, 152, 0, 0, 1945, 1947, - 5, 3, 0, 0, 1946, 1948, 3, 152, 76, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, - 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1951, 3, 156, 78, 0, 1950, 1952, - 3, 122, 61, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, - 1, 0, 0, 0, 1953, 1954, 5, 4, 0, 0, 1954, 1968, 1, 0, 0, 0, 1955, 1956, - 5, 165, 0, 0, 1956, 1957, 5, 3, 0, 0, 1957, 1958, 3, 66, 33, 0, 1958, 1959, - 5, 4, 0, 0, 1959, 1960, 5, 152, 0, 0, 1960, 1962, 5, 3, 0, 0, 1961, 1963, - 3, 152, 76, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, - 1, 0, 0, 0, 1964, 1965, 3, 156, 78, 0, 1965, 1966, 5, 4, 0, 0, 1966, 1968, - 1, 0, 0, 0, 1967, 1882, 1, 0, 0, 0, 1967, 1897, 1, 0, 0, 0, 1967, 1909, - 1, 0, 0, 0, 1967, 1920, 1, 0, 0, 0, 1967, 1938, 1, 0, 0, 0, 1967, 1955, - 1, 0, 0, 0, 1968, 147, 1, 0, 0, 0, 1969, 1970, 5, 5, 0, 0, 1970, 1971, - 3, 34, 17, 0, 1971, 149, 1, 0, 0, 0, 1972, 1973, 5, 5, 0, 0, 1973, 1974, - 3, 34, 17, 0, 1974, 151, 1, 0, 0, 0, 1975, 1976, 5, 153, 0, 0, 1976, 1978, - 5, 40, 0, 0, 1977, 1979, 3, 66, 33, 0, 1978, 1977, 1, 0, 0, 0, 1979, 1980, - 1, 0, 0, 0, 1980, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 153, - 1, 0, 0, 0, 1982, 1983, 5, 109, 0, 0, 1983, 1985, 5, 40, 0, 0, 1984, 1986, - 3, 66, 33, 0, 1985, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1985, - 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 155, 1, 0, 0, 0, 1989, 1990, - 5, 109, 0, 0, 1990, 1991, 5, 40, 0, 0, 1991, 1992, 3, 156, 78, 0, 1992, - 157, 1, 0, 0, 0, 1993, 1995, 3, 66, 33, 0, 1994, 1996, 3, 138, 69, 0, 1995, - 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2004, 1, 0, 0, 0, 1997, - 1998, 5, 5, 0, 0, 1998, 2000, 3, 66, 33, 0, 1999, 2001, 3, 138, 69, 0, - 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2003, 1, 0, 0, 0, - 2002, 1997, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, - 2004, 2005, 1, 0, 0, 0, 2005, 159, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, - 2007, 2008, 3, 82, 41, 0, 2008, 161, 1, 0, 0, 0, 2009, 2010, 3, 82, 41, - 0, 2010, 163, 1, 0, 0, 0, 2011, 2012, 7, 25, 0, 0, 2012, 165, 1, 0, 0, - 0, 2013, 2014, 5, 188, 0, 0, 2014, 167, 1, 0, 0, 0, 2015, 2018, 3, 66, - 33, 0, 2016, 2018, 3, 28, 14, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2016, 1, - 0, 0, 0, 2018, 169, 1, 0, 0, 0, 2019, 2020, 7, 26, 0, 0, 2020, 171, 1, - 0, 0, 0, 2021, 2022, 7, 27, 0, 0, 2022, 173, 1, 0, 0, 0, 2023, 2024, 3, - 222, 111, 0, 2024, 175, 1, 0, 0, 0, 2025, 2026, 3, 222, 111, 0, 2026, 177, - 1, 0, 0, 0, 2027, 2028, 3, 222, 111, 0, 2028, 179, 1, 0, 0, 0, 2029, 2030, - 3, 222, 111, 0, 2030, 181, 1, 0, 0, 0, 2031, 2032, 3, 222, 111, 0, 2032, - 183, 1, 0, 0, 0, 2033, 2034, 3, 222, 111, 0, 2034, 185, 1, 0, 0, 0, 2035, - 2036, 3, 222, 111, 0, 2036, 187, 1, 0, 0, 0, 2037, 2038, 3, 222, 111, 0, - 2038, 189, 1, 0, 0, 0, 2039, 2040, 3, 222, 111, 0, 2040, 191, 1, 0, 0, - 0, 2041, 2042, 3, 222, 111, 0, 2042, 193, 1, 0, 0, 0, 2043, 2044, 3, 222, - 111, 0, 2044, 195, 1, 0, 0, 0, 2045, 2046, 3, 222, 111, 0, 2046, 197, 1, - 0, 0, 0, 2047, 2048, 3, 222, 111, 0, 2048, 199, 1, 0, 0, 0, 2049, 2050, - 3, 222, 111, 0, 2050, 201, 1, 0, 0, 0, 2051, 2052, 3, 222, 111, 0, 2052, - 203, 1, 0, 0, 0, 2053, 2054, 3, 222, 111, 0, 2054, 205, 1, 0, 0, 0, 2055, - 2056, 3, 222, 111, 0, 2056, 207, 1, 0, 0, 0, 2057, 2058, 3, 222, 111, 0, - 2058, 209, 1, 0, 0, 0, 2059, 2060, 3, 222, 111, 0, 2060, 211, 1, 0, 0, - 0, 2061, 2062, 3, 222, 111, 0, 2062, 213, 1, 0, 0, 0, 2063, 2064, 3, 222, - 111, 0, 2064, 215, 1, 0, 0, 0, 2065, 2066, 3, 222, 111, 0, 2066, 217, 1, - 0, 0, 0, 2067, 2068, 3, 222, 111, 0, 2068, 219, 1, 0, 0, 0, 2069, 2070, - 3, 222, 111, 0, 2070, 221, 1, 0, 0, 0, 2071, 2079, 5, 185, 0, 0, 2072, - 2079, 3, 172, 86, 0, 2073, 2079, 5, 188, 0, 0, 2074, 2075, 5, 3, 0, 0, - 2075, 2076, 3, 222, 111, 0, 2076, 2077, 5, 4, 0, 0, 2077, 2079, 1, 0, 0, - 0, 2078, 2071, 1, 0, 0, 0, 2078, 2072, 1, 0, 0, 0, 2078, 2073, 1, 0, 0, - 0, 2078, 2074, 1, 0, 0, 0, 2079, 223, 1, 0, 0, 0, 299, 227, 235, 242, 247, + 0, 0, 446, 448, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 452, 5, 4, 0, 0, + 449, 450, 5, 151, 0, 0, 450, 453, 5, 186, 0, 0, 451, 453, 5, 132, 0, 0, + 452, 449, 1, 0, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, + 457, 1, 0, 0, 0, 454, 455, 5, 33, 0, 0, 455, 457, 3, 82, 41, 0, 456, 432, + 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 27, 1, 0, 0, 0, 458, 460, 3, 186, + 93, 0, 459, 461, 3, 30, 15, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, + 0, 461, 465, 1, 0, 0, 0, 462, 464, 3, 32, 16, 0, 463, 462, 1, 0, 0, 0, + 464, 467, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, + 29, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 468, 470, 3, 174, 87, 0, 469, 468, + 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 471, 469, 1, 0, + 0, 0, 472, 483, 1, 0, 0, 0, 473, 474, 5, 3, 0, 0, 474, 475, 3, 34, 17, + 0, 475, 476, 5, 4, 0, 0, 476, 484, 1, 0, 0, 0, 477, 478, 5, 3, 0, 0, 478, + 479, 3, 34, 17, 0, 479, 480, 5, 5, 0, 0, 480, 481, 3, 34, 17, 0, 481, 482, + 5, 4, 0, 0, 482, 484, 1, 0, 0, 0, 483, 473, 1, 0, 0, 0, 483, 477, 1, 0, + 0, 0, 483, 484, 1, 0, 0, 0, 484, 31, 1, 0, 0, 0, 485, 486, 5, 49, 0, 0, + 486, 488, 3, 174, 87, 0, 487, 485, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, + 536, 1, 0, 0, 0, 489, 490, 5, 113, 0, 0, 490, 492, 5, 95, 0, 0, 491, 493, + 3, 138, 69, 0, 492, 491, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 495, 1, + 0, 0, 0, 494, 496, 3, 40, 20, 0, 495, 494, 1, 0, 0, 0, 495, 496, 1, 0, + 0, 0, 496, 498, 1, 0, 0, 0, 497, 499, 5, 36, 0, 0, 498, 497, 1, 0, 0, 0, + 498, 499, 1, 0, 0, 0, 499, 537, 1, 0, 0, 0, 500, 501, 5, 102, 0, 0, 501, + 504, 5, 104, 0, 0, 502, 504, 5, 141, 0, 0, 503, 500, 1, 0, 0, 0, 503, 502, + 1, 0, 0, 0, 504, 506, 1, 0, 0, 0, 505, 507, 3, 40, 20, 0, 506, 505, 1, + 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 537, 1, 0, 0, 0, 508, 509, 5, 44, 0, + 0, 509, 510, 5, 3, 0, 0, 510, 511, 3, 66, 33, 0, 511, 512, 5, 4, 0, 0, + 512, 537, 1, 0, 0, 0, 513, 520, 5, 56, 0, 0, 514, 521, 3, 34, 17, 0, 515, + 521, 3, 70, 35, 0, 516, 517, 5, 3, 0, 0, 517, 518, 3, 66, 33, 0, 518, 519, + 5, 4, 0, 0, 519, 521, 1, 0, 0, 0, 520, 514, 1, 0, 0, 0, 520, 515, 1, 0, + 0, 0, 520, 516, 1, 0, 0, 0, 521, 537, 1, 0, 0, 0, 522, 523, 5, 45, 0, 0, + 523, 537, 3, 188, 94, 0, 524, 537, 3, 38, 19, 0, 525, 526, 5, 170, 0, 0, + 526, 528, 5, 171, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, + 529, 1, 0, 0, 0, 529, 530, 5, 33, 0, 0, 530, 531, 5, 3, 0, 0, 531, 532, + 3, 66, 33, 0, 532, 534, 5, 4, 0, 0, 533, 535, 7, 3, 0, 0, 534, 533, 1, + 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 537, 1, 0, 0, 0, 536, 489, 1, 0, 0, + 0, 536, 503, 1, 0, 0, 0, 536, 508, 1, 0, 0, 0, 536, 513, 1, 0, 0, 0, 536, + 522, 1, 0, 0, 0, 536, 524, 1, 0, 0, 0, 536, 527, 1, 0, 0, 0, 537, 33, 1, + 0, 0, 0, 538, 540, 7, 4, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, + 0, 540, 541, 1, 0, 0, 0, 541, 542, 5, 187, 0, 0, 542, 35, 1, 0, 0, 0, 543, + 544, 5, 49, 0, 0, 544, 546, 3, 174, 87, 0, 545, 543, 1, 0, 0, 0, 545, 546, + 1, 0, 0, 0, 546, 584, 1, 0, 0, 0, 547, 548, 5, 113, 0, 0, 548, 551, 5, + 95, 0, 0, 549, 551, 5, 141, 0, 0, 550, 547, 1, 0, 0, 0, 550, 549, 1, 0, + 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 3, 0, 0, 553, 558, 3, 24, 12, + 0, 554, 555, 5, 5, 0, 0, 555, 557, 3, 24, 12, 0, 556, 554, 1, 0, 0, 0, + 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, + 561, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 5, 4, 0, 0, 562, 564, + 3, 40, 20, 0, 563, 562, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 585, 1, + 0, 0, 0, 565, 566, 5, 44, 0, 0, 566, 567, 5, 3, 0, 0, 567, 568, 3, 66, + 33, 0, 568, 569, 5, 4, 0, 0, 569, 585, 1, 0, 0, 0, 570, 571, 5, 74, 0, + 0, 571, 572, 5, 95, 0, 0, 572, 573, 5, 3, 0, 0, 573, 578, 3, 186, 93, 0, + 574, 575, 5, 5, 0, 0, 575, 577, 3, 186, 93, 0, 576, 574, 1, 0, 0, 0, 577, + 580, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 581, + 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 582, 5, 4, 0, 0, 582, 583, 3, 38, + 19, 0, 583, 585, 1, 0, 0, 0, 584, 550, 1, 0, 0, 0, 584, 565, 1, 0, 0, 0, + 584, 570, 1, 0, 0, 0, 585, 37, 1, 0, 0, 0, 586, 587, 5, 117, 0, 0, 587, + 599, 3, 190, 95, 0, 588, 589, 5, 3, 0, 0, 589, 594, 3, 186, 93, 0, 590, + 591, 5, 5, 0, 0, 591, 593, 3, 186, 93, 0, 592, 590, 1, 0, 0, 0, 593, 596, + 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 597, 1, 0, + 0, 0, 596, 594, 1, 0, 0, 0, 597, 598, 5, 4, 0, 0, 598, 600, 1, 0, 0, 0, + 599, 588, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 615, 1, 0, 0, 0, 601, + 602, 5, 107, 0, 0, 602, 609, 7, 5, 0, 0, 603, 604, 5, 131, 0, 0, 604, 610, + 7, 6, 0, 0, 605, 610, 5, 41, 0, 0, 606, 610, 5, 123, 0, 0, 607, 608, 5, + 101, 0, 0, 608, 610, 5, 26, 0, 0, 609, 603, 1, 0, 0, 0, 609, 605, 1, 0, + 0, 0, 609, 606, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 610, 614, 1, 0, 0, 0, + 611, 612, 5, 99, 0, 0, 612, 614, 3, 174, 87, 0, 613, 601, 1, 0, 0, 0, 613, + 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, + 1, 0, 0, 0, 616, 626, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 620, 5, 102, + 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, + 621, 624, 5, 57, 0, 0, 622, 623, 5, 86, 0, 0, 623, 625, 7, 7, 0, 0, 624, + 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 619, + 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 39, 1, 0, 0, 0, 628, 629, 5, 107, + 0, 0, 629, 630, 5, 48, 0, 0, 630, 631, 7, 8, 0, 0, 631, 41, 1, 0, 0, 0, + 632, 634, 5, 50, 0, 0, 633, 635, 7, 2, 0, 0, 634, 633, 1, 0, 0, 0, 634, + 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 640, 5, 139, 0, 0, 637, 638, + 5, 80, 0, 0, 638, 639, 5, 102, 0, 0, 639, 641, 5, 70, 0, 0, 640, 637, 1, + 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 645, 1, 0, 0, 0, 642, 643, 3, 178, + 89, 0, 643, 644, 5, 2, 0, 0, 644, 646, 1, 0, 0, 0, 645, 642, 1, 0, 0, 0, + 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 652, 3, 194, 97, 0, 648, + 653, 5, 37, 0, 0, 649, 653, 5, 28, 0, 0, 650, 651, 5, 89, 0, 0, 651, 653, + 5, 105, 0, 0, 652, 648, 1, 0, 0, 0, 652, 649, 1, 0, 0, 0, 652, 650, 1, + 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 668, 1, 0, 0, 0, 654, 669, 5, 59, 0, + 0, 655, 669, 5, 88, 0, 0, 656, 666, 5, 142, 0, 0, 657, 658, 5, 105, 0, + 0, 658, 663, 3, 186, 93, 0, 659, 660, 5, 5, 0, 0, 660, 662, 3, 186, 93, + 0, 661, 659, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 663, + 664, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 657, + 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 669, 1, 0, 0, 0, 668, 654, 1, 0, + 0, 0, 668, 655, 1, 0, 0, 0, 668, 656, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, + 670, 671, 5, 107, 0, 0, 671, 675, 3, 180, 90, 0, 672, 673, 5, 73, 0, 0, + 673, 674, 5, 64, 0, 0, 674, 676, 5, 127, 0, 0, 675, 672, 1, 0, 0, 0, 675, + 676, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 678, 5, 148, 0, 0, 678, 680, + 3, 66, 33, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 1, + 0, 0, 0, 681, 690, 5, 38, 0, 0, 682, 687, 3, 104, 52, 0, 683, 687, 3, 72, + 36, 0, 684, 687, 3, 58, 29, 0, 685, 687, 3, 82, 41, 0, 686, 682, 1, 0, + 0, 0, 686, 683, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 685, 1, 0, 0, 0, + 687, 688, 1, 0, 0, 0, 688, 689, 5, 1, 0, 0, 689, 691, 1, 0, 0, 0, 690, + 686, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 693, + 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 66, 0, 0, 695, 43, 1, 0, + 0, 0, 696, 698, 5, 50, 0, 0, 697, 699, 7, 2, 0, 0, 698, 697, 1, 0, 0, 0, + 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 704, 5, 146, 0, 0, 701, + 702, 5, 80, 0, 0, 702, 703, 5, 102, 0, 0, 703, 705, 5, 70, 0, 0, 704, 701, + 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 709, 1, 0, 0, 0, 706, 707, 3, 178, + 89, 0, 707, 708, 5, 2, 0, 0, 708, 710, 1, 0, 0, 0, 709, 706, 1, 0, 0, 0, + 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 723, 3, 196, 98, 0, 712, + 713, 5, 3, 0, 0, 713, 718, 3, 186, 93, 0, 714, 715, 5, 5, 0, 0, 715, 717, + 3, 186, 93, 0, 716, 714, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, + 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 721, 1, 0, 0, 0, 720, 718, 1, 0, 0, + 0, 721, 722, 5, 4, 0, 0, 722, 724, 1, 0, 0, 0, 723, 712, 1, 0, 0, 0, 723, + 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 5, 33, 0, 0, 726, 727, + 3, 82, 41, 0, 727, 45, 1, 0, 0, 0, 728, 729, 5, 50, 0, 0, 729, 730, 5, + 147, 0, 0, 730, 734, 5, 133, 0, 0, 731, 732, 5, 80, 0, 0, 732, 733, 5, + 102, 0, 0, 733, 735, 5, 70, 0, 0, 734, 731, 1, 0, 0, 0, 734, 735, 1, 0, + 0, 0, 735, 739, 1, 0, 0, 0, 736, 737, 3, 178, 89, 0, 737, 738, 5, 2, 0, + 0, 738, 740, 1, 0, 0, 0, 739, 736, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, + 741, 1, 0, 0, 0, 741, 742, 3, 180, 90, 0, 742, 743, 5, 143, 0, 0, 743, + 755, 3, 198, 99, 0, 744, 745, 5, 3, 0, 0, 745, 750, 3, 168, 84, 0, 746, + 747, 5, 5, 0, 0, 747, 749, 3, 168, 84, 0, 748, 746, 1, 0, 0, 0, 749, 752, + 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 753, 1, 0, + 0, 0, 752, 750, 1, 0, 0, 0, 753, 754, 5, 4, 0, 0, 754, 756, 1, 0, 0, 0, + 755, 744, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 47, 1, 0, 0, 0, 757, 759, + 5, 150, 0, 0, 758, 760, 5, 116, 0, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, + 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 3, 50, 25, 0, 762, 763, 5, 33, + 0, 0, 763, 764, 5, 3, 0, 0, 764, 765, 3, 82, 41, 0, 765, 775, 5, 4, 0, + 0, 766, 767, 5, 5, 0, 0, 767, 768, 3, 50, 25, 0, 768, 769, 5, 33, 0, 0, + 769, 770, 5, 3, 0, 0, 770, 771, 3, 82, 41, 0, 771, 772, 5, 4, 0, 0, 772, + 774, 1, 0, 0, 0, 773, 766, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, + 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 49, 1, 0, 0, 0, 777, 775, 1, 0, + 0, 0, 778, 790, 3, 180, 90, 0, 779, 780, 5, 3, 0, 0, 780, 785, 3, 186, + 93, 0, 781, 782, 5, 5, 0, 0, 782, 784, 3, 186, 93, 0, 783, 781, 1, 0, 0, + 0, 784, 787, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, + 788, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 789, 5, 4, 0, 0, 789, 791, + 1, 0, 0, 0, 790, 779, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 51, 1, 0, + 0, 0, 792, 793, 3, 50, 25, 0, 793, 794, 5, 33, 0, 0, 794, 795, 5, 3, 0, + 0, 795, 796, 3, 160, 80, 0, 796, 798, 5, 140, 0, 0, 797, 799, 5, 29, 0, + 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, + 801, 3, 162, 81, 0, 801, 802, 5, 4, 0, 0, 802, 53, 1, 0, 0, 0, 803, 815, + 3, 180, 90, 0, 804, 805, 5, 3, 0, 0, 805, 810, 3, 186, 93, 0, 806, 807, + 5, 5, 0, 0, 807, 809, 3, 186, 93, 0, 808, 806, 1, 0, 0, 0, 809, 812, 1, + 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 1, 0, 0, + 0, 812, 810, 1, 0, 0, 0, 813, 814, 5, 4, 0, 0, 814, 816, 1, 0, 0, 0, 815, + 804, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, + 5, 33, 0, 0, 818, 819, 5, 3, 0, 0, 819, 820, 3, 82, 41, 0, 820, 821, 5, + 4, 0, 0, 821, 55, 1, 0, 0, 0, 822, 831, 5, 124, 0, 0, 823, 832, 5, 7, 0, + 0, 824, 829, 3, 66, 33, 0, 825, 827, 5, 33, 0, 0, 826, 825, 1, 0, 0, 0, + 826, 827, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 830, 3, 170, 85, 0, 829, + 826, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 832, 1, 0, 0, 0, 831, 823, + 1, 0, 0, 0, 831, 824, 1, 0, 0, 0, 832, 846, 1, 0, 0, 0, 833, 842, 5, 5, + 0, 0, 834, 843, 5, 7, 0, 0, 835, 840, 3, 66, 33, 0, 836, 838, 5, 33, 0, + 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, + 841, 3, 170, 85, 0, 840, 837, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 843, + 1, 0, 0, 0, 842, 834, 1, 0, 0, 0, 842, 835, 1, 0, 0, 0, 843, 845, 1, 0, + 0, 0, 844, 833, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, + 846, 847, 1, 0, 0, 0, 847, 57, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 849, 851, + 3, 48, 24, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, + 0, 0, 0, 852, 853, 5, 59, 0, 0, 853, 854, 5, 75, 0, 0, 854, 857, 3, 110, + 55, 0, 855, 856, 5, 149, 0, 0, 856, 858, 3, 66, 33, 0, 857, 855, 1, 0, + 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 1, 0, 0, 0, 859, 861, 3, 56, 28, + 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 59, 1, 0, 0, 0, 862, + 864, 3, 48, 24, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, + 1, 0, 0, 0, 865, 866, 5, 59, 0, 0, 866, 867, 5, 75, 0, 0, 867, 870, 3, + 110, 55, 0, 868, 869, 5, 149, 0, 0, 869, 871, 3, 66, 33, 0, 870, 868, 1, + 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 876, 1, 0, 0, 0, 872, 874, 3, 132, + 66, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, + 875, 877, 3, 134, 67, 0, 876, 873, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, + 879, 1, 0, 0, 0, 878, 880, 3, 56, 28, 0, 879, 878, 1, 0, 0, 0, 879, 880, + 1, 0, 0, 0, 880, 61, 1, 0, 0, 0, 881, 883, 5, 61, 0, 0, 882, 884, 5, 55, + 0, 0, 883, 882, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, + 885, 886, 3, 178, 89, 0, 886, 63, 1, 0, 0, 0, 887, 888, 5, 63, 0, 0, 888, + 891, 7, 9, 0, 0, 889, 890, 5, 80, 0, 0, 890, 892, 5, 70, 0, 0, 891, 889, + 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 896, 1, 0, 0, 0, 893, 894, 3, 178, + 89, 0, 894, 895, 5, 2, 0, 0, 895, 897, 1, 0, 0, 0, 896, 893, 1, 0, 0, 0, + 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 3, 222, 111, 0, 899, + 65, 1, 0, 0, 0, 900, 901, 6, 33, -1, 0, 901, 989, 3, 70, 35, 0, 902, 989, + 5, 188, 0, 0, 903, 904, 3, 178, 89, 0, 904, 905, 5, 2, 0, 0, 905, 907, + 1, 0, 0, 0, 906, 903, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 1, 0, + 0, 0, 908, 909, 3, 180, 90, 0, 909, 910, 5, 2, 0, 0, 910, 912, 1, 0, 0, + 0, 911, 906, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, + 989, 3, 186, 93, 0, 914, 915, 3, 164, 82, 0, 915, 916, 3, 66, 33, 20, 916, + 989, 1, 0, 0, 0, 917, 918, 3, 176, 88, 0, 918, 931, 5, 3, 0, 0, 919, 921, + 5, 62, 0, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, + 0, 0, 922, 927, 3, 66, 33, 0, 923, 924, 5, 5, 0, 0, 924, 926, 3, 66, 33, + 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, + 928, 1, 0, 0, 0, 928, 932, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 932, + 5, 7, 0, 0, 931, 920, 1, 0, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, + 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 5, 4, 0, 0, 934, 936, 3, 114, 57, + 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, + 939, 3, 118, 59, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 989, + 1, 0, 0, 0, 940, 941, 5, 3, 0, 0, 941, 946, 3, 66, 33, 0, 942, 943, 5, + 5, 0, 0, 943, 945, 3, 66, 33, 0, 944, 942, 1, 0, 0, 0, 945, 948, 1, 0, + 0, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 949, 1, 0, 0, 0, + 948, 946, 1, 0, 0, 0, 949, 950, 5, 4, 0, 0, 950, 989, 1, 0, 0, 0, 951, + 952, 5, 43, 0, 0, 952, 953, 5, 3, 0, 0, 953, 954, 3, 66, 33, 0, 954, 955, + 5, 33, 0, 0, 955, 956, 3, 30, 15, 0, 956, 957, 5, 4, 0, 0, 957, 989, 1, + 0, 0, 0, 958, 960, 5, 102, 0, 0, 959, 958, 1, 0, 0, 0, 959, 960, 1, 0, + 0, 0, 960, 961, 1, 0, 0, 0, 961, 963, 5, 70, 0, 0, 962, 959, 1, 0, 0, 0, + 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 965, 5, 3, 0, 0, 965, + 966, 3, 82, 41, 0, 966, 967, 5, 4, 0, 0, 967, 989, 1, 0, 0, 0, 968, 970, + 5, 42, 0, 0, 969, 971, 3, 66, 33, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, + 0, 0, 0, 971, 977, 1, 0, 0, 0, 972, 973, 5, 148, 0, 0, 973, 974, 3, 66, + 33, 0, 974, 975, 5, 136, 0, 0, 975, 976, 3, 66, 33, 0, 976, 978, 1, 0, + 0, 0, 977, 972, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 977, 1, 0, 0, 0, + 979, 980, 1, 0, 0, 0, 980, 983, 1, 0, 0, 0, 981, 982, 5, 65, 0, 0, 982, + 984, 3, 66, 33, 0, 983, 981, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, + 1, 0, 0, 0, 985, 986, 5, 66, 0, 0, 986, 989, 1, 0, 0, 0, 987, 989, 3, 68, + 34, 0, 988, 900, 1, 0, 0, 0, 988, 902, 1, 0, 0, 0, 988, 911, 1, 0, 0, 0, + 988, 914, 1, 0, 0, 0, 988, 917, 1, 0, 0, 0, 988, 940, 1, 0, 0, 0, 988, + 951, 1, 0, 0, 0, 988, 962, 1, 0, 0, 0, 988, 968, 1, 0, 0, 0, 988, 987, + 1, 0, 0, 0, 989, 1103, 1, 0, 0, 0, 990, 991, 10, 19, 0, 0, 991, 992, 5, + 11, 0, 0, 992, 1102, 3, 66, 33, 20, 993, 994, 10, 18, 0, 0, 994, 995, 7, + 10, 0, 0, 995, 1102, 3, 66, 33, 19, 996, 997, 10, 17, 0, 0, 997, 998, 7, + 4, 0, 0, 998, 1102, 3, 66, 33, 18, 999, 1000, 10, 16, 0, 0, 1000, 1001, + 7, 11, 0, 0, 1001, 1102, 3, 66, 33, 17, 1002, 1003, 10, 15, 0, 0, 1003, + 1004, 7, 12, 0, 0, 1004, 1102, 3, 66, 33, 16, 1005, 1018, 10, 14, 0, 0, + 1006, 1019, 5, 6, 0, 0, 1007, 1019, 5, 22, 0, 0, 1008, 1019, 5, 23, 0, + 0, 1009, 1019, 5, 24, 0, 0, 1010, 1019, 5, 92, 0, 0, 1011, 1012, 5, 92, + 0, 0, 1012, 1019, 5, 102, 0, 0, 1013, 1019, 5, 83, 0, 0, 1014, 1019, 5, + 97, 0, 0, 1015, 1019, 5, 77, 0, 0, 1016, 1019, 5, 99, 0, 0, 1017, 1019, + 5, 118, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1007, 1, 0, 0, 0, 1018, 1008, + 1, 0, 0, 0, 1018, 1009, 1, 0, 0, 0, 1018, 1010, 1, 0, 0, 0, 1018, 1011, + 1, 0, 0, 0, 1018, 1013, 1, 0, 0, 0, 1018, 1014, 1, 0, 0, 0, 1018, 1015, + 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1017, 1, 0, 0, 0, 1019, 1020, + 1, 0, 0, 0, 1020, 1102, 3, 66, 33, 15, 1021, 1022, 10, 13, 0, 0, 1022, + 1023, 5, 32, 0, 0, 1023, 1102, 3, 66, 33, 14, 1024, 1025, 10, 12, 0, 0, + 1025, 1026, 5, 108, 0, 0, 1026, 1102, 3, 66, 33, 13, 1027, 1029, 10, 5, + 0, 0, 1028, 1030, 5, 102, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, + 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 5, 39, 0, 0, 1032, 1033, 3, + 66, 33, 0, 1033, 1034, 5, 32, 0, 0, 1034, 1035, 3, 66, 33, 6, 1035, 1102, + 1, 0, 0, 0, 1036, 1037, 10, 8, 0, 0, 1037, 1038, 5, 45, 0, 0, 1038, 1102, + 3, 188, 94, 0, 1039, 1041, 10, 7, 0, 0, 1040, 1042, 5, 102, 0, 0, 1041, + 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, + 1044, 7, 13, 0, 0, 1044, 1047, 3, 66, 33, 0, 1045, 1046, 5, 67, 0, 0, 1046, + 1048, 3, 66, 33, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, + 1102, 1, 0, 0, 0, 1049, 1054, 10, 6, 0, 0, 1050, 1055, 5, 93, 0, 0, 1051, + 1055, 5, 103, 0, 0, 1052, 1053, 5, 102, 0, 0, 1053, 1055, 5, 104, 0, 0, + 1054, 1050, 1, 0, 0, 0, 1054, 1051, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, + 1055, 1102, 1, 0, 0, 0, 1056, 1058, 10, 4, 0, 0, 1057, 1059, 5, 102, 0, + 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, + 0, 1060, 1099, 5, 83, 0, 0, 1061, 1071, 5, 3, 0, 0, 1062, 1072, 3, 82, + 41, 0, 1063, 1068, 3, 66, 33, 0, 1064, 1065, 5, 5, 0, 0, 1065, 1067, 3, + 66, 33, 0, 1066, 1064, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, + 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1072, 1, 0, 0, 0, 1070, 1068, + 1, 0, 0, 0, 1071, 1062, 1, 0, 0, 0, 1071, 1063, 1, 0, 0, 0, 1071, 1072, + 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1100, 5, 4, 0, 0, 1074, 1075, + 3, 178, 89, 0, 1075, 1076, 5, 2, 0, 0, 1076, 1078, 1, 0, 0, 0, 1077, 1074, + 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1100, + 3, 180, 90, 0, 1080, 1081, 3, 178, 89, 0, 1081, 1082, 5, 2, 0, 0, 1082, + 1084, 1, 0, 0, 0, 1083, 1080, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, + 1085, 1, 0, 0, 0, 1085, 1086, 3, 220, 110, 0, 1086, 1095, 5, 3, 0, 0, 1087, + 1092, 3, 66, 33, 0, 1088, 1089, 5, 5, 0, 0, 1089, 1091, 3, 66, 33, 0, 1090, + 1088, 1, 0, 0, 0, 1091, 1094, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, + 1093, 1, 0, 0, 0, 1093, 1096, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, + 1087, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, + 1098, 5, 4, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1061, 1, 0, 0, 0, 1099, + 1077, 1, 0, 0, 0, 1099, 1083, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, + 990, 1, 0, 0, 0, 1101, 993, 1, 0, 0, 0, 1101, 996, 1, 0, 0, 0, 1101, 999, + 1, 0, 0, 0, 1101, 1002, 1, 0, 0, 0, 1101, 1005, 1, 0, 0, 0, 1101, 1021, + 1, 0, 0, 0, 1101, 1024, 1, 0, 0, 0, 1101, 1027, 1, 0, 0, 0, 1101, 1036, + 1, 0, 0, 0, 1101, 1039, 1, 0, 0, 0, 1101, 1049, 1, 0, 0, 0, 1101, 1056, + 1, 0, 0, 0, 1102, 1105, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1104, + 1, 0, 0, 0, 1104, 67, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1106, 1107, 5, + 115, 0, 0, 1107, 1112, 5, 3, 0, 0, 1108, 1113, 5, 81, 0, 0, 1109, 1110, + 7, 14, 0, 0, 1110, 1111, 5, 5, 0, 0, 1111, 1113, 3, 166, 83, 0, 1112, 1108, + 1, 0, 0, 0, 1112, 1109, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1115, + 5, 4, 0, 0, 1115, 69, 1, 0, 0, 0, 1116, 1117, 7, 15, 0, 0, 1117, 71, 1, + 0, 0, 0, 1118, 1120, 3, 48, 24, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, + 1, 0, 0, 0, 1120, 1126, 1, 0, 0, 0, 1121, 1127, 5, 88, 0, 0, 1122, 1127, + 5, 122, 0, 0, 1123, 1124, 5, 88, 0, 0, 1124, 1125, 5, 108, 0, 0, 1125, + 1127, 7, 8, 0, 0, 1126, 1121, 1, 0, 0, 0, 1126, 1122, 1, 0, 0, 0, 1126, + 1123, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1132, 5, 91, 0, 0, 1129, + 1130, 3, 178, 89, 0, 1130, 1131, 5, 2, 0, 0, 1131, 1133, 1, 0, 0, 0, 1132, + 1129, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, + 1137, 3, 180, 90, 0, 1135, 1136, 5, 33, 0, 0, 1136, 1138, 3, 204, 102, + 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1150, 1, 0, 0, + 0, 1139, 1140, 5, 3, 0, 0, 1140, 1145, 3, 186, 93, 0, 1141, 1142, 5, 5, + 0, 0, 1142, 1144, 3, 186, 93, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1147, 1, + 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, + 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1149, 5, 4, 0, 0, 1149, 1151, 1, + 0, 0, 0, 1150, 1139, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1181, 1, + 0, 0, 0, 1152, 1153, 5, 145, 0, 0, 1153, 1154, 5, 3, 0, 0, 1154, 1159, + 3, 66, 33, 0, 1155, 1156, 5, 5, 0, 0, 1156, 1158, 3, 66, 33, 0, 1157, 1155, + 1, 0, 0, 0, 1158, 1161, 1, 0, 0, 0, 1159, 1157, 1, 0, 0, 0, 1159, 1160, + 1, 0, 0, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1162, 1177, + 5, 4, 0, 0, 1163, 1164, 5, 5, 0, 0, 1164, 1165, 5, 3, 0, 0, 1165, 1170, + 3, 66, 33, 0, 1166, 1167, 5, 5, 0, 0, 1167, 1169, 3, 66, 33, 0, 1168, 1166, + 1, 0, 0, 0, 1169, 1172, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, + 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1174, + 5, 4, 0, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1163, 1, 0, 0, 0, 1176, 1179, + 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1182, + 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1182, 3, 82, 41, 0, 1181, 1152, + 1, 0, 0, 0, 1181, 1180, 1, 0, 0, 0, 1182, 1184, 1, 0, 0, 0, 1183, 1185, + 3, 74, 37, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, + 1, 0, 0, 0, 1186, 1188, 3, 56, 28, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, + 1, 0, 0, 0, 1188, 1192, 1, 0, 0, 0, 1189, 1190, 5, 56, 0, 0, 1190, 1192, + 5, 145, 0, 0, 1191, 1119, 1, 0, 0, 0, 1191, 1189, 1, 0, 0, 0, 1192, 73, + 1, 0, 0, 0, 1193, 1194, 5, 107, 0, 0, 1194, 1209, 5, 48, 0, 0, 1195, 1196, + 5, 3, 0, 0, 1196, 1201, 3, 24, 12, 0, 1197, 1198, 5, 5, 0, 0, 1198, 1200, + 3, 24, 12, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, + 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1204, 1, 0, 0, 0, 1203, 1201, + 1, 0, 0, 0, 1204, 1207, 5, 4, 0, 0, 1205, 1206, 5, 149, 0, 0, 1206, 1208, + 3, 66, 33, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1210, + 1, 0, 0, 0, 1209, 1195, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, + 1, 0, 0, 0, 1211, 1238, 5, 184, 0, 0, 1212, 1239, 5, 185, 0, 0, 1213, 1214, + 5, 142, 0, 0, 1214, 1217, 5, 131, 0, 0, 1215, 1218, 3, 186, 93, 0, 1216, + 1218, 3, 106, 53, 0, 1217, 1215, 1, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1218, + 1219, 1, 0, 0, 0, 1219, 1220, 5, 6, 0, 0, 1220, 1231, 3, 66, 33, 0, 1221, + 1224, 5, 5, 0, 0, 1222, 1225, 3, 186, 93, 0, 1223, 1225, 3, 106, 53, 0, + 1224, 1222, 1, 0, 0, 0, 1224, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, + 1226, 1227, 5, 6, 0, 0, 1227, 1228, 3, 66, 33, 0, 1228, 1230, 1, 0, 0, + 0, 1229, 1221, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, + 0, 1231, 1232, 1, 0, 0, 0, 1232, 1236, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, + 0, 1234, 1235, 5, 149, 0, 0, 1235, 1237, 3, 66, 33, 0, 1236, 1234, 1, 0, + 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1239, 1, 0, 0, 0, 1238, 1212, 1, 0, + 0, 0, 1238, 1213, 1, 0, 0, 0, 1239, 75, 1, 0, 0, 0, 1240, 1244, 5, 112, + 0, 0, 1241, 1242, 3, 178, 89, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1245, 1, + 0, 0, 0, 1244, 1241, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 1, + 0, 0, 0, 1246, 1253, 3, 200, 100, 0, 1247, 1248, 5, 6, 0, 0, 1248, 1254, + 3, 78, 39, 0, 1249, 1250, 5, 3, 0, 0, 1250, 1251, 3, 78, 39, 0, 1251, 1252, + 5, 4, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1247, 1, 0, 0, 0, 1253, 1249, + 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 77, 1, 0, 0, 0, 1255, 1259, 3, + 34, 17, 0, 1256, 1259, 3, 174, 87, 0, 1257, 1259, 5, 189, 0, 0, 1258, 1255, + 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1258, 1257, 1, 0, 0, 0, 1259, 79, 1, + 0, 0, 0, 1260, 1271, 5, 119, 0, 0, 1261, 1272, 3, 188, 94, 0, 1262, 1263, + 3, 178, 89, 0, 1263, 1264, 5, 2, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1262, + 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1270, + 3, 180, 90, 0, 1268, 1270, 3, 192, 96, 0, 1269, 1267, 1, 0, 0, 0, 1269, + 1268, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1261, 1, 0, 0, 0, 1271, + 1265, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 81, 1, 0, 0, 0, 1273, 1275, + 3, 130, 65, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, + 1, 0, 0, 0, 1276, 1282, 3, 86, 43, 0, 1277, 1278, 3, 102, 51, 0, 1278, + 1279, 3, 86, 43, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1277, 1, 0, 0, 0, 1281, + 1284, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, + 1286, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1287, 3, 132, 66, 0, 1286, + 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, + 1290, 3, 134, 67, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, + 83, 1, 0, 0, 0, 1291, 1299, 3, 94, 47, 0, 1292, 1293, 3, 98, 49, 0, 1293, + 1295, 3, 94, 47, 0, 1294, 1296, 3, 100, 50, 0, 1295, 1294, 1, 0, 0, 0, + 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1292, 1, 0, 0, 0, + 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, + 1300, 85, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1304, 5, 130, 0, 0, + 1303, 1305, 7, 16, 0, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, + 1305, 1306, 1, 0, 0, 0, 1306, 1311, 3, 96, 48, 0, 1307, 1308, 5, 5, 0, + 0, 1308, 1310, 3, 96, 48, 0, 1309, 1307, 1, 0, 0, 0, 1310, 1313, 1, 0, + 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1326, 1, 0, + 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1324, 5, 75, 0, 0, 1315, 1320, 3, 94, + 47, 0, 1316, 1317, 5, 5, 0, 0, 1317, 1319, 3, 94, 47, 0, 1318, 1316, 1, + 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1321, 1, + 0, 0, 0, 1321, 1325, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1325, 3, + 84, 42, 0, 1324, 1315, 1, 0, 0, 0, 1324, 1323, 1, 0, 0, 0, 1325, 1327, + 1, 0, 0, 0, 1326, 1314, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1330, + 1, 0, 0, 0, 1328, 1329, 5, 149, 0, 0, 1329, 1331, 3, 66, 33, 0, 1330, 1328, + 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1346, 1, 0, 0, 0, 1332, 1333, + 5, 78, 0, 0, 1333, 1334, 5, 40, 0, 0, 1334, 1339, 3, 66, 33, 0, 1335, 1336, + 5, 5, 0, 0, 1336, 1338, 3, 66, 33, 0, 1337, 1335, 1, 0, 0, 0, 1338, 1341, + 1, 0, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1344, + 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1342, 1343, 5, 79, 0, 0, 1343, 1345, + 3, 66, 33, 0, 1344, 1342, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, + 1, 0, 0, 0, 1346, 1332, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1362, + 1, 0, 0, 0, 1348, 1349, 5, 175, 0, 0, 1349, 1350, 3, 208, 104, 0, 1350, + 1351, 5, 33, 0, 0, 1351, 1359, 3, 116, 58, 0, 1352, 1353, 5, 5, 0, 0, 1353, + 1354, 3, 208, 104, 0, 1354, 1355, 5, 33, 0, 0, 1355, 1356, 3, 116, 58, + 0, 1356, 1358, 1, 0, 0, 0, 1357, 1352, 1, 0, 0, 0, 1358, 1361, 1, 0, 0, + 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1363, 1, 0, 0, + 0, 1361, 1359, 1, 0, 0, 0, 1362, 1348, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, + 0, 1363, 1393, 1, 0, 0, 0, 1364, 1365, 5, 145, 0, 0, 1365, 1366, 5, 3, + 0, 0, 1366, 1371, 3, 66, 33, 0, 1367, 1368, 5, 5, 0, 0, 1368, 1370, 3, + 66, 33, 0, 1369, 1367, 1, 0, 0, 0, 1370, 1373, 1, 0, 0, 0, 1371, 1369, + 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 1, 0, 0, 0, 1373, 1371, + 1, 0, 0, 0, 1374, 1389, 5, 4, 0, 0, 1375, 1376, 5, 5, 0, 0, 1376, 1377, + 5, 3, 0, 0, 1377, 1382, 3, 66, 33, 0, 1378, 1379, 5, 5, 0, 0, 1379, 1381, + 3, 66, 33, 0, 1380, 1378, 1, 0, 0, 0, 1381, 1384, 1, 0, 0, 0, 1382, 1380, + 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1382, + 1, 0, 0, 0, 1385, 1386, 5, 4, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1375, + 1, 0, 0, 0, 1388, 1391, 1, 0, 0, 0, 1389, 1387, 1, 0, 0, 0, 1389, 1390, + 1, 0, 0, 0, 1390, 1393, 1, 0, 0, 0, 1391, 1389, 1, 0, 0, 0, 1392, 1302, + 1, 0, 0, 0, 1392, 1364, 1, 0, 0, 0, 1393, 87, 1, 0, 0, 0, 1394, 1395, 3, + 82, 41, 0, 1395, 89, 1, 0, 0, 0, 1396, 1398, 3, 130, 65, 0, 1397, 1396, + 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, + 3, 86, 43, 0, 1400, 1402, 3, 132, 66, 0, 1401, 1400, 1, 0, 0, 0, 1401, + 1402, 1, 0, 0, 0, 1402, 1404, 1, 0, 0, 0, 1403, 1405, 3, 134, 67, 0, 1404, + 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 91, 1, 0, 0, 0, 1406, 1408, + 3, 130, 65, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, + 1, 0, 0, 0, 1409, 1419, 3, 86, 43, 0, 1410, 1412, 5, 140, 0, 0, 1411, 1413, + 5, 29, 0, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1417, + 1, 0, 0, 0, 1414, 1417, 5, 90, 0, 0, 1415, 1417, 5, 68, 0, 0, 1416, 1410, + 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 1418, + 1, 0, 0, 0, 1418, 1420, 3, 86, 43, 0, 1419, 1416, 1, 0, 0, 0, 1420, 1421, + 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, + 1, 0, 0, 0, 1423, 1425, 3, 132, 66, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, + 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, + 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 93, 1, 0, 0, 0, 1429, 1430, 3, + 178, 89, 0, 1430, 1431, 5, 2, 0, 0, 1431, 1433, 1, 0, 0, 0, 1432, 1429, + 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1439, + 3, 180, 90, 0, 1435, 1437, 5, 33, 0, 0, 1436, 1435, 1, 0, 0, 0, 1436, 1437, + 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 3, 204, 102, 0, 1439, 1436, + 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1446, 1, 0, 0, 0, 1441, 1442, + 5, 85, 0, 0, 1442, 1443, 5, 40, 0, 0, 1443, 1447, 3, 192, 96, 0, 1444, + 1445, 5, 102, 0, 0, 1445, 1447, 5, 85, 0, 0, 1446, 1441, 1, 0, 0, 0, 1446, + 1444, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1494, 1, 0, 0, 0, 1448, + 1449, 3, 178, 89, 0, 1449, 1450, 5, 2, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, + 1448, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, + 1454, 3, 220, 110, 0, 1454, 1455, 5, 3, 0, 0, 1455, 1460, 3, 66, 33, 0, + 1456, 1457, 5, 5, 0, 0, 1457, 1459, 3, 66, 33, 0, 1458, 1456, 1, 0, 0, + 0, 1459, 1462, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, + 0, 1461, 1463, 1, 0, 0, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1468, 5, 4, 0, + 0, 1464, 1466, 5, 33, 0, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, + 0, 1466, 1467, 1, 0, 0, 0, 1467, 1469, 3, 204, 102, 0, 1468, 1465, 1, 0, + 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1494, 1, 0, 0, 0, 1470, 1480, 5, 3, + 0, 0, 1471, 1476, 3, 94, 47, 0, 1472, 1473, 5, 5, 0, 0, 1473, 1475, 3, + 94, 47, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1478, 1, 0, 0, 0, 1476, 1474, + 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1481, 1, 0, 0, 0, 1478, 1476, + 1, 0, 0, 0, 1479, 1481, 3, 84, 42, 0, 1480, 1471, 1, 0, 0, 0, 1480, 1479, + 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 4, 0, 0, 1483, 1494, + 1, 0, 0, 0, 1484, 1485, 5, 3, 0, 0, 1485, 1486, 3, 82, 41, 0, 1486, 1491, + 5, 4, 0, 0, 1487, 1489, 5, 33, 0, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, + 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 3, 204, 102, 0, 1491, 1488, + 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1432, + 1, 0, 0, 0, 1493, 1451, 1, 0, 0, 0, 1493, 1470, 1, 0, 0, 0, 1493, 1484, + 1, 0, 0, 0, 1494, 95, 1, 0, 0, 0, 1495, 1508, 5, 7, 0, 0, 1496, 1497, 3, + 180, 90, 0, 1497, 1498, 5, 2, 0, 0, 1498, 1499, 5, 7, 0, 0, 1499, 1508, + 1, 0, 0, 0, 1500, 1505, 3, 66, 33, 0, 1501, 1503, 5, 33, 0, 0, 1502, 1501, + 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1506, + 3, 170, 85, 0, 1505, 1502, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1508, + 1, 0, 0, 0, 1507, 1495, 1, 0, 0, 0, 1507, 1496, 1, 0, 0, 0, 1507, 1500, + 1, 0, 0, 0, 1508, 97, 1, 0, 0, 0, 1509, 1523, 5, 5, 0, 0, 1510, 1512, 5, + 100, 0, 0, 1511, 1510, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1519, + 1, 0, 0, 0, 1513, 1515, 5, 96, 0, 0, 1514, 1516, 5, 110, 0, 0, 1515, 1514, + 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1520, 1, 0, 0, 0, 1517, 1520, + 5, 87, 0, 0, 1518, 1520, 5, 51, 0, 0, 1519, 1513, 1, 0, 0, 0, 1519, 1517, + 1, 0, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, + 1, 0, 0, 0, 1521, 1523, 5, 94, 0, 0, 1522, 1509, 1, 0, 0, 0, 1522, 1511, + 1, 0, 0, 0, 1523, 99, 1, 0, 0, 0, 1524, 1525, 5, 107, 0, 0, 1525, 1539, + 3, 66, 33, 0, 1526, 1527, 5, 143, 0, 0, 1527, 1528, 5, 3, 0, 0, 1528, 1533, + 3, 186, 93, 0, 1529, 1530, 5, 5, 0, 0, 1530, 1532, 3, 186, 93, 0, 1531, + 1529, 1, 0, 0, 0, 1532, 1535, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, 1533, + 1534, 1, 0, 0, 0, 1534, 1536, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1536, + 1537, 5, 4, 0, 0, 1537, 1539, 1, 0, 0, 0, 1538, 1524, 1, 0, 0, 0, 1538, + 1526, 1, 0, 0, 0, 1539, 101, 1, 0, 0, 0, 1540, 1542, 5, 140, 0, 0, 1541, + 1543, 5, 29, 0, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, + 1547, 1, 0, 0, 0, 1544, 1547, 5, 90, 0, 0, 1545, 1547, 5, 68, 0, 0, 1546, + 1540, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1546, 1545, 1, 0, 0, 0, 1547, + 103, 1, 0, 0, 0, 1548, 1550, 3, 48, 24, 0, 1549, 1548, 1, 0, 0, 0, 1549, + 1550, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 5, 142, 0, 0, 1552, + 1553, 5, 108, 0, 0, 1553, 1555, 7, 8, 0, 0, 1554, 1552, 1, 0, 0, 0, 1554, + 1555, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 3, 110, 55, 0, 1557, + 1560, 5, 131, 0, 0, 1558, 1561, 3, 186, 93, 0, 1559, 1561, 3, 106, 53, + 0, 1560, 1558, 1, 0, 0, 0, 1560, 1559, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, + 0, 1562, 1563, 5, 6, 0, 0, 1563, 1574, 3, 66, 33, 0, 1564, 1567, 5, 5, + 0, 0, 1565, 1568, 3, 186, 93, 0, 1566, 1568, 3, 106, 53, 0, 1567, 1565, + 1, 0, 0, 0, 1567, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, + 5, 6, 0, 0, 1570, 1571, 3, 66, 33, 0, 1571, 1573, 1, 0, 0, 0, 1572, 1564, + 1, 0, 0, 0, 1573, 1576, 1, 0, 0, 0, 1574, 1572, 1, 0, 0, 0, 1574, 1575, + 1, 0, 0, 0, 1575, 1579, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1577, 1578, + 5, 149, 0, 0, 1578, 1580, 3, 66, 33, 0, 1579, 1577, 1, 0, 0, 0, 1579, 1580, + 1, 0, 0, 0, 1580, 1582, 1, 0, 0, 0, 1581, 1583, 3, 56, 28, 0, 1582, 1581, + 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 105, 1, 0, 0, 0, 1584, 1585, + 5, 3, 0, 0, 1585, 1590, 3, 186, 93, 0, 1586, 1587, 5, 5, 0, 0, 1587, 1589, + 3, 186, 93, 0, 1588, 1586, 1, 0, 0, 0, 1589, 1592, 1, 0, 0, 0, 1590, 1588, + 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1590, + 1, 0, 0, 0, 1593, 1594, 5, 4, 0, 0, 1594, 107, 1, 0, 0, 0, 1595, 1597, + 3, 48, 24, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, + 1, 0, 0, 0, 1598, 1601, 5, 142, 0, 0, 1599, 1600, 5, 108, 0, 0, 1600, 1602, + 7, 8, 0, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, + 1, 0, 0, 0, 1603, 1604, 3, 110, 55, 0, 1604, 1607, 5, 131, 0, 0, 1605, + 1608, 3, 186, 93, 0, 1606, 1608, 3, 106, 53, 0, 1607, 1605, 1, 0, 0, 0, + 1607, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 5, 6, 0, 0, + 1610, 1621, 3, 66, 33, 0, 1611, 1614, 5, 5, 0, 0, 1612, 1615, 3, 186, 93, + 0, 1613, 1615, 3, 106, 53, 0, 1614, 1612, 1, 0, 0, 0, 1614, 1613, 1, 0, + 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 5, 6, 0, 0, 1617, 1618, 3, 66, + 33, 0, 1618, 1620, 1, 0, 0, 0, 1619, 1611, 1, 0, 0, 0, 1620, 1623, 1, 0, + 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1626, 1, 0, + 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1625, 5, 149, 0, 0, 1625, 1627, 3, + 66, 33, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1632, + 1, 0, 0, 0, 1628, 1630, 3, 132, 66, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, + 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 3, 134, 67, 0, 1632, 1629, + 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 109, 1, 0, 0, 0, 1634, 1635, + 3, 178, 89, 0, 1635, 1636, 5, 2, 0, 0, 1636, 1638, 1, 0, 0, 0, 1637, 1634, + 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1642, + 3, 180, 90, 0, 1640, 1641, 5, 33, 0, 0, 1641, 1643, 3, 210, 105, 0, 1642, + 1640, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1649, 1, 0, 0, 0, 1644, + 1645, 5, 85, 0, 0, 1645, 1646, 5, 40, 0, 0, 1646, 1650, 3, 192, 96, 0, + 1647, 1648, 5, 102, 0, 0, 1648, 1650, 5, 85, 0, 0, 1649, 1644, 1, 0, 0, + 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 111, 1, 0, 0, + 0, 1651, 1653, 5, 144, 0, 0, 1652, 1654, 3, 178, 89, 0, 1653, 1652, 1, + 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1656, 5, + 91, 0, 0, 1656, 1658, 3, 212, 106, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, + 1, 0, 0, 0, 1658, 113, 1, 0, 0, 0, 1659, 1660, 5, 179, 0, 0, 1660, 1661, + 5, 3, 0, 0, 1661, 1662, 5, 149, 0, 0, 1662, 1663, 3, 66, 33, 0, 1663, 1664, + 5, 4, 0, 0, 1664, 115, 1, 0, 0, 0, 1665, 1667, 5, 3, 0, 0, 1666, 1668, + 3, 214, 107, 0, 1667, 1666, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1679, + 1, 0, 0, 0, 1669, 1670, 5, 154, 0, 0, 1670, 1671, 5, 40, 0, 0, 1671, 1676, + 3, 66, 33, 0, 1672, 1673, 5, 5, 0, 0, 1673, 1675, 3, 66, 33, 0, 1674, 1672, + 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, + 1, 0, 0, 0, 1677, 1680, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1669, + 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, + 5, 109, 0, 0, 1682, 1683, 5, 40, 0, 0, 1683, 1688, 3, 136, 68, 0, 1684, + 1685, 5, 5, 0, 0, 1685, 1687, 3, 136, 68, 0, 1686, 1684, 1, 0, 0, 0, 1687, + 1690, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, + 1692, 1, 0, 0, 0, 1690, 1688, 1, 0, 0, 0, 1691, 1693, 3, 120, 60, 0, 1692, + 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, + 1695, 5, 4, 0, 0, 1695, 117, 1, 0, 0, 0, 1696, 1730, 5, 153, 0, 0, 1697, + 1731, 3, 208, 104, 0, 1698, 1700, 5, 3, 0, 0, 1699, 1701, 3, 214, 107, + 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1712, 1, 0, 0, + 0, 1702, 1703, 5, 154, 0, 0, 1703, 1704, 5, 40, 0, 0, 1704, 1709, 3, 66, + 33, 0, 1705, 1706, 5, 5, 0, 0, 1706, 1708, 3, 66, 33, 0, 1707, 1705, 1, + 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1710, 1, + 0, 0, 0, 1710, 1713, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1702, 1, + 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1724, 1, 0, 0, 0, 1714, 1715, 5, + 109, 0, 0, 1715, 1716, 5, 40, 0, 0, 1716, 1721, 3, 136, 68, 0, 1717, 1718, + 5, 5, 0, 0, 1718, 1720, 3, 136, 68, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1723, + 1, 0, 0, 0, 1721, 1719, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1725, + 1, 0, 0, 0, 1723, 1721, 1, 0, 0, 0, 1724, 1714, 1, 0, 0, 0, 1724, 1725, + 1, 0, 0, 0, 1725, 1727, 1, 0, 0, 0, 1726, 1728, 3, 120, 60, 0, 1727, 1726, + 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1731, + 5, 4, 0, 0, 1730, 1697, 1, 0, 0, 0, 1730, 1698, 1, 0, 0, 0, 1731, 119, + 1, 0, 0, 0, 1732, 1740, 3, 122, 61, 0, 1733, 1734, 5, 181, 0, 0, 1734, + 1735, 5, 101, 0, 0, 1735, 1741, 5, 183, 0, 0, 1736, 1737, 5, 158, 0, 0, + 1737, 1741, 5, 127, 0, 0, 1738, 1741, 5, 78, 0, 0, 1739, 1741, 5, 182, + 0, 0, 1740, 1733, 1, 0, 0, 0, 1740, 1736, 1, 0, 0, 0, 1740, 1738, 1, 0, + 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 121, 1, 0, + 0, 0, 1742, 1749, 7, 17, 0, 0, 1743, 1750, 3, 144, 72, 0, 1744, 1745, 5, + 39, 0, 0, 1745, 1746, 3, 140, 70, 0, 1746, 1747, 5, 32, 0, 0, 1747, 1748, + 3, 142, 71, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1743, 1, 0, 0, 0, 1749, 1744, + 1, 0, 0, 0, 1750, 123, 1, 0, 0, 0, 1751, 1752, 3, 216, 108, 0, 1752, 1762, + 5, 3, 0, 0, 1753, 1758, 3, 66, 33, 0, 1754, 1755, 5, 5, 0, 0, 1755, 1757, + 3, 66, 33, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1760, 1, 0, 0, 0, 1758, 1756, + 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1763, 1, 0, 0, 0, 1760, 1758, + 1, 0, 0, 0, 1761, 1763, 5, 7, 0, 0, 1762, 1753, 1, 0, 0, 0, 1762, 1761, + 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 5, 4, 0, 0, 1765, 125, + 1, 0, 0, 0, 1766, 1767, 3, 218, 109, 0, 1767, 1780, 5, 3, 0, 0, 1768, 1770, + 5, 62, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, + 1, 0, 0, 0, 1771, 1776, 3, 66, 33, 0, 1772, 1773, 5, 5, 0, 0, 1773, 1775, + 3, 66, 33, 0, 1774, 1772, 1, 0, 0, 0, 1775, 1778, 1, 0, 0, 0, 1776, 1774, + 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1781, 1, 0, 0, 0, 1778, 1776, + 1, 0, 0, 0, 1779, 1781, 5, 7, 0, 0, 1780, 1769, 1, 0, 0, 0, 1780, 1779, + 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1784, + 5, 4, 0, 0, 1783, 1785, 3, 114, 57, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, + 1, 0, 0, 0, 1785, 127, 1, 0, 0, 0, 1786, 1787, 3, 146, 73, 0, 1787, 1797, + 5, 3, 0, 0, 1788, 1793, 3, 66, 33, 0, 1789, 1790, 5, 5, 0, 0, 1790, 1792, + 3, 66, 33, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, + 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1798, 1, 0, 0, 0, 1795, 1793, + 1, 0, 0, 0, 1796, 1798, 5, 7, 0, 0, 1797, 1788, 1, 0, 0, 0, 1797, 1796, + 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, + 5, 4, 0, 0, 1800, 1802, 3, 114, 57, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, + 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1806, 5, 153, 0, 0, 1804, 1807, + 3, 116, 58, 0, 1805, 1807, 3, 208, 104, 0, 1806, 1804, 1, 0, 0, 0, 1806, + 1805, 1, 0, 0, 0, 1807, 129, 1, 0, 0, 0, 1808, 1810, 5, 150, 0, 0, 1809, + 1811, 5, 116, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, + 1812, 1, 0, 0, 0, 1812, 1817, 3, 54, 27, 0, 1813, 1814, 5, 5, 0, 0, 1814, + 1816, 3, 54, 27, 0, 1815, 1813, 1, 0, 0, 0, 1816, 1819, 1, 0, 0, 0, 1817, + 1815, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 131, 1, 0, 0, 0, 1819, + 1817, 1, 0, 0, 0, 1820, 1821, 5, 109, 0, 0, 1821, 1822, 5, 40, 0, 0, 1822, + 1827, 3, 136, 68, 0, 1823, 1824, 5, 5, 0, 0, 1824, 1826, 3, 136, 68, 0, + 1825, 1823, 1, 0, 0, 0, 1826, 1829, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, + 1827, 1828, 1, 0, 0, 0, 1828, 133, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, + 1830, 1831, 5, 98, 0, 0, 1831, 1834, 3, 66, 33, 0, 1832, 1833, 7, 18, 0, + 0, 1833, 1835, 3, 66, 33, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1835, 1, 0, + 0, 0, 1835, 135, 1, 0, 0, 0, 1836, 1839, 3, 66, 33, 0, 1837, 1838, 5, 45, + 0, 0, 1838, 1840, 3, 188, 94, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, + 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1843, 3, 138, 69, 0, 1842, 1841, + 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1845, + 5, 176, 0, 0, 1845, 1847, 7, 19, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, + 1, 0, 0, 0, 1847, 137, 1, 0, 0, 0, 1848, 1849, 7, 20, 0, 0, 1849, 139, + 1, 0, 0, 0, 1850, 1851, 3, 66, 33, 0, 1851, 1852, 5, 156, 0, 0, 1852, 1861, + 1, 0, 0, 0, 1853, 1854, 3, 66, 33, 0, 1854, 1855, 5, 159, 0, 0, 1855, 1861, + 1, 0, 0, 0, 1856, 1857, 5, 158, 0, 0, 1857, 1861, 5, 127, 0, 0, 1858, 1859, + 5, 157, 0, 0, 1859, 1861, 5, 156, 0, 0, 1860, 1850, 1, 0, 0, 0, 1860, 1853, + 1, 0, 0, 0, 1860, 1856, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1861, 141, + 1, 0, 0, 0, 1862, 1863, 3, 66, 33, 0, 1863, 1864, 5, 156, 0, 0, 1864, 1873, + 1, 0, 0, 0, 1865, 1866, 3, 66, 33, 0, 1866, 1867, 5, 159, 0, 0, 1867, 1873, + 1, 0, 0, 0, 1868, 1869, 5, 158, 0, 0, 1869, 1873, 5, 127, 0, 0, 1870, 1871, + 5, 157, 0, 0, 1871, 1873, 5, 159, 0, 0, 1872, 1862, 1, 0, 0, 0, 1872, 1865, + 1, 0, 0, 0, 1872, 1868, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1873, 143, + 1, 0, 0, 0, 1874, 1875, 3, 66, 33, 0, 1875, 1876, 5, 156, 0, 0, 1876, 1882, + 1, 0, 0, 0, 1877, 1878, 5, 157, 0, 0, 1878, 1882, 5, 156, 0, 0, 1879, 1880, + 5, 158, 0, 0, 1880, 1882, 5, 127, 0, 0, 1881, 1874, 1, 0, 0, 0, 1881, 1877, + 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 145, 1, 0, 0, 0, 1883, 1884, + 7, 21, 0, 0, 1884, 1885, 5, 3, 0, 0, 1885, 1886, 3, 66, 33, 0, 1886, 1887, + 5, 4, 0, 0, 1887, 1888, 5, 153, 0, 0, 1888, 1890, 5, 3, 0, 0, 1889, 1891, + 3, 152, 76, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, + 1, 0, 0, 0, 1892, 1894, 3, 156, 78, 0, 1893, 1895, 3, 122, 61, 0, 1894, + 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, + 1897, 5, 4, 0, 0, 1897, 1969, 1, 0, 0, 0, 1898, 1899, 7, 22, 0, 0, 1899, + 1900, 5, 3, 0, 0, 1900, 1901, 5, 4, 0, 0, 1901, 1902, 5, 153, 0, 0, 1902, + 1904, 5, 3, 0, 0, 1903, 1905, 3, 152, 76, 0, 1904, 1903, 1, 0, 0, 0, 1904, + 1905, 1, 0, 0, 0, 1905, 1907, 1, 0, 0, 0, 1906, 1908, 3, 154, 77, 0, 1907, + 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, + 1969, 5, 4, 0, 0, 1910, 1911, 7, 23, 0, 0, 1911, 1912, 5, 3, 0, 0, 1912, + 1913, 5, 4, 0, 0, 1913, 1914, 5, 153, 0, 0, 1914, 1916, 5, 3, 0, 0, 1915, + 1917, 3, 152, 76, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, + 1918, 1, 0, 0, 0, 1918, 1919, 3, 156, 78, 0, 1919, 1920, 5, 4, 0, 0, 1920, + 1969, 1, 0, 0, 0, 1921, 1922, 7, 24, 0, 0, 1922, 1923, 5, 3, 0, 0, 1923, + 1925, 3, 66, 33, 0, 1924, 1926, 3, 148, 74, 0, 1925, 1924, 1, 0, 0, 0, + 1925, 1926, 1, 0, 0, 0, 1926, 1928, 1, 0, 0, 0, 1927, 1929, 3, 150, 75, + 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, + 0, 1930, 1931, 5, 4, 0, 0, 1931, 1932, 5, 153, 0, 0, 1932, 1934, 5, 3, + 0, 0, 1933, 1935, 3, 152, 76, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, + 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 3, 156, 78, 0, 1937, 1938, + 5, 4, 0, 0, 1938, 1969, 1, 0, 0, 0, 1939, 1940, 5, 165, 0, 0, 1940, 1941, + 5, 3, 0, 0, 1941, 1942, 3, 66, 33, 0, 1942, 1943, 5, 5, 0, 0, 1943, 1944, + 3, 34, 17, 0, 1944, 1945, 5, 4, 0, 0, 1945, 1946, 5, 153, 0, 0, 1946, 1948, + 5, 3, 0, 0, 1947, 1949, 3, 152, 76, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, + 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1952, 3, 156, 78, 0, 1951, 1953, + 3, 122, 61, 0, 1952, 1951, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, + 1, 0, 0, 0, 1954, 1955, 5, 4, 0, 0, 1955, 1969, 1, 0, 0, 0, 1956, 1957, + 5, 166, 0, 0, 1957, 1958, 5, 3, 0, 0, 1958, 1959, 3, 66, 33, 0, 1959, 1960, + 5, 4, 0, 0, 1960, 1961, 5, 153, 0, 0, 1961, 1963, 5, 3, 0, 0, 1962, 1964, + 3, 152, 76, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, + 1, 0, 0, 0, 1965, 1966, 3, 156, 78, 0, 1966, 1967, 5, 4, 0, 0, 1967, 1969, + 1, 0, 0, 0, 1968, 1883, 1, 0, 0, 0, 1968, 1898, 1, 0, 0, 0, 1968, 1910, + 1, 0, 0, 0, 1968, 1921, 1, 0, 0, 0, 1968, 1939, 1, 0, 0, 0, 1968, 1956, + 1, 0, 0, 0, 1969, 147, 1, 0, 0, 0, 1970, 1971, 5, 5, 0, 0, 1971, 1972, + 3, 34, 17, 0, 1972, 149, 1, 0, 0, 0, 1973, 1974, 5, 5, 0, 0, 1974, 1975, + 3, 34, 17, 0, 1975, 151, 1, 0, 0, 0, 1976, 1977, 5, 154, 0, 0, 1977, 1979, + 5, 40, 0, 0, 1978, 1980, 3, 66, 33, 0, 1979, 1978, 1, 0, 0, 0, 1980, 1981, + 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 153, + 1, 0, 0, 0, 1983, 1984, 5, 109, 0, 0, 1984, 1986, 5, 40, 0, 0, 1985, 1987, + 3, 66, 33, 0, 1986, 1985, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1986, + 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 155, 1, 0, 0, 0, 1990, 1991, + 5, 109, 0, 0, 1991, 1992, 5, 40, 0, 0, 1992, 1993, 3, 156, 78, 0, 1993, + 157, 1, 0, 0, 0, 1994, 1996, 3, 66, 33, 0, 1995, 1997, 3, 138, 69, 0, 1996, + 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2005, 1, 0, 0, 0, 1998, + 1999, 5, 5, 0, 0, 1999, 2001, 3, 66, 33, 0, 2000, 2002, 3, 138, 69, 0, + 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, + 2003, 1998, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, + 2005, 2006, 1, 0, 0, 0, 2006, 159, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, + 2008, 2009, 3, 82, 41, 0, 2009, 161, 1, 0, 0, 0, 2010, 2011, 3, 82, 41, + 0, 2011, 163, 1, 0, 0, 0, 2012, 2013, 7, 25, 0, 0, 2013, 165, 1, 0, 0, + 0, 2014, 2015, 5, 189, 0, 0, 2015, 167, 1, 0, 0, 0, 2016, 2019, 3, 66, + 33, 0, 2017, 2019, 3, 28, 14, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2017, 1, + 0, 0, 0, 2019, 169, 1, 0, 0, 0, 2020, 2021, 7, 26, 0, 0, 2021, 171, 1, + 0, 0, 0, 2022, 2023, 7, 27, 0, 0, 2023, 173, 1, 0, 0, 0, 2024, 2025, 3, + 222, 111, 0, 2025, 175, 1, 0, 0, 0, 2026, 2027, 3, 222, 111, 0, 2027, 177, + 1, 0, 0, 0, 2028, 2029, 3, 222, 111, 0, 2029, 179, 1, 0, 0, 0, 2030, 2031, + 3, 222, 111, 0, 2031, 181, 1, 0, 0, 0, 2032, 2033, 3, 222, 111, 0, 2033, + 183, 1, 0, 0, 0, 2034, 2035, 3, 222, 111, 0, 2035, 185, 1, 0, 0, 0, 2036, + 2037, 3, 222, 111, 0, 2037, 187, 1, 0, 0, 0, 2038, 2039, 3, 222, 111, 0, + 2039, 189, 1, 0, 0, 0, 2040, 2041, 3, 222, 111, 0, 2041, 191, 1, 0, 0, + 0, 2042, 2043, 3, 222, 111, 0, 2043, 193, 1, 0, 0, 0, 2044, 2045, 3, 222, + 111, 0, 2045, 195, 1, 0, 0, 0, 2046, 2047, 3, 222, 111, 0, 2047, 197, 1, + 0, 0, 0, 2048, 2049, 3, 222, 111, 0, 2049, 199, 1, 0, 0, 0, 2050, 2051, + 3, 222, 111, 0, 2051, 201, 1, 0, 0, 0, 2052, 2053, 3, 222, 111, 0, 2053, + 203, 1, 0, 0, 0, 2054, 2055, 3, 222, 111, 0, 2055, 205, 1, 0, 0, 0, 2056, + 2057, 3, 222, 111, 0, 2057, 207, 1, 0, 0, 0, 2058, 2059, 3, 222, 111, 0, + 2059, 209, 1, 0, 0, 0, 2060, 2061, 3, 222, 111, 0, 2061, 211, 1, 0, 0, + 0, 2062, 2063, 3, 222, 111, 0, 2063, 213, 1, 0, 0, 0, 2064, 2065, 3, 222, + 111, 0, 2065, 215, 1, 0, 0, 0, 2066, 2067, 3, 222, 111, 0, 2067, 217, 1, + 0, 0, 0, 2068, 2069, 3, 222, 111, 0, 2069, 219, 1, 0, 0, 0, 2070, 2071, + 3, 222, 111, 0, 2071, 221, 1, 0, 0, 0, 2072, 2080, 5, 186, 0, 0, 2073, + 2080, 3, 172, 86, 0, 2074, 2080, 5, 189, 0, 0, 2075, 2076, 5, 3, 0, 0, + 2076, 2077, 3, 222, 111, 0, 2077, 2078, 5, 4, 0, 0, 2078, 2080, 1, 0, 0, + 0, 2079, 2072, 1, 0, 0, 0, 2079, 2073, 1, 0, 0, 0, 2079, 2074, 1, 0, 0, + 0, 2079, 2075, 1, 0, 0, 0, 2080, 223, 1, 0, 0, 0, 299, 227, 235, 242, 247, 253, 259, 261, 287, 294, 301, 307, 311, 316, 319, 326, 329, 333, 341, 345, 347, 351, 355, 359, 362, 369, 375, 381, 386, 397, 403, 407, 411, 414, 418, - 424, 429, 438, 445, 451, 455, 459, 464, 470, 482, 486, 491, 494, 497, 502, - 505, 519, 526, 533, 535, 538, 544, 549, 557, 562, 577, 583, 593, 598, 608, - 612, 614, 618, 623, 625, 633, 639, 644, 651, 662, 665, 667, 674, 678, 685, - 691, 697, 703, 708, 717, 722, 733, 738, 749, 754, 758, 774, 784, 789, 797, - 809, 814, 825, 828, 830, 836, 839, 841, 845, 849, 856, 859, 862, 869, 872, - 875, 878, 882, 890, 895, 905, 910, 919, 926, 930, 934, 937, 945, 958, 961, - 969, 978, 982, 987, 1017, 1028, 1040, 1046, 1053, 1057, 1067, 1070, 1076, - 1082, 1091, 1094, 1098, 1100, 1102, 1111, 1118, 1125, 1131, 1136, 1144, - 1149, 1158, 1169, 1176, 1180, 1183, 1186, 1190, 1200, 1206, 1208, 1216, - 1223, 1230, 1235, 1237, 1243, 1252, 1257, 1264, 1268, 1270, 1273, 1281, - 1285, 1288, 1294, 1298, 1303, 1310, 1319, 1323, 1325, 1329, 1338, 1343, - 1345, 1358, 1361, 1370, 1381, 1388, 1391, 1396, 1400, 1403, 1406, 1411, - 1415, 1420, 1423, 1426, 1431, 1435, 1438, 1445, 1450, 1459, 1464, 1467, - 1475, 1479, 1487, 1490, 1492, 1501, 1504, 1506, 1510, 1514, 1518, 1521, - 1532, 1537, 1541, 1545, 1548, 1553, 1559, 1566, 1573, 1578, 1581, 1589, - 1595, 1600, 1606, 1613, 1620, 1625, 1628, 1631, 1636, 1641, 1648, 1652, - 1656, 1666, 1675, 1678, 1687, 1691, 1699, 1708, 1711, 1720, 1723, 1726, - 1729, 1739, 1748, 1757, 1761, 1768, 1775, 1779, 1783, 1792, 1796, 1800, - 1805, 1809, 1816, 1826, 1833, 1838, 1841, 1845, 1859, 1871, 1880, 1889, - 1893, 1903, 1906, 1915, 1924, 1927, 1933, 1947, 1951, 1962, 1967, 1980, - 1987, 1995, 2000, 2004, 2017, 2078, + 424, 429, 438, 445, 452, 456, 460, 465, 471, 483, 487, 492, 495, 498, 503, + 506, 520, 527, 534, 536, 539, 545, 550, 558, 563, 578, 584, 594, 599, 609, + 613, 615, 619, 624, 626, 634, 640, 645, 652, 663, 666, 668, 675, 679, 686, + 692, 698, 704, 709, 718, 723, 734, 739, 750, 755, 759, 775, 785, 790, 798, + 810, 815, 826, 829, 831, 837, 840, 842, 846, 850, 857, 860, 863, 870, 873, + 876, 879, 883, 891, 896, 906, 911, 920, 927, 931, 935, 938, 946, 959, 962, + 970, 979, 983, 988, 1018, 1029, 1041, 1047, 1054, 1058, 1068, 1071, 1077, + 1083, 1092, 1095, 1099, 1101, 1103, 1112, 1119, 1126, 1132, 1137, 1145, + 1150, 1159, 1170, 1177, 1181, 1184, 1187, 1191, 1201, 1207, 1209, 1217, + 1224, 1231, 1236, 1238, 1244, 1253, 1258, 1265, 1269, 1271, 1274, 1282, + 1286, 1289, 1295, 1299, 1304, 1311, 1320, 1324, 1326, 1330, 1339, 1344, + 1346, 1359, 1362, 1371, 1382, 1389, 1392, 1397, 1401, 1404, 1407, 1412, + 1416, 1421, 1424, 1427, 1432, 1436, 1439, 1446, 1451, 1460, 1465, 1468, + 1476, 1480, 1488, 1491, 1493, 1502, 1505, 1507, 1511, 1515, 1519, 1522, + 1533, 1538, 1542, 1546, 1549, 1554, 1560, 1567, 1574, 1579, 1582, 1590, + 1596, 1601, 1607, 1614, 1621, 1626, 1629, 1632, 1637, 1642, 1649, 1653, + 1657, 1667, 1676, 1679, 1688, 1692, 1700, 1709, 1712, 1721, 1724, 1727, + 1730, 1740, 1749, 1758, 1762, 1769, 1776, 1780, 1784, 1793, 1797, 1801, + 1806, 1810, 1817, 1827, 1834, 1839, 1842, 1846, 1860, 1872, 1881, 1890, + 1894, 1904, 1907, 1916, 1925, 1928, 1934, 1948, 1952, 1963, 1968, 1981, + 1988, 1996, 2001, 2005, 2018, 2079, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -1309,68 +1309,69 @@ const ( SQLiteParserSAVEPOINT_ = 129 SQLiteParserSELECT_ = 130 SQLiteParserSET_ = 131 - SQLiteParserTABLE_ = 132 - SQLiteParserTEMP_ = 133 - SQLiteParserTEMPORARY_ = 134 - SQLiteParserTHEN_ = 135 - SQLiteParserTO_ = 136 - SQLiteParserTRANSACTION_ = 137 - SQLiteParserTRIGGER_ = 138 - SQLiteParserUNION_ = 139 - SQLiteParserUNIQUE_ = 140 - SQLiteParserUPDATE_ = 141 - SQLiteParserUSING_ = 142 - SQLiteParserVACUUM_ = 143 - SQLiteParserVALUES_ = 144 - SQLiteParserVIEW_ = 145 - SQLiteParserVIRTUAL_ = 146 - SQLiteParserWHEN_ = 147 - SQLiteParserWHERE_ = 148 - SQLiteParserWITH_ = 149 - SQLiteParserWITHOUT_ = 150 - SQLiteParserFIRST_VALUE_ = 151 - SQLiteParserOVER_ = 152 - SQLiteParserPARTITION_ = 153 - SQLiteParserRANGE_ = 154 - SQLiteParserPRECEDING_ = 155 - SQLiteParserUNBOUNDED_ = 156 - SQLiteParserCURRENT_ = 157 - SQLiteParserFOLLOWING_ = 158 - SQLiteParserCUME_DIST_ = 159 - SQLiteParserDENSE_RANK_ = 160 - SQLiteParserLAG_ = 161 - SQLiteParserLAST_VALUE_ = 162 - SQLiteParserLEAD_ = 163 - SQLiteParserNTH_VALUE_ = 164 - SQLiteParserNTILE_ = 165 - SQLiteParserPERCENT_RANK_ = 166 - SQLiteParserRANK_ = 167 - SQLiteParserROW_NUMBER_ = 168 - SQLiteParserGENERATED_ = 169 - SQLiteParserALWAYS_ = 170 - SQLiteParserSTORED_ = 171 - SQLiteParserTRUE_ = 172 - SQLiteParserFALSE_ = 173 - SQLiteParserWINDOW_ = 174 - SQLiteParserNULLS_ = 175 - SQLiteParserFIRST_ = 176 - SQLiteParserLAST_ = 177 - SQLiteParserFILTER_ = 178 - SQLiteParserGROUPS_ = 179 - SQLiteParserEXCLUDE_ = 180 - SQLiteParserTIES_ = 181 - SQLiteParserOTHERS_ = 182 - SQLiteParserDO_ = 183 - SQLiteParserNOTHING_ = 184 - SQLiteParserIDENTIFIER = 185 - SQLiteParserNUMERIC_LITERAL = 186 - SQLiteParserBIND_PARAMETER = 187 - SQLiteParserSTRING_LITERAL = 188 - SQLiteParserBLOB_LITERAL = 189 - SQLiteParserSINGLE_LINE_COMMENT = 190 - SQLiteParserMULTILINE_COMMENT = 191 - SQLiteParserSPACES = 192 - SQLiteParserUNEXPECTED_CHAR = 193 + SQLiteParserSTRICT_ = 132 + SQLiteParserTABLE_ = 133 + SQLiteParserTEMP_ = 134 + SQLiteParserTEMPORARY_ = 135 + SQLiteParserTHEN_ = 136 + SQLiteParserTO_ = 137 + SQLiteParserTRANSACTION_ = 138 + SQLiteParserTRIGGER_ = 139 + SQLiteParserUNION_ = 140 + SQLiteParserUNIQUE_ = 141 + SQLiteParserUPDATE_ = 142 + SQLiteParserUSING_ = 143 + SQLiteParserVACUUM_ = 144 + SQLiteParserVALUES_ = 145 + SQLiteParserVIEW_ = 146 + SQLiteParserVIRTUAL_ = 147 + SQLiteParserWHEN_ = 148 + SQLiteParserWHERE_ = 149 + SQLiteParserWITH_ = 150 + SQLiteParserWITHOUT_ = 151 + SQLiteParserFIRST_VALUE_ = 152 + SQLiteParserOVER_ = 153 + SQLiteParserPARTITION_ = 154 + SQLiteParserRANGE_ = 155 + SQLiteParserPRECEDING_ = 156 + SQLiteParserUNBOUNDED_ = 157 + SQLiteParserCURRENT_ = 158 + SQLiteParserFOLLOWING_ = 159 + SQLiteParserCUME_DIST_ = 160 + SQLiteParserDENSE_RANK_ = 161 + SQLiteParserLAG_ = 162 + SQLiteParserLAST_VALUE_ = 163 + SQLiteParserLEAD_ = 164 + SQLiteParserNTH_VALUE_ = 165 + SQLiteParserNTILE_ = 166 + SQLiteParserPERCENT_RANK_ = 167 + SQLiteParserRANK_ = 168 + SQLiteParserROW_NUMBER_ = 169 + SQLiteParserGENERATED_ = 170 + SQLiteParserALWAYS_ = 171 + SQLiteParserSTORED_ = 172 + SQLiteParserTRUE_ = 173 + SQLiteParserFALSE_ = 174 + SQLiteParserWINDOW_ = 175 + SQLiteParserNULLS_ = 176 + SQLiteParserFIRST_ = 177 + SQLiteParserLAST_ = 178 + SQLiteParserFILTER_ = 179 + SQLiteParserGROUPS_ = 180 + SQLiteParserEXCLUDE_ = 181 + SQLiteParserTIES_ = 182 + SQLiteParserOTHERS_ = 183 + SQLiteParserDO_ = 184 + SQLiteParserNOTHING_ = 185 + SQLiteParserIDENTIFIER = 186 + SQLiteParserNUMERIC_LITERAL = 187 + SQLiteParserBIND_PARAMETER = 188 + SQLiteParserSTRING_LITERAL = 189 + SQLiteParserBLOB_LITERAL = 190 + SQLiteParserSINGLE_LINE_COMMENT = 191 + SQLiteParserMULTILINE_COMMENT = 192 + SQLiteParserSPACES = 193 + SQLiteParserUNEXPECTED_CHAR = 194 ) // SQLiteParser rules. @@ -1496,6 +1497,11 @@ type IParseContext interface { // GetParser returns the parser. GetParser() antlr.Parser + // Getter signatures + EOF() antlr.TerminalNode + AllSql_stmt_list() []ISql_stmt_listContext + Sql_stmt_list(i int) ISql_stmt_listContext + // IsParseContext differentiates from other interfaces. IsParseContext() } @@ -1621,7 +1627,7 @@ func (p *SQLiteParser) Parse() (localctx IParseContext) { p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) - for (((_la)&-(0x1f+1)) == 0 && ((1< Date: Fri, 31 Mar 2023 07:57:44 -0700 Subject: [PATCH 06/17] cmd/sqlc: Add option to disable process-based plugins (#2180) Add a `processplugins=0` option to `SQLCDEBUG`. This type of configuration is modeled Go's own use of `GODEBUG`. See a full explanation of the design here: https://go.googlesource.com/proposal/+/master/design/56986-godebug.md --- internal/cmd/cmd.go | 11 ++++++++ internal/endtoend/endtoend_test.go | 13 ++++++--- .../process_plugin_disabled/exec.json | 6 ++++ .../process_plugin_disabled/query.sql | 19 +++++++++++++ .../process_plugin_disabled/schema.sql | 5 ++++ .../process_plugin_disabled/sqlc.json | 28 +++++++++++++++++++ .../process_plugin_disabled/stderr.txt | 1 + internal/opts/debug.go | 18 ++++++++---- 8 files changed, 92 insertions(+), 9 deletions(-) create mode 100644 internal/endtoend/testdata/process_plugin_disabled/exec.json create mode 100644 internal/endtoend/testdata/process_plugin_disabled/query.sql create mode 100644 internal/endtoend/testdata/process_plugin_disabled/schema.sql create mode 100644 internal/endtoend/testdata/process_plugin_disabled/sqlc.json create mode 100644 internal/endtoend/testdata/process_plugin_disabled/stderr.txt diff --git a/internal/cmd/cmd.go b/internal/cmd/cmd.go index b599bf21ee..ec7fd76d82 100644 --- a/internal/cmd/cmd.go +++ b/internal/cmd/cmd.go @@ -4,6 +4,7 @@ import ( "bufio" "bytes" "context" + "errors" "fmt" "io" "os" @@ -19,6 +20,7 @@ import ( "github.com/kyleconroy/sqlc/internal/config" "github.com/kyleconroy/sqlc/internal/debug" "github.com/kyleconroy/sqlc/internal/info" + "github.com/kyleconroy/sqlc/internal/opts" "github.com/kyleconroy/sqlc/internal/tracer" ) @@ -106,16 +108,25 @@ var initCmd = &cobra.Command{ type Env struct { DryRun bool + Debug opts.Debug } func ParseEnv(c *cobra.Command) Env { dr := c.Flag("dry-run") return Env{ DryRun: dr != nil && dr.Changed, + Debug: opts.DebugFromEnv(), } } +var ErrPluginProcessDisabled = errors.New("plugin: process-based plugins disabled via SQLCDEBUG=processplugins=0") + func (e *Env) Validate(cfg *config.Config) error { + for _, plugin := range cfg.Plugins { + if plugin.Process != nil && !e.Debug.ProcessPlugins { + return ErrPluginProcessDisabled + } + } return nil } diff --git a/internal/endtoend/endtoend_test.go b/internal/endtoend/endtoend_test.go index e19b58bcb9..12f8aa5b21 100644 --- a/internal/endtoend/endtoend_test.go +++ b/internal/endtoend/endtoend_test.go @@ -14,6 +14,7 @@ import ( "github.com/google/go-cmp/cmp/cmpopts" "github.com/kyleconroy/sqlc/internal/cmd" + "github.com/kyleconroy/sqlc/internal/opts" ) func TestExamples(t *testing.T) { @@ -110,11 +111,14 @@ func TestReplay(t *testing.T) { } } + env := cmd.Env{ + Debug: opts.DebugFromString(args.Env["SQLCDEBUG"]), + } switch args.Command { case "diff": - err = cmd.Diff(ctx, cmd.Env{}, path, "", &stderr) + err = cmd.Diff(ctx, env, path, "", &stderr) case "generate": - output, err = cmd.Generate(ctx, cmd.Env{}, path, "", &stderr) + output, err = cmd.Generate(ctx, env, path, "", &stderr) if err == nil { cmpDirectory(t, path, output) } @@ -209,8 +213,9 @@ func expectedStderr(t *testing.T, dir string) string { } type exec struct { - Command string `json:"command"` - Process string `json:"process"` + Command string `json:"command"` + Process string `json:"process"` + Env map[string]string `json:"env"` } func parseExec(t *testing.T, dir string) exec { diff --git a/internal/endtoend/testdata/process_plugin_disabled/exec.json b/internal/endtoend/testdata/process_plugin_disabled/exec.json new file mode 100644 index 0000000000..d88b817f99 --- /dev/null +++ b/internal/endtoend/testdata/process_plugin_disabled/exec.json @@ -0,0 +1,6 @@ +{ + "process": "sqlc-gen-json", + "env": { + "SQLCDEBUG": "processplugins=0" + } +} diff --git a/internal/endtoend/testdata/process_plugin_disabled/query.sql b/internal/endtoend/testdata/process_plugin_disabled/query.sql new file mode 100644 index 0000000000..75e38b2caf --- /dev/null +++ b/internal/endtoend/testdata/process_plugin_disabled/query.sql @@ -0,0 +1,19 @@ +-- name: GetAuthor :one +SELECT * FROM authors +WHERE id = $1 LIMIT 1; + +-- name: ListAuthors :many +SELECT * FROM authors +ORDER BY name; + +-- name: CreateAuthor :one +INSERT INTO authors ( + name, bio +) VALUES ( + $1, $2 +) +RETURNING *; + +-- name: DeleteAuthor :exec +DELETE FROM authors +WHERE id = $1; diff --git a/internal/endtoend/testdata/process_plugin_disabled/schema.sql b/internal/endtoend/testdata/process_plugin_disabled/schema.sql new file mode 100644 index 0000000000..b4fad78497 --- /dev/null +++ b/internal/endtoend/testdata/process_plugin_disabled/schema.sql @@ -0,0 +1,5 @@ +CREATE TABLE authors ( + id BIGSERIAL PRIMARY KEY, + name text NOT NULL, + bio text +); diff --git a/internal/endtoend/testdata/process_plugin_disabled/sqlc.json b/internal/endtoend/testdata/process_plugin_disabled/sqlc.json new file mode 100644 index 0000000000..f47189143a --- /dev/null +++ b/internal/endtoend/testdata/process_plugin_disabled/sqlc.json @@ -0,0 +1,28 @@ +{ + "version": "2", + "sql": [ + { + "schema": "schema.sql", + "queries": "query.sql", + "engine": "postgresql", + "codegen": [ + { + "out": "gen", + "plugin": "jsonb", + "options": { + "indent": " ", + "filename": "codegen.json" + } + } + ] + } + ], + "plugins": [ + { + "name": "jsonb", + "process": { + "cmd": "sqlc-gen-json" + } + } + ] +} diff --git a/internal/endtoend/testdata/process_plugin_disabled/stderr.txt b/internal/endtoend/testdata/process_plugin_disabled/stderr.txt new file mode 100644 index 0000000000..85ee900cc6 --- /dev/null +++ b/internal/endtoend/testdata/process_plugin_disabled/stderr.txt @@ -0,0 +1 @@ +error validating sqlc.json: plugin: process-based plugins disabled via SQLCDEBUG=processplugins=0 diff --git a/internal/opts/debug.go b/internal/opts/debug.go index 7acfddd161..2c6f9bcaae 100644 --- a/internal/opts/debug.go +++ b/internal/opts/debug.go @@ -13,14 +13,20 @@ import ( // trace: setting trace= will output a trace type Debug struct { - DumpAST bool - DumpCatalog bool - Trace string + DumpAST bool + DumpCatalog bool + Trace string + ProcessPlugins bool } func DebugFromEnv() Debug { - d := Debug{} - val := os.Getenv("SQLCDEBUG") + return DebugFromString(os.Getenv("SQLCDEBUG")) +} + +func DebugFromString(val string) Debug { + d := Debug{ + ProcessPlugins: true, + } if val == "" { return d } @@ -38,6 +44,8 @@ func DebugFromEnv() Debug { } else { d.Trace = traceName } + case pair == "processplugins=0": + d.ProcessPlugins = false } } return d From 513e0feb3bac2f715b62cfb4498b4c3ddf07d8c8 Mon Sep 17 00:00:00 2001 From: Jille Timmermans Date: Mon, 3 Apr 2023 21:02:08 +0200 Subject: [PATCH 07/17] codegen: Correctly generate CopyFrom columns for single-column copyfroms (#2185) --- internal/codegen/golang/query.go | 3 +- internal/codegen/golang/result.go | 2 + .../postgresql/pgx/v4/go/copyfrom.go | 42 +++++++++++++++++++ .../postgresql/pgx/v4/go/db.go | 33 +++++++++++++++ .../postgresql/pgx/v4/go/models.go | 11 +++++ .../postgresql/pgx/v4/go/querier.go | 15 +++++++ .../postgresql/pgx/v4/go/query.sql.go | 8 ++++ .../postgresql/pgx/v4/query.sql | 6 +++ .../postgresql/pgx/v4/sqlc.json | 14 +++++++ .../postgresql/pgx/v5/go/copyfrom.go | 42 +++++++++++++++++++ .../postgresql/pgx/v5/go/db.go | 33 +++++++++++++++ .../postgresql/pgx/v5/go/models.go | 11 +++++ .../postgresql/pgx/v5/go/querier.go | 15 +++++++ .../postgresql/pgx/v5/go/query.sql.go | 8 ++++ .../postgresql/pgx/v5/query.sql | 6 +++ .../postgresql/pgx/v5/sqlc.json | 14 +++++++ 16 files changed, 262 insertions(+), 1 deletion(-) create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/copyfrom.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/db.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/models.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/querier.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/query.sql.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/query.sql create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/sqlc.json create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/copyfrom.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/db.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/models.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/querier.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/query.sql.go create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/query.sql create mode 100644 internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/sqlc.json diff --git a/internal/codegen/golang/query.go b/internal/codegen/golang/query.go index 1168bf6d7a..74d5b9f558 100644 --- a/internal/codegen/golang/query.go +++ b/internal/codegen/golang/query.go @@ -12,6 +12,7 @@ type QueryValue struct { Emit bool EmitPointer bool Name string + DBName string // The name of the field in the database. Only set if Struct==nil. Struct *Struct Typ string SQLDriver SQLDriver @@ -116,7 +117,7 @@ func (v QueryValue) Params() string { func (v QueryValue) ColumnNames() string { if v.Struct == nil { - return fmt.Sprintf("[]string{%q}", v.Name) + return fmt.Sprintf("[]string{%q}", v.DBName) } escapedNames := make([]string, len(v.Struct.Fields)) for i, f := range v.Struct.Fields { diff --git a/internal/codegen/golang/result.go b/internal/codegen/golang/result.go index efba759adb..fd7e22bc47 100644 --- a/internal/codegen/golang/result.go +++ b/internal/codegen/golang/result.go @@ -166,6 +166,7 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error) p := query.Params[0] gq.Arg = QueryValue{ Name: paramName(p), + DBName: p.Column.GetName(), Typ: goType(req, p.Column), SQLDriver: sqlpkg, } @@ -198,6 +199,7 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error) } gq.Ret = QueryValue{ Name: name, + DBName: name, Typ: goType(req, c), SQLDriver: sqlpkg, } diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/copyfrom.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/copyfrom.go new file mode 100644 index 0000000000..3e5293a8ed --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/copyfrom.go @@ -0,0 +1,42 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: copyfrom.go + +package querytest + +import ( + "context" +) + +// iteratorForCreateAuthors implements pgx.CopyFromSource. +type iteratorForCreateAuthors struct { + rows []int32 + skippedFirstNextCall bool +} + +func (r *iteratorForCreateAuthors) Next() bool { + if len(r.rows) == 0 { + return false + } + if !r.skippedFirstNextCall { + r.skippedFirstNextCall = true + return true + } + r.rows = r.rows[1:] + return len(r.rows) > 0 +} + +func (r iteratorForCreateAuthors) Values() ([]interface{}, error) { + return []interface{}{ + r.rows[0], + }, nil +} + +func (r iteratorForCreateAuthors) Err() error { + return nil +} + +func (q *Queries) CreateAuthors(ctx context.Context, authorID []int32) (int64, error) { + return q.db.CopyFrom(ctx, []string{"authors"}, []string{"author_id"}, &iteratorForCreateAuthors{rows: authorID}) +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/db.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/db.go new file mode 100644 index 0000000000..9e04f6e635 --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/db.go @@ -0,0 +1,33 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" + + "github.com/jackc/pgconn" + "github.com/jackc/pgx/v4" +) + +type DBTX interface { + Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) + Query(context.Context, string, ...interface{}) (pgx.Rows, error) + QueryRow(context.Context, string, ...interface{}) pgx.Row + CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx pgx.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/models.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/models.go new file mode 100644 index 0000000000..293cebc00c --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/models.go @@ -0,0 +1,11 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import () + +type Author struct { + AuthorID int32 +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/querier.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/querier.go new file mode 100644 index 0000000000..bd305b90c8 --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/querier.go @@ -0,0 +1,15 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" +) + +type Querier interface { + CreateAuthors(ctx context.Context, authorID []int32) (int64, error) +} + +var _ Querier = (*Queries)(nil) diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/query.sql.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/query.sql.go new file mode 100644 index 0000000000..f4c28047be --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/query.sql.go @@ -0,0 +1,8 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: query.sql + +package querytest + +import () diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/query.sql b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/query.sql new file mode 100644 index 0000000000..b505b6b265 --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/query.sql @@ -0,0 +1,6 @@ +CREATE TABLE authors ( + author_id SERIAL PRIMARY KEY +); + +-- name: CreateAuthors :copyfrom +INSERT INTO authors (author_id) VALUES ($1); diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/sqlc.json b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/sqlc.json new file mode 100644 index 0000000000..2ec707567a --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/sqlc.json @@ -0,0 +1,14 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "postgresql", + "sql_package": "pgx/v4", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql", + "emit_interface": true + } + ] +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/copyfrom.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/copyfrom.go new file mode 100644 index 0000000000..3e5293a8ed --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/copyfrom.go @@ -0,0 +1,42 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: copyfrom.go + +package querytest + +import ( + "context" +) + +// iteratorForCreateAuthors implements pgx.CopyFromSource. +type iteratorForCreateAuthors struct { + rows []int32 + skippedFirstNextCall bool +} + +func (r *iteratorForCreateAuthors) Next() bool { + if len(r.rows) == 0 { + return false + } + if !r.skippedFirstNextCall { + r.skippedFirstNextCall = true + return true + } + r.rows = r.rows[1:] + return len(r.rows) > 0 +} + +func (r iteratorForCreateAuthors) Values() ([]interface{}, error) { + return []interface{}{ + r.rows[0], + }, nil +} + +func (r iteratorForCreateAuthors) Err() error { + return nil +} + +func (q *Queries) CreateAuthors(ctx context.Context, authorID []int32) (int64, error) { + return q.db.CopyFrom(ctx, []string{"authors"}, []string{"author_id"}, &iteratorForCreateAuthors{rows: authorID}) +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/db.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/db.go new file mode 100644 index 0000000000..b2afac5b3c --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/db.go @@ -0,0 +1,33 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" + + "github.com/jackc/pgx/v5" + "github.com/jackc/pgx/v5/pgconn" +) + +type DBTX interface { + Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) + Query(context.Context, string, ...interface{}) (pgx.Rows, error) + QueryRow(context.Context, string, ...interface{}) pgx.Row + CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx pgx.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/models.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/models.go new file mode 100644 index 0000000000..293cebc00c --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/models.go @@ -0,0 +1,11 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import () + +type Author struct { + AuthorID int32 +} diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/querier.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/querier.go new file mode 100644 index 0000000000..bd305b90c8 --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/querier.go @@ -0,0 +1,15 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" +) + +type Querier interface { + CreateAuthors(ctx context.Context, authorID []int32) (int64, error) +} + +var _ Querier = (*Queries)(nil) diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/query.sql.go b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/query.sql.go new file mode 100644 index 0000000000..f4c28047be --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/query.sql.go @@ -0,0 +1,8 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: query.sql + +package querytest + +import () diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/query.sql b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/query.sql new file mode 100644 index 0000000000..b505b6b265 --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/query.sql @@ -0,0 +1,6 @@ +CREATE TABLE authors ( + author_id SERIAL PRIMARY KEY +); + +-- name: CreateAuthors :copyfrom +INSERT INTO authors (author_id) VALUES ($1); diff --git a/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/sqlc.json b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/sqlc.json new file mode 100644 index 0000000000..170791aa85 --- /dev/null +++ b/internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/sqlc.json @@ -0,0 +1,14 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "postgresql", + "sql_package": "pgx/v5", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql", + "emit_interface": true + } + ] +} From 85ef8cccbbf5b0fe306d860709db3d5a094750c7 Mon Sep 17 00:00:00 2001 From: Andrew Benton Date: Mon, 3 Apr 2023 12:12:39 -0700 Subject: [PATCH 08/17] use filepath.Rel() when formatting filenames in stderr output, for consistency (#2186) --- internal/cmd/generate.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/cmd/generate.go b/internal/cmd/generate.go index a7eff7dffa..b828c21193 100644 --- a/internal/cmd/generate.go +++ b/internal/cmd/generate.go @@ -10,7 +10,6 @@ import ( "path/filepath" "runtime" "runtime/trace" - "strings" "sync" "golang.org/x/sync/errgroup" @@ -45,7 +44,10 @@ The supported version can only be "1" or "2". const errMessageNoPackages = `No packages are configured` func printFileErr(stderr io.Writer, dir string, fileErr *multierr.FileError) { - filename := strings.TrimPrefix(fileErr.Filename, dir+"/") + filename, err := filepath.Rel(dir, fileErr.Filename) + if err != nil { + filename = fileErr.Filename + } fmt.Fprintf(stderr, "%s:%d:%d: %s\n", filename, fileErr.Line, fileErr.Column, fileErr.Err) } From 6ec6f5117748cd75021e45dd2ff5ee9e9876a79a Mon Sep 17 00:00:00 2001 From: Kotaro Abe Date: Wed, 5 Apr 2023 02:41:19 +0900 Subject: [PATCH 09/17] docs: Add missed configuration option (#2188) --- docs/reference/config.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/reference/config.md b/docs/reference/config.md index 2d663709ec..aaa49a8fa4 100644 --- a/docs/reference/config.md +++ b/docs/reference/config.md @@ -213,6 +213,7 @@ sql: import: "a/b/v2" package: "b" type: "MyType" + pointer: true ``` When generating code, entries using the `column` key will always have preference over From a02702dfa9083f94ee544217d2e6deb96a884dd8 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Tue, 4 Apr 2023 14:44:48 -0700 Subject: [PATCH 10/17] bin/sqlc: Add SQLCTMPDIR environment variable (#2189) * bin/sqlc: Add SQLCTMPDIR environment variable If specified, use the given directory as the base for temporary folders. Only applies when using WASM-based codegen plugins. * Use non-deprecated function * docs: Add SQLCCACHE and SQLCTMPDIR to reference --- docs/reference/environment-variables.md | 22 ++++++++++++++++++++++ internal/ext/wasm/wasm.go | 3 +-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/docs/reference/environment-variables.md b/docs/reference/environment-variables.md index 359bebcc3f..36822531ab 100644 --- a/docs/reference/environment-variables.md +++ b/docs/reference/environment-variables.md @@ -1,5 +1,12 @@ # Environment variables +## SQLCCACHE + +The `SQLCCACHE` environment variable dictates where `sqlc` will store cached +WASM-based plugins and modules. By default `sqlc` follows the [XDG Base +Directory +Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). + ## SQLCDEBUG The `SQLCDEBUG` variable controls debugging variables within the runtime. It is @@ -110,3 +117,18 @@ log showing the execution time for each package. 0.046042779 . 5148212 1 region writefiles started (duration: 1.718259ms) 0.047767781 . 1725002 1 task end ``` + +### processplugins + +Setting this value to `0` disables process-based plugins. If a process-based +plugin is declared in the configuration file, running any `sqlc` command will +return an error. + +`SQLCDEBUG=processplugins=0` + +## SQLCTMPDIR + +If specified, use the given directory as the base for temporary folders. Only +applies when using WASM-based codegen plugins. When not specified, this +defaults to passing an empty string to +[`os.MkdirTemp`](https://pkg.go.dev/os#MkdirTemp). diff --git a/internal/ext/wasm/wasm.go b/internal/ext/wasm/wasm.go index 6b9c4992a3..fe607a3326 100644 --- a/internal/ext/wasm/wasm.go +++ b/internal/ext/wasm/wasm.go @@ -11,7 +11,6 @@ import ( "errors" "fmt" "io" - "io/ioutil" "net/http" "os" "path/filepath" @@ -236,7 +235,7 @@ func (r *Runner) Generate(ctx context.Context, req *plugin.CodeGenRequest) (*plu return nil, err } - dir, err := ioutil.TempDir("", "out") + dir, err := os.MkdirTemp(os.Getenv("SQLCTMPDIR"), "out") if err != nil { return nil, fmt.Errorf("temp dir: %w", err) } From 550a3867ad8d16561bd4a216cd71dc7f11cc9f8a Mon Sep 17 00:00:00 2001 From: Robert Liebowitz Date: Fri, 7 Apr 2023 12:30:31 -0400 Subject: [PATCH 11/17] fix: correct singularization of "waves" (#2194) We hit a table where "waves" was singularized to "wafe". Probably caught the rule attempting to set "knives" -> "knife" and "wives" -> "wife". --- internal/inflection/singular.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/inflection/singular.go b/internal/inflection/singular.go index 6718bf7ef1..caff453489 100644 --- a/internal/inflection/singular.go +++ b/internal/inflection/singular.go @@ -39,5 +39,9 @@ func Singular(s SingularParams) string { if strings.ToLower(s.Name) == "calories" { return "calorie" } + // Manual fix for incorrect handling of "-ves" suffix + if strings.ToLower(s.Name) == "waves" { + return "wave" + } return upstream.Singular(s.Name) } From a8477b872229265bdeeac6e502a9188cffe193b8 Mon Sep 17 00:00:00 2001 From: Jille Timmermans Date: Fri, 7 Apr 2023 18:31:20 +0200 Subject: [PATCH 12/17] Add sqlc.slice() to support IN clauses in MySQL (#695) (#1816) This feature (currently MySQL-specific) allows passing in a slice to an IN clause. Adding the new function sqlc.slice() as opposed to overloading the parsing of "IN (?)" was chosen to guarantee backwards compatibility. SELECT * FROM tab WHERE col IN (sqlc.slice("go_param_name")) This commit is based on https://github.com/kyleconroy/sqlc/pull/1312 by Paul Cameron. I just rebased and did some cleanup. Co-authored-by: Paul Cameron --- docs/howto/select.md | 110 + internal/cmd/shim.go | 1 + internal/codegen/golang/field.go | 5 + internal/codegen/golang/gen.go | 100 +- internal/codegen/golang/go_type.go | 2 +- internal/codegen/golang/imports.go | 14 +- internal/codegen/golang/query.go | 22 +- internal/codegen/golang/result.go | 2 + .../golang/templates/stdlib/queryCode.tmpl | 112 +- internal/compiler/parse.go | 4 +- internal/compiler/query.go | 2 + internal/compiler/resolve.go | 1 + .../testdata/codegen_json/gen/codegen.json | 7287 +++++++++++------ .../gen/codegen.json | 7287 +++++++++++------ .../testdata/sqlc_slice/mysql/go/db.go | 31 + .../testdata/sqlc_slice/mysql/go/models.go | 12 + .../testdata/sqlc_slice/mysql/go/query.sql.go | 165 + .../testdata/sqlc_slice/mysql/query.sql | 19 + .../testdata/sqlc_slice/mysql/sqlc.json | 12 + .../sqlc_slice/postgresql/pgx/go/db.go | 32 + .../sqlc_slice/postgresql/pgx/go/models.go | 11 + .../sqlc_slice/postgresql/pgx/go/query.sql.go | 58 + .../sqlc_slice/postgresql/pgx/query.sql | 7 + .../sqlc_slice/postgresql/pgx/sqlc.json | 13 + .../sqlc_slice/postgresql/stdlib/go/db.go | 31 + .../sqlc_slice/postgresql/stdlib/go/models.go | 12 + .../postgresql/stdlib/go/query.sql.go | 78 + .../sqlc_slice/postgresql/stdlib/query.sql | 13 + .../sqlc_slice/postgresql/stdlib/sqlc.json | 12 + internal/plugin/codegen.pb.go | 118 +- internal/plugin/codegen_vtproto.pb.go | 36 + internal/sql/named/is.go | 2 +- internal/sql/named/param.go | 17 +- internal/sql/rewrite/parameters.go | 17 +- internal/sql/validate/func_call.go | 8 +- internal/sql/validate/in.go | 86 + protos/plugin/codegen.proto | 1 + 37 files changed, 10736 insertions(+), 5004 deletions(-) create mode 100644 internal/endtoend/testdata/sqlc_slice/mysql/go/db.go create mode 100644 internal/endtoend/testdata/sqlc_slice/mysql/go/models.go create mode 100644 internal/endtoend/testdata/sqlc_slice/mysql/go/query.sql.go create mode 100644 internal/endtoend/testdata/sqlc_slice/mysql/query.sql create mode 100644 internal/endtoend/testdata/sqlc_slice/mysql/sqlc.json create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/db.go create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/models.go create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/query.sql.go create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/pgx/query.sql create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/pgx/sqlc.json create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/db.go create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/models.go create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/query.sql.go create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/query.sql create mode 100644 internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/sqlc.json create mode 100644 internal/sql/validate/in.go diff --git a/docs/howto/select.md b/docs/howto/select.md index 802e196909..bcd675a23b 100644 --- a/docs/howto/select.md +++ b/docs/howto/select.md @@ -185,6 +185,8 @@ func (q *Queries) GetInfoForAuthor(ctx context.Context, id int) (GetInfoForAutho ## Passing a slice as a parameter to a query +### PostgreSQL + In PostgreSQL, [ANY](https://www.postgresql.org/docs/current/functions-comparisons.html#id-1.5.8.28.16) allows you to check if a value exists in an array expression. Queries using ANY @@ -262,3 +264,111 @@ func (q *Queries) ListAuthorsByIDs(ctx context.Context, ids []int) ([]Author, er return items, nil } ``` + +### MySQL + +MySQL differs from PostgreSQL in that placeholders must be generated based on +the number of elements in the slice you pass in. Though trivial it is still +something of a nuisance. The passed in slice must not be nil or empty or an +error will be returned (ie not a panic). The placeholder insertion location is +marked by the meta-function `sqlc.slice()` (which is similar to `sqlc.arg()` +that you see documented under [Naming parameters](named_parameters.md)). + +To rephrase, the `sqlc.slice('param')` behaves identically to `sqlc.arg()` it +terms of how it maps the explicit argument to the function signature, eg: + + * `sqlc.slice('ids')` maps to `ids []GoType` in the function signature + * `sqlc.slice(cust_ids)` maps to `custIds []GoType` in the function signature + (like `sqlc.arg()`, the parameter does not have to be quoted) + +This feature is not compatible with `emit_prepared_queries` statement found in the +[Configuration file](../reference/config.md). + +```sql +CREATE TABLE authors ( + id SERIAL PRIMARY KEY, + bio text NOT NULL, + birth_year int NOT NULL +); + +-- name: ListAuthorsByIDs :many +SELECT * FROM authors +WHERE id IN (sqlc.slice('ids')); +``` + +The above SQL will generate the following code: + +```go +package db + +import ( + "context" + "database/sql" + "fmt" + "strings" +) + +type Author struct { + ID int + Bio string + BirthYear int +} + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} + +const listAuthorsByIDs = `-- name: ListAuthorsByIDs :many +SELECT id, bio, birth_year FROM authors +WHERE id IN (/*SLICE:ids*/?) +` + +func (q *Queries) ListAuthorsByIDs(ctx context.Context, ids []int64) ([]Author, error) { + sql := listAuthorsByIDs + var queryParams []interface{} + if len(ids) == 0 { + return nil, fmt.Errorf("slice ids must have at least one element") + } + for _, v := range ids { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:ids*/?", strings.Repeat(",?", len(ids))[1:], 1) + rows, err := q.db.QueryContext(ctx, sql, queryParams...) + if err != nil { + return nil, err + } + defer rows.Close() + var items []Author + for rows.Next() { + var i Author + if err := rows.Scan(&i.ID, &i.Bio, &i.BirthYear); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} +``` diff --git a/internal/cmd/shim.go b/internal/cmd/shim.go index 66fedd322c..a46c007972 100644 --- a/internal/cmd/shim.go +++ b/internal/cmd/shim.go @@ -241,6 +241,7 @@ func pluginQueryColumn(c *compiler.Column) *plugin.Column { Length: int32(l), IsNamedParam: c.IsNamedParam, IsFuncCall: c.IsFuncCall, + IsSqlcSlice: c.IsSqlcSlice, } if c.Type != nil { diff --git a/internal/codegen/golang/field.go b/internal/codegen/golang/field.go index cd1ee2eb1e..f6bfb238f4 100644 --- a/internal/codegen/golang/field.go +++ b/internal/codegen/golang/field.go @@ -14,6 +14,7 @@ type Field struct { Type string Tags map[string]string Comment string + Column *plugin.Column } func (gf Field) Tag() string { @@ -28,6 +29,10 @@ func (gf Field) Tag() string { return strings.Join(tags, " ") } +func (gf Field) HasSqlcSlice() bool { + return gf.Column.IsSqlcSlice +} + func JSONTagName(name string, settings *plugin.Settings) string { style := settings.Go.JsonTagsCaseStyle if style == "" || style == "none" { diff --git a/internal/codegen/golang/gen.go b/internal/codegen/golang/gen.go index dd802f0150..3f63ffb1a9 100644 --- a/internal/codegen/golang/gen.go +++ b/internal/codegen/golang/gen.go @@ -43,6 +43,63 @@ func (t *tmplCtx) OutputQuery(sourceName string) bool { return t.SourceName == sourceName } +func (t *tmplCtx) codegenDbarg() string { + if t.EmitMethodsWithDBArgument { + return "db DBTX, " + } + return "" +} + +// Called as a global method since subtemplate queryCodeStdExec does not have +// access to the toplevel tmplCtx +func (t *tmplCtx) codegenEmitPreparedQueries() bool { + return t.EmitPreparedQueries +} + +func (t *tmplCtx) codegenQueryMethod(q Query) string { + db := "q.db" + if t.EmitMethodsWithDBArgument { + db = "db" + } + + switch q.Cmd { + case ":one": + if t.EmitPreparedQueries { + return "q.queryRow" + } + return db + ".QueryRowContext" + + case ":many": + if t.EmitPreparedQueries { + return "q.query" + } + return db + ".QueryContext" + + default: + if t.EmitPreparedQueries { + return "q.exec" + } + return db + ".ExecContext" + } +} + +func (t *tmplCtx) codegenQueryRetval(q Query) (string, error) { + switch q.Cmd { + case ":one": + return "row :=", nil + case ":many": + return "rows, err :=", nil + case ":exec": + return "_, err :=", nil + case ":execrows": + return "result, err :=", nil + case ":execresult": + return "return", nil + default: + return "", fmt.Errorf("unhandled q.Cmd case %q", q.Cmd) + } +} + func Generate(ctx context.Context, req *plugin.CodeGenRequest) (*plugin.CodeGenResponse, error) { enums := buildEnums(req) structs := buildStructs(req) @@ -61,24 +118,6 @@ func generate(req *plugin.CodeGenRequest, enums []Enum, structs []Struct, querie Structs: structs, } - funcMap := template.FuncMap{ - "lowerTitle": sdk.LowerTitle, - "comment": sdk.DoubleSlashComment, - "escape": sdk.EscapeBacktick, - "imports": i.Imports, - "hasPrefix": strings.HasPrefix, - } - - tmpl := template.Must( - template.New("table"). - Funcs(funcMap). - ParseFS( - templates, - "templates/*.tmpl", - "templates/*/*.tmpl", - ), - ) - golang := req.Settings.Go tctx := tmplCtx{ EmitInterface: golang.EmitInterface, @@ -107,6 +146,31 @@ func generate(req *plugin.CodeGenRequest, enums []Enum, structs []Struct, querie return nil, errors.New(":batch* commands are only supported by pgx") } + funcMap := template.FuncMap{ + "lowerTitle": sdk.LowerTitle, + "comment": sdk.DoubleSlashComment, + "escape": sdk.EscapeBacktick, + "imports": i.Imports, + "hasPrefix": strings.HasPrefix, + + // These methods are Go specific, they do not belong in the codegen package + // (as that is language independent) + "dbarg": tctx.codegenDbarg, + "emitPreparedQueries": tctx.codegenEmitPreparedQueries, + "queryMethod": tctx.codegenQueryMethod, + "queryRetval": tctx.codegenQueryRetval, + } + + tmpl := template.Must( + template.New("table"). + Funcs(funcMap). + ParseFS( + templates, + "templates/*.tmpl", + "templates/*/*.tmpl", + ), + ) + output := map[string]string{} execute := func(name, templateName string) error { diff --git a/internal/codegen/golang/go_type.go b/internal/codegen/golang/go_type.go index 77415e69af..01b1c1c807 100644 --- a/internal/codegen/golang/go_type.go +++ b/internal/codegen/golang/go_type.go @@ -37,7 +37,7 @@ func goType(req *plugin.CodeGenRequest, col *plugin.Column) string { } } typ := goInnerType(req, col) - if col.IsArray { + if col.IsArray || col.IsSqlcSlice { return "[]" + typ } return typ diff --git a/internal/codegen/golang/imports.go b/internal/codegen/golang/imports.go index 6da4b9c5e5..39d65ea1e6 100644 --- a/internal/codegen/golang/imports.go +++ b/internal/codegen/golang/imports.go @@ -363,12 +363,24 @@ func (i *importer) queryImports(filename string) fileImports { return false } + // Search for sqlc.slice() calls + sqlcSliceScan := func() bool { + for _, q := range gq { + if q.Arg.HasSqlcSlices() { + return true + } + } + return false + } + if anyNonCopyFrom { std["context"] = struct{}{} } sqlpkg := parseDriver(i.Settings.Go.SqlPackage) - if sliceScan() && !sqlpkg.IsPGX() { + if sqlcSliceScan() { + std["strings"] = struct{}{} + } else if sliceScan() && !sqlpkg.IsPGX() { pkg[ImportSpec{Path: "github.com/lib/pq"}] = struct{}{} } diff --git a/internal/codegen/golang/query.go b/internal/codegen/golang/query.go index 74d5b9f558..151ebb84cd 100644 --- a/internal/codegen/golang/query.go +++ b/internal/codegen/golang/query.go @@ -16,6 +16,10 @@ type QueryValue struct { Struct *Struct Typ string SQLDriver SQLDriver + + // Column is kept so late in the generation process around to differentiate + // between mysql slices and pg arrays + Column *plugin.Column } func (v QueryValue) EmitStruct() bool { @@ -94,14 +98,14 @@ func (v QueryValue) Params() string { } var out []string if v.Struct == nil { - if strings.HasPrefix(v.Typ, "[]") && v.Typ != "[]byte" && !v.SQLDriver.IsPGX() { + if !v.Column.IsSqlcSlice && strings.HasPrefix(v.Typ, "[]") && v.Typ != "[]byte" && !v.SQLDriver.IsPGX() { out = append(out, "pq.Array("+v.Name+")") } else { out = append(out, v.Name) } } else { for _, f := range v.Struct.Fields { - if strings.HasPrefix(f.Type, "[]") && f.Type != "[]byte" && !v.SQLDriver.IsPGX() { + if !f.HasSqlcSlice() && strings.HasPrefix(f.Type, "[]") && f.Type != "[]byte" && !v.SQLDriver.IsPGX() { out = append(out, "pq.Array("+v.Name+"."+f.Name+")") } else { out = append(out, v.Name+"."+f.Name) @@ -126,6 +130,20 @@ func (v QueryValue) ColumnNames() string { return "[]string{" + strings.Join(escapedNames, ", ") + "}" } +// When true, we have to build the arguments to q.db.QueryContext in addition to +// munging the SQL +func (v QueryValue) HasSqlcSlices() bool { + if v.Struct == nil { + return v.Column != nil && v.Column.IsSqlcSlice + } + for _, v := range v.Struct.Fields { + if v.Column.IsSqlcSlice { + return true + } + } + return false +} + func (v QueryValue) Scan() string { var out []string if v.Struct == nil { diff --git a/internal/codegen/golang/result.go b/internal/codegen/golang/result.go index fd7e22bc47..a2be11aa08 100644 --- a/internal/codegen/golang/result.go +++ b/internal/codegen/golang/result.go @@ -169,6 +169,7 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error) DBName: p.Column.GetName(), Typ: goType(req, p.Column), SQLDriver: sqlpkg, + Column: p.Column, } } else if len(query.Params) > 1 { var cols []goColumn @@ -313,6 +314,7 @@ func columnsToStruct(req *plugin.CodeGenRequest, name string, columns []goColumn DBName: colName, Type: goType(req, c.Column), Tags: tags, + Column: c.Column, }) if _, found := seen[baseFieldName]; !found { seen[baseFieldName] = []int{i} diff --git a/internal/codegen/golang/templates/stdlib/queryCode.tmpl b/internal/codegen/golang/templates/stdlib/queryCode.tmpl index 8745a4fa2f..213477b15c 100644 --- a/internal/codegen/golang/templates/stdlib/queryCode.tmpl +++ b/internal/codegen/golang/templates/stdlib/queryCode.tmpl @@ -22,18 +22,8 @@ type {{.Ret.Type}} struct { {{- range .Ret.Struct.Fields}} {{if eq .Cmd ":one"}} {{range .Comments}}//{{.}} {{end -}} -{{- if $.EmitMethodsWithDBArgument -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error) { -{{- else -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error) { -{{- end -}} - {{- if $.EmitPreparedQueries}} - row := q.queryRow(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}}) - {{- else if $.EmitMethodsWithDBArgument}} - row := db.QueryRowContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- else}} - row := q.db.QueryRowContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- end}} +func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) ({{.Ret.DefineType}}, error) { + {{- template "queryCodeStdExec" . }} {{- if ne .Arg.Pair .Ret.Pair }} var {{.Ret.Name}} {{.Ret.Type}} {{- end}} @@ -45,18 +35,8 @@ func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ({{.Ret.De {{if eq .Cmd ":many"}} {{range .Comments}}//{{.}} {{end -}} -{{- if $.EmitMethodsWithDBArgument -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) { -{{- else -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) { -{{- end -}} - {{- if $.EmitPreparedQueries}} - rows, err := q.query(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}}) - {{- else if $.EmitMethodsWithDBArgument}} - rows, err := db.QueryContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- else}} - rows, err := q.db.QueryContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- end}} +func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) { + {{- template "queryCodeStdExec" . }} if err != nil { return nil, err } @@ -86,18 +66,8 @@ func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ([]{{.Ret. {{if eq .Cmd ":exec"}} {{range .Comments}}//{{.}} {{end -}} -{{- if $.EmitMethodsWithDBArgument -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) error { -{{- else -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) error { -{{- end -}} - {{- if $.EmitPreparedQueries}} - _, err := q.exec(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}}) - {{- else if $.EmitMethodsWithDBArgument}} - _, err := db.ExecContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- else}} - _, err := q.db.ExecContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- end}} +func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) error { + {{- template "queryCodeStdExec" . }} return err } {{end}} @@ -105,18 +75,8 @@ func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) error { {{if eq .Cmd ":execrows"}} {{range .Comments}}//{{.}} {{end -}} -{{- if $.EmitMethodsWithDBArgument -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (int64, error) { -{{- else -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (int64, error) { -{{- end -}} - {{- if $.EmitPreparedQueries}} - result, err := q.exec(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}}) - {{- else if $.EmitMethodsWithDBArgument}} - result, err := db.ExecContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- else}} - result, err := q.db.ExecContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- end}} +func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) (int64, error) { + {{- template "queryCodeStdExec" . }} if err != nil { return 0, err } @@ -149,21 +109,53 @@ func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (int64, er {{if eq .Cmd ":execresult"}} {{range .Comments}}//{{.}} {{end -}} -{{- if $.EmitMethodsWithDBArgument -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (sql.Result, error) { -{{- else -}} -func (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (sql.Result, error) { -{{- end -}} - {{- if $.EmitPreparedQueries}} - return q.exec(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}}) - {{- else if $.EmitMethodsWithDBArgument}} - return db.ExecContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- else}} - return q.db.ExecContext(ctx, {{.ConstantName}}, {{.Arg.Params}}) - {{- end}} +func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) (sql.Result, error) { + {{- template "queryCodeStdExec" . }} } {{end}} {{end}} {{end}} {{end}} + +{{define "queryCodeStdExec"}} + {{- if .Arg.HasSqlcSlices }} + sql := {{.ConstantName}} + var queryParams []interface{} + {{- if .Arg.Struct }} + {{- $arg := .Arg }} + {{- range .Arg.Struct.Fields }} + {{- if .HasSqlcSlice }} + if len({{$arg.Name}}.{{.Name}}) > 0 { + for _, v := range {{$arg.Name}}.{{.Name}} { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:{{.Column.Name}}*/?", strings.Repeat(",?", len({{$arg.Name}}.{{.Name}}))[1:], 1) + } else { + sql = strings.Replace(sql, "/*SLICE:{{.Column.Name}}*/?", "NULL", 1) + } + {{- else }} + queryParams = append(queryParams, {{$arg.Name}}.{{.Name}}) + {{- end }} + {{- end }} + {{- else }} + {{- /* Single argument parameter to this goroutine (they are not packed + in a struct), because .Arg.HasSqlcSlices further up above was true, + this section is 100% a slice (impossible to get here otherwise). + */}} + if len({{.Arg.Name}}) > 0 { + for _, v := range {{.Arg.Name}} { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:{{.Arg.Column.Name}}*/?", strings.Repeat(",?", len({{.Arg.Name}}))[1:], 1) + } else { + sql = strings.Replace(sql, "/*SLICE:{{.Arg.Column.Name}}*/?", "NULL", 1) + } + {{- end }} + {{ queryRetval . }} {{ queryMethod . }}(ctx, sql, queryParams...) + {{- else if emitPreparedQueries }} + {{- queryRetval . }} {{ queryMethod . }}(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}}) + {{- else}} + {{- queryRetval . }} {{ queryMethod . }}(ctx, {{.ConstantName}}, {{.Arg.Params}}) + {{- end -}} +{{end}} diff --git a/internal/compiler/parse.go b/internal/compiler/parse.go index 0cc76b0728..a20e10d254 100644 --- a/internal/compiler/parse.go +++ b/internal/compiler/parse.go @@ -64,6 +64,9 @@ func (c *Compiler) parseQuery(stmt ast.Node, src string, o opts.Parser) (*Query, if err := validate.FuncCall(c.catalog, c.combo, raw); err != nil { return nil, err } + if err := validate.In(c.catalog, raw); err != nil { + return nil, err + } name, cmd, err := metadata.Parse(strings.TrimSpace(rawSQL), c.parser.CommentSyntax()) if err != nil { return nil, err @@ -102,7 +105,6 @@ func (c *Compiler) parseQuery(stmt ast.Node, src string, o opts.Parser) (*Query, return nil, err } edits = append(edits, expandEdits...) - expanded, err := source.Mutate(rawSQL, edits) if err != nil { return nil, err diff --git a/internal/compiler/query.go b/internal/compiler/query.go index e7395aab91..a242510b7c 100644 --- a/internal/compiler/query.go +++ b/internal/compiler/query.go @@ -30,6 +30,8 @@ type Column struct { TableAlias string Type *ast.TypeName + IsSqlcSlice bool // is this sqlc.slice() + skipTableRequiredCheck bool } diff --git a/internal/compiler/resolve.go b/internal/compiler/resolve.go index 8f5be2c3c4..f9d2944658 100644 --- a/internal/compiler/resolve.go +++ b/internal/compiler/resolve.go @@ -537,6 +537,7 @@ func (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.RangeVar, IsArray: c.IsArray, Table: table, IsNamedParam: isNamed, + IsSqlcSlice: p.IsSqlcSlice(), }, }) } diff --git a/internal/endtoend/testdata/codegen_json/gen/codegen.json b/internal/endtoend/testdata/codegen_json/gen/codegen.json index 4018d68a4b..91b0a2a36b 100644 --- a/internal/endtoend/testdata/codegen_json/gen/codegen.json +++ b/internal/endtoend/testdata/codegen_json/gen/codegen.json @@ -80,7 +80,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -101,7 +102,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -122,7 +124,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -168,7 +171,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -189,7 +193,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -210,7 +215,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -231,7 +237,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -252,7 +259,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -273,7 +281,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "aggfnoid", @@ -294,7 +303,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggkind", @@ -315,7 +325,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "aggnumdirectargs", @@ -336,7 +347,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "aggtransfn", @@ -357,7 +369,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggfinalfn", @@ -378,7 +391,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggcombinefn", @@ -399,7 +413,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggserialfn", @@ -420,7 +435,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggdeserialfn", @@ -441,7 +457,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggmtransfn", @@ -462,7 +479,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggminvtransfn", @@ -483,7 +501,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggmfinalfn", @@ -504,7 +523,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggfinalextra", @@ -525,7 +545,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "aggmfinalextra", @@ -546,7 +567,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "aggfinalmodify", @@ -567,7 +589,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "aggmfinalmodify", @@ -588,7 +611,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "aggsortop", @@ -609,7 +633,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "aggtranstype", @@ -630,7 +655,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "aggtransspace", @@ -651,7 +677,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "aggmtranstype", @@ -672,7 +699,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "aggmtransspace", @@ -693,7 +721,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "agginitval", @@ -714,7 +743,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "aggminitval", @@ -735,7 +765,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -766,7 +797,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -787,7 +819,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -808,7 +841,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -829,7 +863,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -850,7 +885,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -871,7 +907,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -892,7 +929,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amname", @@ -913,7 +951,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "amhandler", @@ -934,7 +973,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "amtype", @@ -955,7 +995,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -986,7 +1027,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1007,7 +1049,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1028,7 +1071,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1049,7 +1093,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1070,7 +1115,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1091,7 +1137,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -1112,7 +1159,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopfamily", @@ -1133,7 +1181,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amoplefttype", @@ -1154,7 +1203,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amoprighttype", @@ -1175,7 +1225,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopstrategy", @@ -1196,7 +1247,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "amoppurpose", @@ -1217,7 +1269,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "amopopr", @@ -1238,7 +1291,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopmethod", @@ -1259,7 +1313,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopsortfamily", @@ -1280,7 +1335,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -1311,7 +1367,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1332,7 +1389,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1353,7 +1411,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1374,7 +1433,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1395,7 +1455,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1416,7 +1477,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -1437,7 +1499,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amprocfamily", @@ -1458,7 +1521,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amproclefttype", @@ -1479,7 +1543,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amprocrighttype", @@ -1500,7 +1565,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amprocnum", @@ -1521,7 +1587,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "amproc", @@ -1542,7 +1609,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -1573,7 +1641,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1594,7 +1663,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1615,7 +1685,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1636,7 +1707,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1657,7 +1729,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1678,7 +1751,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -1699,7 +1773,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "adrelid", @@ -1720,7 +1795,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "adnum", @@ -1741,7 +1817,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "adbin", @@ -1762,7 +1839,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -1793,7 +1871,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1814,7 +1893,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1835,7 +1915,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1856,7 +1937,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1877,7 +1959,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1898,7 +1981,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "attrelid", @@ -1919,7 +2003,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "attname", @@ -1940,7 +2025,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "atttypid", @@ -1961,7 +2047,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "attstattarget", @@ -1982,7 +2069,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attlen", @@ -2003,7 +2091,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "attnum", @@ -2024,7 +2113,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "attndims", @@ -2045,7 +2135,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attcacheoff", @@ -2066,7 +2157,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "atttypmod", @@ -2087,7 +2179,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attbyval", @@ -2108,7 +2201,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attalign", @@ -2129,7 +2223,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attstorage", @@ -2150,7 +2245,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attcompression", @@ -2171,7 +2267,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attnotnull", @@ -2192,7 +2289,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "atthasdef", @@ -2213,7 +2311,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "atthasmissing", @@ -2234,7 +2333,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attidentity", @@ -2255,7 +2355,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attgenerated", @@ -2276,7 +2377,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attisdropped", @@ -2297,7 +2399,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attislocal", @@ -2318,7 +2421,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attinhcount", @@ -2339,7 +2443,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attcollation", @@ -2360,7 +2465,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "attacl", @@ -2381,7 +2487,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "attoptions", @@ -2402,7 +2509,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "attfdwoptions", @@ -2423,7 +2531,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "attmissingval", @@ -2444,7 +2553,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -2475,7 +2585,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -2496,7 +2607,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -2517,7 +2629,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -2538,7 +2651,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -2559,7 +2673,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -2580,7 +2695,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "roleid", @@ -2601,7 +2717,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "member", @@ -2622,7 +2739,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "grantor", @@ -2643,7 +2761,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "admin_option", @@ -2664,7 +2783,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -2695,7 +2815,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -2716,7 +2837,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -2737,7 +2859,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -2758,7 +2881,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -2779,7 +2903,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -2800,7 +2925,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -2821,7 +2947,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rolname", @@ -2842,7 +2969,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "rolsuper", @@ -2863,7 +2991,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolinherit", @@ -2884,7 +3013,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreaterole", @@ -2905,7 +3035,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreatedb", @@ -2926,7 +3057,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcanlogin", @@ -2947,7 +3079,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolreplication", @@ -2968,7 +3101,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolbypassrls", @@ -2989,7 +3123,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolconnlimit", @@ -3010,7 +3145,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "rolpassword", @@ -3031,7 +3167,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "rolvaliduntil", @@ -3052,7 +3189,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3083,7 +3221,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "version", @@ -3104,7 +3243,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "installed", @@ -3125,7 +3265,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "superuser", @@ -3146,7 +3287,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "trusted", @@ -3167,7 +3309,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relocatable", @@ -3188,7 +3331,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "schema", @@ -3209,7 +3353,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "requires", @@ -3230,7 +3375,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "comment", @@ -3251,7 +3397,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3282,7 +3429,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "default_version", @@ -3303,7 +3451,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "installed_version", @@ -3324,7 +3473,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "comment", @@ -3345,7 +3495,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3376,7 +3527,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "ident", @@ -3397,7 +3549,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "parent", @@ -3418,7 +3571,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "level", @@ -3439,7 +3593,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "total_bytes", @@ -3460,7 +3615,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_nblocks", @@ -3481,7 +3637,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "free_bytes", @@ -3502,7 +3659,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "free_chunks", @@ -3523,7 +3681,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "used_bytes", @@ -3544,7 +3703,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3575,7 +3735,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -3596,7 +3757,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -3617,7 +3779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -3638,7 +3801,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -3659,7 +3823,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -3680,7 +3845,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -3701,7 +3867,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "castsource", @@ -3722,7 +3889,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "casttarget", @@ -3743,7 +3911,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "castfunc", @@ -3764,7 +3933,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "castcontext", @@ -3785,7 +3955,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "castmethod", @@ -3806,7 +3977,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3837,7 +4009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -3858,7 +4031,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -3879,7 +4053,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -3900,7 +4075,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -3921,7 +4097,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -3942,7 +4119,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -3963,7 +4141,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -3984,7 +4163,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relnamespace", @@ -4005,7 +4185,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "reltype", @@ -4026,7 +4207,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "reloftype", @@ -4047,7 +4229,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relowner", @@ -4068,7 +4251,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relam", @@ -4089,7 +4273,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relfilenode", @@ -4110,7 +4295,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "reltablespace", @@ -4131,7 +4317,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relpages", @@ -4152,7 +4339,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "reltuples", @@ -4173,7 +4361,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "relallvisible", @@ -4194,7 +4383,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "reltoastrelid", @@ -4215,7 +4405,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relhasindex", @@ -4236,7 +4427,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relisshared", @@ -4257,7 +4449,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relpersistence", @@ -4278,7 +4471,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "relkind", @@ -4299,7 +4493,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "relnatts", @@ -4320,7 +4515,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "relchecks", @@ -4341,7 +4537,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "relhasrules", @@ -4362,7 +4559,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relhastriggers", @@ -4383,7 +4581,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relhassubclass", @@ -4404,7 +4603,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relrowsecurity", @@ -4425,7 +4625,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relforcerowsecurity", @@ -4446,7 +4647,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relispopulated", @@ -4467,7 +4669,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relreplident", @@ -4488,7 +4691,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "relispartition", @@ -4509,7 +4713,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relrewrite", @@ -4530,7 +4735,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relfrozenxid", @@ -4551,7 +4757,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "relminmxid", @@ -4572,7 +4779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "relacl", @@ -4593,7 +4801,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "reloptions", @@ -4614,7 +4823,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "relpartbound", @@ -4635,7 +4845,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -4666,7 +4877,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -4687,7 +4899,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -4708,7 +4921,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -4729,7 +4943,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -4750,7 +4965,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -4771,7 +4987,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -4792,7 +5009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "collname", @@ -4813,7 +5031,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "collnamespace", @@ -4834,7 +5053,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "collowner", @@ -4855,7 +5075,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "collprovider", @@ -4876,7 +5097,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "collisdeterministic", @@ -4897,7 +5119,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "collencoding", @@ -4918,7 +5141,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "collcollate", @@ -4939,7 +5163,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "collctype", @@ -4960,7 +5185,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "colliculocale", @@ -4981,7 +5207,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "collversion", @@ -5002,7 +5229,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -5033,7 +5261,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "setting", @@ -5054,7 +5283,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -5085,7 +5315,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -5106,7 +5337,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -5127,7 +5359,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -5148,7 +5381,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -5169,7 +5403,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -5190,7 +5425,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -5211,7 +5447,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conname", @@ -5232,7 +5469,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "connamespace", @@ -5253,7 +5491,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "contype", @@ -5274,7 +5513,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "condeferrable", @@ -5295,7 +5535,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "condeferred", @@ -5316,7 +5557,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "convalidated", @@ -5337,7 +5579,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "conrelid", @@ -5358,7 +5601,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "contypid", @@ -5379,7 +5623,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conindid", @@ -5400,7 +5645,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conparentid", @@ -5421,7 +5667,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "confrelid", @@ -5442,7 +5689,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "confupdtype", @@ -5463,7 +5711,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "confdeltype", @@ -5484,7 +5733,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "confmatchtype", @@ -5505,7 +5755,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "conislocal", @@ -5526,7 +5777,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "coninhcount", @@ -5547,7 +5799,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "connoinherit", @@ -5568,7 +5821,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "conkey", @@ -5589,7 +5843,8 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false }, { "name": "confkey", @@ -5610,7 +5865,8 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false }, { "name": "conpfeqop", @@ -5631,7 +5887,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "conppeqop", @@ -5652,7 +5909,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "conffeqop", @@ -5673,7 +5931,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "confdelsetcols", @@ -5694,7 +5953,8 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false }, { "name": "conexclop", @@ -5715,7 +5975,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "conbin", @@ -5736,7 +5997,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -5767,7 +6029,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -5788,7 +6051,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -5809,7 +6073,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -5830,7 +6095,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -5851,7 +6117,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -5872,7 +6139,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -5893,7 +6161,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conname", @@ -5914,7 +6183,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "connamespace", @@ -5935,7 +6205,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conowner", @@ -5956,7 +6227,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conforencoding", @@ -5977,7 +6249,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "contoencoding", @@ -5998,7 +6271,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "conproc", @@ -6019,7 +6293,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "condefault", @@ -6040,7 +6315,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6071,7 +6347,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "statement", @@ -6092,7 +6369,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "is_holdable", @@ -6113,7 +6391,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "is_binary", @@ -6134,7 +6413,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "is_scrollable", @@ -6155,7 +6435,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "creation_time", @@ -6176,7 +6457,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6207,7 +6489,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -6228,7 +6511,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -6249,7 +6533,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -6270,7 +6555,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -6291,7 +6577,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -6312,7 +6599,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -6333,7 +6621,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -6354,7 +6643,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "datdba", @@ -6375,7 +6665,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "encoding", @@ -6396,7 +6687,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datlocprovider", @@ -6417,7 +6709,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "datistemplate", @@ -6438,7 +6731,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "datallowconn", @@ -6459,7 +6753,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "datconnlimit", @@ -6480,7 +6775,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datfrozenxid", @@ -6501,7 +6797,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "datminmxid", @@ -6522,7 +6819,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "dattablespace", @@ -6543,7 +6841,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datcollate", @@ -6564,7 +6863,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datctype", @@ -6585,7 +6885,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "daticulocale", @@ -6606,7 +6907,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datcollversion", @@ -6627,7 +6929,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datacl", @@ -6648,7 +6951,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6679,7 +6983,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -6700,7 +7005,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -6721,7 +7027,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -6742,7 +7049,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -6763,7 +7071,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -6784,7 +7093,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "setdatabase", @@ -6805,7 +7115,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "setrole", @@ -6826,7 +7137,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "setconfig", @@ -6847,7 +7159,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6878,7 +7191,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -6899,7 +7213,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -6920,7 +7235,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -6941,7 +7257,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -6962,7 +7279,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -6983,7 +7301,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -7004,7 +7323,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "defaclrole", @@ -7025,7 +7345,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "defaclnamespace", @@ -7046,7 +7367,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "defaclobjtype", @@ -7067,7 +7389,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "defaclacl", @@ -7088,7 +7411,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7119,7 +7443,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7140,7 +7465,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7161,7 +7487,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7182,7 +7509,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7203,7 +7531,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7224,7 +7553,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "classid", @@ -7245,7 +7575,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objid", @@ -7266,7 +7597,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -7287,7 +7619,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "refclassid", @@ -7308,7 +7641,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "refobjid", @@ -7329,7 +7663,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "refobjsubid", @@ -7350,7 +7685,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "deptype", @@ -7371,7 +7707,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7402,7 +7739,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7423,7 +7761,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7444,7 +7783,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7465,7 +7805,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7486,7 +7827,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7507,7 +7849,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -7528,7 +7871,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -7549,7 +7893,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -7570,7 +7915,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "description", @@ -7591,7 +7937,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7622,7 +7969,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7643,7 +7991,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7664,7 +8013,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7685,7 +8035,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7706,7 +8057,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7727,7 +8079,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -7748,7 +8101,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "enumtypid", @@ -7769,7 +8123,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "enumsortorder", @@ -7790,7 +8145,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "enumlabel", @@ -7811,7 +8167,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7842,7 +8199,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7863,7 +8221,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7884,7 +8243,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7905,7 +8265,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7926,7 +8287,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7947,7 +8309,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -7968,7 +8331,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "evtname", @@ -7989,7 +8353,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "evtevent", @@ -8010,7 +8375,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "evtowner", @@ -8031,7 +8397,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "evtfoid", @@ -8052,7 +8419,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "evtenabled", @@ -8073,7 +8441,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "evttags", @@ -8094,7 +8463,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8125,7 +8495,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -8146,7 +8517,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -8167,7 +8539,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -8188,7 +8561,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -8209,7 +8583,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -8230,7 +8605,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -8251,7 +8627,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "extname", @@ -8272,7 +8649,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "extowner", @@ -8293,7 +8671,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "extnamespace", @@ -8314,7 +8693,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "extrelocatable", @@ -8335,7 +8715,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "extversion", @@ -8356,7 +8737,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "extconfig", @@ -8377,7 +8759,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "extcondition", @@ -8398,7 +8781,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8429,7 +8813,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sourceline", @@ -8450,7 +8835,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "seqno", @@ -8471,7 +8857,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -8492,7 +8879,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "setting", @@ -8513,7 +8901,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "applied", @@ -8534,7 +8923,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "error", @@ -8555,7 +8945,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8586,7 +8977,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -8607,7 +8999,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -8628,7 +9021,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -8649,7 +9043,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -8670,7 +9065,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -8691,7 +9087,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -8712,7 +9109,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwname", @@ -8733,7 +9131,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "fdwowner", @@ -8754,7 +9153,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwhandler", @@ -8775,7 +9175,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwvalidator", @@ -8796,7 +9197,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwacl", @@ -8817,7 +9219,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "fdwoptions", @@ -8838,7 +9241,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8869,7 +9273,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -8890,7 +9295,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -8911,7 +9317,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -8932,7 +9339,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -8953,7 +9361,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -8974,7 +9383,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -8995,7 +9405,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvname", @@ -9016,7 +9427,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "srvowner", @@ -9037,7 +9449,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvfdw", @@ -9058,7 +9471,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvtype", @@ -9079,7 +9493,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "srvversion", @@ -9100,7 +9515,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "srvacl", @@ -9121,7 +9537,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "srvoptions", @@ -9142,7 +9559,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9173,7 +9591,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -9194,7 +9613,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -9215,7 +9635,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -9236,7 +9657,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -9257,7 +9679,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -9278,7 +9701,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "ftrelid", @@ -9299,7 +9723,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "ftserver", @@ -9320,7 +9745,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "ftoptions", @@ -9341,7 +9767,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9372,7 +9799,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "grosysid", @@ -9393,7 +9821,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "grolist", @@ -9414,7 +9843,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9445,7 +9875,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "type", @@ -9466,7 +9897,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -9487,7 +9919,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "user_name", @@ -9508,7 +9941,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "address", @@ -9529,7 +9963,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "netmask", @@ -9550,7 +9985,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "auth_method", @@ -9571,7 +10007,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "options", @@ -9592,7 +10029,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "error", @@ -9613,7 +10051,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9644,7 +10083,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "map_name", @@ -9665,7 +10105,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sys_name", @@ -9686,7 +10127,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "pg_username", @@ -9707,7 +10149,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "error", @@ -9728,7 +10171,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9759,7 +10203,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -9780,7 +10225,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -9801,7 +10247,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -9822,7 +10269,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -9843,7 +10291,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -9864,7 +10313,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -9885,7 +10335,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indrelid", @@ -9906,7 +10357,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indnatts", @@ -9927,7 +10379,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "indnkeyatts", @@ -9948,7 +10401,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "indisunique", @@ -9969,7 +10423,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indnullsnotdistinct", @@ -9990,7 +10445,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisprimary", @@ -10011,7 +10467,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisexclusion", @@ -10032,7 +10489,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indimmediate", @@ -10053,7 +10511,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisclustered", @@ -10074,7 +10533,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisvalid", @@ -10095,7 +10555,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indcheckxmin", @@ -10116,7 +10577,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisready", @@ -10137,7 +10599,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indislive", @@ -10158,7 +10621,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisreplident", @@ -10179,7 +10643,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indkey", @@ -10200,7 +10665,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "indcollation", @@ -10221,7 +10687,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "indclass", @@ -10242,7 +10709,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "indoption", @@ -10263,7 +10731,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "indexprs", @@ -10284,7 +10753,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "indpred", @@ -10305,7 +10775,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10336,7 +10807,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -10357,7 +10829,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexname", @@ -10378,7 +10851,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablespace", @@ -10399,7 +10873,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexdef", @@ -10420,7 +10895,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10451,7 +10927,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -10472,7 +10949,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -10493,7 +10971,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -10514,7 +10993,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -10535,7 +11015,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -10556,7 +11037,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "inhrelid", @@ -10577,7 +11059,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "inhparent", @@ -10598,7 +11081,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "inhseqno", @@ -10619,7 +11103,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "inhdetachpending", @@ -10640,7 +11125,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10671,7 +11157,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -10692,7 +11179,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -10713,7 +11201,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -10734,7 +11223,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -10755,7 +11245,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -10776,7 +11267,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -10797,7 +11289,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -10818,7 +11311,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -10839,7 +11333,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "privtype", @@ -10860,7 +11355,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "initprivs", @@ -10881,7 +11377,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10912,7 +11409,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -10933,7 +11431,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -10954,7 +11453,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -10975,7 +11475,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -10996,7 +11497,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -11017,7 +11519,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -11038,7 +11541,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanname", @@ -11059,7 +11563,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "lanowner", @@ -11080,7 +11585,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanispl", @@ -11101,7 +11607,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "lanpltrusted", @@ -11122,7 +11629,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "lanplcallfoid", @@ -11143,7 +11651,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "laninline", @@ -11164,7 +11673,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanvalidator", @@ -11185,7 +11695,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanacl", @@ -11206,7 +11717,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11237,7 +11749,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -11258,7 +11771,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -11279,7 +11793,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -11300,7 +11815,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -11321,7 +11837,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -11342,7 +11859,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "loid", @@ -11363,7 +11881,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pageno", @@ -11384,7 +11903,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "data", @@ -11405,7 +11925,8 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11436,7 +11957,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -11457,7 +11979,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -11478,7 +12001,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -11499,7 +12023,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -11520,7 +12045,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -11541,7 +12067,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -11562,7 +12089,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lomowner", @@ -11583,7 +12111,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lomacl", @@ -11604,7 +12133,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11635,7 +12165,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -11656,7 +12187,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relation", @@ -11677,7 +12209,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "page", @@ -11698,7 +12231,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "tuple", @@ -11719,7 +12253,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "virtualxid", @@ -11740,7 +12275,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "transactionid", @@ -11761,7 +12297,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "classid", @@ -11782,7 +12319,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objid", @@ -11803,7 +12341,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -11824,7 +12363,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "virtualtransaction", @@ -11845,7 +12385,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "pid", @@ -11866,7 +12407,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "mode", @@ -11887,7 +12429,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "granted", @@ -11908,7 +12451,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "fastpath", @@ -11929,7 +12473,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "waitstart", @@ -11950,7 +12495,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11981,7 +12527,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "matviewname", @@ -12002,7 +12549,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "matviewowner", @@ -12023,7 +12571,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablespace", @@ -12044,7 +12593,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "hasindexes", @@ -12065,7 +12615,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "ispopulated", @@ -12086,7 +12637,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "definition", @@ -12107,7 +12659,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -12138,7 +12691,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -12159,7 +12713,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -12180,7 +12735,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -12201,7 +12757,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -12222,7 +12779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -12243,7 +12801,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -12264,7 +12823,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "nspname", @@ -12285,7 +12845,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "nspowner", @@ -12306,7 +12867,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "nspacl", @@ -12327,7 +12889,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -12358,7 +12921,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -12379,7 +12943,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -12400,7 +12965,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -12421,7 +12987,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -12442,7 +13009,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -12463,7 +13031,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -12484,7 +13053,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcmethod", @@ -12505,7 +13075,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcname", @@ -12526,7 +13097,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "opcnamespace", @@ -12547,7 +13119,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcowner", @@ -12568,7 +13141,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcfamily", @@ -12589,7 +13163,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcintype", @@ -12610,7 +13185,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcdefault", @@ -12631,7 +13207,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "opckeytype", @@ -12652,7 +13229,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -12683,7 +13261,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -12704,7 +13283,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -12725,7 +13305,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -12746,7 +13327,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -12767,7 +13349,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -12788,7 +13371,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -12809,7 +13393,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprname", @@ -12830,7 +13415,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "oprnamespace", @@ -12851,7 +13437,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprowner", @@ -12872,7 +13459,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprkind", @@ -12893,7 +13481,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "oprcanmerge", @@ -12914,7 +13503,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "oprcanhash", @@ -12935,7 +13525,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "oprleft", @@ -12956,7 +13547,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprright", @@ -12977,7 +13569,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprresult", @@ -12998,7 +13591,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprcom", @@ -13019,7 +13613,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprnegate", @@ -13040,7 +13635,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprcode", @@ -13061,7 +13657,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "oprrest", @@ -13082,7 +13679,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "oprjoin", @@ -13103,7 +13701,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13134,7 +13733,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -13155,7 +13755,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -13176,7 +13777,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -13197,7 +13799,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -13218,7 +13821,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -13239,7 +13843,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -13260,7 +13865,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opfmethod", @@ -13281,7 +13887,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opfname", @@ -13302,7 +13909,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "opfnamespace", @@ -13323,7 +13931,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opfowner", @@ -13344,7 +13953,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13375,7 +13985,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -13396,7 +14007,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -13417,7 +14029,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -13438,7 +14051,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -13459,7 +14073,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -13480,7 +14095,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -13501,7 +14117,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "parname", @@ -13522,7 +14139,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "paracl", @@ -13543,7 +14161,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13574,7 +14193,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -13595,7 +14215,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -13616,7 +14237,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -13637,7 +14259,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -13658,7 +14281,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -13679,7 +14303,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "partrelid", @@ -13700,7 +14325,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "partstrat", @@ -13721,7 +14347,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "partnatts", @@ -13742,7 +14369,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "partdefid", @@ -13763,7 +14391,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "partattrs", @@ -13784,7 +14413,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "partclass", @@ -13805,7 +14435,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "partcollation", @@ -13826,7 +14457,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "partexprs", @@ -13847,7 +14479,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13878,7 +14511,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -13899,7 +14533,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "policyname", @@ -13920,7 +14555,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "permissive", @@ -13941,7 +14577,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "roles", @@ -13962,7 +14599,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "cmd", @@ -13983,7 +14621,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "qual", @@ -14004,7 +14643,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "with_check", @@ -14025,7 +14665,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14056,7 +14697,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -14077,7 +14719,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -14098,7 +14741,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -14119,7 +14763,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -14140,7 +14785,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -14161,7 +14807,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -14182,7 +14829,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "polname", @@ -14203,7 +14851,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "polrelid", @@ -14224,7 +14873,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "polcmd", @@ -14245,7 +14895,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "polpermissive", @@ -14266,7 +14917,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "polroles", @@ -14287,7 +14939,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "polqual", @@ -14308,7 +14961,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "polwithcheck", @@ -14329,7 +14983,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14360,7 +15015,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "statement", @@ -14381,7 +15037,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "prepare_time", @@ -14402,7 +15059,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_types", @@ -14423,7 +15081,8 @@ "catalog": "", "schema": "", "name": "_regtype" - } + }, + "is_sqlc_slice": false }, { "name": "from_sql", @@ -14444,7 +15103,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "generic_plans", @@ -14465,7 +15125,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "custom_plans", @@ -14486,7 +15147,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14517,7 +15179,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "gid", @@ -14538,7 +15201,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "prepared", @@ -14559,7 +15223,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "owner", @@ -14580,7 +15245,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -14601,7 +15267,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14632,7 +15299,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -14653,7 +15321,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -14674,7 +15343,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -14695,7 +15365,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -14716,7 +15387,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -14737,7 +15409,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -14758,7 +15431,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "proname", @@ -14779,7 +15453,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pronamespace", @@ -14800,7 +15475,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "proowner", @@ -14821,7 +15497,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prolang", @@ -14842,7 +15519,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "procost", @@ -14863,7 +15541,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "prorows", @@ -14884,7 +15563,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "provariadic", @@ -14905,7 +15585,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prosupport", @@ -14926,7 +15607,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prokind", @@ -14947,7 +15629,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "prosecdef", @@ -14968,7 +15651,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "proleakproof", @@ -14989,7 +15673,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "proisstrict", @@ -15010,7 +15695,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "proretset", @@ -15031,7 +15717,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "provolatile", @@ -15052,7 +15739,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "proparallel", @@ -15073,7 +15761,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "pronargs", @@ -15094,7 +15783,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "pronargdefaults", @@ -15115,7 +15805,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "prorettype", @@ -15136,7 +15827,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "proargtypes", @@ -15157,7 +15849,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "proallargtypes", @@ -15178,7 +15871,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "proargmodes", @@ -15199,7 +15893,8 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false }, { "name": "proargnames", @@ -15220,7 +15915,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "proargdefaults", @@ -15241,7 +15937,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "protrftypes", @@ -15262,7 +15959,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "prosrc", @@ -15283,7 +15981,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "probin", @@ -15304,7 +16003,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "prosqlbody", @@ -15325,7 +16025,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "proconfig", @@ -15346,7 +16047,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "proacl", @@ -15367,7 +16069,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -15398,7 +16101,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -15419,7 +16123,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -15440,7 +16145,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -15461,7 +16167,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -15482,7 +16189,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -15503,7 +16211,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -15524,7 +16233,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pubname", @@ -15545,7 +16255,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pubowner", @@ -15566,7 +16277,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "puballtables", @@ -15587,7 +16299,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubinsert", @@ -15608,7 +16321,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubupdate", @@ -15629,7 +16343,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubdelete", @@ -15650,7 +16365,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubtruncate", @@ -15671,7 +16387,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubviaroot", @@ -15692,7 +16409,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -15723,7 +16441,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -15744,7 +16463,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -15765,7 +16485,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -15786,7 +16507,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -15807,7 +16529,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -15828,7 +16551,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -15849,7 +16573,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pnpubid", @@ -15870,7 +16595,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pnnspid", @@ -15891,7 +16617,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -15922,7 +16649,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -15943,7 +16671,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -15964,7 +16693,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -15985,7 +16715,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -16006,7 +16737,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -16027,7 +16759,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -16048,7 +16781,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prpubid", @@ -16069,7 +16803,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prrelid", @@ -16090,7 +16825,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prqual", @@ -16111,7 +16847,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "prattrs", @@ -16132,7 +16869,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16163,7 +16901,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -16184,7 +16923,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -16205,7 +16945,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attnames", @@ -16226,7 +16967,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "rowfilter", @@ -16247,7 +16989,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16278,7 +17021,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -16299,7 +17043,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -16320,7 +17065,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -16341,7 +17087,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -16362,7 +17109,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -16383,7 +17131,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "rngtypid", @@ -16404,7 +17153,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngsubtype", @@ -16425,7 +17175,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngmultitypid", @@ -16446,7 +17197,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngcollation", @@ -16467,7 +17219,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngsubopc", @@ -16488,7 +17241,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngcanonical", @@ -16509,7 +17263,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "rngsubdiff", @@ -16530,7 +17285,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16561,7 +17317,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -16582,7 +17339,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -16603,7 +17361,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -16624,7 +17383,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -16645,7 +17405,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -16666,7 +17427,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "roident", @@ -16687,7 +17449,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "roname", @@ -16708,7 +17471,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16739,7 +17503,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "external_id", @@ -16760,7 +17525,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "remote_lsn", @@ -16781,7 +17547,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "local_lsn", @@ -16802,7 +17569,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16833,7 +17601,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "plugin", @@ -16854,7 +17623,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "slot_type", @@ -16875,7 +17645,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datoid", @@ -16896,7 +17667,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -16917,7 +17689,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "temporary", @@ -16938,7 +17711,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "active", @@ -16959,7 +17733,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "active_pid", @@ -16980,7 +17755,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -17001,7 +17777,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "catalog_xmin", @@ -17022,7 +17799,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "restart_lsn", @@ -17043,7 +17821,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "confirmed_flush_lsn", @@ -17064,7 +17843,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "wal_status", @@ -17085,7 +17865,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "safe_wal_size", @@ -17106,7 +17887,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "two_phase", @@ -17127,7 +17909,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17158,7 +17941,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -17179,7 +17963,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -17200,7 +17985,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -17221,7 +18007,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -17242,7 +18029,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -17263,7 +18051,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -17284,7 +18073,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rulename", @@ -17305,7 +18095,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "ev_class", @@ -17326,7 +18117,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "ev_type", @@ -17347,7 +18139,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "ev_enabled", @@ -17368,7 +18161,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "is_instead", @@ -17389,7 +18183,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "ev_qual", @@ -17410,7 +18205,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "ev_action", @@ -17431,7 +18227,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17462,7 +18259,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "rolsuper", @@ -17483,7 +18281,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolinherit", @@ -17504,7 +18303,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreaterole", @@ -17525,7 +18325,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreatedb", @@ -17546,7 +18347,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcanlogin", @@ -17567,7 +18369,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolreplication", @@ -17588,7 +18391,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolconnlimit", @@ -17609,7 +18413,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "rolpassword", @@ -17630,7 +18435,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "rolvaliduntil", @@ -17651,7 +18457,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "rolbypassrls", @@ -17672,7 +18479,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolconfig", @@ -17693,7 +18501,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -17714,7 +18523,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17745,7 +18555,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -17766,7 +18577,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "rulename", @@ -17787,7 +18599,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "definition", @@ -17808,7 +18621,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17839,7 +18653,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -17860,7 +18675,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -17881,7 +18697,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -17902,7 +18719,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -17923,7 +18741,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -17944,7 +18763,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -17965,7 +18785,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -17986,7 +18807,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -18007,7 +18829,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "provider", @@ -18028,7 +18851,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "label", @@ -18049,7 +18873,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18080,7 +18905,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -18101,7 +18927,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -18122,7 +18949,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "objtype", @@ -18143,7 +18971,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "objnamespace", @@ -18164,7 +18993,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objname", @@ -18185,7 +19015,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "provider", @@ -18206,7 +19037,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "label", @@ -18227,7 +19059,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18258,7 +19091,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -18279,7 +19113,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -18300,7 +19135,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -18321,7 +19157,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -18342,7 +19179,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -18363,7 +19201,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "seqrelid", @@ -18384,7 +19223,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "seqtypid", @@ -18405,7 +19245,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "seqstart", @@ -18426,7 +19267,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqincrement", @@ -18447,7 +19289,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqmax", @@ -18468,7 +19311,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqmin", @@ -18489,7 +19333,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqcache", @@ -18510,7 +19355,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqcycle", @@ -18531,7 +19377,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18562,7 +19409,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "sequencename", @@ -18583,7 +19431,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "sequenceowner", @@ -18604,7 +19453,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -18625,7 +19475,8 @@ "catalog": "", "schema": "", "name": "regtype" - } + }, + "is_sqlc_slice": false }, { "name": "start_value", @@ -18646,7 +19497,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "min_value", @@ -18667,7 +19519,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "max_value", @@ -18688,7 +19541,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "increment_by", @@ -18709,7 +19563,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "cycle", @@ -18730,7 +19585,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "cache_size", @@ -18751,7 +19607,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_value", @@ -18772,7 +19629,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18803,7 +19661,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "setting", @@ -18824,7 +19683,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "unit", @@ -18845,7 +19705,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "category", @@ -18866,7 +19727,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "short_desc", @@ -18887,7 +19749,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "extra_desc", @@ -18908,7 +19771,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "context", @@ -18929,7 +19793,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "vartype", @@ -18950,7 +19815,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "source", @@ -18971,7 +19837,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "min_val", @@ -18992,7 +19859,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "max_val", @@ -19013,7 +19881,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "enumvals", @@ -19034,7 +19903,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "boot_val", @@ -19055,7 +19925,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "reset_val", @@ -19076,7 +19947,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sourcefile", @@ -19097,7 +19969,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sourceline", @@ -19118,7 +19991,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "pending_restart", @@ -19139,7 +20013,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19170,7 +20045,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -19191,7 +20067,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usecreatedb", @@ -19212,7 +20089,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usesuper", @@ -19233,7 +20111,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "userepl", @@ -19254,7 +20133,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usebypassrls", @@ -19275,7 +20155,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "passwd", @@ -19296,7 +20177,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "valuntil", @@ -19317,7 +20199,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "useconfig", @@ -19338,7 +20221,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19369,7 +20253,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -19390,7 +20275,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -19411,7 +20297,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -19432,7 +20319,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -19453,7 +20341,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -19474,7 +20363,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "dbid", @@ -19495,7 +20385,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classid", @@ -19516,7 +20407,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objid", @@ -19537,7 +20429,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -19558,7 +20451,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "refclassid", @@ -19579,7 +20473,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "refobjid", @@ -19600,7 +20495,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "deptype", @@ -19621,7 +20517,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19652,7 +20549,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -19673,7 +20571,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -19694,7 +20593,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -19715,7 +20615,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -19736,7 +20637,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -19757,7 +20659,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -19778,7 +20681,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -19799,7 +20703,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "description", @@ -19820,7 +20725,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19851,7 +20757,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "off", @@ -19872,7 +20779,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "size", @@ -19893,7 +20801,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "allocated_size", @@ -19914,7 +20823,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19945,7 +20855,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -19966,7 +20877,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -19987,7 +20899,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -20008,7 +20921,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -20029,7 +20943,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -20050,7 +20965,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -20071,7 +20987,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -20092,7 +21009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "provider", @@ -20113,7 +21031,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "label", @@ -20134,7 +21053,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -20165,7 +21085,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -20186,7 +21107,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pid", @@ -20207,7 +21129,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "leader_pid", @@ -20228,7 +21151,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -20249,7 +21173,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usename", @@ -20270,7 +21195,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "application_name", @@ -20291,7 +21217,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_addr", @@ -20312,7 +21239,8 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false }, { "name": "client_hostname", @@ -20333,7 +21261,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_port", @@ -20354,7 +21283,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "backend_start", @@ -20375,7 +21305,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "xact_start", @@ -20396,7 +21327,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "query_start", @@ -20417,7 +21349,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "state_change", @@ -20438,7 +21371,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "wait_event_type", @@ -20459,7 +21393,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "wait_event", @@ -20480,7 +21415,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "state", @@ -20501,7 +21437,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "backend_xid", @@ -20522,7 +21459,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "backend_xmin", @@ -20543,7 +21481,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "query_id", @@ -20564,7 +21503,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "query", @@ -20585,7 +21525,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "backend_type", @@ -20606,7 +21547,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -20637,7 +21579,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -20658,7 +21601,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -20679,7 +21623,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -20700,7 +21645,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -20721,7 +21667,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -20742,7 +21689,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_read", @@ -20763,7 +21711,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -20784,7 +21733,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -20815,7 +21765,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -20836,7 +21787,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -20857,7 +21809,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -20878,7 +21831,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -20899,7 +21853,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -20920,7 +21875,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -20941,7 +21897,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -20962,7 +21919,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -20983,7 +21941,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -21004,7 +21963,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -21025,7 +21985,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_live_tup", @@ -21046,7 +22007,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_dead_tup", @@ -21067,7 +22029,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_mod_since_analyze", @@ -21088,7 +22051,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_ins_since_vacuum", @@ -21109,7 +22073,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_vacuum", @@ -21130,7 +22095,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autovacuum", @@ -21151,7 +22117,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_analyze", @@ -21172,7 +22139,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autoanalyze", @@ -21193,7 +22161,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "vacuum_count", @@ -21214,7 +22183,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autovacuum_count", @@ -21235,7 +22205,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "analyze_count", @@ -21256,7 +22227,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autoanalyze_count", @@ -21277,7 +22249,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -21308,7 +22281,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_archived_wal", @@ -21329,7 +22303,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "last_archived_time", @@ -21350,7 +22325,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "failed_count", @@ -21371,7 +22347,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_failed_wal", @@ -21392,7 +22369,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "last_failed_time", @@ -21413,7 +22391,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -21434,7 +22413,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -21465,7 +22445,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checkpoints_req", @@ -21486,7 +22467,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checkpoint_write_time", @@ -21507,7 +22489,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "checkpoint_sync_time", @@ -21528,7 +22511,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_checkpoint", @@ -21549,7 +22533,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_clean", @@ -21570,7 +22555,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "maxwritten_clean", @@ -21591,7 +22577,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_backend", @@ -21612,7 +22599,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_backend_fsync", @@ -21633,7 +22621,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_alloc", @@ -21654,7 +22643,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -21675,7 +22665,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -21706,7 +22697,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -21727,7 +22719,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "numbackends", @@ -21748,7 +22741,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "xact_commit", @@ -21769,7 +22763,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "xact_rollback", @@ -21790,7 +22785,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -21811,7 +22807,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -21832,7 +22829,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_returned", @@ -21853,7 +22851,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_fetched", @@ -21874,7 +22873,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_inserted", @@ -21895,7 +22895,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_updated", @@ -21916,7 +22917,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_deleted", @@ -21937,7 +22939,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "conflicts", @@ -21958,7 +22961,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "temp_files", @@ -21979,7 +22983,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "temp_bytes", @@ -22000,7 +23005,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "deadlocks", @@ -22021,7 +23027,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checksum_failures", @@ -22042,7 +23049,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checksum_last_failure", @@ -22063,7 +23071,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "blk_read_time", @@ -22084,7 +23093,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "blk_write_time", @@ -22105,7 +23115,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "session_time", @@ -22126,7 +23137,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "active_time", @@ -22147,7 +23159,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "idle_in_transaction_time", @@ -22168,7 +23181,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions", @@ -22189,7 +23203,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions_abandoned", @@ -22210,7 +23225,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions_fatal", @@ -22231,7 +23247,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions_killed", @@ -22252,7 +23269,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -22273,7 +23291,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22304,7 +23323,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -22325,7 +23345,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "confl_tablespace", @@ -22346,7 +23367,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_lock", @@ -22367,7 +23389,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_snapshot", @@ -22388,7 +23411,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_bufferpin", @@ -22409,7 +23433,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_deadlock", @@ -22430,7 +23455,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22461,7 +23487,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "gss_authenticated", @@ -22482,7 +23509,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "principal", @@ -22503,7 +23531,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "encrypted", @@ -22524,7 +23553,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22555,7 +23585,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -22576,7 +23607,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -22597,7 +23629,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -22618,7 +23651,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -22639,7 +23673,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sample_blks_total", @@ -22660,7 +23695,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sample_blks_scanned", @@ -22681,7 +23717,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "ext_stats_total", @@ -22702,7 +23739,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "ext_stats_computed", @@ -22723,7 +23761,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "child_tables_total", @@ -22744,7 +23783,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "child_tables_done", @@ -22765,7 +23805,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "current_child_table_relid", @@ -22786,7 +23827,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22817,7 +23859,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -22838,7 +23881,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "backup_total", @@ -22859,7 +23903,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "backup_streamed", @@ -22880,7 +23925,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tablespaces_total", @@ -22901,7 +23947,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tablespaces_streamed", @@ -22922,7 +23969,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22953,7 +24001,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -22974,7 +24023,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -22995,7 +24045,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23016,7 +24067,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "command", @@ -23037,7 +24089,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -23058,7 +24111,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "cluster_index_relid", @@ -23079,7 +24133,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "heap_tuples_scanned", @@ -23100,7 +24155,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_tuples_written", @@ -23121,7 +24177,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_total", @@ -23142,7 +24199,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_scanned", @@ -23163,7 +24221,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "index_rebuild_count", @@ -23184,7 +24243,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -23215,7 +24275,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -23236,7 +24297,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -23257,7 +24319,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23278,7 +24341,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "command", @@ -23299,7 +24363,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "type", @@ -23320,7 +24385,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bytes_processed", @@ -23341,7 +24407,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "bytes_total", @@ -23362,7 +24429,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_processed", @@ -23383,7 +24451,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_excluded", @@ -23404,7 +24473,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -23435,7 +24505,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -23456,7 +24527,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -23477,7 +24549,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23498,7 +24571,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "index_relid", @@ -23519,7 +24593,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "command", @@ -23540,7 +24615,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -23561,7 +24637,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "lockers_total", @@ -23582,7 +24659,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "lockers_done", @@ -23603,7 +24681,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "current_locker_pid", @@ -23624,7 +24703,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blocks_total", @@ -23645,7 +24725,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blocks_done", @@ -23666,7 +24747,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_total", @@ -23687,7 +24769,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_done", @@ -23708,7 +24791,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "partitions_total", @@ -23729,7 +24813,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "partitions_done", @@ -23750,7 +24835,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -23781,7 +24867,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -23802,7 +24889,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -23823,7 +24911,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23844,7 +24933,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -23865,7 +24955,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_total", @@ -23886,7 +24977,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_scanned", @@ -23907,7 +24999,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_vacuumed", @@ -23928,7 +25021,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "index_vacuum_count", @@ -23949,7 +25043,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "max_dead_tuples", @@ -23970,7 +25065,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "num_dead_tuples", @@ -23991,7 +25087,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24022,7 +25119,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "prefetch", @@ -24043,7 +25141,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "hit", @@ -24064,7 +25163,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_init", @@ -24085,7 +25185,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_new", @@ -24106,7 +25207,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_fpw", @@ -24127,7 +25229,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_rep", @@ -24148,7 +25251,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_distance", @@ -24169,7 +25273,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "block_distance", @@ -24190,7 +25295,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "io_depth", @@ -24211,7 +25317,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24242,7 +25349,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -24263,7 +25371,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usename", @@ -24284,7 +25393,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "application_name", @@ -24305,7 +25415,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_addr", @@ -24326,7 +25437,8 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false }, { "name": "client_hostname", @@ -24347,7 +25459,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_port", @@ -24368,7 +25481,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "backend_start", @@ -24389,7 +25503,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "backend_xmin", @@ -24410,7 +25525,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "state", @@ -24431,7 +25547,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sent_lsn", @@ -24452,7 +25569,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "write_lsn", @@ -24473,7 +25591,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "flush_lsn", @@ -24494,7 +25613,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "replay_lsn", @@ -24515,7 +25635,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "write_lag", @@ -24536,7 +25657,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "flush_lag", @@ -24557,7 +25679,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "replay_lag", @@ -24578,7 +25701,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "sync_priority", @@ -24599,7 +25723,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "sync_state", @@ -24620,7 +25745,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "reply_time", @@ -24641,7 +25767,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24672,7 +25799,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "spill_txns", @@ -24693,7 +25821,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "spill_count", @@ -24714,7 +25843,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "spill_bytes", @@ -24735,7 +25865,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stream_txns", @@ -24756,7 +25887,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stream_count", @@ -24777,7 +25909,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stream_bytes", @@ -24798,7 +25931,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_txns", @@ -24819,7 +25953,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_bytes", @@ -24840,7 +25975,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -24861,7 +25997,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24892,7 +26029,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "blks_zeroed", @@ -24913,7 +26051,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -24934,7 +26073,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -24955,7 +26095,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_written", @@ -24976,7 +26117,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_exists", @@ -24997,7 +26139,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "flushes", @@ -25018,7 +26161,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "truncates", @@ -25039,7 +26183,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -25060,7 +26205,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25091,7 +26237,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "ssl", @@ -25112,7 +26259,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "version", @@ -25133,7 +26281,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "cipher", @@ -25154,7 +26303,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bits", @@ -25175,7 +26325,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "client_dn", @@ -25196,7 +26347,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_serial", @@ -25217,7 +26369,8 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false }, { "name": "issuer_dn", @@ -25238,7 +26391,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25269,7 +26423,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subname", @@ -25290,7 +26445,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pid", @@ -25311,7 +26467,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -25332,7 +26489,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "received_lsn", @@ -25353,7 +26511,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_send_time", @@ -25374,7 +26533,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_receipt_time", @@ -25395,7 +26555,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_lsn", @@ -25416,7 +26577,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_time", @@ -25437,7 +26599,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25468,7 +26631,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subname", @@ -25489,7 +26653,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "apply_error_count", @@ -25510,7 +26675,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sync_error_count", @@ -25531,7 +26697,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -25552,7 +26719,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25583,7 +26751,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -25604,7 +26773,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -25625,7 +26795,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -25646,7 +26817,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -25667,7 +26839,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -25688,7 +26861,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_read", @@ -25709,7 +26883,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -25730,7 +26905,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25761,7 +26937,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -25782,7 +26959,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -25803,7 +26981,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -25824,7 +27003,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -25845,7 +27025,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -25866,7 +27047,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -25887,7 +27069,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -25908,7 +27091,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -25929,7 +27113,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -25950,7 +27135,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -25971,7 +27157,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_live_tup", @@ -25992,7 +27179,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_dead_tup", @@ -26013,7 +27201,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_mod_since_analyze", @@ -26034,7 +27223,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_ins_since_vacuum", @@ -26055,7 +27245,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_vacuum", @@ -26076,7 +27267,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autovacuum", @@ -26097,7 +27289,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_analyze", @@ -26118,7 +27311,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autoanalyze", @@ -26139,7 +27333,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "vacuum_count", @@ -26160,7 +27355,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autovacuum_count", @@ -26181,7 +27377,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "analyze_count", @@ -26202,7 +27399,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autoanalyze_count", @@ -26223,7 +27421,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -26254,7 +27453,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -26275,7 +27475,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "funcname", @@ -26296,7 +27497,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "calls", @@ -26317,7 +27519,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_time", @@ -26338,7 +27541,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "self_time", @@ -26359,7 +27563,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -26390,7 +27595,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -26411,7 +27617,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -26432,7 +27639,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -26453,7 +27661,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -26474,7 +27683,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -26495,7 +27705,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_read", @@ -26516,7 +27727,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -26537,7 +27749,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -26568,7 +27781,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -26589,7 +27803,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -26610,7 +27825,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -26631,7 +27847,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -26652,7 +27869,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -26673,7 +27891,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -26694,7 +27913,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -26715,7 +27935,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -26736,7 +27957,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -26757,7 +27979,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -26778,7 +28001,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_live_tup", @@ -26799,7 +28023,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_dead_tup", @@ -26820,7 +28045,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_mod_since_analyze", @@ -26841,7 +28067,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_ins_since_vacuum", @@ -26862,7 +28089,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_vacuum", @@ -26883,7 +28111,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autovacuum", @@ -26904,7 +28133,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_analyze", @@ -26925,7 +28155,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autoanalyze", @@ -26946,7 +28177,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "vacuum_count", @@ -26967,7 +28199,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autovacuum_count", @@ -26988,7 +28221,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "analyze_count", @@ -27009,7 +28243,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autoanalyze_count", @@ -27030,7 +28265,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27061,7 +28297,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_fpi", @@ -27082,7 +28319,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_bytes", @@ -27103,7 +28341,8 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false }, { "name": "wal_buffers_full", @@ -27124,7 +28363,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_write", @@ -27145,7 +28385,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_sync", @@ -27166,7 +28407,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_write_time", @@ -27187,7 +28429,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_sync_time", @@ -27208,7 +28451,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -27229,7 +28473,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27260,7 +28505,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "status", @@ -27281,7 +28527,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "receive_start_lsn", @@ -27302,7 +28549,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "receive_start_tli", @@ -27323,7 +28571,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "written_lsn", @@ -27344,7 +28593,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "flushed_lsn", @@ -27365,7 +28615,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "received_tli", @@ -27386,7 +28637,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_send_time", @@ -27407,7 +28659,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_receipt_time", @@ -27428,7 +28681,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_lsn", @@ -27449,7 +28703,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_time", @@ -27470,7 +28725,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "slot_name", @@ -27491,7 +28747,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sender_host", @@ -27512,7 +28769,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sender_port", @@ -27533,7 +28791,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "conninfo", @@ -27554,7 +28813,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27585,7 +28845,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -27606,7 +28867,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -27627,7 +28889,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -27648,7 +28911,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -27669,7 +28933,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -27690,7 +28955,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -27711,7 +28977,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -27732,7 +28999,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -27753,7 +29021,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -27774,7 +29043,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -27795,7 +29065,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27826,7 +29097,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -27847,7 +29119,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -27868,7 +29141,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -27889,7 +29163,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -27910,7 +29185,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -27931,7 +29207,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -27952,7 +29229,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -27973,7 +29251,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -27994,7 +29273,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -28015,7 +29295,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -28036,7 +29317,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28067,7 +29349,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28088,7 +29371,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "funcname", @@ -28109,7 +29393,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "calls", @@ -28130,7 +29415,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_time", @@ -28151,7 +29437,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "self_time", @@ -28172,7 +29459,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28203,7 +29491,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28224,7 +29513,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28245,7 +29535,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -28266,7 +29557,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -28287,7 +29579,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -28308,7 +29601,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -28329,7 +29623,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -28350,7 +29645,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -28371,7 +29667,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -28392,7 +29689,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -28413,7 +29711,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28444,7 +29743,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -28465,7 +29765,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28486,7 +29787,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28507,7 +29809,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -28528,7 +29831,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -28549,7 +29853,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -28570,7 +29875,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28601,7 +29907,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28622,7 +29929,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28643,7 +29951,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -28664,7 +29973,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -28685,7 +29995,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28716,7 +30027,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28737,7 +30049,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28758,7 +30071,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_read", @@ -28779,7 +30093,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_hit", @@ -28800,7 +30115,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -28821,7 +30137,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -28842,7 +30159,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_read", @@ -28863,7 +30181,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_hit", @@ -28884,7 +30203,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_read", @@ -28905,7 +30225,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_hit", @@ -28926,7 +30247,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28957,7 +30279,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -28978,7 +30301,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28999,7 +30323,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29020,7 +30345,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -29041,7 +30367,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29062,7 +30389,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29083,7 +30411,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29114,7 +30443,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29135,7 +30465,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29156,7 +30487,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -29177,7 +30509,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -29198,7 +30531,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29229,7 +30563,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29250,7 +30585,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29271,7 +30607,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_read", @@ -29292,7 +30629,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_hit", @@ -29313,7 +30651,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29334,7 +30673,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29355,7 +30695,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_read", @@ -29376,7 +30717,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_hit", @@ -29397,7 +30739,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_read", @@ -29418,7 +30761,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_hit", @@ -29439,7 +30783,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29470,7 +30815,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -29491,7 +30837,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29512,7 +30859,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29533,7 +30881,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -29554,7 +30903,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29575,7 +30925,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29596,7 +30947,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29627,7 +30979,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29648,7 +31001,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29669,7 +31023,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -29690,7 +31045,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -29711,7 +31067,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29742,7 +31099,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29763,7 +31121,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29784,7 +31143,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_read", @@ -29805,7 +31165,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_hit", @@ -29826,7 +31187,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29847,7 +31209,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29868,7 +31231,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_read", @@ -29889,7 +31253,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_hit", @@ -29910,7 +31275,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_read", @@ -29931,7 +31297,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_hit", @@ -29952,7 +31319,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29983,7 +31351,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -30004,7 +31373,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -30025,7 +31395,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -30046,7 +31417,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -30067,7 +31439,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -30088,7 +31461,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "starelid", @@ -30109,7 +31483,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staattnum", @@ -30130,7 +31505,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stainherit", @@ -30151,7 +31527,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "stanullfrac", @@ -30172,7 +31549,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "stawidth", @@ -30193,7 +31571,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "stadistinct", @@ -30214,7 +31593,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "stakind1", @@ -30235,7 +31615,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind2", @@ -30256,7 +31637,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind3", @@ -30277,7 +31659,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind4", @@ -30298,7 +31681,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind5", @@ -30319,7 +31703,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "staop1", @@ -30340,7 +31725,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop2", @@ -30361,7 +31747,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop3", @@ -30382,7 +31769,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop4", @@ -30403,7 +31791,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop5", @@ -30424,7 +31813,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll1", @@ -30445,7 +31835,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll2", @@ -30466,7 +31857,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll3", @@ -30487,7 +31879,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll4", @@ -30508,7 +31901,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll5", @@ -30529,7 +31923,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers1", @@ -30550,7 +31945,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers2", @@ -30571,7 +31967,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers3", @@ -30592,7 +31989,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers4", @@ -30613,7 +32011,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers5", @@ -30634,7 +32033,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues1", @@ -30655,7 +32055,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues2", @@ -30676,7 +32077,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues3", @@ -30697,7 +32099,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues4", @@ -30718,7 +32121,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues5", @@ -30739,7 +32143,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -30770,7 +32175,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -30791,7 +32197,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -30812,7 +32219,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -30833,7 +32241,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -30854,7 +32263,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -30875,7 +32285,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -30896,7 +32307,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxrelid", @@ -30917,7 +32329,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxname", @@ -30938,7 +32351,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "stxnamespace", @@ -30959,7 +32373,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxowner", @@ -30980,7 +32395,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxstattarget", @@ -31001,7 +32417,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "stxkeys", @@ -31022,7 +32439,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "stxkind", @@ -31043,7 +32461,8 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false }, { "name": "stxexprs", @@ -31064,7 +32483,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31095,7 +32515,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -31116,7 +32537,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -31137,7 +32559,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -31158,7 +32581,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -31179,7 +32603,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -31200,7 +32625,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "stxoid", @@ -31221,7 +32647,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxdinherit", @@ -31242,7 +32669,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "stxdndistinct", @@ -31263,7 +32691,8 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false }, { "name": "stxddependencies", @@ -31284,7 +32713,8 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false }, { "name": "stxdmcv", @@ -31305,7 +32735,8 @@ "catalog": "", "schema": "", "name": "pg_mcv_list" - } + }, + "is_sqlc_slice": false }, { "name": "stxdexpr", @@ -31326,7 +32757,8 @@ "catalog": "", "schema": "", "name": "_pg_statistic" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31357,7 +32789,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -31378,7 +32811,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attname", @@ -31399,7 +32833,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "inherited", @@ -31420,7 +32855,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "null_frac", @@ -31441,7 +32877,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "avg_width", @@ -31462,7 +32899,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "n_distinct", @@ -31483,7 +32921,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_vals", @@ -31504,7 +32943,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_freqs", @@ -31525,7 +32965,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "histogram_bounds", @@ -31546,7 +32987,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "correlation", @@ -31567,7 +33009,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elems", @@ -31588,7 +33031,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elem_freqs", @@ -31609,7 +33053,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "elem_count_histogram", @@ -31630,7 +33075,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31661,7 +33107,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -31682,7 +33129,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_schemaname", @@ -31703,7 +33151,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_name", @@ -31724,7 +33173,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_owner", @@ -31745,7 +33195,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attnames", @@ -31766,7 +33217,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "exprs", @@ -31787,7 +33239,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "kinds", @@ -31808,7 +33261,8 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false }, { "name": "inherited", @@ -31829,7 +33283,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "n_distinct", @@ -31850,7 +33305,8 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false }, { "name": "dependencies", @@ -31871,7 +33327,8 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_vals", @@ -31892,7 +33349,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_val_nulls", @@ -31913,7 +33371,8 @@ "catalog": "", "schema": "", "name": "_bool" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_freqs", @@ -31934,7 +33393,8 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_base_freqs", @@ -31955,7 +33415,8 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31986,7 +33447,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -32007,7 +33469,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_schemaname", @@ -32028,7 +33491,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_name", @@ -32049,7 +33513,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_owner", @@ -32070,7 +33535,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "expr", @@ -32091,7 +33557,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "inherited", @@ -32112,7 +33579,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "null_frac", @@ -32133,7 +33601,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "avg_width", @@ -32154,7 +33623,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "n_distinct", @@ -32175,7 +33645,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_vals", @@ -32196,7 +33667,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_freqs", @@ -32217,7 +33689,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "histogram_bounds", @@ -32238,7 +33711,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "correlation", @@ -32259,7 +33733,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elems", @@ -32280,7 +33755,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elem_freqs", @@ -32301,7 +33777,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "elem_count_histogram", @@ -32322,7 +33799,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -32353,7 +33831,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -32374,7 +33853,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -32395,7 +33875,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -32416,7 +33897,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -32437,7 +33919,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -32458,7 +33941,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -32479,7 +33963,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subdbid", @@ -32500,7 +33985,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subskiplsn", @@ -32521,7 +34007,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "subname", @@ -32542,7 +34029,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "subowner", @@ -32563,7 +34051,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subenabled", @@ -32584,7 +34073,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "subbinary", @@ -32605,7 +34095,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "substream", @@ -32626,7 +34117,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "subtwophasestate", @@ -32647,7 +34139,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "subdisableonerr", @@ -32668,7 +34161,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "subconninfo", @@ -32689,7 +34183,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "subslotname", @@ -32710,7 +34205,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "subsynccommit", @@ -32731,7 +34227,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "subpublications", @@ -32752,7 +34249,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -32783,7 +34281,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -32804,7 +34303,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -32825,7 +34325,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -32846,7 +34347,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -32867,7 +34369,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -32888,7 +34391,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "srsubid", @@ -32909,7 +34413,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srrelid", @@ -32930,7 +34435,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srsubstate", @@ -32951,7 +34457,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "srsublsn", @@ -32972,7 +34479,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33003,7 +34511,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -33024,7 +34533,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tableowner", @@ -33045,7 +34555,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablespace", @@ -33066,7 +34577,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "hasindexes", @@ -33087,7 +34599,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "hasrules", @@ -33108,7 +34621,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "hastriggers", @@ -33129,7 +34643,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rowsecurity", @@ -33150,7 +34665,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33181,7 +34697,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -33202,7 +34719,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -33223,7 +34741,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -33244,7 +34763,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -33265,7 +34785,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -33286,7 +34807,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -33307,7 +34829,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "spcname", @@ -33328,7 +34851,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "spcowner", @@ -33349,7 +34873,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "spcacl", @@ -33370,7 +34895,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "spcoptions", @@ -33391,7 +34917,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33422,7 +34949,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "utc_offset", @@ -33443,7 +34971,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "is_dst", @@ -33464,7 +34993,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33495,7 +35025,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "abbrev", @@ -33516,7 +35047,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "utc_offset", @@ -33537,7 +35069,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "is_dst", @@ -33558,7 +35091,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33589,7 +35123,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -33610,7 +35145,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -33631,7 +35167,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -33652,7 +35189,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -33673,7 +35211,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -33694,7 +35233,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -33715,7 +35255,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "trftype", @@ -33736,7 +35277,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "trflang", @@ -33757,7 +35299,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "trffromsql", @@ -33778,7 +35321,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "trftosql", @@ -33799,7 +35343,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33830,7 +35375,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -33851,7 +35397,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -33872,7 +35419,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -33893,7 +35441,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -33914,7 +35463,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -33935,7 +35485,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -33956,7 +35507,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgrelid", @@ -33977,7 +35529,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgparentid", @@ -33998,7 +35551,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgname", @@ -34019,7 +35573,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tgfoid", @@ -34040,7 +35595,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgtype", @@ -34061,7 +35617,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "tgenabled", @@ -34082,7 +35639,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "tgisinternal", @@ -34103,7 +35661,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "tgconstrrelid", @@ -34124,7 +35683,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgconstrindid", @@ -34145,7 +35705,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgconstraint", @@ -34166,7 +35727,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgdeferrable", @@ -34187,7 +35749,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "tginitdeferred", @@ -34208,7 +35771,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "tgnargs", @@ -34229,7 +35793,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "tgattr", @@ -34250,7 +35815,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "tgargs", @@ -34271,7 +35837,8 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false }, { "name": "tgqual", @@ -34292,7 +35859,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "tgoldtable", @@ -34313,7 +35881,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tgnewtable", @@ -34334,7 +35903,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -34365,7 +35935,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -34386,7 +35957,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -34407,7 +35979,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -34428,7 +36001,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -34449,7 +36023,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -34470,7 +36045,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -34491,7 +36067,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cfgname", @@ -34512,7 +36089,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "cfgnamespace", @@ -34533,7 +36111,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cfgowner", @@ -34554,7 +36133,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cfgparser", @@ -34575,7 +36155,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -34606,7 +36187,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -34627,7 +36209,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -34648,7 +36231,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -34669,7 +36253,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -34690,7 +36275,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -34711,7 +36297,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "mapcfg", @@ -34732,7 +36319,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "maptokentype", @@ -34753,7 +36341,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "mapseqno", @@ -34774,7 +36363,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "mapdict", @@ -34795,7 +36385,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -34826,7 +36417,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -34847,7 +36439,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -34868,7 +36461,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -34889,7 +36483,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -34910,7 +36505,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -34931,7 +36527,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -34952,7 +36549,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dictname", @@ -34973,7 +36571,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "dictnamespace", @@ -34994,7 +36593,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dictowner", @@ -35015,7 +36615,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dicttemplate", @@ -35036,7 +36637,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dictinitoption", @@ -35057,7 +36659,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -35088,7 +36691,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -35109,7 +36713,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -35130,7 +36735,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -35151,7 +36757,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -35172,7 +36779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -35193,7 +36801,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -35214,7 +36823,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prsname", @@ -35235,7 +36845,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "prsnamespace", @@ -35256,7 +36867,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prsstart", @@ -35277,7 +36889,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prstoken", @@ -35298,7 +36911,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prsend", @@ -35319,7 +36933,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prsheadline", @@ -35340,7 +36955,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prslextype", @@ -35361,7 +36977,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -35392,7 +37009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -35413,7 +37031,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -35434,7 +37053,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -35455,7 +37075,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -35476,7 +37097,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -35497,7 +37119,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -35518,7 +37141,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tmplname", @@ -35539,7 +37163,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tmplnamespace", @@ -35560,7 +37185,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tmplinit", @@ -35581,7 +37207,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "tmpllexize", @@ -35602,7 +37229,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -35633,7 +37261,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -35654,7 +37283,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -35675,7 +37305,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -35696,7 +37327,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -35717,7 +37349,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -35738,7 +37371,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -35759,7 +37393,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typname", @@ -35780,7 +37415,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "typnamespace", @@ -35801,7 +37437,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typowner", @@ -35822,7 +37459,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typlen", @@ -35843,7 +37481,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "typbyval", @@ -35864,7 +37503,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typtype", @@ -35885,7 +37525,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typcategory", @@ -35906,7 +37547,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typispreferred", @@ -35927,7 +37569,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typisdefined", @@ -35948,7 +37591,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typdelim", @@ -35969,7 +37613,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typrelid", @@ -35990,7 +37635,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typsubscript", @@ -36011,7 +37657,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typelem", @@ -36032,7 +37679,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typarray", @@ -36053,7 +37701,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typinput", @@ -36074,7 +37723,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typoutput", @@ -36095,7 +37745,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typreceive", @@ -36116,7 +37767,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typsend", @@ -36137,7 +37789,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typmodin", @@ -36158,7 +37811,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typmodout", @@ -36179,7 +37833,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typanalyze", @@ -36200,7 +37855,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typalign", @@ -36221,7 +37877,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typstorage", @@ -36242,7 +37899,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typnotnull", @@ -36263,7 +37921,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typbasetype", @@ -36284,7 +37943,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typtypmod", @@ -36305,7 +37965,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "typndims", @@ -36326,7 +37987,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "typcollation", @@ -36347,7 +38009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typdefaultbin", @@ -36368,7 +38031,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "typdefault", @@ -36389,7 +38053,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "typacl", @@ -36410,7 +38075,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36441,7 +38107,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -36462,7 +38129,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usecreatedb", @@ -36483,7 +38151,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usesuper", @@ -36504,7 +38173,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "userepl", @@ -36525,7 +38195,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usebypassrls", @@ -36546,7 +38217,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "passwd", @@ -36567,7 +38239,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "valuntil", @@ -36588,7 +38261,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "useconfig", @@ -36609,7 +38283,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36640,7 +38315,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -36661,7 +38337,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -36682,7 +38359,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -36703,7 +38381,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -36724,7 +38403,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -36745,7 +38425,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -36766,7 +38447,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umuser", @@ -36787,7 +38469,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umserver", @@ -36808,7 +38491,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umoptions", @@ -36829,7 +38513,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36860,7 +38545,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvid", @@ -36881,7 +38567,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvname", @@ -36902,7 +38589,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "umuser", @@ -36923,7 +38611,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usename", @@ -36944,7 +38633,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "umoptions", @@ -36965,7 +38655,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36996,7 +38687,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "viewname", @@ -37017,7 +38709,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "viewowner", @@ -37038,7 +38731,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "definition", @@ -37059,7 +38753,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37098,7 +38793,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwowner", @@ -37119,7 +38815,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwoptions", @@ -37140,7 +38837,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_catalog", @@ -37161,7 +38859,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -37182,7 +38881,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37203,7 +38903,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_language", @@ -37224,7 +38925,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37255,7 +38957,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvoptions", @@ -37276,7 +38979,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -37297,7 +39001,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -37318,7 +39023,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_catalog", @@ -37339,7 +39045,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -37360,7 +39067,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_type", @@ -37381,7 +39089,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_version", @@ -37402,7 +39111,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37423,7 +39133,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37454,7 +39165,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -37475,7 +39187,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attname", @@ -37496,7 +39209,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attfdwoptions", @@ -37517,7 +39231,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37548,7 +39263,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_schema", @@ -37569,7 +39285,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_name", @@ -37590,7 +39307,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ftoptions", @@ -37611,7 +39329,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -37632,7 +39351,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -37653,7 +39373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37674,7 +39395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37705,7 +39427,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umoptions", @@ -37726,7 +39449,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "umuser", @@ -37747,7 +39471,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37768,7 +39493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -37789,7 +39515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -37810,7 +39537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "srvowner", @@ -37831,7 +39559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37862,7 +39591,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "role_name", @@ -37883,7 +39613,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -37904,7 +39635,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37935,7 +39667,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "role_name", @@ -37956,7 +39689,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -37977,7 +39711,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38008,7 +39743,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -38029,7 +39765,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -38050,7 +39787,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_name", @@ -38071,7 +39809,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -38092,7 +39831,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_default", @@ -38113,7 +39853,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_nullable", @@ -38134,7 +39875,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -38155,7 +39897,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -38176,7 +39919,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -38197,7 +39941,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -38218,7 +39963,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -38239,7 +39985,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -38260,7 +40007,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -38281,7 +40029,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -38302,7 +40051,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -38323,7 +40073,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -38344,7 +40095,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -38365,7 +40117,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -38386,7 +40139,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -38407,7 +40161,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -38428,7 +40183,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -38449,7 +40205,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_udt_catalog", @@ -38470,7 +40227,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_udt_schema", @@ -38491,7 +40249,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_udt_name", @@ -38512,7 +40271,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -38533,7 +40293,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -38554,7 +40315,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -38575,7 +40337,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -38596,7 +40359,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -38617,7 +40381,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_derived_reference_attribute", @@ -38638,7 +40403,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38669,7 +40435,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -38690,7 +40457,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -38711,7 +40479,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_repertoire", @@ -38732,7 +40501,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "form_of_use", @@ -38753,7 +40523,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_collate_catalog", @@ -38774,7 +40545,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_collate_schema", @@ -38795,7 +40567,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_collate_name", @@ -38816,7 +40589,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38847,7 +40621,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -38868,7 +40643,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -38889,7 +40665,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -38910,7 +40687,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -38931,7 +40709,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -38952,7 +40731,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38983,7 +40763,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -39004,7 +40785,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -39025,7 +40807,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "check_clause", @@ -39046,7 +40829,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39077,7 +40861,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -39098,7 +40883,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -39119,7 +40905,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -39140,7 +40927,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -39161,7 +40949,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -39182,7 +40971,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39213,7 +41003,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -39234,7 +41025,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -39255,7 +41047,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "pad_attribute", @@ -39276,7 +41069,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39307,7 +41101,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39328,7 +41123,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39349,7 +41145,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39370,7 +41167,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "dependent_column", @@ -39391,7 +41189,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39422,7 +41221,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -39443,7 +41243,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -39464,7 +41265,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -39485,7 +41287,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39506,7 +41309,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39527,7 +41331,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39548,7 +41353,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39579,7 +41385,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39600,7 +41407,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39621,7 +41429,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39642,7 +41451,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -39663,7 +41473,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -39684,7 +41495,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39715,7 +41527,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -39736,7 +41549,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -39757,7 +41571,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39778,7 +41593,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39799,7 +41615,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39820,7 +41637,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -39841,7 +41659,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -39862,7 +41681,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39893,7 +41713,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -39914,7 +41735,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -39935,7 +41757,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -39956,7 +41779,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39977,7 +41801,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39998,7 +41823,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -40019,7 +41845,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -40050,7 +41877,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -40071,7 +41899,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -40092,7 +41921,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -40113,7 +41943,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -40134,7 +41965,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "column_default", @@ -40155,7 +41987,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_nullable", @@ -40176,7 +42009,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -40197,7 +42031,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -40218,7 +42053,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -40239,7 +42075,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -40260,7 +42097,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -40281,7 +42119,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -40302,7 +42141,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -40323,7 +42163,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -40344,7 +42185,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -40365,7 +42207,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -40386,7 +42229,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -40407,7 +42251,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -40428,7 +42273,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -40449,7 +42295,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -40470,7 +42317,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -40491,7 +42339,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_catalog", @@ -40512,7 +42361,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -40533,7 +42383,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -40554,7 +42405,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -40575,7 +42427,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -40596,7 +42449,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -40617,7 +42471,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -40638,7 +42493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -40659,7 +42515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -40680,7 +42537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -40701,7 +42559,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -40722,7 +42581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_self_referencing", @@ -40743,7 +42603,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_identity", @@ -40764,7 +42625,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "identity_generation", @@ -40785,7 +42647,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_start", @@ -40806,7 +42669,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_increment", @@ -40827,7 +42691,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_maximum", @@ -40848,7 +42713,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_minimum", @@ -40869,7 +42735,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_cycle", @@ -40890,7 +42757,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_generated", @@ -40911,7 +42779,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "generation_expression", @@ -40932,7 +42801,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_updatable", @@ -40953,7 +42823,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -40984,7 +42855,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -41005,7 +42877,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -41026,7 +42899,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -41047,7 +42921,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_catalog", @@ -41068,7 +42943,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -41089,7 +42965,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -41110,7 +42987,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41141,7 +43019,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -41162,7 +43041,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -41183,7 +43063,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_catalog", @@ -41204,7 +43085,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -41225,7 +43107,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -41246,7 +43129,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41277,7 +43161,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -41298,7 +43183,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -41319,7 +43205,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -41340,7 +43227,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -41361,7 +43249,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41392,7 +43281,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -41413,7 +43303,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -41434,7 +43325,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_catalog", @@ -41455,7 +43347,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -41476,7 +43369,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -41497,7 +43391,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_deferrable", @@ -41518,7 +43413,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "initially_deferred", @@ -41539,7 +43435,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41570,7 +43467,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -41591,7 +43489,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -41612,7 +43511,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_catalog", @@ -41633,7 +43533,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -41654,7 +43555,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -41675,7 +43577,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41706,7 +43609,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -41727,7 +43631,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -41748,7 +43653,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -41769,7 +43675,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -41790,7 +43697,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -41811,7 +43719,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -41832,7 +43741,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -41853,7 +43763,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -41874,7 +43785,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -41895,7 +43807,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -41916,7 +43829,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -41937,7 +43851,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -41958,7 +43873,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -41979,7 +43895,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -42000,7 +43917,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -42021,7 +43939,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -42042,7 +43961,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -42063,7 +43983,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "domain_default", @@ -42084,7 +44005,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -42105,7 +44027,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -42126,7 +44049,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -42147,7 +44071,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -42168,7 +44093,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -42189,7 +44115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -42210,7 +44137,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -42231,7 +44159,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -42252,7 +44181,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -42283,7 +44213,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -42304,7 +44235,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -42325,7 +44257,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -42346,7 +44279,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "collection_type_identifier", @@ -42367,7 +44301,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -42388,7 +44323,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -42409,7 +44345,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -42430,7 +44367,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -42451,7 +44389,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -42472,7 +44411,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -42493,7 +44433,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -42514,7 +44455,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -42535,7 +44477,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -42556,7 +44499,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -42577,7 +44521,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -42598,7 +44543,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -42619,7 +44565,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -42640,7 +44587,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -42661,7 +44609,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -42682,7 +44631,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "domain_default", @@ -42703,7 +44653,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -42724,7 +44675,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -42745,7 +44697,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -42766,7 +44719,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -42787,7 +44741,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -42808,7 +44763,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -42829,7 +44785,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -42850,7 +44807,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -42871,7 +44829,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -42902,7 +44861,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -42933,7 +44893,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -42954,7 +44915,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -42975,7 +44937,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -42996,7 +44959,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43027,7 +44991,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -43048,7 +45013,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -43069,7 +45035,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "library_name", @@ -43090,7 +45057,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_language", @@ -43111,7 +45079,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43142,7 +45111,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -43163,7 +45133,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -43184,7 +45155,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -43205,7 +45177,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43236,7 +45209,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -43257,7 +45231,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_catalog", @@ -43278,7 +45253,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -43299,7 +45275,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_type", @@ -43320,7 +45297,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_version", @@ -43341,7 +45319,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -43362,7 +45341,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43393,7 +45373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_schema", @@ -43414,7 +45395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_name", @@ -43435,7 +45417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -43456,7 +45439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -43477,7 +45461,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43508,7 +45493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_schema", @@ -43529,7 +45515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_name", @@ -43550,7 +45537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -43571,7 +45559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -43592,7 +45581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43623,7 +45613,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43654,7 +45645,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -43675,7 +45667,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -43696,7 +45689,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -43717,7 +45711,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -43738,7 +45733,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -43759,7 +45755,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -43780,7 +45777,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -43801,7 +45799,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "position_in_unique_constraint", @@ -43822,7 +45821,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43853,7 +45853,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -43874,7 +45875,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -43895,7 +45897,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -43916,7 +45919,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_mode", @@ -43937,7 +45941,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_result", @@ -43958,7 +45963,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "as_locator", @@ -43979,7 +45985,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_name", @@ -44000,7 +46007,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -44021,7 +46029,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -44042,7 +46051,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -44063,7 +46073,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -44084,7 +46095,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -44105,7 +46117,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -44126,7 +46139,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -44147,7 +46161,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -44168,7 +46183,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -44189,7 +46205,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -44210,7 +46227,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -44231,7 +46249,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -44252,7 +46271,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -44273,7 +46293,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -44294,7 +46315,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -44315,7 +46337,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -44336,7 +46359,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -44357,7 +46381,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -44378,7 +46403,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -44399,7 +46425,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -44420,7 +46447,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -44441,7 +46469,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -44462,7 +46491,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -44483,7 +46513,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_default", @@ -44504,7 +46535,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -44535,7 +46567,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -44556,7 +46589,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -44577,7 +46611,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "unique_constraint_catalog", @@ -44598,7 +46633,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "unique_constraint_schema", @@ -44619,7 +46655,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "unique_constraint_name", @@ -44640,7 +46677,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "match_option", @@ -44661,7 +46699,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "update_rule", @@ -44682,7 +46721,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "delete_rule", @@ -44703,7 +46743,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -44734,7 +46775,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -44755,7 +46797,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -44776,7 +46819,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -44797,7 +46841,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -44818,7 +46863,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -44839,7 +46885,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -44860,7 +46907,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -44881,7 +46929,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -44912,7 +46961,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -44933,7 +46983,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -44954,7 +47005,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -44975,7 +47027,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -44996,7 +47049,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -45017,7 +47071,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -45038,7 +47093,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -45059,7 +47115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45080,7 +47137,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45101,7 +47159,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45132,7 +47191,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45153,7 +47213,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -45174,7 +47235,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -45195,7 +47257,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -45216,7 +47279,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45237,7 +47301,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45258,7 +47323,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "with_hierarchy", @@ -45279,7 +47345,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45310,7 +47377,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45331,7 +47399,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -45352,7 +47421,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -45373,7 +47443,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -45394,7 +47465,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45415,7 +47487,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45436,7 +47509,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45467,7 +47541,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45488,7 +47563,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_catalog", @@ -45509,7 +47585,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -45530,7 +47607,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -45551,7 +47629,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -45572,7 +47651,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45593,7 +47673,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45614,7 +47695,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45645,7 +47727,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -45666,7 +47749,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -45687,7 +47771,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -45708,7 +47793,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -45729,7 +47815,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -45750,7 +47837,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -45771,7 +47859,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -45792,7 +47881,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -45813,7 +47903,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -45834,7 +47925,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45865,7 +47957,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45886,7 +47979,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -45907,7 +48001,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -45928,7 +48023,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -45949,7 +48045,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -45970,7 +48067,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -45991,7 +48089,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46012,7 +48111,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -46033,7 +48133,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -46054,7 +48155,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46085,7 +48187,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46106,7 +48209,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46127,7 +48231,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46148,7 +48253,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46169,7 +48275,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46190,7 +48297,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46221,7 +48329,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46242,7 +48351,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46263,7 +48373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46284,7 +48395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46305,7 +48417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46326,7 +48439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_catalog", @@ -46347,7 +48461,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_schema", @@ -46368,7 +48483,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_name", @@ -46389,7 +48505,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46420,7 +48537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46441,7 +48559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46462,7 +48581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46483,7 +48603,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46504,7 +48625,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46525,7 +48647,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -46546,7 +48669,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -46567,7 +48691,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -46588,7 +48713,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46619,7 +48745,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46640,7 +48767,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46661,7 +48789,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46682,7 +48811,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46703,7 +48833,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46724,7 +48855,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_type", @@ -46745,7 +48877,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "module_catalog", @@ -46766,7 +48899,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "module_schema", @@ -46787,7 +48921,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "module_name", @@ -46808,7 +48943,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -46829,7 +48965,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -46850,7 +48987,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -46871,7 +49009,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -46892,7 +49031,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -46913,7 +49053,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -46934,7 +49075,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -46955,7 +49097,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -46976,7 +49119,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -46997,7 +49141,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -47018,7 +49163,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -47039,7 +49185,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -47060,7 +49207,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -47081,7 +49229,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -47102,7 +49251,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -47123,7 +49273,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -47144,7 +49295,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -47165,7 +49317,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -47186,7 +49339,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "type_udt_catalog", @@ -47207,7 +49361,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "type_udt_schema", @@ -47228,7 +49383,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "type_udt_name", @@ -47249,7 +49405,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -47270,7 +49427,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -47291,7 +49449,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -47312,7 +49471,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -47333,7 +49493,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -47354,7 +49515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_body", @@ -47375,7 +49537,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "routine_definition", @@ -47396,7 +49559,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "external_name", @@ -47417,7 +49581,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "external_language", @@ -47438,7 +49603,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_style", @@ -47459,7 +49625,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_deterministic", @@ -47480,7 +49647,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "sql_data_access", @@ -47501,7 +49669,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_null_call", @@ -47522,7 +49691,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "sql_path", @@ -47543,7 +49713,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "schema_level_routine", @@ -47564,7 +49735,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "max_dynamic_result_sets", @@ -47585,7 +49757,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "is_user_defined_cast", @@ -47606,7 +49779,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_implicitly_invocable", @@ -47627,7 +49801,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "security_type", @@ -47648,7 +49823,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "to_sql_specific_catalog", @@ -47669,7 +49845,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "to_sql_specific_schema", @@ -47690,7 +49867,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "to_sql_specific_name", @@ -47711,7 +49889,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "as_locator", @@ -47732,7 +49911,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "created", @@ -47753,7 +49933,8 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false }, { "name": "last_altered", @@ -47774,7 +49955,8 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false }, { "name": "new_savepoint_level", @@ -47795,7 +49977,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_udt_dependent", @@ -47816,7 +49999,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_from_data_type", @@ -47837,7 +50021,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_as_locator", @@ -47858,7 +50043,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_max_length", @@ -47879,7 +50065,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_octet_length", @@ -47900,7 +50087,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_set_catalog", @@ -47921,7 +50109,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_set_schema", @@ -47942,7 +50131,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_set_name", @@ -47963,7 +50153,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_collation_catalog", @@ -47984,7 +50175,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_collation_schema", @@ -48005,7 +50197,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_collation_name", @@ -48026,7 +50219,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_numeric_precision", @@ -48047,7 +50241,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_numeric_precision_radix", @@ -48068,7 +50263,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_numeric_scale", @@ -48089,7 +50285,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_datetime_precision", @@ -48110,7 +50307,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_interval_type", @@ -48131,7 +50329,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_interval_precision", @@ -48152,7 +50351,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_type_udt_catalog", @@ -48173,7 +50373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_type_udt_schema", @@ -48194,7 +50395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_type_udt_name", @@ -48215,7 +50417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_scope_catalog", @@ -48236,7 +50439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_scope_schema", @@ -48257,7 +50461,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_scope_name", @@ -48278,7 +50483,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_maximum_cardinality", @@ -48299,7 +50505,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_dtd_identifier", @@ -48320,7 +50527,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -48351,7 +50559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "schema_name", @@ -48372,7 +50581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "schema_owner", @@ -48393,7 +50603,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_character_set_catalog", @@ -48414,7 +50625,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_character_set_schema", @@ -48435,7 +50647,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_character_set_name", @@ -48456,7 +50669,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sql_path", @@ -48477,7 +50691,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -48508,7 +50723,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_schema", @@ -48529,7 +50745,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_name", @@ -48550,7 +50767,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -48571,7 +50789,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -48592,7 +50811,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -48613,7 +50833,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -48634,7 +50855,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "start_value", @@ -48655,7 +50877,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "minimum_value", @@ -48676,7 +50899,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_value", @@ -48697,7 +50921,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "increment", @@ -48718,7 +50943,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "cycle_option", @@ -48739,7 +50965,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -48770,7 +50997,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -48791,7 +51019,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -48812,7 +51041,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -48833,7 +51063,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -48854,7 +51085,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -48875,7 +51107,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "feature_id", @@ -48896,7 +51129,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "feature_name", @@ -48917,7 +51151,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "sub_feature_id", @@ -48938,7 +51173,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "sub_feature_name", @@ -48959,7 +51195,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_supported", @@ -48980,7 +51217,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_verified_by", @@ -49001,7 +51239,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49022,7 +51261,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49053,7 +51293,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -49074,7 +51315,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -49095,7 +51337,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -49116,7 +51359,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -49137,7 +51381,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -49158,7 +51403,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "implementation_info_id", @@ -49179,7 +51425,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "implementation_info_name", @@ -49200,7 +51447,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "integer_value", @@ -49221,7 +51469,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_value", @@ -49242,7 +51491,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49263,7 +51513,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49294,7 +51545,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -49315,7 +51567,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -49336,7 +51589,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -49357,7 +51611,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -49378,7 +51633,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -49399,7 +51655,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "feature_id", @@ -49420,7 +51677,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "feature_name", @@ -49441,7 +51699,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_supported", @@ -49462,7 +51721,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_verified_by", @@ -49483,7 +51743,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49504,7 +51765,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49535,7 +51797,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -49556,7 +51819,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -49577,7 +51841,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -49598,7 +51863,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -49619,7 +51885,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -49640,7 +51907,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "sizing_id", @@ -49661,7 +51929,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "sizing_name", @@ -49682,7 +51951,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "supported_value", @@ -49703,7 +51973,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49724,7 +51995,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49755,7 +52027,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -49776,7 +52049,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -49797,7 +52071,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -49818,7 +52093,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -49839,7 +52115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -49860,7 +52137,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_type", @@ -49881,7 +52159,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_deferrable", @@ -49902,7 +52181,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "initially_deferred", @@ -49923,7 +52203,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "enforced", @@ -49944,7 +52225,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "nulls_distinct", @@ -49965,7 +52247,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49996,7 +52279,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -50017,7 +52301,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -50038,7 +52323,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -50059,7 +52345,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -50080,7 +52367,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -50101,7 +52389,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -50122,7 +52411,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "with_hierarchy", @@ -50143,7 +52433,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50174,7 +52465,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -50195,7 +52487,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -50216,7 +52509,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_type", @@ -50237,7 +52531,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "self_referencing_column_name", @@ -50258,7 +52553,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "reference_generation", @@ -50279,7 +52575,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_catalog", @@ -50300,7 +52597,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_schema", @@ -50321,7 +52619,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_name", @@ -50342,7 +52641,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_insertable_into", @@ -50363,7 +52663,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_typed", @@ -50384,7 +52685,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "commit_action", @@ -50405,7 +52707,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50436,7 +52739,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -50457,7 +52761,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -50478,7 +52783,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -50499,7 +52805,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -50520,7 +52827,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -50541,7 +52849,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "group_name", @@ -50562,7 +52871,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "transform_type", @@ -50583,7 +52893,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50614,7 +52925,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_schema", @@ -50635,7 +52947,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_name", @@ -50656,7 +52969,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_catalog", @@ -50677,7 +52991,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_schema", @@ -50698,7 +53013,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_table", @@ -50719,7 +53035,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_column", @@ -50740,7 +53057,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50771,7 +53089,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_schema", @@ -50792,7 +53111,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_name", @@ -50813,7 +53133,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_manipulation", @@ -50834,7 +53155,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_catalog", @@ -50855,7 +53177,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_schema", @@ -50876,7 +53199,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_table", @@ -50897,7 +53221,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_order", @@ -50918,7 +53243,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "action_condition", @@ -50939,7 +53265,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_statement", @@ -50960,7 +53287,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_orientation", @@ -50981,7 +53309,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_timing", @@ -51002,7 +53331,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_old_table", @@ -51023,7 +53353,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_new_table", @@ -51044,7 +53375,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_old_row", @@ -51065,7 +53397,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_new_row", @@ -51086,7 +53419,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "created", @@ -51107,7 +53441,8 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -51138,7 +53473,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -51159,7 +53495,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -51180,7 +53517,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -51201,7 +53539,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -51222,7 +53561,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -51243,7 +53583,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -51264,7 +53605,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -51295,7 +53637,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -51316,7 +53659,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_catalog", @@ -51337,7 +53681,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -51358,7 +53703,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -51379,7 +53725,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -51400,7 +53747,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -51421,7 +53769,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -51442,7 +53791,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -51473,7 +53823,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_schema", @@ -51494,7 +53845,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_name", @@ -51515,7 +53867,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_category", @@ -51536,7 +53889,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_instantiable", @@ -51557,7 +53911,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_final", @@ -51578,7 +53933,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_form", @@ -51599,7 +53955,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_category", @@ -51620,7 +53977,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_routine_catalog", @@ -51641,7 +53999,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_routine_schema", @@ -51662,7 +54021,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_routine_name", @@ -51683,7 +54043,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "reference_type", @@ -51704,7 +54065,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -51725,7 +54087,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -51746,7 +54109,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -51767,7 +54131,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -51788,7 +54153,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -51809,7 +54175,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -51830,7 +54197,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -51851,7 +54219,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -51872,7 +54241,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -51893,7 +54263,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -51914,7 +54285,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -51935,7 +54307,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -51956,7 +54329,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -51977,7 +54351,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -51998,7 +54373,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -52019,7 +54395,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "source_dtd_identifier", @@ -52040,7 +54417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ref_dtd_identifier", @@ -52061,7 +54439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52092,7 +54471,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -52113,7 +54493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -52134,7 +54515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -52155,7 +54537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -52176,7 +54559,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52207,7 +54591,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -52228,7 +54613,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -52249,7 +54635,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52280,7 +54667,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_schema", @@ -52301,7 +54689,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_name", @@ -52322,7 +54711,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -52343,7 +54733,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52364,7 +54755,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52385,7 +54777,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -52406,7 +54799,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52437,7 +54831,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52458,7 +54853,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52479,7 +54875,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -52500,7 +54897,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -52521,7 +54919,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -52542,7 +54941,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52573,7 +54973,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_schema", @@ -52594,7 +54995,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_name", @@ -52615,7 +55017,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -52636,7 +55039,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52657,7 +55061,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52678,7 +55083,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52709,7 +55115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52730,7 +55137,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52751,7 +55159,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_definition", @@ -52772,7 +55181,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "check_option", @@ -52793,7 +55203,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_updatable", @@ -52814,7 +55225,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_insertable_into", @@ -52835,7 +55247,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_trigger_updatable", @@ -52856,7 +55269,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_trigger_deletable", @@ -52877,7 +55291,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_trigger_insertable_into", @@ -52898,7 +55313,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52934,7 +55350,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -52955,7 +55372,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -52976,7 +55394,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "params": [ @@ -53001,7 +55420,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false } } ], @@ -53033,7 +55453,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -53054,7 +55475,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -53075,7 +55497,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "params": [], @@ -53107,7 +55530,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -53128,7 +55552,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -53149,7 +55574,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "params": [ @@ -53174,7 +55600,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } }, { @@ -53198,7 +55625,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } } ], @@ -53237,7 +55665,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false } } ], diff --git a/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json b/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json index 26abb2b93a..8b40a4494c 100644 --- a/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json +++ b/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json @@ -80,7 +80,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -101,7 +102,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -122,7 +124,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -168,7 +171,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -189,7 +193,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -210,7 +215,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -231,7 +237,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -252,7 +259,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -273,7 +281,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "aggfnoid", @@ -294,7 +303,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggkind", @@ -315,7 +325,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "aggnumdirectargs", @@ -336,7 +347,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "aggtransfn", @@ -357,7 +369,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggfinalfn", @@ -378,7 +391,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggcombinefn", @@ -399,7 +413,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggserialfn", @@ -420,7 +435,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggdeserialfn", @@ -441,7 +457,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggmtransfn", @@ -462,7 +479,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggminvtransfn", @@ -483,7 +501,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggmfinalfn", @@ -504,7 +523,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "aggfinalextra", @@ -525,7 +545,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "aggmfinalextra", @@ -546,7 +567,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "aggfinalmodify", @@ -567,7 +589,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "aggmfinalmodify", @@ -588,7 +611,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "aggsortop", @@ -609,7 +633,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "aggtranstype", @@ -630,7 +655,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "aggtransspace", @@ -651,7 +677,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "aggmtranstype", @@ -672,7 +699,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "aggmtransspace", @@ -693,7 +721,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "agginitval", @@ -714,7 +743,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "aggminitval", @@ -735,7 +765,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -766,7 +797,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -787,7 +819,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -808,7 +841,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -829,7 +863,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -850,7 +885,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -871,7 +907,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -892,7 +929,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amname", @@ -913,7 +951,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "amhandler", @@ -934,7 +973,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "amtype", @@ -955,7 +995,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -986,7 +1027,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1007,7 +1049,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1028,7 +1071,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1049,7 +1093,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1070,7 +1115,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1091,7 +1137,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -1112,7 +1159,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopfamily", @@ -1133,7 +1181,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amoplefttype", @@ -1154,7 +1203,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amoprighttype", @@ -1175,7 +1225,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopstrategy", @@ -1196,7 +1247,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "amoppurpose", @@ -1217,7 +1269,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "amopopr", @@ -1238,7 +1291,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopmethod", @@ -1259,7 +1313,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amopsortfamily", @@ -1280,7 +1335,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -1311,7 +1367,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1332,7 +1389,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1353,7 +1411,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1374,7 +1433,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1395,7 +1455,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1416,7 +1477,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -1437,7 +1499,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amprocfamily", @@ -1458,7 +1521,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amproclefttype", @@ -1479,7 +1543,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amprocrighttype", @@ -1500,7 +1565,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "amprocnum", @@ -1521,7 +1587,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "amproc", @@ -1542,7 +1609,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -1573,7 +1641,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1594,7 +1663,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1615,7 +1685,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1636,7 +1707,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1657,7 +1729,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1678,7 +1751,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -1699,7 +1773,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "adrelid", @@ -1720,7 +1795,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "adnum", @@ -1741,7 +1817,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "adbin", @@ -1762,7 +1839,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -1793,7 +1871,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -1814,7 +1893,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -1835,7 +1915,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -1856,7 +1937,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -1877,7 +1959,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -1898,7 +1981,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "attrelid", @@ -1919,7 +2003,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "attname", @@ -1940,7 +2025,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "atttypid", @@ -1961,7 +2047,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "attstattarget", @@ -1982,7 +2069,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attlen", @@ -2003,7 +2091,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "attnum", @@ -2024,7 +2113,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "attndims", @@ -2045,7 +2135,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attcacheoff", @@ -2066,7 +2157,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "atttypmod", @@ -2087,7 +2179,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attbyval", @@ -2108,7 +2201,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attalign", @@ -2129,7 +2223,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attstorage", @@ -2150,7 +2245,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attcompression", @@ -2171,7 +2267,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attnotnull", @@ -2192,7 +2289,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "atthasdef", @@ -2213,7 +2311,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "atthasmissing", @@ -2234,7 +2333,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attidentity", @@ -2255,7 +2355,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attgenerated", @@ -2276,7 +2377,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "attisdropped", @@ -2297,7 +2399,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attislocal", @@ -2318,7 +2421,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "attinhcount", @@ -2339,7 +2443,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "attcollation", @@ -2360,7 +2465,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "attacl", @@ -2381,7 +2487,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "attoptions", @@ -2402,7 +2509,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "attfdwoptions", @@ -2423,7 +2531,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "attmissingval", @@ -2444,7 +2553,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -2475,7 +2585,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -2496,7 +2607,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -2517,7 +2629,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -2538,7 +2651,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -2559,7 +2673,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -2580,7 +2695,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "roleid", @@ -2601,7 +2717,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "member", @@ -2622,7 +2739,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "grantor", @@ -2643,7 +2761,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "admin_option", @@ -2664,7 +2783,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -2695,7 +2815,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -2716,7 +2837,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -2737,7 +2859,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -2758,7 +2881,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -2779,7 +2903,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -2800,7 +2925,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -2821,7 +2947,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rolname", @@ -2842,7 +2969,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "rolsuper", @@ -2863,7 +2991,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolinherit", @@ -2884,7 +3013,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreaterole", @@ -2905,7 +3035,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreatedb", @@ -2926,7 +3057,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcanlogin", @@ -2947,7 +3079,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolreplication", @@ -2968,7 +3101,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolbypassrls", @@ -2989,7 +3123,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolconnlimit", @@ -3010,7 +3145,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "rolpassword", @@ -3031,7 +3167,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "rolvaliduntil", @@ -3052,7 +3189,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3083,7 +3221,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "version", @@ -3104,7 +3243,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "installed", @@ -3125,7 +3265,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "superuser", @@ -3146,7 +3287,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "trusted", @@ -3167,7 +3309,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relocatable", @@ -3188,7 +3331,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "schema", @@ -3209,7 +3353,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "requires", @@ -3230,7 +3375,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "comment", @@ -3251,7 +3397,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3282,7 +3429,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "default_version", @@ -3303,7 +3451,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "installed_version", @@ -3324,7 +3473,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "comment", @@ -3345,7 +3495,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3376,7 +3527,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "ident", @@ -3397,7 +3549,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "parent", @@ -3418,7 +3571,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "level", @@ -3439,7 +3593,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "total_bytes", @@ -3460,7 +3615,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_nblocks", @@ -3481,7 +3637,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "free_bytes", @@ -3502,7 +3659,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "free_chunks", @@ -3523,7 +3681,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "used_bytes", @@ -3544,7 +3703,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3575,7 +3735,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -3596,7 +3757,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -3617,7 +3779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -3638,7 +3801,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -3659,7 +3823,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -3680,7 +3845,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -3701,7 +3867,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "castsource", @@ -3722,7 +3889,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "casttarget", @@ -3743,7 +3911,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "castfunc", @@ -3764,7 +3933,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "castcontext", @@ -3785,7 +3955,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "castmethod", @@ -3806,7 +3977,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -3837,7 +4009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -3858,7 +4031,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -3879,7 +4053,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -3900,7 +4075,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -3921,7 +4097,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -3942,7 +4119,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -3963,7 +4141,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -3984,7 +4163,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relnamespace", @@ -4005,7 +4185,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "reltype", @@ -4026,7 +4207,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "reloftype", @@ -4047,7 +4229,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relowner", @@ -4068,7 +4251,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relam", @@ -4089,7 +4273,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relfilenode", @@ -4110,7 +4295,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "reltablespace", @@ -4131,7 +4317,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relpages", @@ -4152,7 +4339,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "reltuples", @@ -4173,7 +4361,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "relallvisible", @@ -4194,7 +4383,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "reltoastrelid", @@ -4215,7 +4405,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relhasindex", @@ -4236,7 +4427,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relisshared", @@ -4257,7 +4449,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relpersistence", @@ -4278,7 +4471,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "relkind", @@ -4299,7 +4493,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "relnatts", @@ -4320,7 +4515,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "relchecks", @@ -4341,7 +4537,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "relhasrules", @@ -4362,7 +4559,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relhastriggers", @@ -4383,7 +4581,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relhassubclass", @@ -4404,7 +4603,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relrowsecurity", @@ -4425,7 +4625,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relforcerowsecurity", @@ -4446,7 +4647,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relispopulated", @@ -4467,7 +4669,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relreplident", @@ -4488,7 +4691,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "relispartition", @@ -4509,7 +4713,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "relrewrite", @@ -4530,7 +4735,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relfrozenxid", @@ -4551,7 +4757,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "relminmxid", @@ -4572,7 +4779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "relacl", @@ -4593,7 +4801,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "reloptions", @@ -4614,7 +4823,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "relpartbound", @@ -4635,7 +4845,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -4666,7 +4877,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -4687,7 +4899,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -4708,7 +4921,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -4729,7 +4943,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -4750,7 +4965,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -4771,7 +4987,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -4792,7 +5009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "collname", @@ -4813,7 +5031,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "collnamespace", @@ -4834,7 +5053,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "collowner", @@ -4855,7 +5075,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "collprovider", @@ -4876,7 +5097,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "collisdeterministic", @@ -4897,7 +5119,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "collencoding", @@ -4918,7 +5141,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "collcollate", @@ -4939,7 +5163,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "collctype", @@ -4960,7 +5185,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "colliculocale", @@ -4981,7 +5207,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "collversion", @@ -5002,7 +5229,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -5033,7 +5261,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "setting", @@ -5054,7 +5283,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -5085,7 +5315,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -5106,7 +5337,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -5127,7 +5359,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -5148,7 +5381,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -5169,7 +5403,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -5190,7 +5425,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -5211,7 +5447,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conname", @@ -5232,7 +5469,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "connamespace", @@ -5253,7 +5491,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "contype", @@ -5274,7 +5513,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "condeferrable", @@ -5295,7 +5535,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "condeferred", @@ -5316,7 +5557,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "convalidated", @@ -5337,7 +5579,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "conrelid", @@ -5358,7 +5601,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "contypid", @@ -5379,7 +5623,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conindid", @@ -5400,7 +5645,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conparentid", @@ -5421,7 +5667,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "confrelid", @@ -5442,7 +5689,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "confupdtype", @@ -5463,7 +5711,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "confdeltype", @@ -5484,7 +5733,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "confmatchtype", @@ -5505,7 +5755,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "conislocal", @@ -5526,7 +5777,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "coninhcount", @@ -5547,7 +5799,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "connoinherit", @@ -5568,7 +5821,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "conkey", @@ -5589,7 +5843,8 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false }, { "name": "confkey", @@ -5610,7 +5865,8 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false }, { "name": "conpfeqop", @@ -5631,7 +5887,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "conppeqop", @@ -5652,7 +5909,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "conffeqop", @@ -5673,7 +5931,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "confdelsetcols", @@ -5694,7 +5953,8 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false }, { "name": "conexclop", @@ -5715,7 +5975,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "conbin", @@ -5736,7 +5997,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -5767,7 +6029,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -5788,7 +6051,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -5809,7 +6073,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -5830,7 +6095,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -5851,7 +6117,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -5872,7 +6139,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -5893,7 +6161,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conname", @@ -5914,7 +6183,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "connamespace", @@ -5935,7 +6205,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conowner", @@ -5956,7 +6227,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "conforencoding", @@ -5977,7 +6249,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "contoencoding", @@ -5998,7 +6271,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "conproc", @@ -6019,7 +6293,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "condefault", @@ -6040,7 +6315,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6071,7 +6347,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "statement", @@ -6092,7 +6369,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "is_holdable", @@ -6113,7 +6391,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "is_binary", @@ -6134,7 +6413,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "is_scrollable", @@ -6155,7 +6435,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "creation_time", @@ -6176,7 +6457,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6207,7 +6489,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -6228,7 +6511,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -6249,7 +6533,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -6270,7 +6555,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -6291,7 +6577,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -6312,7 +6599,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -6333,7 +6621,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -6354,7 +6643,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "datdba", @@ -6375,7 +6665,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "encoding", @@ -6396,7 +6687,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datlocprovider", @@ -6417,7 +6709,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "datistemplate", @@ -6438,7 +6731,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "datallowconn", @@ -6459,7 +6753,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "datconnlimit", @@ -6480,7 +6775,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datfrozenxid", @@ -6501,7 +6797,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "datminmxid", @@ -6522,7 +6819,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "dattablespace", @@ -6543,7 +6841,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datcollate", @@ -6564,7 +6863,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datctype", @@ -6585,7 +6885,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "daticulocale", @@ -6606,7 +6907,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datcollversion", @@ -6627,7 +6929,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datacl", @@ -6648,7 +6951,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6679,7 +6983,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -6700,7 +7005,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -6721,7 +7027,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -6742,7 +7049,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -6763,7 +7071,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -6784,7 +7093,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "setdatabase", @@ -6805,7 +7115,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "setrole", @@ -6826,7 +7137,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "setconfig", @@ -6847,7 +7159,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -6878,7 +7191,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -6899,7 +7213,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -6920,7 +7235,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -6941,7 +7257,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -6962,7 +7279,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -6983,7 +7301,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -7004,7 +7323,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "defaclrole", @@ -7025,7 +7345,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "defaclnamespace", @@ -7046,7 +7367,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "defaclobjtype", @@ -7067,7 +7389,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "defaclacl", @@ -7088,7 +7411,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7119,7 +7443,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7140,7 +7465,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7161,7 +7487,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7182,7 +7509,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7203,7 +7531,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7224,7 +7553,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "classid", @@ -7245,7 +7575,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objid", @@ -7266,7 +7597,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -7287,7 +7619,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "refclassid", @@ -7308,7 +7641,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "refobjid", @@ -7329,7 +7663,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "refobjsubid", @@ -7350,7 +7685,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "deptype", @@ -7371,7 +7707,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7402,7 +7739,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7423,7 +7761,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7444,7 +7783,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7465,7 +7805,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7486,7 +7827,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7507,7 +7849,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -7528,7 +7871,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -7549,7 +7893,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -7570,7 +7915,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "description", @@ -7591,7 +7937,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7622,7 +7969,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7643,7 +7991,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7664,7 +8013,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7685,7 +8035,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7706,7 +8057,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7727,7 +8079,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -7748,7 +8101,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "enumtypid", @@ -7769,7 +8123,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "enumsortorder", @@ -7790,7 +8145,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "enumlabel", @@ -7811,7 +8167,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -7842,7 +8199,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -7863,7 +8221,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -7884,7 +8243,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -7905,7 +8265,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -7926,7 +8287,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -7947,7 +8309,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -7968,7 +8331,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "evtname", @@ -7989,7 +8353,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "evtevent", @@ -8010,7 +8375,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "evtowner", @@ -8031,7 +8397,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "evtfoid", @@ -8052,7 +8419,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "evtenabled", @@ -8073,7 +8441,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "evttags", @@ -8094,7 +8463,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8125,7 +8495,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -8146,7 +8517,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -8167,7 +8539,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -8188,7 +8561,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -8209,7 +8583,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -8230,7 +8605,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -8251,7 +8627,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "extname", @@ -8272,7 +8649,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "extowner", @@ -8293,7 +8671,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "extnamespace", @@ -8314,7 +8693,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "extrelocatable", @@ -8335,7 +8715,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "extversion", @@ -8356,7 +8737,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "extconfig", @@ -8377,7 +8759,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "extcondition", @@ -8398,7 +8781,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8429,7 +8813,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sourceline", @@ -8450,7 +8835,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "seqno", @@ -8471,7 +8857,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -8492,7 +8879,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "setting", @@ -8513,7 +8901,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "applied", @@ -8534,7 +8923,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "error", @@ -8555,7 +8945,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8586,7 +8977,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -8607,7 +8999,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -8628,7 +9021,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -8649,7 +9043,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -8670,7 +9065,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -8691,7 +9087,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -8712,7 +9109,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwname", @@ -8733,7 +9131,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "fdwowner", @@ -8754,7 +9153,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwhandler", @@ -8775,7 +9175,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwvalidator", @@ -8796,7 +9197,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwacl", @@ -8817,7 +9219,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "fdwoptions", @@ -8838,7 +9241,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -8869,7 +9273,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -8890,7 +9295,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -8911,7 +9317,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -8932,7 +9339,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -8953,7 +9361,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -8974,7 +9383,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -8995,7 +9405,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvname", @@ -9016,7 +9427,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "srvowner", @@ -9037,7 +9449,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvfdw", @@ -9058,7 +9471,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvtype", @@ -9079,7 +9493,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "srvversion", @@ -9100,7 +9515,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "srvacl", @@ -9121,7 +9537,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "srvoptions", @@ -9142,7 +9559,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9173,7 +9591,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -9194,7 +9613,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -9215,7 +9635,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -9236,7 +9657,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -9257,7 +9679,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -9278,7 +9701,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "ftrelid", @@ -9299,7 +9723,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "ftserver", @@ -9320,7 +9745,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "ftoptions", @@ -9341,7 +9767,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9372,7 +9799,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "grosysid", @@ -9393,7 +9821,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "grolist", @@ -9414,7 +9843,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9445,7 +9875,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "type", @@ -9466,7 +9897,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -9487,7 +9919,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "user_name", @@ -9508,7 +9941,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "address", @@ -9529,7 +9963,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "netmask", @@ -9550,7 +9985,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "auth_method", @@ -9571,7 +10007,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "options", @@ -9592,7 +10029,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "error", @@ -9613,7 +10051,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9644,7 +10083,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "map_name", @@ -9665,7 +10105,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sys_name", @@ -9686,7 +10127,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "pg_username", @@ -9707,7 +10149,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "error", @@ -9728,7 +10171,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -9759,7 +10203,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -9780,7 +10225,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -9801,7 +10247,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -9822,7 +10269,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -9843,7 +10291,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -9864,7 +10313,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -9885,7 +10335,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indrelid", @@ -9906,7 +10357,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indnatts", @@ -9927,7 +10379,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "indnkeyatts", @@ -9948,7 +10401,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "indisunique", @@ -9969,7 +10423,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indnullsnotdistinct", @@ -9990,7 +10445,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisprimary", @@ -10011,7 +10467,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisexclusion", @@ -10032,7 +10489,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indimmediate", @@ -10053,7 +10511,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisclustered", @@ -10074,7 +10533,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisvalid", @@ -10095,7 +10555,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indcheckxmin", @@ -10116,7 +10577,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisready", @@ -10137,7 +10599,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indislive", @@ -10158,7 +10621,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indisreplident", @@ -10179,7 +10643,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "indkey", @@ -10200,7 +10665,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "indcollation", @@ -10221,7 +10687,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "indclass", @@ -10242,7 +10709,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "indoption", @@ -10263,7 +10731,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "indexprs", @@ -10284,7 +10753,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "indpred", @@ -10305,7 +10775,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10336,7 +10807,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -10357,7 +10829,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexname", @@ -10378,7 +10851,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablespace", @@ -10399,7 +10873,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexdef", @@ -10420,7 +10895,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10451,7 +10927,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -10472,7 +10949,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -10493,7 +10971,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -10514,7 +10993,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -10535,7 +11015,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -10556,7 +11037,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "inhrelid", @@ -10577,7 +11059,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "inhparent", @@ -10598,7 +11081,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "inhseqno", @@ -10619,7 +11103,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "inhdetachpending", @@ -10640,7 +11125,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10671,7 +11157,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -10692,7 +11179,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -10713,7 +11201,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -10734,7 +11223,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -10755,7 +11245,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -10776,7 +11267,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -10797,7 +11289,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -10818,7 +11311,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -10839,7 +11333,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "privtype", @@ -10860,7 +11355,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "initprivs", @@ -10881,7 +11377,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -10912,7 +11409,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -10933,7 +11431,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -10954,7 +11453,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -10975,7 +11475,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -10996,7 +11497,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -11017,7 +11519,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -11038,7 +11541,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanname", @@ -11059,7 +11563,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "lanowner", @@ -11080,7 +11585,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanispl", @@ -11101,7 +11607,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "lanpltrusted", @@ -11122,7 +11629,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "lanplcallfoid", @@ -11143,7 +11651,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "laninline", @@ -11164,7 +11673,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanvalidator", @@ -11185,7 +11695,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lanacl", @@ -11206,7 +11717,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11237,7 +11749,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -11258,7 +11771,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -11279,7 +11793,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -11300,7 +11815,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -11321,7 +11837,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -11342,7 +11859,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "loid", @@ -11363,7 +11881,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pageno", @@ -11384,7 +11903,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "data", @@ -11405,7 +11925,8 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11436,7 +11957,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -11457,7 +11979,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -11478,7 +12001,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -11499,7 +12023,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -11520,7 +12045,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -11541,7 +12067,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -11562,7 +12089,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lomowner", @@ -11583,7 +12111,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "lomacl", @@ -11604,7 +12133,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11635,7 +12165,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -11656,7 +12187,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "relation", @@ -11677,7 +12209,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "page", @@ -11698,7 +12231,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "tuple", @@ -11719,7 +12253,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "virtualxid", @@ -11740,7 +12275,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "transactionid", @@ -11761,7 +12297,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "classid", @@ -11782,7 +12319,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objid", @@ -11803,7 +12341,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -11824,7 +12363,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "virtualtransaction", @@ -11845,7 +12385,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "pid", @@ -11866,7 +12407,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "mode", @@ -11887,7 +12429,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "granted", @@ -11908,7 +12451,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "fastpath", @@ -11929,7 +12473,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "waitstart", @@ -11950,7 +12495,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -11981,7 +12527,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "matviewname", @@ -12002,7 +12549,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "matviewowner", @@ -12023,7 +12571,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablespace", @@ -12044,7 +12593,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "hasindexes", @@ -12065,7 +12615,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "ispopulated", @@ -12086,7 +12637,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "definition", @@ -12107,7 +12659,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -12138,7 +12691,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -12159,7 +12713,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -12180,7 +12735,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -12201,7 +12757,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -12222,7 +12779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -12243,7 +12801,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -12264,7 +12823,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "nspname", @@ -12285,7 +12845,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "nspowner", @@ -12306,7 +12867,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "nspacl", @@ -12327,7 +12889,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -12358,7 +12921,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -12379,7 +12943,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -12400,7 +12965,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -12421,7 +12987,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -12442,7 +13009,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -12463,7 +13031,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -12484,7 +13053,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcmethod", @@ -12505,7 +13075,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcname", @@ -12526,7 +13097,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "opcnamespace", @@ -12547,7 +13119,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcowner", @@ -12568,7 +13141,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcfamily", @@ -12589,7 +13163,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcintype", @@ -12610,7 +13185,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opcdefault", @@ -12631,7 +13207,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "opckeytype", @@ -12652,7 +13229,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -12683,7 +13261,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -12704,7 +13283,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -12725,7 +13305,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -12746,7 +13327,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -12767,7 +13349,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -12788,7 +13371,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -12809,7 +13393,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprname", @@ -12830,7 +13415,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "oprnamespace", @@ -12851,7 +13437,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprowner", @@ -12872,7 +13459,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprkind", @@ -12893,7 +13481,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "oprcanmerge", @@ -12914,7 +13503,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "oprcanhash", @@ -12935,7 +13525,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "oprleft", @@ -12956,7 +13547,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprright", @@ -12977,7 +13569,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprresult", @@ -12998,7 +13591,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprcom", @@ -13019,7 +13613,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprnegate", @@ -13040,7 +13635,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "oprcode", @@ -13061,7 +13657,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "oprrest", @@ -13082,7 +13679,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "oprjoin", @@ -13103,7 +13701,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13134,7 +13733,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -13155,7 +13755,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -13176,7 +13777,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -13197,7 +13799,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -13218,7 +13821,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -13239,7 +13843,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -13260,7 +13865,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opfmethod", @@ -13281,7 +13887,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opfname", @@ -13302,7 +13909,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "opfnamespace", @@ -13323,7 +13931,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "opfowner", @@ -13344,7 +13953,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13375,7 +13985,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -13396,7 +14007,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -13417,7 +14029,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -13438,7 +14051,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -13459,7 +14073,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -13480,7 +14095,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -13501,7 +14117,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "parname", @@ -13522,7 +14139,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "paracl", @@ -13543,7 +14161,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13574,7 +14193,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -13595,7 +14215,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -13616,7 +14237,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -13637,7 +14259,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -13658,7 +14281,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -13679,7 +14303,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "partrelid", @@ -13700,7 +14325,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "partstrat", @@ -13721,7 +14347,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "partnatts", @@ -13742,7 +14369,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "partdefid", @@ -13763,7 +14391,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "partattrs", @@ -13784,7 +14413,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "partclass", @@ -13805,7 +14435,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "partcollation", @@ -13826,7 +14457,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "partexprs", @@ -13847,7 +14479,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -13878,7 +14511,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -13899,7 +14533,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "policyname", @@ -13920,7 +14555,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "permissive", @@ -13941,7 +14577,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "roles", @@ -13962,7 +14599,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "cmd", @@ -13983,7 +14621,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "qual", @@ -14004,7 +14643,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "with_check", @@ -14025,7 +14665,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14056,7 +14697,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -14077,7 +14719,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -14098,7 +14741,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -14119,7 +14763,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -14140,7 +14785,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -14161,7 +14807,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -14182,7 +14829,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "polname", @@ -14203,7 +14851,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "polrelid", @@ -14224,7 +14873,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "polcmd", @@ -14245,7 +14895,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "polpermissive", @@ -14266,7 +14917,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "polroles", @@ -14287,7 +14939,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "polqual", @@ -14308,7 +14961,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "polwithcheck", @@ -14329,7 +14983,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14360,7 +15015,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "statement", @@ -14381,7 +15037,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "prepare_time", @@ -14402,7 +15059,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_types", @@ -14423,7 +15081,8 @@ "catalog": "", "schema": "", "name": "_regtype" - } + }, + "is_sqlc_slice": false }, { "name": "from_sql", @@ -14444,7 +15103,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "generic_plans", @@ -14465,7 +15125,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "custom_plans", @@ -14486,7 +15147,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14517,7 +15179,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "gid", @@ -14538,7 +15201,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "prepared", @@ -14559,7 +15223,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "owner", @@ -14580,7 +15245,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -14601,7 +15267,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -14632,7 +15299,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -14653,7 +15321,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -14674,7 +15343,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -14695,7 +15365,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -14716,7 +15387,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -14737,7 +15409,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -14758,7 +15431,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "proname", @@ -14779,7 +15453,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pronamespace", @@ -14800,7 +15475,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "proowner", @@ -14821,7 +15497,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prolang", @@ -14842,7 +15519,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "procost", @@ -14863,7 +15541,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "prorows", @@ -14884,7 +15563,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "provariadic", @@ -14905,7 +15585,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prosupport", @@ -14926,7 +15607,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prokind", @@ -14947,7 +15629,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "prosecdef", @@ -14968,7 +15651,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "proleakproof", @@ -14989,7 +15673,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "proisstrict", @@ -15010,7 +15695,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "proretset", @@ -15031,7 +15717,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "provolatile", @@ -15052,7 +15739,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "proparallel", @@ -15073,7 +15761,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "pronargs", @@ -15094,7 +15783,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "pronargdefaults", @@ -15115,7 +15805,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "prorettype", @@ -15136,7 +15827,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "proargtypes", @@ -15157,7 +15849,8 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false }, { "name": "proallargtypes", @@ -15178,7 +15871,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "proargmodes", @@ -15199,7 +15893,8 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false }, { "name": "proargnames", @@ -15220,7 +15915,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "proargdefaults", @@ -15241,7 +15937,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "protrftypes", @@ -15262,7 +15959,8 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false }, { "name": "prosrc", @@ -15283,7 +15981,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "probin", @@ -15304,7 +16003,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "prosqlbody", @@ -15325,7 +16025,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "proconfig", @@ -15346,7 +16047,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "proacl", @@ -15367,7 +16069,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -15398,7 +16101,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -15419,7 +16123,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -15440,7 +16145,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -15461,7 +16167,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -15482,7 +16189,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -15503,7 +16211,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -15524,7 +16233,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pubname", @@ -15545,7 +16255,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pubowner", @@ -15566,7 +16277,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "puballtables", @@ -15587,7 +16299,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubinsert", @@ -15608,7 +16321,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubupdate", @@ -15629,7 +16343,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubdelete", @@ -15650,7 +16365,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubtruncate", @@ -15671,7 +16387,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "pubviaroot", @@ -15692,7 +16409,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -15723,7 +16441,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -15744,7 +16463,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -15765,7 +16485,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -15786,7 +16507,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -15807,7 +16529,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -15828,7 +16551,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -15849,7 +16573,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pnpubid", @@ -15870,7 +16595,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "pnnspid", @@ -15891,7 +16617,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -15922,7 +16649,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -15943,7 +16671,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -15964,7 +16693,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -15985,7 +16715,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -16006,7 +16737,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -16027,7 +16759,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -16048,7 +16781,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prpubid", @@ -16069,7 +16803,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prrelid", @@ -16090,7 +16825,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prqual", @@ -16111,7 +16847,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "prattrs", @@ -16132,7 +16869,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16163,7 +16901,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -16184,7 +16923,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -16205,7 +16945,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attnames", @@ -16226,7 +16967,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "rowfilter", @@ -16247,7 +16989,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16278,7 +17021,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -16299,7 +17043,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -16320,7 +17065,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -16341,7 +17087,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -16362,7 +17109,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -16383,7 +17131,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "rngtypid", @@ -16404,7 +17153,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngsubtype", @@ -16425,7 +17175,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngmultitypid", @@ -16446,7 +17197,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngcollation", @@ -16467,7 +17219,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngsubopc", @@ -16488,7 +17241,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rngcanonical", @@ -16509,7 +17263,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "rngsubdiff", @@ -16530,7 +17285,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16561,7 +17317,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -16582,7 +17339,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -16603,7 +17361,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -16624,7 +17383,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -16645,7 +17405,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -16666,7 +17427,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "roident", @@ -16687,7 +17449,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "roname", @@ -16708,7 +17471,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16739,7 +17503,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "external_id", @@ -16760,7 +17525,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "remote_lsn", @@ -16781,7 +17547,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "local_lsn", @@ -16802,7 +17569,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -16833,7 +17601,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "plugin", @@ -16854,7 +17623,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "slot_type", @@ -16875,7 +17645,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "datoid", @@ -16896,7 +17667,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "database", @@ -16917,7 +17689,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "temporary", @@ -16938,7 +17711,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "active", @@ -16959,7 +17733,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "active_pid", @@ -16980,7 +17755,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -17001,7 +17777,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "catalog_xmin", @@ -17022,7 +17799,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "restart_lsn", @@ -17043,7 +17821,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "confirmed_flush_lsn", @@ -17064,7 +17843,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "wal_status", @@ -17085,7 +17865,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "safe_wal_size", @@ -17106,7 +17887,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "two_phase", @@ -17127,7 +17909,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17158,7 +17941,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -17179,7 +17963,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -17200,7 +17985,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -17221,7 +18007,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -17242,7 +18029,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -17263,7 +18051,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -17284,7 +18073,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "rulename", @@ -17305,7 +18095,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "ev_class", @@ -17326,7 +18117,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "ev_type", @@ -17347,7 +18139,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "ev_enabled", @@ -17368,7 +18161,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "is_instead", @@ -17389,7 +18183,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "ev_qual", @@ -17410,7 +18205,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "ev_action", @@ -17431,7 +18227,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17462,7 +18259,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "rolsuper", @@ -17483,7 +18281,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolinherit", @@ -17504,7 +18303,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreaterole", @@ -17525,7 +18325,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcreatedb", @@ -17546,7 +18347,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolcanlogin", @@ -17567,7 +18369,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolreplication", @@ -17588,7 +18391,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolconnlimit", @@ -17609,7 +18413,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "rolpassword", @@ -17630,7 +18435,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "rolvaliduntil", @@ -17651,7 +18457,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "rolbypassrls", @@ -17672,7 +18479,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rolconfig", @@ -17693,7 +18501,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -17714,7 +18523,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17745,7 +18555,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -17766,7 +18577,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "rulename", @@ -17787,7 +18599,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "definition", @@ -17808,7 +18621,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -17839,7 +18653,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -17860,7 +18675,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -17881,7 +18697,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -17902,7 +18719,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -17923,7 +18741,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -17944,7 +18763,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -17965,7 +18785,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -17986,7 +18807,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -18007,7 +18829,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "provider", @@ -18028,7 +18851,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "label", @@ -18049,7 +18873,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18080,7 +18905,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -18101,7 +18927,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -18122,7 +18949,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "objtype", @@ -18143,7 +18971,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "objnamespace", @@ -18164,7 +18993,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objname", @@ -18185,7 +19015,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "provider", @@ -18206,7 +19037,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "label", @@ -18227,7 +19059,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18258,7 +19091,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -18279,7 +19113,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -18300,7 +19135,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -18321,7 +19157,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -18342,7 +19179,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -18363,7 +19201,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "seqrelid", @@ -18384,7 +19223,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "seqtypid", @@ -18405,7 +19245,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "seqstart", @@ -18426,7 +19267,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqincrement", @@ -18447,7 +19289,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqmax", @@ -18468,7 +19311,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqmin", @@ -18489,7 +19333,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqcache", @@ -18510,7 +19355,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seqcycle", @@ -18531,7 +19377,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18562,7 +19409,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "sequencename", @@ -18583,7 +19431,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "sequenceowner", @@ -18604,7 +19453,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -18625,7 +19475,8 @@ "catalog": "", "schema": "", "name": "regtype" - } + }, + "is_sqlc_slice": false }, { "name": "start_value", @@ -18646,7 +19497,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "min_value", @@ -18667,7 +19519,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "max_value", @@ -18688,7 +19541,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "increment_by", @@ -18709,7 +19563,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "cycle", @@ -18730,7 +19585,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "cache_size", @@ -18751,7 +19607,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_value", @@ -18772,7 +19629,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -18803,7 +19661,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "setting", @@ -18824,7 +19683,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "unit", @@ -18845,7 +19705,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "category", @@ -18866,7 +19727,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "short_desc", @@ -18887,7 +19749,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "extra_desc", @@ -18908,7 +19771,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "context", @@ -18929,7 +19793,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "vartype", @@ -18950,7 +19815,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "source", @@ -18971,7 +19837,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "min_val", @@ -18992,7 +19859,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "max_val", @@ -19013,7 +19881,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "enumvals", @@ -19034,7 +19903,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "boot_val", @@ -19055,7 +19925,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "reset_val", @@ -19076,7 +19947,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sourcefile", @@ -19097,7 +19969,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sourceline", @@ -19118,7 +19991,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "pending_restart", @@ -19139,7 +20013,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19170,7 +20045,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -19191,7 +20067,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usecreatedb", @@ -19212,7 +20089,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usesuper", @@ -19233,7 +20111,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "userepl", @@ -19254,7 +20133,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usebypassrls", @@ -19275,7 +20155,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "passwd", @@ -19296,7 +20177,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "valuntil", @@ -19317,7 +20199,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "useconfig", @@ -19338,7 +20221,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19369,7 +20253,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -19390,7 +20275,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -19411,7 +20297,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -19432,7 +20319,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -19453,7 +20341,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -19474,7 +20363,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "dbid", @@ -19495,7 +20385,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classid", @@ -19516,7 +20407,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objid", @@ -19537,7 +20429,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "objsubid", @@ -19558,7 +20451,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "refclassid", @@ -19579,7 +20473,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "refobjid", @@ -19600,7 +20495,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "deptype", @@ -19621,7 +20517,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19652,7 +20549,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -19673,7 +20571,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -19694,7 +20593,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -19715,7 +20615,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -19736,7 +20637,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -19757,7 +20659,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -19778,7 +20681,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -19799,7 +20703,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "description", @@ -19820,7 +20725,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19851,7 +20757,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "off", @@ -19872,7 +20779,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "size", @@ -19893,7 +20801,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "allocated_size", @@ -19914,7 +20823,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -19945,7 +20855,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -19966,7 +20877,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -19987,7 +20899,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -20008,7 +20921,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -20029,7 +20943,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -20050,7 +20965,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "objoid", @@ -20071,7 +20987,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "classoid", @@ -20092,7 +21009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "provider", @@ -20113,7 +21031,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "label", @@ -20134,7 +21053,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -20165,7 +21085,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -20186,7 +21107,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pid", @@ -20207,7 +21129,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "leader_pid", @@ -20228,7 +21151,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -20249,7 +21173,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usename", @@ -20270,7 +21195,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "application_name", @@ -20291,7 +21217,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_addr", @@ -20312,7 +21239,8 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false }, { "name": "client_hostname", @@ -20333,7 +21261,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_port", @@ -20354,7 +21283,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "backend_start", @@ -20375,7 +21305,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "xact_start", @@ -20396,7 +21327,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "query_start", @@ -20417,7 +21349,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "state_change", @@ -20438,7 +21371,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "wait_event_type", @@ -20459,7 +21393,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "wait_event", @@ -20480,7 +21415,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "state", @@ -20501,7 +21437,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "backend_xid", @@ -20522,7 +21459,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "backend_xmin", @@ -20543,7 +21481,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "query_id", @@ -20564,7 +21503,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "query", @@ -20585,7 +21525,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "backend_type", @@ -20606,7 +21547,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -20637,7 +21579,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -20658,7 +21601,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -20679,7 +21623,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -20700,7 +21645,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -20721,7 +21667,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -20742,7 +21689,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_read", @@ -20763,7 +21711,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -20784,7 +21733,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -20815,7 +21765,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -20836,7 +21787,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -20857,7 +21809,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -20878,7 +21831,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -20899,7 +21853,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -20920,7 +21875,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -20941,7 +21897,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -20962,7 +21919,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -20983,7 +21941,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -21004,7 +21963,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -21025,7 +21985,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_live_tup", @@ -21046,7 +22007,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_dead_tup", @@ -21067,7 +22029,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_mod_since_analyze", @@ -21088,7 +22051,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_ins_since_vacuum", @@ -21109,7 +22073,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_vacuum", @@ -21130,7 +22095,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autovacuum", @@ -21151,7 +22117,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_analyze", @@ -21172,7 +22139,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autoanalyze", @@ -21193,7 +22161,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "vacuum_count", @@ -21214,7 +22183,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autovacuum_count", @@ -21235,7 +22205,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "analyze_count", @@ -21256,7 +22227,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autoanalyze_count", @@ -21277,7 +22249,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -21308,7 +22281,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_archived_wal", @@ -21329,7 +22303,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "last_archived_time", @@ -21350,7 +22325,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "failed_count", @@ -21371,7 +22347,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_failed_wal", @@ -21392,7 +22369,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "last_failed_time", @@ -21413,7 +22391,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -21434,7 +22413,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -21465,7 +22445,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checkpoints_req", @@ -21486,7 +22467,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checkpoint_write_time", @@ -21507,7 +22489,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "checkpoint_sync_time", @@ -21528,7 +22511,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_checkpoint", @@ -21549,7 +22533,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_clean", @@ -21570,7 +22555,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "maxwritten_clean", @@ -21591,7 +22577,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_backend", @@ -21612,7 +22599,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_backend_fsync", @@ -21633,7 +22621,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "buffers_alloc", @@ -21654,7 +22643,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -21675,7 +22665,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -21706,7 +22697,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -21727,7 +22719,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "numbackends", @@ -21748,7 +22741,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "xact_commit", @@ -21769,7 +22763,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "xact_rollback", @@ -21790,7 +22785,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -21811,7 +22807,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -21832,7 +22829,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_returned", @@ -21853,7 +22851,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_fetched", @@ -21874,7 +22873,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_inserted", @@ -21895,7 +22895,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_updated", @@ -21916,7 +22917,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tup_deleted", @@ -21937,7 +22939,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "conflicts", @@ -21958,7 +22961,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "temp_files", @@ -21979,7 +22983,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "temp_bytes", @@ -22000,7 +23005,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "deadlocks", @@ -22021,7 +23027,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checksum_failures", @@ -22042,7 +23049,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "checksum_last_failure", @@ -22063,7 +23071,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "blk_read_time", @@ -22084,7 +23093,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "blk_write_time", @@ -22105,7 +23115,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "session_time", @@ -22126,7 +23137,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "active_time", @@ -22147,7 +23159,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "idle_in_transaction_time", @@ -22168,7 +23181,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions", @@ -22189,7 +23203,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions_abandoned", @@ -22210,7 +23225,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions_fatal", @@ -22231,7 +23247,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sessions_killed", @@ -22252,7 +23269,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -22273,7 +23291,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22304,7 +23323,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -22325,7 +23345,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "confl_tablespace", @@ -22346,7 +23367,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_lock", @@ -22367,7 +23389,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_snapshot", @@ -22388,7 +23411,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_bufferpin", @@ -22409,7 +23433,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "confl_deadlock", @@ -22430,7 +23455,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22461,7 +23487,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "gss_authenticated", @@ -22482,7 +23509,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "principal", @@ -22503,7 +23531,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "encrypted", @@ -22524,7 +23553,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22555,7 +23585,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -22576,7 +23607,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -22597,7 +23629,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -22618,7 +23651,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -22639,7 +23673,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sample_blks_total", @@ -22660,7 +23695,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sample_blks_scanned", @@ -22681,7 +23717,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "ext_stats_total", @@ -22702,7 +23739,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "ext_stats_computed", @@ -22723,7 +23761,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "child_tables_total", @@ -22744,7 +23783,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "child_tables_done", @@ -22765,7 +23805,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "current_child_table_relid", @@ -22786,7 +23827,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22817,7 +23859,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -22838,7 +23881,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "backup_total", @@ -22859,7 +23903,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "backup_streamed", @@ -22880,7 +23925,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tablespaces_total", @@ -22901,7 +23947,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tablespaces_streamed", @@ -22922,7 +23969,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -22953,7 +24001,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -22974,7 +24023,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -22995,7 +24045,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23016,7 +24067,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "command", @@ -23037,7 +24089,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -23058,7 +24111,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "cluster_index_relid", @@ -23079,7 +24133,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "heap_tuples_scanned", @@ -23100,7 +24155,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_tuples_written", @@ -23121,7 +24177,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_total", @@ -23142,7 +24199,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_scanned", @@ -23163,7 +24221,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "index_rebuild_count", @@ -23184,7 +24243,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -23215,7 +24275,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -23236,7 +24297,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -23257,7 +24319,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23278,7 +24341,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "command", @@ -23299,7 +24363,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "type", @@ -23320,7 +24385,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bytes_processed", @@ -23341,7 +24407,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "bytes_total", @@ -23362,7 +24429,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_processed", @@ -23383,7 +24451,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_excluded", @@ -23404,7 +24473,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -23435,7 +24505,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -23456,7 +24527,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -23477,7 +24549,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23498,7 +24571,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "index_relid", @@ -23519,7 +24593,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "command", @@ -23540,7 +24615,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -23561,7 +24637,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "lockers_total", @@ -23582,7 +24659,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "lockers_done", @@ -23603,7 +24681,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "current_locker_pid", @@ -23624,7 +24703,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blocks_total", @@ -23645,7 +24725,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blocks_done", @@ -23666,7 +24747,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_total", @@ -23687,7 +24769,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tuples_done", @@ -23708,7 +24791,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "partitions_total", @@ -23729,7 +24813,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "partitions_done", @@ -23750,7 +24835,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -23781,7 +24867,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "datid", @@ -23802,7 +24889,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "datname", @@ -23823,7 +24911,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -23844,7 +24933,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "phase", @@ -23865,7 +24955,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_total", @@ -23886,7 +24977,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_scanned", @@ -23907,7 +24999,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_vacuumed", @@ -23928,7 +25021,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "index_vacuum_count", @@ -23949,7 +25043,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "max_dead_tuples", @@ -23970,7 +25065,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "num_dead_tuples", @@ -23991,7 +25087,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24022,7 +25119,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "prefetch", @@ -24043,7 +25141,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "hit", @@ -24064,7 +25163,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_init", @@ -24085,7 +25185,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_new", @@ -24106,7 +25207,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_fpw", @@ -24127,7 +25229,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "skip_rep", @@ -24148,7 +25251,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_distance", @@ -24169,7 +25273,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "block_distance", @@ -24190,7 +25295,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "io_depth", @@ -24211,7 +25317,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24242,7 +25349,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -24263,7 +25371,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usename", @@ -24284,7 +25393,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "application_name", @@ -24305,7 +25415,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_addr", @@ -24326,7 +25437,8 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false }, { "name": "client_hostname", @@ -24347,7 +25459,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_port", @@ -24368,7 +25481,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "backend_start", @@ -24389,7 +25503,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "backend_xmin", @@ -24410,7 +25525,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "state", @@ -24431,7 +25547,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sent_lsn", @@ -24452,7 +25569,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "write_lsn", @@ -24473,7 +25591,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "flush_lsn", @@ -24494,7 +25613,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "replay_lsn", @@ -24515,7 +25635,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "write_lag", @@ -24536,7 +25657,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "flush_lag", @@ -24557,7 +25679,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "replay_lag", @@ -24578,7 +25701,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "sync_priority", @@ -24599,7 +25723,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "sync_state", @@ -24620,7 +25745,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "reply_time", @@ -24641,7 +25767,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24672,7 +25799,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "spill_txns", @@ -24693,7 +25821,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "spill_count", @@ -24714,7 +25843,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "spill_bytes", @@ -24735,7 +25865,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stream_txns", @@ -24756,7 +25887,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stream_count", @@ -24777,7 +25909,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stream_bytes", @@ -24798,7 +25931,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_txns", @@ -24819,7 +25953,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_bytes", @@ -24840,7 +25975,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -24861,7 +25997,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -24892,7 +26029,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "blks_zeroed", @@ -24913,7 +26051,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -24934,7 +26073,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -24955,7 +26095,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_written", @@ -24976,7 +26117,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_exists", @@ -24997,7 +26139,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "flushes", @@ -25018,7 +26161,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "truncates", @@ -25039,7 +26183,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -25060,7 +26205,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25091,7 +26237,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "ssl", @@ -25112,7 +26259,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "version", @@ -25133,7 +26281,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "cipher", @@ -25154,7 +26303,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bits", @@ -25175,7 +26325,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "client_dn", @@ -25196,7 +26347,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "client_serial", @@ -25217,7 +26369,8 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false }, { "name": "issuer_dn", @@ -25238,7 +26391,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25269,7 +26423,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subname", @@ -25290,7 +26445,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "pid", @@ -25311,7 +26467,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "relid", @@ -25332,7 +26489,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "received_lsn", @@ -25353,7 +26511,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_send_time", @@ -25374,7 +26533,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_receipt_time", @@ -25395,7 +26555,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_lsn", @@ -25416,7 +26577,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_time", @@ -25437,7 +26599,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25468,7 +26631,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subname", @@ -25489,7 +26653,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "apply_error_count", @@ -25510,7 +26675,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "sync_error_count", @@ -25531,7 +26697,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -25552,7 +26719,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25583,7 +26751,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -25604,7 +26773,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -25625,7 +26795,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -25646,7 +26817,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -25667,7 +26839,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -25688,7 +26861,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_read", @@ -25709,7 +26883,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -25730,7 +26905,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -25761,7 +26937,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -25782,7 +26959,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -25803,7 +26981,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -25824,7 +27003,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -25845,7 +27025,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -25866,7 +27047,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -25887,7 +27069,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -25908,7 +27091,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -25929,7 +27113,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -25950,7 +27135,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -25971,7 +27157,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_live_tup", @@ -25992,7 +27179,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_dead_tup", @@ -26013,7 +27201,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_mod_since_analyze", @@ -26034,7 +27223,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_ins_since_vacuum", @@ -26055,7 +27245,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_vacuum", @@ -26076,7 +27267,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autovacuum", @@ -26097,7 +27289,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_analyze", @@ -26118,7 +27311,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autoanalyze", @@ -26139,7 +27333,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "vacuum_count", @@ -26160,7 +27355,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autovacuum_count", @@ -26181,7 +27377,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "analyze_count", @@ -26202,7 +27399,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autoanalyze_count", @@ -26223,7 +27421,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -26254,7 +27453,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -26275,7 +27475,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "funcname", @@ -26296,7 +27497,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "calls", @@ -26317,7 +27519,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_time", @@ -26338,7 +27541,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "self_time", @@ -26359,7 +27563,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -26390,7 +27595,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -26411,7 +27617,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -26432,7 +27639,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -26453,7 +27661,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -26474,7 +27683,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -26495,7 +27705,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_read", @@ -26516,7 +27727,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -26537,7 +27749,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -26568,7 +27781,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -26589,7 +27803,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -26610,7 +27825,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -26631,7 +27847,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -26652,7 +27869,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -26673,7 +27891,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -26694,7 +27913,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -26715,7 +27935,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -26736,7 +27957,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -26757,7 +27979,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -26778,7 +28001,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_live_tup", @@ -26799,7 +28023,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_dead_tup", @@ -26820,7 +28045,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_mod_since_analyze", @@ -26841,7 +28067,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_ins_since_vacuum", @@ -26862,7 +28089,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "last_vacuum", @@ -26883,7 +28111,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autovacuum", @@ -26904,7 +28133,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_analyze", @@ -26925,7 +28155,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_autoanalyze", @@ -26946,7 +28177,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "vacuum_count", @@ -26967,7 +28199,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autovacuum_count", @@ -26988,7 +28221,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "analyze_count", @@ -27009,7 +28243,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "autoanalyze_count", @@ -27030,7 +28265,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27061,7 +28297,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_fpi", @@ -27082,7 +28319,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_bytes", @@ -27103,7 +28341,8 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false }, { "name": "wal_buffers_full", @@ -27124,7 +28363,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_write", @@ -27145,7 +28385,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_sync", @@ -27166,7 +28407,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_write_time", @@ -27187,7 +28429,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "wal_sync_time", @@ -27208,7 +28451,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "stats_reset", @@ -27229,7 +28473,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27260,7 +28505,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "status", @@ -27281,7 +28527,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "receive_start_lsn", @@ -27302,7 +28549,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "receive_start_tli", @@ -27323,7 +28571,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "written_lsn", @@ -27344,7 +28593,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "flushed_lsn", @@ -27365,7 +28615,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "received_tli", @@ -27386,7 +28637,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_send_time", @@ -27407,7 +28659,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "last_msg_receipt_time", @@ -27428,7 +28681,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_lsn", @@ -27449,7 +28703,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "latest_end_time", @@ -27470,7 +28725,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "slot_name", @@ -27491,7 +28747,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sender_host", @@ -27512,7 +28769,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "sender_port", @@ -27533,7 +28791,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "conninfo", @@ -27554,7 +28813,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27585,7 +28845,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -27606,7 +28867,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -27627,7 +28889,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -27648,7 +28911,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -27669,7 +28933,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -27690,7 +28955,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -27711,7 +28977,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -27732,7 +28999,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -27753,7 +29021,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -27774,7 +29043,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -27795,7 +29065,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -27826,7 +29097,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -27847,7 +29119,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -27868,7 +29141,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -27889,7 +29163,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -27910,7 +29185,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -27931,7 +29207,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -27952,7 +29229,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -27973,7 +29251,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -27994,7 +29273,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -28015,7 +29295,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -28036,7 +29317,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28067,7 +29349,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28088,7 +29371,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "funcname", @@ -28109,7 +29393,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "calls", @@ -28130,7 +29415,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "total_time", @@ -28151,7 +29437,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false }, { "name": "self_time", @@ -28172,7 +29459,8 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28203,7 +29491,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28224,7 +29513,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28245,7 +29535,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "seq_scan", @@ -28266,7 +29557,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "seq_tup_read", @@ -28287,7 +29579,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_scan", @@ -28308,7 +29601,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_tup_fetch", @@ -28329,7 +29623,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_ins", @@ -28350,7 +29645,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_upd", @@ -28371,7 +29667,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_del", @@ -28392,7 +29689,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "n_tup_hot_upd", @@ -28413,7 +29711,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28444,7 +29743,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -28465,7 +29765,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28486,7 +29787,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28507,7 +29809,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -28528,7 +29831,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -28549,7 +29853,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -28570,7 +29875,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28601,7 +29907,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28622,7 +29929,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28643,7 +29951,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -28664,7 +29973,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -28685,7 +29995,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28716,7 +30027,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28737,7 +30049,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -28758,7 +30071,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_read", @@ -28779,7 +30093,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_hit", @@ -28800,7 +30115,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -28821,7 +30137,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -28842,7 +30159,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_read", @@ -28863,7 +30181,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_hit", @@ -28884,7 +30203,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_read", @@ -28905,7 +30225,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_hit", @@ -28926,7 +30247,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -28957,7 +30279,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -28978,7 +30301,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -28999,7 +30323,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29020,7 +30345,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -29041,7 +30367,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29062,7 +30389,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29083,7 +30411,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29114,7 +30443,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29135,7 +30465,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29156,7 +30487,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -29177,7 +30509,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -29198,7 +30531,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29229,7 +30563,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29250,7 +30585,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29271,7 +30607,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_read", @@ -29292,7 +30629,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_hit", @@ -29313,7 +30651,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29334,7 +30673,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29355,7 +30695,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_read", @@ -29376,7 +30717,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_hit", @@ -29397,7 +30739,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_read", @@ -29418,7 +30761,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_hit", @@ -29439,7 +30783,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29470,7 +30815,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelid", @@ -29491,7 +30837,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29512,7 +30859,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29533,7 +30881,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "indexrelname", @@ -29554,7 +30903,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29575,7 +30925,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29596,7 +30947,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29627,7 +30979,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29648,7 +31001,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29669,7 +31023,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "blks_read", @@ -29690,7 +31045,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "blks_hit", @@ -29711,7 +31067,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29742,7 +31099,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "schemaname", @@ -29763,7 +31121,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -29784,7 +31143,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_read", @@ -29805,7 +31165,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "heap_blks_hit", @@ -29826,7 +31187,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_read", @@ -29847,7 +31209,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "idx_blks_hit", @@ -29868,7 +31231,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_read", @@ -29889,7 +31253,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "toast_blks_hit", @@ -29910,7 +31275,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_read", @@ -29931,7 +31297,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false }, { "name": "tidx_blks_hit", @@ -29952,7 +31319,8 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -29983,7 +31351,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -30004,7 +31373,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -30025,7 +31395,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -30046,7 +31417,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -30067,7 +31439,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -30088,7 +31461,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "starelid", @@ -30109,7 +31483,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staattnum", @@ -30130,7 +31505,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stainherit", @@ -30151,7 +31527,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "stanullfrac", @@ -30172,7 +31549,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "stawidth", @@ -30193,7 +31571,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "stadistinct", @@ -30214,7 +31593,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "stakind1", @@ -30235,7 +31615,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind2", @@ -30256,7 +31637,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind3", @@ -30277,7 +31659,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind4", @@ -30298,7 +31681,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "stakind5", @@ -30319,7 +31703,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "staop1", @@ -30340,7 +31725,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop2", @@ -30361,7 +31747,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop3", @@ -30382,7 +31769,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop4", @@ -30403,7 +31791,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "staop5", @@ -30424,7 +31813,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll1", @@ -30445,7 +31835,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll2", @@ -30466,7 +31857,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll3", @@ -30487,7 +31879,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll4", @@ -30508,7 +31901,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stacoll5", @@ -30529,7 +31923,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers1", @@ -30550,7 +31945,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers2", @@ -30571,7 +31967,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers3", @@ -30592,7 +31989,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers4", @@ -30613,7 +32011,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stanumbers5", @@ -30634,7 +32033,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues1", @@ -30655,7 +32055,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues2", @@ -30676,7 +32077,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues3", @@ -30697,7 +32099,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues4", @@ -30718,7 +32121,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "stavalues5", @@ -30739,7 +32143,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -30770,7 +32175,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -30791,7 +32197,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -30812,7 +32219,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -30833,7 +32241,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -30854,7 +32263,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -30875,7 +32285,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -30896,7 +32307,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxrelid", @@ -30917,7 +32329,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxname", @@ -30938,7 +32351,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "stxnamespace", @@ -30959,7 +32373,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxowner", @@ -30980,7 +32395,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxstattarget", @@ -31001,7 +32417,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "stxkeys", @@ -31022,7 +32439,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "stxkind", @@ -31043,7 +32461,8 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false }, { "name": "stxexprs", @@ -31064,7 +32483,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31095,7 +32515,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -31116,7 +32537,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -31137,7 +32559,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -31158,7 +32581,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -31179,7 +32603,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -31200,7 +32625,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "stxoid", @@ -31221,7 +32647,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "stxdinherit", @@ -31242,7 +32669,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "stxdndistinct", @@ -31263,7 +32691,8 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false }, { "name": "stxddependencies", @@ -31284,7 +32713,8 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false }, { "name": "stxdmcv", @@ -31305,7 +32735,8 @@ "catalog": "", "schema": "", "name": "pg_mcv_list" - } + }, + "is_sqlc_slice": false }, { "name": "stxdexpr", @@ -31326,7 +32757,8 @@ "catalog": "", "schema": "", "name": "_pg_statistic" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31357,7 +32789,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -31378,7 +32811,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attname", @@ -31399,7 +32833,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "inherited", @@ -31420,7 +32855,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "null_frac", @@ -31441,7 +32877,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "avg_width", @@ -31462,7 +32899,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "n_distinct", @@ -31483,7 +32921,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_vals", @@ -31504,7 +32943,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_freqs", @@ -31525,7 +32965,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "histogram_bounds", @@ -31546,7 +32987,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "correlation", @@ -31567,7 +33009,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elems", @@ -31588,7 +33031,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elem_freqs", @@ -31609,7 +33053,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "elem_count_histogram", @@ -31630,7 +33075,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31661,7 +33107,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -31682,7 +33129,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_schemaname", @@ -31703,7 +33151,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_name", @@ -31724,7 +33173,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_owner", @@ -31745,7 +33195,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attnames", @@ -31766,7 +33217,8 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false }, { "name": "exprs", @@ -31787,7 +33239,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "kinds", @@ -31808,7 +33261,8 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false }, { "name": "inherited", @@ -31829,7 +33283,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "n_distinct", @@ -31850,7 +33305,8 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false }, { "name": "dependencies", @@ -31871,7 +33327,8 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_vals", @@ -31892,7 +33349,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_val_nulls", @@ -31913,7 +33371,8 @@ "catalog": "", "schema": "", "name": "_bool" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_freqs", @@ -31934,7 +33393,8 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_base_freqs", @@ -31955,7 +33415,8 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -31986,7 +33447,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -32007,7 +33469,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_schemaname", @@ -32028,7 +33491,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_name", @@ -32049,7 +33513,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "statistics_owner", @@ -32070,7 +33535,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "expr", @@ -32091,7 +33557,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "inherited", @@ -32112,7 +33579,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "null_frac", @@ -32133,7 +33601,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "avg_width", @@ -32154,7 +33623,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "n_distinct", @@ -32175,7 +33645,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_vals", @@ -32196,7 +33667,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_freqs", @@ -32217,7 +33689,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "histogram_bounds", @@ -32238,7 +33711,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "correlation", @@ -32259,7 +33733,8 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elems", @@ -32280,7 +33755,8 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false }, { "name": "most_common_elem_freqs", @@ -32301,7 +33777,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false }, { "name": "elem_count_histogram", @@ -32322,7 +33799,8 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -32353,7 +33831,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -32374,7 +33853,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -32395,7 +33875,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -32416,7 +33897,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -32437,7 +33919,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -32458,7 +33941,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -32479,7 +33963,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subdbid", @@ -32500,7 +33985,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subskiplsn", @@ -32521,7 +34007,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false }, { "name": "subname", @@ -32542,7 +34029,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "subowner", @@ -32563,7 +34051,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "subenabled", @@ -32584,7 +34073,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "subbinary", @@ -32605,7 +34095,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "substream", @@ -32626,7 +34117,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "subtwophasestate", @@ -32647,7 +34139,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "subdisableonerr", @@ -32668,7 +34161,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "subconninfo", @@ -32689,7 +34183,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "subslotname", @@ -32710,7 +34205,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "subsynccommit", @@ -32731,7 +34227,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "subpublications", @@ -32752,7 +34249,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -32783,7 +34281,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -32804,7 +34303,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -32825,7 +34325,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -32846,7 +34347,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -32867,7 +34369,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -32888,7 +34391,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "srsubid", @@ -32909,7 +34413,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srrelid", @@ -32930,7 +34435,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srsubstate", @@ -32951,7 +34457,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "srsublsn", @@ -32972,7 +34479,8 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33003,7 +34511,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablename", @@ -33024,7 +34533,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tableowner", @@ -33045,7 +34555,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tablespace", @@ -33066,7 +34577,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "hasindexes", @@ -33087,7 +34599,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "hasrules", @@ -33108,7 +34621,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "hastriggers", @@ -33129,7 +34643,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "rowsecurity", @@ -33150,7 +34665,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33181,7 +34697,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -33202,7 +34719,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -33223,7 +34741,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -33244,7 +34763,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -33265,7 +34785,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -33286,7 +34807,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -33307,7 +34829,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "spcname", @@ -33328,7 +34851,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "spcowner", @@ -33349,7 +34873,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "spcacl", @@ -33370,7 +34895,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false }, { "name": "spcoptions", @@ -33391,7 +34917,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33422,7 +34949,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "utc_offset", @@ -33443,7 +34971,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "is_dst", @@ -33464,7 +34993,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33495,7 +35025,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "abbrev", @@ -33516,7 +35047,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "utc_offset", @@ -33537,7 +35069,8 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false }, { "name": "is_dst", @@ -33558,7 +35091,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33589,7 +35123,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -33610,7 +35145,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -33631,7 +35167,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -33652,7 +35189,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -33673,7 +35211,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -33694,7 +35233,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -33715,7 +35255,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "trftype", @@ -33736,7 +35277,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "trflang", @@ -33757,7 +35299,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "trffromsql", @@ -33778,7 +35321,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "trftosql", @@ -33799,7 +35343,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -33830,7 +35375,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -33851,7 +35397,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -33872,7 +35419,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -33893,7 +35441,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -33914,7 +35463,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -33935,7 +35485,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -33956,7 +35507,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgrelid", @@ -33977,7 +35529,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgparentid", @@ -33998,7 +35551,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgname", @@ -34019,7 +35573,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tgfoid", @@ -34040,7 +35595,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgtype", @@ -34061,7 +35617,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "tgenabled", @@ -34082,7 +35639,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "tgisinternal", @@ -34103,7 +35661,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "tgconstrrelid", @@ -34124,7 +35683,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgconstrindid", @@ -34145,7 +35705,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgconstraint", @@ -34166,7 +35727,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tgdeferrable", @@ -34187,7 +35749,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "tginitdeferred", @@ -34208,7 +35771,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "tgnargs", @@ -34229,7 +35793,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "tgattr", @@ -34250,7 +35815,8 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false }, { "name": "tgargs", @@ -34271,7 +35837,8 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false }, { "name": "tgqual", @@ -34292,7 +35859,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "tgoldtable", @@ -34313,7 +35881,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tgnewtable", @@ -34334,7 +35903,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -34365,7 +35935,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -34386,7 +35957,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -34407,7 +35979,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -34428,7 +36001,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -34449,7 +36023,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -34470,7 +36045,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -34491,7 +36067,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cfgname", @@ -34512,7 +36089,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "cfgnamespace", @@ -34533,7 +36111,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cfgowner", @@ -34554,7 +36133,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cfgparser", @@ -34575,7 +36155,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -34606,7 +36187,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -34627,7 +36209,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -34648,7 +36231,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -34669,7 +36253,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -34690,7 +36275,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -34711,7 +36297,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "mapcfg", @@ -34732,7 +36319,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "maptokentype", @@ -34753,7 +36341,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "mapseqno", @@ -34774,7 +36363,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "mapdict", @@ -34795,7 +36385,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -34826,7 +36417,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -34847,7 +36439,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -34868,7 +36461,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -34889,7 +36483,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -34910,7 +36505,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -34931,7 +36527,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -34952,7 +36549,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dictname", @@ -34973,7 +36571,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "dictnamespace", @@ -34994,7 +36593,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dictowner", @@ -35015,7 +36615,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dicttemplate", @@ -35036,7 +36637,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "dictinitoption", @@ -35057,7 +36659,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -35088,7 +36691,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -35109,7 +36713,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -35130,7 +36735,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -35151,7 +36757,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -35172,7 +36779,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -35193,7 +36801,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -35214,7 +36823,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prsname", @@ -35235,7 +36845,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "prsnamespace", @@ -35256,7 +36867,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "prsstart", @@ -35277,7 +36889,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prstoken", @@ -35298,7 +36911,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prsend", @@ -35319,7 +36933,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prsheadline", @@ -35340,7 +36955,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "prslextype", @@ -35361,7 +36977,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -35392,7 +37009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -35413,7 +37031,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -35434,7 +37053,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -35455,7 +37075,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -35476,7 +37097,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -35497,7 +37119,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -35518,7 +37141,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tmplname", @@ -35539,7 +37163,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "tmplnamespace", @@ -35560,7 +37185,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "tmplinit", @@ -35581,7 +37207,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "tmpllexize", @@ -35602,7 +37229,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -35633,7 +37261,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -35654,7 +37283,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -35675,7 +37305,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -35696,7 +37327,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -35717,7 +37349,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -35738,7 +37371,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -35759,7 +37393,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typname", @@ -35780,7 +37415,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "typnamespace", @@ -35801,7 +37437,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typowner", @@ -35822,7 +37459,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typlen", @@ -35843,7 +37481,8 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false }, { "name": "typbyval", @@ -35864,7 +37503,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typtype", @@ -35885,7 +37525,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typcategory", @@ -35906,7 +37547,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typispreferred", @@ -35927,7 +37569,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typisdefined", @@ -35948,7 +37591,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typdelim", @@ -35969,7 +37613,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typrelid", @@ -35990,7 +37635,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typsubscript", @@ -36011,7 +37657,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typelem", @@ -36032,7 +37679,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typarray", @@ -36053,7 +37701,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typinput", @@ -36074,7 +37723,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typoutput", @@ -36095,7 +37745,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typreceive", @@ -36116,7 +37767,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typsend", @@ -36137,7 +37789,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typmodin", @@ -36158,7 +37811,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typmodout", @@ -36179,7 +37833,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typanalyze", @@ -36200,7 +37855,8 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false }, { "name": "typalign", @@ -36221,7 +37877,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typstorage", @@ -36242,7 +37899,8 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false }, { "name": "typnotnull", @@ -36263,7 +37921,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "typbasetype", @@ -36284,7 +37943,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typtypmod", @@ -36305,7 +37965,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "typndims", @@ -36326,7 +37987,8 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false }, { "name": "typcollation", @@ -36347,7 +38009,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "typdefaultbin", @@ -36368,7 +38031,8 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false }, { "name": "typdefault", @@ -36389,7 +38053,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "typacl", @@ -36410,7 +38075,8 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36441,7 +38107,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "usesysid", @@ -36462,7 +38129,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usecreatedb", @@ -36483,7 +38151,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usesuper", @@ -36504,7 +38173,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "userepl", @@ -36525,7 +38195,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "usebypassrls", @@ -36546,7 +38217,8 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false }, { "name": "passwd", @@ -36567,7 +38239,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "valuntil", @@ -36588,7 +38261,8 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false }, { "name": "useconfig", @@ -36609,7 +38283,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36640,7 +38315,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -36661,7 +38337,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -36682,7 +38359,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -36703,7 +38381,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -36724,7 +38403,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -36745,7 +38425,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "oid", @@ -36766,7 +38447,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umuser", @@ -36787,7 +38469,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umserver", @@ -36808,7 +38491,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umoptions", @@ -36829,7 +38513,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36860,7 +38545,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvid", @@ -36881,7 +38567,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvname", @@ -36902,7 +38589,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "umuser", @@ -36923,7 +38611,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "usename", @@ -36944,7 +38633,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "umoptions", @@ -36965,7 +38655,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -36996,7 +38687,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "viewname", @@ -37017,7 +38709,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "viewowner", @@ -37038,7 +38731,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "definition", @@ -37059,7 +38753,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37098,7 +38793,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwowner", @@ -37119,7 +38815,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "fdwoptions", @@ -37140,7 +38837,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_catalog", @@ -37161,7 +38859,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -37182,7 +38881,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37203,7 +38903,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_language", @@ -37224,7 +38925,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37255,7 +38957,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "srvoptions", @@ -37276,7 +38979,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -37297,7 +39001,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -37318,7 +39023,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_catalog", @@ -37339,7 +39045,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -37360,7 +39067,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_type", @@ -37381,7 +39089,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_version", @@ -37402,7 +39111,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37423,7 +39133,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37454,7 +39165,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "relname", @@ -37475,7 +39187,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attname", @@ -37496,7 +39209,8 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false }, { "name": "attfdwoptions", @@ -37517,7 +39231,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37548,7 +39263,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_schema", @@ -37569,7 +39285,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_name", @@ -37590,7 +39307,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ftoptions", @@ -37611,7 +39329,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -37632,7 +39351,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -37653,7 +39373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37674,7 +39395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37705,7 +39427,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "umoptions", @@ -37726,7 +39449,8 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false }, { "name": "umuser", @@ -37747,7 +39471,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -37768,7 +39493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -37789,7 +39515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -37810,7 +39537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "srvowner", @@ -37831,7 +39559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37862,7 +39591,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "role_name", @@ -37883,7 +39613,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -37904,7 +39635,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -37935,7 +39667,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "role_name", @@ -37956,7 +39689,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -37977,7 +39711,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38008,7 +39743,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -38029,7 +39765,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -38050,7 +39787,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_name", @@ -38071,7 +39809,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -38092,7 +39831,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_default", @@ -38113,7 +39853,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_nullable", @@ -38134,7 +39875,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -38155,7 +39897,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -38176,7 +39919,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -38197,7 +39941,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -38218,7 +39963,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -38239,7 +39985,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -38260,7 +40007,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -38281,7 +40029,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -38302,7 +40051,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -38323,7 +40073,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -38344,7 +40095,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -38365,7 +40117,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -38386,7 +40139,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -38407,7 +40161,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -38428,7 +40183,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -38449,7 +40205,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_udt_catalog", @@ -38470,7 +40227,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_udt_schema", @@ -38491,7 +40249,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "attribute_udt_name", @@ -38512,7 +40271,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -38533,7 +40293,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -38554,7 +40315,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -38575,7 +40337,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -38596,7 +40359,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -38617,7 +40381,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_derived_reference_attribute", @@ -38638,7 +40403,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38669,7 +40435,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -38690,7 +40457,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -38711,7 +40479,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_repertoire", @@ -38732,7 +40501,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "form_of_use", @@ -38753,7 +40523,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_collate_catalog", @@ -38774,7 +40545,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_collate_schema", @@ -38795,7 +40567,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_collate_name", @@ -38816,7 +40589,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38847,7 +40621,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -38868,7 +40643,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -38889,7 +40665,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -38910,7 +40687,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -38931,7 +40709,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -38952,7 +40731,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -38983,7 +40763,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -39004,7 +40785,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -39025,7 +40807,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "check_clause", @@ -39046,7 +40829,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39077,7 +40861,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -39098,7 +40883,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -39119,7 +40905,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -39140,7 +40927,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -39161,7 +40949,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -39182,7 +40971,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39213,7 +41003,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -39234,7 +41025,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -39255,7 +41047,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "pad_attribute", @@ -39276,7 +41069,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39307,7 +41101,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39328,7 +41123,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39349,7 +41145,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39370,7 +41167,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "dependent_column", @@ -39391,7 +41189,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39422,7 +41221,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -39443,7 +41243,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -39464,7 +41265,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -39485,7 +41287,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39506,7 +41309,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39527,7 +41331,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39548,7 +41353,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39579,7 +41385,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39600,7 +41407,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39621,7 +41429,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39642,7 +41451,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -39663,7 +41473,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -39684,7 +41495,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39715,7 +41527,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -39736,7 +41549,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -39757,7 +41571,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39778,7 +41593,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39799,7 +41615,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -39820,7 +41637,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -39841,7 +41659,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -39862,7 +41681,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -39893,7 +41713,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -39914,7 +41735,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -39935,7 +41757,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -39956,7 +41779,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -39977,7 +41801,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -39998,7 +41823,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -40019,7 +41845,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -40050,7 +41877,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -40071,7 +41899,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -40092,7 +41921,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -40113,7 +41943,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -40134,7 +41965,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "column_default", @@ -40155,7 +41987,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_nullable", @@ -40176,7 +42009,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -40197,7 +42031,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -40218,7 +42053,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -40239,7 +42075,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -40260,7 +42097,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -40281,7 +42119,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -40302,7 +42141,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -40323,7 +42163,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -40344,7 +42185,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -40365,7 +42207,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -40386,7 +42229,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -40407,7 +42251,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -40428,7 +42273,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -40449,7 +42295,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -40470,7 +42317,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -40491,7 +42339,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_catalog", @@ -40512,7 +42361,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -40533,7 +42383,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -40554,7 +42405,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -40575,7 +42427,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -40596,7 +42449,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -40617,7 +42471,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -40638,7 +42493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -40659,7 +42515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -40680,7 +42537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -40701,7 +42559,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -40722,7 +42581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_self_referencing", @@ -40743,7 +42603,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_identity", @@ -40764,7 +42625,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "identity_generation", @@ -40785,7 +42647,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_start", @@ -40806,7 +42669,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_increment", @@ -40827,7 +42691,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_maximum", @@ -40848,7 +42713,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_minimum", @@ -40869,7 +42735,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "identity_cycle", @@ -40890,7 +42757,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_generated", @@ -40911,7 +42779,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "generation_expression", @@ -40932,7 +42801,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_updatable", @@ -40953,7 +42823,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -40984,7 +42855,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -41005,7 +42877,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -41026,7 +42899,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -41047,7 +42921,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_catalog", @@ -41068,7 +42943,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -41089,7 +42965,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -41110,7 +42987,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41141,7 +43019,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -41162,7 +43041,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -41183,7 +43063,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_catalog", @@ -41204,7 +43085,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -41225,7 +43107,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -41246,7 +43129,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41277,7 +43161,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -41298,7 +43183,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -41319,7 +43205,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -41340,7 +43227,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -41361,7 +43249,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41392,7 +43281,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -41413,7 +43303,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -41434,7 +43325,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_catalog", @@ -41455,7 +43347,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -41476,7 +43369,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -41497,7 +43391,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_deferrable", @@ -41518,7 +43413,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "initially_deferred", @@ -41539,7 +43435,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41570,7 +43467,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -41591,7 +43489,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -41612,7 +43511,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_catalog", @@ -41633,7 +43533,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -41654,7 +43555,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -41675,7 +43577,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -41706,7 +43609,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_schema", @@ -41727,7 +43631,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "domain_name", @@ -41748,7 +43653,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -41769,7 +43675,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -41790,7 +43697,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -41811,7 +43719,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -41832,7 +43741,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -41853,7 +43763,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -41874,7 +43785,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -41895,7 +43807,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -41916,7 +43829,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -41937,7 +43851,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -41958,7 +43873,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -41979,7 +43895,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -42000,7 +43917,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -42021,7 +43939,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -42042,7 +43961,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -42063,7 +43983,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "domain_default", @@ -42084,7 +44005,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -42105,7 +44027,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -42126,7 +44049,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -42147,7 +44071,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -42168,7 +44093,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -42189,7 +44115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -42210,7 +44137,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -42231,7 +44159,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -42252,7 +44181,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -42283,7 +44213,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -42304,7 +44235,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -42325,7 +44257,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -42346,7 +44279,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "collection_type_identifier", @@ -42367,7 +44301,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -42388,7 +44323,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -42409,7 +44345,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -42430,7 +44367,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -42451,7 +44389,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -42472,7 +44411,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -42493,7 +44433,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -42514,7 +44455,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -42535,7 +44477,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -42556,7 +44499,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -42577,7 +44521,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -42598,7 +44543,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -42619,7 +44565,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -42640,7 +44587,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -42661,7 +44609,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -42682,7 +44631,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "domain_default", @@ -42703,7 +44653,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -42724,7 +44675,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -42745,7 +44697,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -42766,7 +44719,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -42787,7 +44741,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -42808,7 +44763,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -42829,7 +44785,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -42850,7 +44807,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -42871,7 +44829,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -42902,7 +44861,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -42933,7 +44893,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -42954,7 +44915,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -42975,7 +44937,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -42996,7 +44959,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43027,7 +44991,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -43048,7 +45013,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -43069,7 +45035,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "library_name", @@ -43090,7 +45057,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_language", @@ -43111,7 +45079,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43142,7 +45111,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -43163,7 +45133,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -43184,7 +45155,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -43205,7 +45177,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43236,7 +45209,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -43257,7 +45231,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_catalog", @@ -43278,7 +45253,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_data_wrapper_name", @@ -43299,7 +45275,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_type", @@ -43320,7 +45297,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_version", @@ -43341,7 +45319,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "authorization_identifier", @@ -43362,7 +45341,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43393,7 +45373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_schema", @@ -43414,7 +45395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_name", @@ -43435,7 +45417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -43456,7 +45439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -43477,7 +45461,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43508,7 +45493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_schema", @@ -43529,7 +45515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_table_name", @@ -43550,7 +45537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -43571,7 +45559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -43592,7 +45581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43623,7 +45613,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43654,7 +45645,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -43675,7 +45667,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -43696,7 +45689,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -43717,7 +45711,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -43738,7 +45733,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -43759,7 +45755,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -43780,7 +45777,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -43801,7 +45799,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "position_in_unique_constraint", @@ -43822,7 +45821,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -43853,7 +45853,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -43874,7 +45875,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -43895,7 +45897,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordinal_position", @@ -43916,7 +45919,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_mode", @@ -43937,7 +45941,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_result", @@ -43958,7 +45963,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "as_locator", @@ -43979,7 +45985,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_name", @@ -44000,7 +46007,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -44021,7 +46029,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -44042,7 +46051,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -44063,7 +46073,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -44084,7 +46095,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -44105,7 +46117,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -44126,7 +46139,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -44147,7 +46161,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -44168,7 +46183,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -44189,7 +46205,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -44210,7 +46227,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -44231,7 +46249,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -44252,7 +46271,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -44273,7 +46293,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -44294,7 +46315,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -44315,7 +46337,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -44336,7 +46359,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -44357,7 +46381,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -44378,7 +46403,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -44399,7 +46425,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -44420,7 +46447,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -44441,7 +46469,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -44462,7 +46491,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -44483,7 +46513,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_default", @@ -44504,7 +46535,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -44535,7 +46567,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -44556,7 +46589,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -44577,7 +46611,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "unique_constraint_catalog", @@ -44598,7 +46633,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "unique_constraint_schema", @@ -44619,7 +46655,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "unique_constraint_name", @@ -44640,7 +46677,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "match_option", @@ -44661,7 +46699,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "update_rule", @@ -44682,7 +46721,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "delete_rule", @@ -44703,7 +46743,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -44734,7 +46775,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -44755,7 +46797,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -44776,7 +46819,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -44797,7 +46841,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -44818,7 +46863,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -44839,7 +46885,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -44860,7 +46907,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -44881,7 +46929,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -44912,7 +46961,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -44933,7 +46983,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -44954,7 +47005,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -44975,7 +47027,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -44996,7 +47049,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -45017,7 +47071,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -45038,7 +47093,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -45059,7 +47115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45080,7 +47137,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45101,7 +47159,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45132,7 +47191,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45153,7 +47213,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -45174,7 +47235,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -45195,7 +47257,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -45216,7 +47279,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45237,7 +47301,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45258,7 +47323,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "with_hierarchy", @@ -45279,7 +47345,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45310,7 +47377,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45331,7 +47399,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -45352,7 +47421,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -45373,7 +47443,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -45394,7 +47465,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45415,7 +47487,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45436,7 +47509,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45467,7 +47541,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45488,7 +47563,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_catalog", @@ -45509,7 +47585,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -45530,7 +47607,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -45551,7 +47629,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -45572,7 +47651,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -45593,7 +47673,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -45614,7 +47695,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45645,7 +47727,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -45666,7 +47749,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -45687,7 +47771,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -45708,7 +47793,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -45729,7 +47815,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -45750,7 +47837,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -45771,7 +47859,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -45792,7 +47881,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -45813,7 +47903,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -45834,7 +47925,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -45865,7 +47957,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -45886,7 +47979,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -45907,7 +48001,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -45928,7 +48023,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -45949,7 +48045,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -45970,7 +48067,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -45991,7 +48089,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46012,7 +48111,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -46033,7 +48133,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -46054,7 +48155,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46085,7 +48187,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46106,7 +48209,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46127,7 +48231,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46148,7 +48253,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46169,7 +48275,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46190,7 +48297,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46221,7 +48329,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46242,7 +48351,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46263,7 +48373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46284,7 +48395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46305,7 +48417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46326,7 +48439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_catalog", @@ -46347,7 +48461,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_schema", @@ -46368,7 +48483,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_name", @@ -46389,7 +48505,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46420,7 +48537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46441,7 +48559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46462,7 +48581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46483,7 +48603,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46504,7 +48625,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46525,7 +48647,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -46546,7 +48669,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -46567,7 +48691,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -46588,7 +48713,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -46619,7 +48745,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -46640,7 +48767,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -46661,7 +48789,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_catalog", @@ -46682,7 +48811,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_schema", @@ -46703,7 +48833,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_name", @@ -46724,7 +48855,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_type", @@ -46745,7 +48877,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "module_catalog", @@ -46766,7 +48899,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "module_schema", @@ -46787,7 +48921,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "module_name", @@ -46808,7 +48943,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -46829,7 +48965,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -46850,7 +48987,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -46871,7 +49009,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -46892,7 +49031,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -46913,7 +49053,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -46934,7 +49075,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -46955,7 +49097,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -46976,7 +49119,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -46997,7 +49141,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -47018,7 +49163,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -47039,7 +49185,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -47060,7 +49207,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -47081,7 +49229,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -47102,7 +49251,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -47123,7 +49273,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -47144,7 +49295,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -47165,7 +49317,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -47186,7 +49339,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "type_udt_catalog", @@ -47207,7 +49361,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "type_udt_schema", @@ -47228,7 +49383,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "type_udt_name", @@ -47249,7 +49405,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_catalog", @@ -47270,7 +49427,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_schema", @@ -47291,7 +49449,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "scope_name", @@ -47312,7 +49471,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_cardinality", @@ -47333,7 +49493,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "dtd_identifier", @@ -47354,7 +49515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "routine_body", @@ -47375,7 +49537,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "routine_definition", @@ -47396,7 +49559,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "external_name", @@ -47417,7 +49581,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "external_language", @@ -47438,7 +49603,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "parameter_style", @@ -47459,7 +49625,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_deterministic", @@ -47480,7 +49647,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "sql_data_access", @@ -47501,7 +49669,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_null_call", @@ -47522,7 +49691,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "sql_path", @@ -47543,7 +49713,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "schema_level_routine", @@ -47564,7 +49735,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "max_dynamic_result_sets", @@ -47585,7 +49757,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "is_user_defined_cast", @@ -47606,7 +49779,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_implicitly_invocable", @@ -47627,7 +49801,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "security_type", @@ -47648,7 +49823,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "to_sql_specific_catalog", @@ -47669,7 +49845,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "to_sql_specific_schema", @@ -47690,7 +49867,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "to_sql_specific_name", @@ -47711,7 +49889,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "as_locator", @@ -47732,7 +49911,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "created", @@ -47753,7 +49933,8 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false }, { "name": "last_altered", @@ -47774,7 +49955,8 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false }, { "name": "new_savepoint_level", @@ -47795,7 +49977,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_udt_dependent", @@ -47816,7 +49999,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_from_data_type", @@ -47837,7 +50021,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_as_locator", @@ -47858,7 +50043,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_max_length", @@ -47879,7 +50065,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_octet_length", @@ -47900,7 +50087,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_set_catalog", @@ -47921,7 +50109,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_set_schema", @@ -47942,7 +50131,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_char_set_name", @@ -47963,7 +50153,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_collation_catalog", @@ -47984,7 +50175,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_collation_schema", @@ -48005,7 +50197,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_collation_name", @@ -48026,7 +50219,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_numeric_precision", @@ -48047,7 +50241,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_numeric_precision_radix", @@ -48068,7 +50263,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_numeric_scale", @@ -48089,7 +50285,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_datetime_precision", @@ -48110,7 +50307,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_interval_type", @@ -48131,7 +50329,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_interval_precision", @@ -48152,7 +50351,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_type_udt_catalog", @@ -48173,7 +50373,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_type_udt_schema", @@ -48194,7 +50395,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_type_udt_name", @@ -48215,7 +50417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_scope_catalog", @@ -48236,7 +50439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_scope_schema", @@ -48257,7 +50461,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_scope_name", @@ -48278,7 +50483,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_maximum_cardinality", @@ -48299,7 +50505,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "result_cast_dtd_identifier", @@ -48320,7 +50527,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -48351,7 +50559,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "schema_name", @@ -48372,7 +50581,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "schema_owner", @@ -48393,7 +50603,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_character_set_catalog", @@ -48414,7 +50625,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_character_set_schema", @@ -48435,7 +50647,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "default_character_set_name", @@ -48456,7 +50669,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sql_path", @@ -48477,7 +50691,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -48508,7 +50723,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_schema", @@ -48529,7 +50745,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "sequence_name", @@ -48550,7 +50767,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -48571,7 +50789,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -48592,7 +50811,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -48613,7 +50833,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -48634,7 +50855,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "start_value", @@ -48655,7 +50877,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "minimum_value", @@ -48676,7 +50899,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "maximum_value", @@ -48697,7 +50921,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "increment", @@ -48718,7 +50943,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "cycle_option", @@ -48739,7 +50965,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -48770,7 +50997,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -48791,7 +51019,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -48812,7 +51041,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -48833,7 +51063,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -48854,7 +51085,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -48875,7 +51107,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "feature_id", @@ -48896,7 +51129,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "feature_name", @@ -48917,7 +51151,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "sub_feature_id", @@ -48938,7 +51173,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "sub_feature_name", @@ -48959,7 +51195,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_supported", @@ -48980,7 +51217,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_verified_by", @@ -49001,7 +51239,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49022,7 +51261,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49053,7 +51293,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -49074,7 +51315,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -49095,7 +51337,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -49116,7 +51359,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -49137,7 +51381,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -49158,7 +51403,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "implementation_info_id", @@ -49179,7 +51425,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "implementation_info_name", @@ -49200,7 +51447,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "integer_value", @@ -49221,7 +51469,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_value", @@ -49242,7 +51491,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49263,7 +51513,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49294,7 +51545,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -49315,7 +51567,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -49336,7 +51589,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -49357,7 +51611,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -49378,7 +51633,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -49399,7 +51655,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "feature_id", @@ -49420,7 +51677,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "feature_name", @@ -49441,7 +51699,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_supported", @@ -49462,7 +51721,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_verified_by", @@ -49483,7 +51743,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49504,7 +51765,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49535,7 +51797,8 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false }, { "name": "cmax", @@ -49556,7 +51819,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmax", @@ -49577,7 +51841,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "cmin", @@ -49598,7 +51863,8 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false }, { "name": "xmin", @@ -49619,7 +51885,8 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false }, { "name": "ctid", @@ -49640,7 +51907,8 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false }, { "name": "sizing_id", @@ -49661,7 +51929,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "sizing_name", @@ -49682,7 +51951,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "supported_value", @@ -49703,7 +51973,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "comments", @@ -49724,7 +51995,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49755,7 +52027,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_schema", @@ -49776,7 +52049,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_name", @@ -49797,7 +52071,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -49818,7 +52093,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -49839,7 +52115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -49860,7 +52137,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "constraint_type", @@ -49881,7 +52159,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_deferrable", @@ -49902,7 +52181,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "initially_deferred", @@ -49923,7 +52203,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "enforced", @@ -49944,7 +52225,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "nulls_distinct", @@ -49965,7 +52247,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -49996,7 +52279,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -50017,7 +52301,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -50038,7 +52323,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -50059,7 +52345,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -50080,7 +52367,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -50101,7 +52389,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -50122,7 +52411,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "with_hierarchy", @@ -50143,7 +52433,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50174,7 +52465,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -50195,7 +52487,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -50216,7 +52509,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_type", @@ -50237,7 +52531,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "self_referencing_column_name", @@ -50258,7 +52553,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "reference_generation", @@ -50279,7 +52575,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_catalog", @@ -50300,7 +52597,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_schema", @@ -50321,7 +52619,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_name", @@ -50342,7 +52641,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "is_insertable_into", @@ -50363,7 +52663,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_typed", @@ -50384,7 +52685,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "commit_action", @@ -50405,7 +52707,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50436,7 +52739,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -50457,7 +52761,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -50478,7 +52783,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -50499,7 +52805,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -50520,7 +52827,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -50541,7 +52849,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "group_name", @@ -50562,7 +52871,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "transform_type", @@ -50583,7 +52893,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50614,7 +52925,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_schema", @@ -50635,7 +52947,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_name", @@ -50656,7 +52969,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_catalog", @@ -50677,7 +52991,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_schema", @@ -50698,7 +53013,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_table", @@ -50719,7 +53035,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_column", @@ -50740,7 +53057,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -50771,7 +53089,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_schema", @@ -50792,7 +53111,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "trigger_name", @@ -50813,7 +53133,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_manipulation", @@ -50834,7 +53155,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_catalog", @@ -50855,7 +53177,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_schema", @@ -50876,7 +53199,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "event_object_table", @@ -50897,7 +53221,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_order", @@ -50918,7 +53243,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "action_condition", @@ -50939,7 +53265,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_statement", @@ -50960,7 +53287,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_orientation", @@ -50981,7 +53309,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_timing", @@ -51002,7 +53331,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_old_table", @@ -51023,7 +53353,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_new_table", @@ -51044,7 +53375,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_old_row", @@ -51065,7 +53397,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "action_reference_new_row", @@ -51086,7 +53419,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "created", @@ -51107,7 +53441,8 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -51138,7 +53473,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -51159,7 +53495,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_catalog", @@ -51180,7 +53517,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_schema", @@ -51201,7 +53539,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "udt_name", @@ -51222,7 +53561,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -51243,7 +53583,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -51264,7 +53605,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -51295,7 +53637,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "grantee", @@ -51316,7 +53659,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_catalog", @@ -51337,7 +53681,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_schema", @@ -51358,7 +53703,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_name", @@ -51379,7 +53725,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "object_type", @@ -51400,7 +53747,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "privilege_type", @@ -51421,7 +53769,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_grantable", @@ -51442,7 +53791,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -51473,7 +53823,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_schema", @@ -51494,7 +53845,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_name", @@ -51515,7 +53867,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "user_defined_type_category", @@ -51536,7 +53889,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_instantiable", @@ -51557,7 +53911,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_final", @@ -51578,7 +53933,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_form", @@ -51599,7 +53955,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_category", @@ -51620,7 +53977,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_routine_catalog", @@ -51641,7 +53999,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_routine_schema", @@ -51662,7 +54021,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ordering_routine_name", @@ -51683,7 +54043,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "reference_type", @@ -51704,7 +54065,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "data_type", @@ -51725,7 +54087,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "character_maximum_length", @@ -51746,7 +54109,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_octet_length", @@ -51767,7 +54131,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_catalog", @@ -51788,7 +54153,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_schema", @@ -51809,7 +54175,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "character_set_name", @@ -51830,7 +54197,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_catalog", @@ -51851,7 +54219,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_schema", @@ -51872,7 +54241,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "collation_name", @@ -51893,7 +54263,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision", @@ -51914,7 +54285,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_precision_radix", @@ -51935,7 +54307,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "numeric_scale", @@ -51956,7 +54329,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "datetime_precision", @@ -51977,7 +54351,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "interval_type", @@ -51998,7 +54373,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "interval_precision", @@ -52019,7 +54395,8 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false }, { "name": "source_dtd_identifier", @@ -52040,7 +54417,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "ref_dtd_identifier", @@ -52061,7 +54439,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52092,7 +54471,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -52113,7 +54493,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -52134,7 +54515,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_name", @@ -52155,7 +54537,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "option_value", @@ -52176,7 +54559,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52207,7 +54591,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_catalog", @@ -52228,7 +54613,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "foreign_server_name", @@ -52249,7 +54635,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52280,7 +54667,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_schema", @@ -52301,7 +54689,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_name", @@ -52322,7 +54711,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -52343,7 +54733,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52364,7 +54755,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52385,7 +54777,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "column_name", @@ -52406,7 +54799,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52437,7 +54831,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52458,7 +54853,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52479,7 +54875,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_catalog", @@ -52500,7 +54897,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_schema", @@ -52521,7 +54919,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "specific_name", @@ -52542,7 +54941,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52573,7 +54973,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_schema", @@ -52594,7 +54995,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_name", @@ -52615,7 +55017,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_catalog", @@ -52636,7 +55039,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52657,7 +55061,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52678,7 +55083,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52709,7 +55115,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_schema", @@ -52730,7 +55137,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "table_name", @@ -52751,7 +55159,8 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false }, { "name": "view_definition", @@ -52772,7 +55181,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "check_option", @@ -52793,7 +55203,8 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false }, { "name": "is_updatable", @@ -52814,7 +55225,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_insertable_into", @@ -52835,7 +55247,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_trigger_updatable", @@ -52856,7 +55269,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_trigger_deletable", @@ -52877,7 +55291,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false }, { "name": "is_trigger_insertable_into", @@ -52898,7 +55313,8 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false } ], "comment": "" @@ -52934,7 +55350,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -52955,7 +55372,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -52976,7 +55394,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "params": [ @@ -53001,7 +55420,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false } } ], @@ -53033,7 +55453,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -53054,7 +55475,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -53075,7 +55497,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "params": [], @@ -53107,7 +55530,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false }, { "name": "name", @@ -53128,7 +55552,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false }, { "name": "bio", @@ -53149,7 +55574,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } ], "params": [ @@ -53174,7 +55600,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } }, { @@ -53198,7 +55625,8 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false } } ], @@ -53237,7 +55665,8 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false } } ], diff --git a/internal/endtoend/testdata/sqlc_slice/mysql/go/db.go b/internal/endtoend/testdata/sqlc_slice/mysql/go/db.go new file mode 100644 index 0000000000..02974bda59 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/mysql/go/db.go @@ -0,0 +1,31 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" + "database/sql" +) + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlc_slice/mysql/go/models.go b/internal/endtoend/testdata/sqlc_slice/mysql/go/models.go new file mode 100644 index 0000000000..f53379f3ff --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/mysql/go/models.go @@ -0,0 +1,12 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import () + +type Foo struct { + ID int32 + Name string +} diff --git a/internal/endtoend/testdata/sqlc_slice/mysql/go/query.sql.go b/internal/endtoend/testdata/sqlc_slice/mysql/go/query.sql.go new file mode 100644 index 0000000000..f86ac4538f --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/mysql/go/query.sql.go @@ -0,0 +1,165 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: query.sql + +package querytest + +import ( + "context" + "strings" +) + +const funcParamIdent = `-- name: FuncParamIdent :many +SELECT name FROM foo +WHERE name = ? + AND id IN (/*SLICE:favourites*/?) +` + +type FuncParamIdentParams struct { + Slug string + Favourites []int32 +} + +func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) { + sql := funcParamIdent + var queryParams []interface{} + queryParams = append(queryParams, arg.Slug) + if len(arg.Favourites) > 0 { + for _, v := range arg.Favourites { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:favourites*/?", strings.Repeat(",?", len(arg.Favourites))[1:], 1) + } else { + sql = strings.Replace(sql, "/*SLICE:favourites*/?", "NULL", 1) + } + rows, err := q.db.QueryContext(ctx, sql, queryParams...) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const funcParamSoloArg = `-- name: FuncParamSoloArg :many +SELECT name FROM foo +WHERE id IN (/*SLICE:favourites*/?) +` + +func (q *Queries) FuncParamSoloArg(ctx context.Context, favourites []int32) ([]string, error) { + sql := funcParamSoloArg + var queryParams []interface{} + if len(favourites) > 0 { + for _, v := range favourites { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:favourites*/?", strings.Repeat(",?", len(favourites))[1:], 1) + } else { + sql = strings.Replace(sql, "/*SLICE:favourites*/?", "NULL", 1) + } + rows, err := q.db.QueryContext(ctx, sql, queryParams...) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const funcParamString = `-- name: FuncParamString :many +SELECT name FROM foo +WHERE name = ? + AND id IN (/*SLICE:favourites*/?) +` + +type FuncParamStringParams struct { + Slug string + Favourites []int32 +} + +func (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStringParams) ([]string, error) { + sql := funcParamString + var queryParams []interface{} + queryParams = append(queryParams, arg.Slug) + if len(arg.Favourites) > 0 { + for _, v := range arg.Favourites { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:favourites*/?", strings.Repeat(",?", len(arg.Favourites))[1:], 1) + } else { + sql = strings.Replace(sql, "/*SLICE:favourites*/?", "NULL", 1) + } + rows, err := q.db.QueryContext(ctx, sql, queryParams...) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const sliceExec = `-- name: SliceExec :exec +UPDATE foo SET name = ? +WHERE id IN (/*SLICE:favourites*/?) +` + +type SliceExecParams struct { + Slug string + Favourites []int32 +} + +func (q *Queries) SliceExec(ctx context.Context, arg SliceExecParams) error { + sql := sliceExec + var queryParams []interface{} + queryParams = append(queryParams, arg.Slug) + if len(arg.Favourites) > 0 { + for _, v := range arg.Favourites { + queryParams = append(queryParams, v) + } + sql = strings.Replace(sql, "/*SLICE:favourites*/?", strings.Repeat(",?", len(arg.Favourites))[1:], 1) + } else { + sql = strings.Replace(sql, "/*SLICE:favourites*/?", "NULL", 1) + } + _, err := q.db.ExecContext(ctx, sql, queryParams...) + return err +} diff --git a/internal/endtoend/testdata/sqlc_slice/mysql/query.sql b/internal/endtoend/testdata/sqlc_slice/mysql/query.sql new file mode 100644 index 0000000000..9168ed9456 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/mysql/query.sql @@ -0,0 +1,19 @@ +CREATE TABLE foo (id int not null, name text not null); + +/* name: FuncParamIdent :many */ +SELECT name FROM foo +WHERE name = sqlc.arg(slug) + AND id IN (sqlc.slice(favourites)); + +/* name: FuncParamString :many */ +SELECT name FROM foo +WHERE name = sqlc.arg('slug') + AND id IN (sqlc.slice('favourites')); + +/* name: FuncParamSoloArg :many */ +SELECT name FROM foo +WHERE id IN (sqlc.slice('favourites')); + +/* name: SliceExec :exec */ +UPDATE foo SET name = sqlc.arg(slug) +WHERE id IN (sqlc.slice(favourites)); diff --git a/internal/endtoend/testdata/sqlc_slice/mysql/sqlc.json b/internal/endtoend/testdata/sqlc_slice/mysql/sqlc.json new file mode 100644 index 0000000000..0657f4db83 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/mysql/sqlc.json @@ -0,0 +1,12 @@ +{ + "version": "1", + "packages": [ + { + "engine": "mysql", + "path": "go", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql" + } + ] +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/db.go b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/db.go new file mode 100644 index 0000000000..439db75e69 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/db.go @@ -0,0 +1,32 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" + + "github.com/jackc/pgconn" + "github.com/jackc/pgx/v4" +) + +type DBTX interface { + Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) + Query(context.Context, string, ...interface{}) (pgx.Rows, error) + QueryRow(context.Context, string, ...interface{}) pgx.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx pgx.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/models.go b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/models.go new file mode 100644 index 0000000000..831eb166f2 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/models.go @@ -0,0 +1,11 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import () + +type Foo struct { + Name string +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/query.sql.go b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/query.sql.go new file mode 100644 index 0000000000..459a5268ca --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/query.sql.go @@ -0,0 +1,58 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: query.sql + +package querytest + +import ( + "context" +) + +const funcParamIdent = `-- name: FuncParamIdent :many +SELECT name FROM foo WHERE name = $1 +` + +func (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]string, error) { + rows, err := q.db.Query(ctx, funcParamIdent, slug) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const funcParamString = `-- name: FuncParamString :many +SELECT name FROM foo WHERE name = $1 +` + +func (q *Queries) FuncParamString(ctx context.Context, slug string) ([]string, error) { + rows, err := q.db.Query(ctx, funcParamString, slug) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/query.sql b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/query.sql new file mode 100644 index 0000000000..9a8e98e223 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/query.sql @@ -0,0 +1,7 @@ +CREATE TABLE foo (name text not null); + +-- name: FuncParamIdent :many +SELECT name FROM foo WHERE name = sqlc.arg(slug); + +-- name: FuncParamString :many +SELECT name FROM foo WHERE name = sqlc.arg('slug'); diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/sqlc.json b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/sqlc.json new file mode 100644 index 0000000000..9403bd0279 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/pgx/sqlc.json @@ -0,0 +1,13 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "postgresql", + "sql_package": "pgx/v4", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql" + } + ] +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/db.go b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/db.go new file mode 100644 index 0000000000..02974bda59 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/db.go @@ -0,0 +1,31 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import ( + "context" + "database/sql" +) + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/models.go b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/models.go new file mode 100644 index 0000000000..f53379f3ff --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/models.go @@ -0,0 +1,12 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 + +package querytest + +import () + +type Foo struct { + ID int32 + Name string +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/query.sql.go b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/query.sql.go new file mode 100644 index 0000000000..0eb441d76c --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/query.sql.go @@ -0,0 +1,78 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.17.2 +// source: query.sql + +package querytest + +import ( + "context" +) + +const funcParamIdent = `-- name: FuncParamIdent :many +SELECT name FROM foo +WHERE name = $1 + AND id IN ($2) +` + +type FuncParamIdentParams struct { + Slug string + Favourites int32 +} + +func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) { + rows, err := q.db.QueryContext(ctx, funcParamIdent, arg.Slug, arg.Favourites) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const funcParamString = `-- name: FuncParamString :many +SELECT name FROM foo +WHERE name = $1 + AND id IN ($2) +` + +type FuncParamStringParams struct { + Slug string + Favourites int32 +} + +func (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStringParams) ([]string, error) { + rows, err := q.db.QueryContext(ctx, funcParamString, arg.Slug, arg.Favourites) + if err != nil { + return nil, err + } + defer rows.Close() + var items []string + for rows.Next() { + var name string + if err := rows.Scan(&name); err != nil { + return nil, err + } + items = append(items, name) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/query.sql b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/query.sql new file mode 100644 index 0000000000..4881393431 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/query.sql @@ -0,0 +1,13 @@ +CREATE TABLE foo (id int not null, name text not null); + +/* name: FuncParamIdent :many */ +SELECT name FROM foo +WHERE name = sqlc.arg(slug) + AND id IN (sqlc.slice(favourites)); + + + +/* name: FuncParamString :many */ +SELECT name FROM foo +WHERE name = sqlc.arg('slug') + AND id IN (sqlc.slice('favourites')); diff --git a/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/sqlc.json b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/sqlc.json new file mode 100644 index 0000000000..de427d069f --- /dev/null +++ b/internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/sqlc.json @@ -0,0 +1,12 @@ +{ + "version": "1", + "packages": [ + { + "engine": "postgresql", + "path": "go", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql" + } + ] +} diff --git a/internal/plugin/codegen.pb.go b/internal/plugin/codegen.pb.go index c443da7210..c342499ad4 100644 --- a/internal/plugin/codegen.pb.go +++ b/internal/plugin/codegen.pb.go @@ -1113,10 +1113,11 @@ type Column struct { IsNamedParam bool `protobuf:"varint,7,opt,name=is_named_param,json=isNamedParam,proto3" json:"is_named_param,omitempty"` IsFuncCall bool `protobuf:"varint,8,opt,name=is_func_call,json=isFuncCall,proto3" json:"is_func_call,omitempty"` // XXX: Figure out what PostgreSQL calls `foo.id` - Scope string `protobuf:"bytes,9,opt,name=scope,proto3" json:"scope,omitempty"` - Table *Identifier `protobuf:"bytes,10,opt,name=table,proto3" json:"table,omitempty"` - TableAlias string `protobuf:"bytes,11,opt,name=table_alias,json=tableAlias,proto3" json:"table_alias,omitempty"` - Type *Identifier `protobuf:"bytes,12,opt,name=type,proto3" json:"type,omitempty"` + Scope string `protobuf:"bytes,9,opt,name=scope,proto3" json:"scope,omitempty"` + Table *Identifier `protobuf:"bytes,10,opt,name=table,proto3" json:"table,omitempty"` + TableAlias string `protobuf:"bytes,11,opt,name=table_alias,json=tableAlias,proto3" json:"table_alias,omitempty"` + Type *Identifier `protobuf:"bytes,12,opt,name=type,proto3" json:"type,omitempty"` + IsSqlcSlice bool `protobuf:"varint,13,opt,name=is_sqlc_slice,json=isSqlcSlice,proto3" json:"is_sqlc_slice,omitempty"` } func (x *Column) Reset() { @@ -1228,6 +1229,13 @@ func (x *Column) GetType() *Identifier { return nil } +func (x *Column) GetIsSqlcSlice() bool { + if x != nil { + return x.IsSqlcSlice + } + return false +} + type Query struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1697,7 +1705,7 @@ var file_plugin_codegen_proto_rawDesc = []byte{ 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xd5, 0x02, 0x0a, 0x06, 0x43, 0x6f, 0x6c, + 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xf9, 0x02, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6e, 0x6f, 0x74, 0x5f, 0x6e, 0x75, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6e, 0x6f, 0x74, 0x4e, 0x75, @@ -1719,55 +1727,57 @@ var file_plugin_codegen_proto_rawDesc = []byte{ 0x62, 0x6c, 0x65, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x26, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, - 0x22, 0x94, 0x02, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, - 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x12, - 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x03, 0x63, 0x6d, 0x64, 0x12, 0x28, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, - 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, - 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x2d, - 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, - 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, - 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x1a, 0x0a, - 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, - 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, - 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, - 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x5f, - 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, - 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e, 0x74, - 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x4b, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, - 0x65, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x06, - 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, - 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x06, 0x63, 0x6f, - 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0xde, 0x01, 0x0a, 0x0e, 0x43, 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x6c, 0x75, 0x67, - 0x69, 0x6e, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x08, 0x73, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, - 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, - 0x12, 0x27, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, - 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x71, 0x6c, - 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, - 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x35, 0x0a, 0x0f, 0x43, 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, - 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, - 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x7e, 0x0a, 0x0a, - 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x42, 0x0c, 0x43, 0x6f, 0x64, 0x65, - 0x67, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6b, 0x79, 0x6c, 0x65, 0x63, 0x6f, 0x6e, 0x72, 0x6f, - 0x79, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, - 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xa2, 0x02, 0x03, 0x50, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x50, - 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xca, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xe2, 0x02, - 0x12, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, - 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x73, 0x6c, 0x69, 0x63, + 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x53, 0x71, 0x6c, 0x63, 0x53, + 0x6c, 0x69, 0x63, 0x65, 0x22, 0x94, 0x02, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x12, + 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, + 0x78, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x12, 0x28, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, + 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, + 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, + 0x6e, 0x73, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x03, + 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x61, + 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, + 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, + 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1a, 0x0a, + 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x11, 0x69, 0x6e, 0x73, + 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x08, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, + 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, + 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x4b, 0x0a, 0x09, 0x50, + 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, + 0x12, 0x26, 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, + 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0xde, 0x01, 0x0a, 0x0e, 0x43, 0x6f, 0x64, + 0x65, 0x47, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x08, 0x73, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, + 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, + 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x07, 0x63, 0x61, 0x74, + 0x61, 0x6c, 0x6f, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x6c, 0x75, + 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x07, 0x63, 0x61, 0x74, + 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x27, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, + 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x51, + 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x22, 0x0a, + 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, + 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x35, 0x0a, 0x0f, 0x43, 0x6f, 0x64, + 0x65, 0x47, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x05, + 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x6c, + 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, + 0x42, 0x7e, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x42, 0x0c, + 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x2a, + 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6b, 0x79, 0x6c, 0x65, 0x63, + 0x6f, 0x6e, 0x72, 0x6f, 0x79, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xa2, 0x02, 0x03, 0x50, 0x58, 0x58, + 0xaa, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xca, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, + 0x69, 0x6e, 0xe2, 0x02, 0x12, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5c, 0x47, 0x50, 0x42, 0x4d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, + 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/internal/plugin/codegen_vtproto.pb.go b/internal/plugin/codegen_vtproto.pb.go index 736d61ffd9..3cea715a51 100644 --- a/internal/plugin/codegen_vtproto.pb.go +++ b/internal/plugin/codegen_vtproto.pb.go @@ -447,6 +447,9 @@ func (this *Column) EqualVT(that *Column) bool { if !this.Type.EqualVT(that.Type) { return false } + if this.IsSqlcSlice != that.IsSqlcSlice { + return false + } return string(this.unknownFields) == string(that.unknownFields) } @@ -1654,6 +1657,16 @@ func (m *Column) MarshalToSizedBufferVT(dAtA []byte) (int, error) { i -= len(m.unknownFields) copy(dAtA[i:], m.unknownFields) } + if m.IsSqlcSlice { + i-- + if m.IsSqlcSlice { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x68 + } if m.Type != nil { size, err := m.Type.MarshalToSizedBufferVT(dAtA[:i]) if err != nil { @@ -2535,6 +2548,9 @@ func (m *Column) SizeVT() (n int) { l = m.Type.SizeVT() n += 1 + l + sov(uint64(l)) } + if m.IsSqlcSlice { + n += 2 + } if m.unknownFields != nil { n += len(m.unknownFields) } @@ -5981,6 +5997,26 @@ func (m *Column) UnmarshalVT(dAtA []byte) error { return err } iNdEx = postIndex + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsSqlcSlice", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflow + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsSqlcSlice = bool(v != 0) default: iNdEx = preIndex skippy, err := skip(dAtA[iNdEx:]) diff --git a/internal/sql/named/is.go b/internal/sql/named/is.go index ba26c645d2..90f0a6eff0 100644 --- a/internal/sql/named/is.go +++ b/internal/sql/named/is.go @@ -16,7 +16,7 @@ func IsParamFunc(node ast.Node) bool { return false } - isValid := call.Func.Schema == "sqlc" && (call.Func.Name == "arg" || call.Func.Name == "narg") + isValid := call.Func.Schema == "sqlc" && (call.Func.Name == "arg" || call.Func.Name == "narg" || call.Func.Name == "slice") return isValid } diff --git a/internal/sql/named/param.go b/internal/sql/named/param.go index ec29e6184d..42f9b855a3 100644 --- a/internal/sql/named/param.go +++ b/internal/sql/named/param.go @@ -44,6 +44,7 @@ func (n nullability) String() string { type Param struct { name string nullability nullability + isSqlcSlice bool } // NewParam builds a new params with unspecified nullability @@ -66,6 +67,11 @@ func NewUserNullableParam(name string) Param { return Param{name: name, nullability: nullable} } +// NewSqlcSlice is a sqlc.slice() parameter. +func NewSqlcSlice(name string) Param { + return Param{name: name, nullability: nullUnspecified, isSqlcSlice: true} +} + // Name is the user defined name to use for this parameter func (p Param) Name() string { return p.name @@ -102,6 +108,11 @@ func (p Param) NotNull() bool { return null } +// IsSlice returns whether this param is a sqlc.slice() param. +func (p Param) IsSqlcSlice() bool { + return p.isSqlcSlice +} + // mergeParam creates a new param from 2 partially specified params // If the parameters have different names, the first is preferred func mergeParam(a, b Param) Param { @@ -110,5 +121,9 @@ func mergeParam(a, b Param) Param { name = b.name } - return Param{name: name, nullability: a.nullability | b.nullability} + return Param{ + name: name, + nullability: a.nullability | b.nullability, + isSqlcSlice: a.isSqlcSlice || b.isSqlcSlice, + } } diff --git a/internal/sql/rewrite/parameters.go b/internal/sql/rewrite/parameters.go index 250d967e76..5df437fdcf 100644 --- a/internal/sql/rewrite/parameters.go +++ b/internal/sql/rewrite/parameters.go @@ -54,9 +54,14 @@ func paramFromFuncCall(call *ast.FuncCall) (named.Param, string) { origName = fmt.Sprintf("'%s'", paramName) } - param := named.NewParam(paramName) - if call.Func.Name == "narg" { + var param named.Param + switch call.Func.Name { + case "narg": param = named.NewUserNullableParam(paramName) + case "slice": + param = named.NewSqlcSlice(paramName) + default: + param = named.NewParam(paramName) } // TODO: This code assumes that sqlc.arg(name) / sqlc.narg(name) is on a single line @@ -90,7 +95,13 @@ func NamedParameters(engine config.Engine, raw *ast.RawStmt, numbs map[int]bool, var replace string if engine == config.EngineMySQL || !dollar { - replace = "?" + if param.IsSqlcSlice() { + // This sequence is also replicated in internal/codegen/golang.Field + // since it's needed during template generation for replacement + replace = fmt.Sprintf(`/*SLICE:%s*/?`, param.Name()) + } else { + replace = "?" + } } else { replace = fmt.Sprintf("$%d", argn) } diff --git a/internal/sql/validate/func_call.go b/internal/sql/validate/func_call.go index 2dfe793694..51bf12458e 100644 --- a/internal/sql/validate/func_call.go +++ b/internal/sql/validate/func_call.go @@ -31,17 +31,17 @@ func (v *funcCallVisitor) Visit(node ast.Node) astutils.Visitor { return v } - // Custom validation for sqlc.arg + // Custom validation for sqlc.arg, sqlc.narg and sqlc.slice // TODO: Replace this once type-checking is implemented if fn.Schema == "sqlc" { - if !(fn.Name == "arg" || fn.Name == "narg") { + if !(fn.Name == "arg" || fn.Name == "narg" || fn.Name == "slice") { v.err = sqlerr.FunctionNotFound("sqlc." + fn.Name) return nil } if len(call.Args.Items) != 1 { v.err = &sqlerr.Error{ - Message: fmt.Sprintf("expected 1 parameter to sqlc.arg; got %d", len(call.Args.Items)), + Message: fmt.Sprintf("expected 1 parameter to sqlc.%s; got %d", fn.Name, len(call.Args.Items)), Location: call.Pos(), } return nil @@ -51,7 +51,7 @@ func (v *funcCallVisitor) Visit(node ast.Node) astutils.Visitor { case *ast.ColumnRef: default: v.err = &sqlerr.Error{ - Message: fmt.Sprintf("expected parameter to sqlc.arg to be string or reference; got %T", n), + Message: fmt.Sprintf("expected parameter to sqlc.%s to be string or reference; got %T", fn.Name, n), Location: call.Pos(), } return nil diff --git a/internal/sql/validate/in.go b/internal/sql/validate/in.go new file mode 100644 index 0000000000..a23a8fbe3a --- /dev/null +++ b/internal/sql/validate/in.go @@ -0,0 +1,86 @@ +package validate + +import ( + "fmt" + + "github.com/kyleconroy/sqlc/internal/sql/ast" + "github.com/kyleconroy/sqlc/internal/sql/astutils" + "github.com/kyleconroy/sqlc/internal/sql/catalog" + "github.com/kyleconroy/sqlc/internal/sql/sqlerr" +) + +type inVisitor struct { + catalog *catalog.Catalog + err error +} + +func (v *inVisitor) Visit(node ast.Node) astutils.Visitor { + if v.err != nil { + return nil + } + + in, ok := node.(*ast.In) + if !ok { + return v + } + + // Validate that sqlc.slice in an IN statement is the only arg, eg: + // id IN (sqlc.slice("ids")) -- GOOD + // id in (0, 1, sqlc.slice("ids")) -- BAD + + if len(in.List) <= 1 { + return v + } + + for _, n := range in.List { + call, ok := n.(*ast.FuncCall) + if !ok { + continue + } + fn := call.Func + if fn == nil { + continue + } + + if fn.Schema == "sqlc" && fn.Name == "slice" { + var inExpr, sliceArg string + + // determine inExpr + switch n := in.Expr.(type) { + case *ast.ColumnRef: + inExpr = n.Name + default: + inExpr = "..." + } + + // determine sliceArg + if len(call.Args.Items) == 1 { + switch n := call.Args.Items[0].(type) { + case *ast.A_Const: + if str, ok := n.Val.(*ast.String); ok { + sliceArg = "\"" + str.Str + "\"" + } else { + sliceArg = "?" + } + case *ast.ColumnRef: + sliceArg = n.Name + default: + // impossible, validate.FuncCall should have caught this + sliceArg = "..." + } + } + v.err = &sqlerr.Error{ + Message: fmt.Sprintf("expected '%s IN' expr to consist only of sqlc.slice(%s); eg ", inExpr, sliceArg), + Location: call.Pos(), + } + } + } + + return v +} + +func In(c *catalog.Catalog, n ast.Node) error { + visitor := inVisitor{catalog: c} + astutils.Walk(&visitor, n) + return visitor.err +} diff --git a/protos/plugin/codegen.proto b/protos/plugin/codegen.proto index de484587ad..833b3ad5a0 100644 --- a/protos/plugin/codegen.proto +++ b/protos/plugin/codegen.proto @@ -160,6 +160,7 @@ message Column Identifier table = 10; string table_alias = 11; Identifier type = 12; + bool is_sqlc_slice = 13; } message Query From 942e4b774f726467bcbe0a63a9e8d9e2544064d7 Mon Sep 17 00:00:00 2001 From: Nick Jackson Date: Wed, 30 Nov 2022 22:17:45 +0000 Subject: [PATCH 13/17] add sqlc.embed --- internal/cmd/shim.go | 8 ++ internal/codegen/golang/field.go | 2 + internal/codegen/golang/query.go | 9 ++ internal/codegen/golang/result.go | 63 +++++++++++- internal/compiler/expand.go | 9 +- internal/compiler/output_columns.go | 13 ++- internal/compiler/parse.go | 6 +- internal/compiler/query.go | 1 + internal/compiler/query_catalog.go | 6 +- internal/compiler/resolve.go | 19 +++- internal/plugin/codegen.pb.go | 138 ++++++++++++++------------ internal/plugin/codegen_vtproto.pb.go | 53 ++++++++++ internal/sql/rewrite/embeds.go | 125 +++++++++++++++++++++++ internal/sql/rewrite/parameters.go | 2 + internal/sql/validate/func_call.go | 2 +- protos/plugin/codegen.proto | 1 + 16 files changed, 382 insertions(+), 75 deletions(-) create mode 100644 internal/sql/rewrite/embeds.go diff --git a/internal/cmd/shim.go b/internal/cmd/shim.go index a46c007972..c8376e4bd9 100644 --- a/internal/cmd/shim.go +++ b/internal/cmd/shim.go @@ -264,6 +264,14 @@ func pluginQueryColumn(c *compiler.Column) *plugin.Column { } } + if c.EmbedTable != nil { + out.EmbedTable = &plugin.Identifier{ + Catalog: c.EmbedTable.Catalog, + Schema: c.EmbedTable.Schema, + Name: c.EmbedTable.Name, + } + } + return out } diff --git a/internal/codegen/golang/field.go b/internal/codegen/golang/field.go index f6bfb238f4..c192e7f080 100644 --- a/internal/codegen/golang/field.go +++ b/internal/codegen/golang/field.go @@ -15,6 +15,8 @@ type Field struct { Tags map[string]string Comment string Column *plugin.Column + // EmbedFields contains the embedded fields that reuqire scanning. + EmbedFields []string } func (gf Field) Tag() string { diff --git a/internal/codegen/golang/query.go b/internal/codegen/golang/query.go index 151ebb84cd..c1196a9f8f 100644 --- a/internal/codegen/golang/query.go +++ b/internal/codegen/golang/query.go @@ -154,6 +154,15 @@ func (v QueryValue) Scan() string { } } else { for _, f := range v.Struct.Fields { + + // append any embedded fields + if len(f.EmbedFields) > 0 { + for _, embed := range f.EmbedFields { + out = append(out, "&"+v.Name+"."+f.Name+"."+embed) + } + continue + } + if strings.HasPrefix(f.Type, "[]") && f.Type != "[]byte" && !v.SQLDriver.IsPGX() { out = append(out, "pq.Array(&"+v.Name+"."+f.Name+")") } else { diff --git a/internal/codegen/golang/result.go b/internal/codegen/golang/result.go index a2be11aa08..2a80d209a7 100644 --- a/internal/codegen/golang/result.go +++ b/internal/codegen/golang/result.go @@ -103,6 +103,46 @@ func buildStructs(req *plugin.CodeGenRequest) []Struct { type goColumn struct { id int *plugin.Column + embed *goEmbed +} + +type goEmbed struct { + modelType string + modelName string + fields []string +} + +// look through all the structs and attempt to find a matching one to embed +// We need the name of the struct and its field names. +func newGoEmbed(embed *plugin.Identifier, structs []Struct) *goEmbed { + if embed == nil { + return nil + } + + for _, s := range structs { + embedSchema := "public" + if embed.Schema != "" { + embedSchema = embed.Schema + } + + // compare the other attributes + if embed.Catalog != s.Table.Catalog || embed.Name != s.Table.Name || embedSchema != s.Table.Schema { + continue + } + + fields := make([]string, len(s.Fields)) + for i, f := range s.Fields { + fields[i] = f.Name + } + + return &goEmbed{ + modelType: s.Name, + modelName: s.Name, + fields: fields, + } + } + + return nil } func columnName(c *plugin.Column, pos int) string { @@ -192,7 +232,7 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error) } } - if len(query.Columns) == 1 { + if len(query.Columns) == 1 && query.Columns[0].EmbedTable == nil { c := query.Columns[0] name := columnName(c, 0) if c.IsFuncCall { @@ -234,6 +274,7 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error) columns = append(columns, goColumn{ id: i, Column: c, + embed: newGoEmbed(c.EmbedTable, structs), }) } var err error @@ -287,6 +328,13 @@ func columnsToStruct(req *plugin.CodeGenRequest, name string, columns []goColumn for i, c := range columns { colName := columnName(c.Column, i) tagName := colName + + // overide col/tag with expected model name + if c.embed != nil { + colName = c.embed.modelName + tagName = SetCaseStyle(colName, "snake") + } + fieldName := StructName(colName, req.Settings) baseFieldName := fieldName // Track suffixes by the ID of the column, so that columns referring to the same numbered parameter can be @@ -309,13 +357,20 @@ func columnsToStruct(req *plugin.CodeGenRequest, name string, columns []goColumn if req.Settings.Go.EmitJsonTags { tags["json"] = JSONTagName(tagName, req.Settings) } - gs.Fields = append(gs.Fields, Field{ + f := Field{ Name: fieldName, DBName: colName, - Type: goType(req, c.Column), Tags: tags, Column: c.Column, - }) + } + if c.embed == nil { + f.Type = goType(req, c.Column) + } else { + f.Type = c.embed.modelType + f.EmbedFields = c.embed.fields + } + + gs.Fields = append(gs.Fields, f) if _, found := seen[baseFieldName]; !found { seen[baseFieldName] = []int{i} } else { diff --git a/internal/compiler/expand.go b/internal/compiler/expand.go index 5c2e9c481a..66862e33fb 100644 --- a/internal/compiler/expand.go +++ b/internal/compiler/expand.go @@ -132,9 +132,16 @@ func (c *Compiler) expandStmt(qc *QueryCatalog, raw *ast.RawStmt, node ast.Node) for _, p := range parts { old = append(old, c.quoteIdent(p)) } + oldString := strings.Join(old, ".") + + // use the sqlc.embed string instead + if embed, ok := qc.embeds.Find(ref); ok { + oldString = embed.Orig() + } + edits = append(edits, source.Edit{ Location: res.Location - raw.StmtLocation, - Old: strings.Join(old, "."), + Old: oldString, New: strings.Join(cols, ", "), }) } diff --git a/internal/compiler/output_columns.go b/internal/compiler/output_columns.go index 656f2daab3..4a7f07cd07 100644 --- a/internal/compiler/output_columns.go +++ b/internal/compiler/output_columns.go @@ -14,7 +14,7 @@ import ( // OutputColumns determines which columns a statement will output func (c *Compiler) OutputColumns(stmt ast.Node) ([]*catalog.Column, error) { - qc, err := buildQueryCatalog(c.catalog, stmt) + qc, err := buildQueryCatalog(c.catalog, stmt, nil) if err != nil { return nil, err } @@ -201,6 +201,16 @@ func outputColumns(qc *QueryCatalog, node ast.Node) ([]*Column, error) { case *ast.ColumnRef: if hasStarRef(n) { + + // add a column with a reference to an embedded table + if embed, ok := qc.embeds.Find(n); ok { + cols = append(cols, &Column{ + Name: embed.Table.Name, + EmbedTable: embed.Table, + }) + continue + } + // TODO: This code is copied in func expand() for _, t := range tables { scope := astutils.Join(n.Fields, ".") @@ -520,6 +530,7 @@ func outputColumnRefs(res *ast.ResTarget, tables []*Table, node *ast.ColumnRef) NotNull: c.NotNull, IsArray: c.IsArray, Length: c.Length, + EmbedTable: c.EmbedTable, }) } } diff --git a/internal/compiler/parse.go b/internal/compiler/parse.go index a20e10d254..2ecff7068a 100644 --- a/internal/compiler/parse.go +++ b/internal/compiler/parse.go @@ -86,12 +86,14 @@ func (c *Compiler) parseQuery(stmt ast.Node, src string, o opts.Parser) (*Query, } else { sort.Slice(refs, func(i, j int) bool { return refs[i].ref.Number < refs[j].ref.Number }) } - qc, err := buildQueryCatalog(c.catalog, raw.Stmt) + + raw, embeds := rewrite.Embeds(raw) + qc, err := buildQueryCatalog(c.catalog, raw.Stmt, embeds) if err != nil { return nil, err } - params, err := c.resolveCatalogRefs(qc, rvs, refs, namedParams) + params, err := c.resolveCatalogRefs(qc, rvs, refs, namedParams, embeds) if err != nil { return nil, err } diff --git a/internal/compiler/query.go b/internal/compiler/query.go index a242510b7c..97066f1733 100644 --- a/internal/compiler/query.go +++ b/internal/compiler/query.go @@ -29,6 +29,7 @@ type Column struct { Table *ast.TableName TableAlias string Type *ast.TypeName + EmbedTable *ast.TableName IsSqlcSlice bool // is this sqlc.slice() diff --git a/internal/compiler/query_catalog.go b/internal/compiler/query_catalog.go index 8dc0a0ac2c..79ceeba75e 100644 --- a/internal/compiler/query_catalog.go +++ b/internal/compiler/query_catalog.go @@ -5,14 +5,16 @@ import ( "github.com/kyleconroy/sqlc/internal/sql/ast" "github.com/kyleconroy/sqlc/internal/sql/catalog" + "github.com/kyleconroy/sqlc/internal/sql/rewrite" ) type QueryCatalog struct { catalog *catalog.Catalog ctes map[string]*Table + embeds rewrite.EmbedSet } -func buildQueryCatalog(c *catalog.Catalog, node ast.Node) (*QueryCatalog, error) { +func buildQueryCatalog(c *catalog.Catalog, node ast.Node, embeds rewrite.EmbedSet) (*QueryCatalog, error) { var with *ast.WithClause switch n := node.(type) { case *ast.DeleteStmt: @@ -26,7 +28,7 @@ func buildQueryCatalog(c *catalog.Catalog, node ast.Node) (*QueryCatalog, error) default: with = nil } - qc := &QueryCatalog{catalog: c, ctes: map[string]*Table{}} + qc := &QueryCatalog{catalog: c, ctes: map[string]*Table{}, embeds: embeds} if with != nil { for _, item := range with.Ctes.Items { if cte, ok := item.(*ast.CommonTableExpr); ok { diff --git a/internal/compiler/resolve.go b/internal/compiler/resolve.go index f9d2944658..1caef55d10 100644 --- a/internal/compiler/resolve.go +++ b/internal/compiler/resolve.go @@ -8,6 +8,7 @@ import ( "github.com/kyleconroy/sqlc/internal/sql/astutils" "github.com/kyleconroy/sqlc/internal/sql/catalog" "github.com/kyleconroy/sqlc/internal/sql/named" + "github.com/kyleconroy/sqlc/internal/sql/rewrite" "github.com/kyleconroy/sqlc/internal/sql/sqlerr" ) @@ -19,7 +20,7 @@ func dataType(n *ast.TypeName) string { } } -func (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.RangeVar, args []paramRef, params *named.ParamSet) ([]Parameter, error) { +func (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.RangeVar, args []paramRef, params *named.ParamSet, embeds rewrite.EmbedSet) ([]Parameter, error) { c := comp.catalog aliasMap := map[string]*ast.TableName{} @@ -76,6 +77,22 @@ func (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.RangeVar, } } + // resolve a table for an embed + for _, embed := range embeds { + table, err := c.GetTable(embed.Table) + if err == nil { + embed.Table = table.Rel + continue + } + + if alias, ok := aliasMap[embed.Table.Name]; ok { + embed.Table = alias + continue + } + + return nil, fmt.Errorf("unable to resolve table with %q: %w", embed.Orig(), err) + } + var a []Parameter for _, ref := range args { switch n := ref.parent.(type) { diff --git a/internal/plugin/codegen.pb.go b/internal/plugin/codegen.pb.go index c342499ad4..fc0f67faeb 100644 --- a/internal/plugin/codegen.pb.go +++ b/internal/plugin/codegen.pb.go @@ -1118,6 +1118,7 @@ type Column struct { TableAlias string `protobuf:"bytes,11,opt,name=table_alias,json=tableAlias,proto3" json:"table_alias,omitempty"` Type *Identifier `protobuf:"bytes,12,opt,name=type,proto3" json:"type,omitempty"` IsSqlcSlice bool `protobuf:"varint,13,opt,name=is_sqlc_slice,json=isSqlcSlice,proto3" json:"is_sqlc_slice,omitempty"` + EmbedTable *Identifier `protobuf:"bytes,14,opt,name=embed_table,json=embedTable,proto3" json:"embed_table,omitempty"` } func (x *Column) Reset() { @@ -1236,6 +1237,13 @@ func (x *Column) GetIsSqlcSlice() bool { return false } +func (x *Column) GetEmbedTable() *Identifier { + if x != nil { + return x.EmbedTable + } + return nil +} + type Query struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1705,7 +1713,7 @@ var file_plugin_codegen_proto_rawDesc = []byte{ 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xf9, 0x02, 0x0a, 0x06, 0x43, 0x6f, 0x6c, + 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xae, 0x03, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6e, 0x6f, 0x74, 0x5f, 0x6e, 0x75, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6e, 0x6f, 0x74, 0x4e, 0x75, @@ -1729,55 +1737,58 @@ var file_plugin_codegen_proto_rawDesc = []byte{ 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x53, 0x71, 0x6c, 0x63, 0x53, - 0x6c, 0x69, 0x63, 0x65, 0x22, 0x94, 0x02, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x12, - 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, - 0x78, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x12, 0x28, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, - 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, - 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, - 0x6e, 0x73, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x61, - 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, - 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, - 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1a, 0x0a, - 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x11, 0x69, 0x6e, 0x73, - 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x08, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, - 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, - 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x4b, 0x0a, 0x09, 0x50, - 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x12, 0x26, 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, - 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0xde, 0x01, 0x0a, 0x0e, 0x43, 0x6f, 0x64, - 0x65, 0x47, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x08, 0x73, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, - 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, - 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x07, 0x63, 0x61, 0x74, - 0x61, 0x6c, 0x6f, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x6c, 0x75, - 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x07, 0x63, 0x61, 0x74, - 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x27, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, - 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x51, - 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x22, 0x0a, - 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, - 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x35, 0x0a, 0x0f, 0x43, 0x6f, 0x64, - 0x65, 0x47, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x05, - 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x6c, - 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, - 0x42, 0x7e, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x42, 0x0c, - 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x2a, - 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6b, 0x79, 0x6c, 0x65, 0x63, - 0x6f, 0x6e, 0x72, 0x6f, 0x79, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xa2, 0x02, 0x03, 0x50, 0x58, 0x58, - 0xaa, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xca, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, - 0x69, 0x6e, 0xe2, 0x02, 0x12, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5c, 0x47, 0x50, 0x42, 0x4d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6c, 0x69, 0x63, 0x65, 0x12, 0x33, 0x0a, 0x0b, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x5f, 0x74, 0x61, + 0x62, 0x6c, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, + 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x0a, 0x65, + 0x6d, 0x62, 0x65, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x94, 0x02, 0x0a, 0x05, 0x51, 0x75, + 0x65, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, + 0x6d, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x12, 0x28, 0x0a, + 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, + 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, + 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, + 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, + 0x74, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, + 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, + 0x0a, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, + 0x62, 0x6c, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, + 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x69, + 0x6e, 0x73, 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, + 0x22, 0x4b, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, + 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, + 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0xde, 0x01, + 0x0a, 0x0e, 0x43, 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x2c, 0x0a, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x73, 0x52, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x29, + 0x0a, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x0f, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, + 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x27, 0x0a, 0x07, 0x71, 0x75, 0x65, + 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x6c, 0x75, + 0x67, 0x69, 0x6e, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, + 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, + 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, + 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x35, + 0x0a, 0x0f, 0x43, 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x22, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x0c, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, + 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x7e, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6c, 0x75, + 0x67, 0x69, 0x6e, 0x42, 0x0c, 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x74, + 0x6f, 0x50, 0x01, 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x6b, 0x79, 0x6c, 0x65, 0x63, 0x6f, 0x6e, 0x72, 0x6f, 0x79, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, + 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xa2, + 0x02, 0x03, 0x50, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xca, 0x02, + 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xe2, 0x02, 0x12, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, + 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x50, + 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -1832,19 +1843,20 @@ var file_plugin_codegen_proto_depIdxs = []int32{ 13, // 13: plugin.Table.columns:type_name -> plugin.Column 12, // 14: plugin.Column.table:type_name -> plugin.Identifier 12, // 15: plugin.Column.type:type_name -> plugin.Identifier - 13, // 16: plugin.Query.columns:type_name -> plugin.Column - 15, // 17: plugin.Query.params:type_name -> plugin.Parameter - 12, // 18: plugin.Query.insert_into_table:type_name -> plugin.Identifier - 13, // 19: plugin.Parameter.column:type_name -> plugin.Column - 3, // 20: plugin.CodeGenRequest.settings:type_name -> plugin.Settings - 7, // 21: plugin.CodeGenRequest.catalog:type_name -> plugin.Catalog - 14, // 22: plugin.CodeGenRequest.queries:type_name -> plugin.Query - 0, // 23: plugin.CodeGenResponse.files:type_name -> plugin.File - 24, // [24:24] is the sub-list for method output_type - 24, // [24:24] is the sub-list for method input_type - 24, // [24:24] is the sub-list for extension type_name - 24, // [24:24] is the sub-list for extension extendee - 0, // [0:24] is the sub-list for field type_name + 12, // 16: plugin.Column.embed_table:type_name -> plugin.Identifier + 13, // 17: plugin.Query.columns:type_name -> plugin.Column + 15, // 18: plugin.Query.params:type_name -> plugin.Parameter + 12, // 19: plugin.Query.insert_into_table:type_name -> plugin.Identifier + 13, // 20: plugin.Parameter.column:type_name -> plugin.Column + 3, // 21: plugin.CodeGenRequest.settings:type_name -> plugin.Settings + 7, // 22: plugin.CodeGenRequest.catalog:type_name -> plugin.Catalog + 14, // 23: plugin.CodeGenRequest.queries:type_name -> plugin.Query + 0, // 24: plugin.CodeGenResponse.files:type_name -> plugin.File + 25, // [25:25] is the sub-list for method output_type + 25, // [25:25] is the sub-list for method input_type + 25, // [25:25] is the sub-list for extension type_name + 25, // [25:25] is the sub-list for extension extendee + 0, // [0:25] is the sub-list for field type_name } func init() { file_plugin_codegen_proto_init() } diff --git a/internal/plugin/codegen_vtproto.pb.go b/internal/plugin/codegen_vtproto.pb.go index 3cea715a51..ffda15ae83 100644 --- a/internal/plugin/codegen_vtproto.pb.go +++ b/internal/plugin/codegen_vtproto.pb.go @@ -450,6 +450,9 @@ func (this *Column) EqualVT(that *Column) bool { if this.IsSqlcSlice != that.IsSqlcSlice { return false } + if !this.EmbedTable.EqualVT(that.EmbedTable) { + return false + } return string(this.unknownFields) == string(that.unknownFields) } @@ -1657,6 +1660,16 @@ func (m *Column) MarshalToSizedBufferVT(dAtA []byte) (int, error) { i -= len(m.unknownFields) copy(dAtA[i:], m.unknownFields) } + if m.EmbedTable != nil { + size, err := m.EmbedTable.MarshalToSizedBufferVT(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarint(dAtA, i, uint64(size)) + i-- + dAtA[i] = 0x72 + } if m.IsSqlcSlice { i-- if m.IsSqlcSlice { @@ -2551,6 +2564,10 @@ func (m *Column) SizeVT() (n int) { if m.IsSqlcSlice { n += 2 } + if m.EmbedTable != nil { + l = m.EmbedTable.SizeVT() + n += 1 + l + sov(uint64(l)) + } if m.unknownFields != nil { n += len(m.unknownFields) } @@ -6017,6 +6034,42 @@ func (m *Column) UnmarshalVT(dAtA []byte) error { } } m.IsSqlcSlice = bool(v != 0) + case 14: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field EmbedTable", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflow + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLength + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLength + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.EmbedTable == nil { + m.EmbedTable = &Identifier{} + } + if err := m.EmbedTable.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skip(dAtA[iNdEx:]) diff --git a/internal/sql/rewrite/embeds.go b/internal/sql/rewrite/embeds.go new file mode 100644 index 0000000000..8fee322d1a --- /dev/null +++ b/internal/sql/rewrite/embeds.go @@ -0,0 +1,125 @@ +package rewrite + +import ( + "fmt" + "strings" + + "github.com/kyleconroy/sqlc/internal/sql/ast" + "github.com/kyleconroy/sqlc/internal/sql/astutils" +) + +// Embed is an instance of `sqlc.embed(param)` +type Embed struct { + Table *ast.TableName + param string + Node *ast.ColumnRef +} + +// Orig string to replace +func (e Embed) Orig() string { + return fmt.Sprintf("sqlc.embed(%s)", e.param) +} + +// EmbedSet is a set of Embed instances +type EmbedSet []*Embed + +// Find a matching embed by column ref +func (es EmbedSet) Find(node *ast.ColumnRef) (*Embed, bool) { + for _, e := range es { + if e.Node == node { + return e, true + } + } + return nil, false +} + +// Embeds rewrites `sqlc.embed(param)` to a `ast.ColumnRef` of form `param.*`. +// The compiler can make use of the returned `EmbedSet` while expanding the +// `param.*` column refs to produce the correct source edits. +func Embeds(raw *ast.RawStmt) (*ast.RawStmt, EmbedSet) { + var embeds []*Embed + + node := astutils.Apply(raw, func(cr *astutils.Cursor) bool { + node := cr.Node() + + switch { + case isEmbed(node): + fun := node.(*ast.FuncCall) + + if len(fun.Args.Items) == 0 { + return false + } + + sw := &stringWalker{} + astutils.Walk(sw, fun.Args) + str := strings.Join(sw.Parts, ".") + + tableName, err := parseTable(sw) + if err != nil { + return false + } + + node := &ast.ColumnRef{ + Fields: &ast.List{ + Items: []ast.Node{}, + }, + } + + for _, s := range sw.Parts { + node.Fields.Items = append(node.Fields.Items, &ast.String{Str: s}) + } + node.Fields.Items = append(node.Fields.Items, &ast.A_Star{}) + + embeds = append(embeds, &Embed{ + Table: tableName, + param: str, + Node: node, + }) + + cr.Replace(node) + return false + default: + return true + } + }, nil) + + return node.(*ast.RawStmt), embeds +} + +func isEmbed(node ast.Node) bool { + call, ok := node.(*ast.FuncCall) + if !ok { + return false + } + + if call.Func == nil { + return false + } + + isValid := call.Func.Schema == "sqlc" && call.Func.Name == "embed" + return isValid +} + +func parseTable(sw *stringWalker) (*ast.TableName, error) { + parts := sw.Parts + + switch len(parts) { + case 1: + return &ast.TableName{ + Name: parts[0], + }, nil + case 2: + return &ast.TableName{ + Schema: parts[0], + Name: parts[1], + }, nil + case 3: + return &ast.TableName{ + Catalog: parts[0], + Schema: parts[1], + Name: parts[2], + }, nil + default: + return nil, fmt.Errorf("invalid table name") + } +} diff --git a/internal/sql/rewrite/parameters.go b/internal/sql/rewrite/parameters.go index 5df437fdcf..ee41b0b063 100644 --- a/internal/sql/rewrite/parameters.go +++ b/internal/sql/rewrite/parameters.go @@ -19,6 +19,7 @@ func flatten(root ast.Node) (string, bool) { type stringWalker struct { String string + Parts []string IsConst bool } @@ -28,6 +29,7 @@ func (s *stringWalker) Visit(node ast.Node) astutils.Visitor { } if n, ok := node.(*ast.String); ok { s.String += n.Str + s.Parts = append(s.Parts, n.Str) } return s } diff --git a/internal/sql/validate/func_call.go b/internal/sql/validate/func_call.go index 51bf12458e..bbda232c63 100644 --- a/internal/sql/validate/func_call.go +++ b/internal/sql/validate/func_call.go @@ -34,7 +34,7 @@ func (v *funcCallVisitor) Visit(node ast.Node) astutils.Visitor { // Custom validation for sqlc.arg, sqlc.narg and sqlc.slice // TODO: Replace this once type-checking is implemented if fn.Schema == "sqlc" { - if !(fn.Name == "arg" || fn.Name == "narg" || fn.Name == "slice") { + if !(fn.Name == "arg" || fn.Name == "narg" || fn.Name == "slice" || fn.Name == "embed") { v.err = sqlerr.FunctionNotFound("sqlc." + fn.Name) return nil } diff --git a/protos/plugin/codegen.proto b/protos/plugin/codegen.proto index 833b3ad5a0..7ad6d8b432 100644 --- a/protos/plugin/codegen.proto +++ b/protos/plugin/codegen.proto @@ -161,6 +161,7 @@ message Column string table_alias = 11; Identifier type = 12; bool is_sqlc_slice = 13; + Identifier embed_table = 14; } message Query From d5a373f40ea0c53c172b01011e90e3b53ff60d7a Mon Sep 17 00:00:00 2001 From: Nick Jackson Date: Wed, 30 Nov 2022 23:06:27 +0000 Subject: [PATCH 14/17] only allow alias or table name in sqlc.embed() --- internal/sql/rewrite/embeds.go | 48 +++++------------------------- internal/sql/rewrite/parameters.go | 2 -- 2 files changed, 7 insertions(+), 43 deletions(-) diff --git a/internal/sql/rewrite/embeds.go b/internal/sql/rewrite/embeds.go index 8fee322d1a..1b132ec920 100644 --- a/internal/sql/rewrite/embeds.go +++ b/internal/sql/rewrite/embeds.go @@ -2,7 +2,6 @@ package rewrite import ( "fmt" - "strings" "github.com/kyleconroy/sqlc/internal/sql/ast" "github.com/kyleconroy/sqlc/internal/sql/astutils" @@ -50,29 +49,20 @@ func Embeds(raw *ast.RawStmt) (*ast.RawStmt, EmbedSet) { return false } - sw := &stringWalker{} - astutils.Walk(sw, fun.Args) - str := strings.Join(sw.Parts, ".") - - tableName, err := parseTable(sw) - if err != nil { - return false - } + param, _ := flatten(fun.Args) node := &ast.ColumnRef{ Fields: &ast.List{ - Items: []ast.Node{}, + Items: []ast.Node{ + &ast.String{Str: param}, + &ast.A_Star{}, + }, }, } - for _, s := range sw.Parts { - node.Fields.Items = append(node.Fields.Items, &ast.String{Str: s}) - } - node.Fields.Items = append(node.Fields.Items, &ast.A_Star{}) - embeds = append(embeds, &Embed{ - Table: tableName, - param: str, + Table: &ast.TableName{Name: param}, + param: param, Node: node, }) @@ -99,27 +89,3 @@ func isEmbed(node ast.Node) bool { isValid := call.Func.Schema == "sqlc" && call.Func.Name == "embed" return isValid } - -func parseTable(sw *stringWalker) (*ast.TableName, error) { - parts := sw.Parts - - switch len(parts) { - case 1: - return &ast.TableName{ - Name: parts[0], - }, nil - case 2: - return &ast.TableName{ - Schema: parts[0], - Name: parts[1], - }, nil - case 3: - return &ast.TableName{ - Catalog: parts[0], - Schema: parts[1], - Name: parts[2], - }, nil - default: - return nil, fmt.Errorf("invalid table name") - } -} diff --git a/internal/sql/rewrite/parameters.go b/internal/sql/rewrite/parameters.go index ee41b0b063..5df437fdcf 100644 --- a/internal/sql/rewrite/parameters.go +++ b/internal/sql/rewrite/parameters.go @@ -19,7 +19,6 @@ func flatten(root ast.Node) (string, bool) { type stringWalker struct { String string - Parts []string IsConst bool } @@ -29,7 +28,6 @@ func (s *stringWalker) Visit(node ast.Node) astutils.Visitor { } if n, ok := node.(*ast.String); ok { s.String += n.Str - s.Parts = append(s.Parts, n.Str) } return s } From a83478213617945ede940f6015514db1ce10bedd Mon Sep 17 00:00:00 2001 From: Nick Jackson Date: Wed, 30 Nov 2022 23:10:07 +0000 Subject: [PATCH 15/17] add tests --- .../testdata/sqlc_embed/mysql/go/db.go | 31 +++ .../testdata/sqlc_embed/mysql/go/models.go | 25 +++ .../testdata/sqlc_embed/mysql/go/query.sql.go | 203 ++++++++++++++++++ .../testdata/sqlc_embed/mysql/query.sql | 44 ++++ .../testdata/sqlc_embed/mysql/sqlc.json | 12 ++ .../sqlc_embed/postgresql/pgx/go/db.go | 32 +++ .../sqlc_embed/postgresql/pgx/go/models.go | 25 +++ .../sqlc_embed/postgresql/pgx/go/query.sql.go | 197 +++++++++++++++++ .../sqlc_embed/postgresql/pgx/query.sql | 44 ++++ .../sqlc_embed/postgresql/pgx/sqlc.json | 15 ++ .../sqlc_embed/postgresql/stdlib/go/db.go | 31 +++ .../sqlc_embed/postgresql/stdlib/go/models.go | 25 +++ .../postgresql/stdlib/go/query.sql.go | 203 ++++++++++++++++++ .../sqlc_embed/postgresql/stdlib/query.sql | 44 ++++ .../sqlc_embed/postgresql/stdlib/sqlc.json | 12 ++ 15 files changed, 943 insertions(+) create mode 100644 internal/endtoend/testdata/sqlc_embed/mysql/go/db.go create mode 100644 internal/endtoend/testdata/sqlc_embed/mysql/go/models.go create mode 100644 internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go create mode 100644 internal/endtoend/testdata/sqlc_embed/mysql/query.sql create mode 100644 internal/endtoend/testdata/sqlc_embed/mysql/sqlc.json create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/pgx/query.sql create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/pgx/sqlc.json create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/query.sql create mode 100644 internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/sqlc.json diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go b/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go new file mode 100644 index 0000000000..eea4166ec6 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go @@ -0,0 +1,31 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 + +package querytest + +import ( + "context" + "database/sql" +) + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go b/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go new file mode 100644 index 0000000000..51c041f8fd --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go @@ -0,0 +1,25 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 + +package querytest + +import ( + "database/sql" +) + +type BazUser struct { + ID int32 + Name string +} + +type Post struct { + ID int32 + UserID int32 +} + +type User struct { + ID int32 + Name string + Age sql.NullInt32 +} diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go b/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go new file mode 100644 index 0000000000..3c2d9df7e7 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go @@ -0,0 +1,203 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 +// source: query.sql + +package querytest + +import ( + "context" + "database/sql" +) + +const duplicate = `-- name: Duplicate :one +SELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users +` + +type DuplicateRow struct { + User User + User_2 User +} + +func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { + row := q.db.QueryRowContext(ctx, duplicate) + var i DuplicateRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.User_2.ID, + &i.User_2.Name, + &i.User_2.Age, + ) + return i, err +} + +const join = `-- name: Join :one +SELECT users.id, users.name, users.age, posts.id, posts.user_id FROM posts +INNER JOIN users ON posts.user_id = users.id +` + +type JoinRow struct { + User User + Post Post +} + +func (q *Queries) Join(ctx context.Context) (JoinRow, error) { + row := q.db.QueryRowContext(ctx, join) + var i JoinRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.Post.ID, + &i.Post.UserID, + ) + return i, err +} + +const only = `-- name: Only :one +SELECT users.id, users.name, users.age FROM users +` + +type OnlyRow struct { + User User +} + +func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { + row := q.db.QueryRowContext(ctx, only) + var i OnlyRow + err := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age) + return i, err +} + +const withAlias = `-- name: WithAlias :one +SELECT u.id, u.name, u.age FROM users u +` + +type WithAliasRow struct { + User User +} + +func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { + row := q.db.QueryRowContext(ctx, withAlias) + var i WithAliasRow + err := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age) + return i, err +} + +const withAsterisk = `-- name: WithAsterisk :one +SELECT users.id, users.name, users.age, id, name, age FROM users +` + +type WithAsteriskRow struct { + User User + ID int32 + Name string + Age sql.NullInt32 +} + +func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) { + row := q.db.QueryRowContext(ctx, withAsterisk) + var i WithAsteriskRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.ID, + &i.Name, + &i.Age, + ) + return i, err +} + +const withCrossSchema = `-- name: WithCrossSchema :many +SELECT users.id, users.name, users.age, bu.id, bu.name FROM users +INNER JOIN baz.users bu ON users.id = bu.id +` + +type WithCrossSchemaRow struct { + User User + BazUser BazUser +} + +func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) { + rows, err := q.db.QueryContext(ctx, withCrossSchema) + if err != nil { + return nil, err + } + defer rows.Close() + var items []WithCrossSchemaRow + for rows.Next() { + var i WithCrossSchemaRow + if err := rows.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.BazUser.ID, + &i.BazUser.Name, + ); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const withSchema = `-- name: WithSchema :one +SELECT bu.id, bu.name FROM baz.users bu +` + +type WithSchemaRow struct { + BazUser BazUser +} + +func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { + row := q.db.QueryRowContext(ctx, withSchema) + var i WithSchemaRow + err := row.Scan(&i.BazUser.ID, &i.BazUser.Name) + return i, err +} + +const withSubquery = `-- name: WithSubquery :many +SELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users +` + +type WithSubqueryRow struct { + User User + TotalCount int64 +} + +func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) { + rows, err := q.db.QueryContext(ctx, withSubquery) + if err != nil { + return nil, err + } + defer rows.Close() + var items []WithSubqueryRow + for rows.Next() { + var i WithSubqueryRow + if err := rows.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.TotalCount, + ); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/query.sql b/internal/endtoend/testdata/sqlc_embed/mysql/query.sql new file mode 100644 index 0000000000..314f697384 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/mysql/query.sql @@ -0,0 +1,44 @@ +CREATE SCHEMA IF NOT EXISTS baz; + +CREATE TABLE users ( + id integer NOT NULL PRIMARY KEY, + name varchar(255) NOT NULL, + age integer NULL +); + +CREATE TABLE posts ( + id integer NOT NULL PRIMARY KEY, + user_id integer NOT NULL +); + +CREATE TABLE baz.users ( + id integer NOT NULL PRIMARY KEY, + name varchar(255) NOT NULL +); + + +-- name: Only :one +SELECT sqlc.embed(users) FROM users; + +-- name: WithAlias :one +SELECT sqlc.embed(u) FROM users u; + +-- name: WithSubquery :many +SELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users; + +-- name: WithAsterisk :one +SELECT sqlc.embed(users), * FROM users; + +-- name: Duplicate :one +SELECT sqlc.embed(users), sqlc.embed(users) FROM users; + +-- name: Join :one +SELECT sqlc.embed(users), sqlc.embed(posts) FROM posts +INNER JOIN users ON posts.user_id = users.id; + +-- name: WithSchema :one +SELECT sqlc.embed(bu) FROM baz.users bu; + +-- name: WithCrossSchema :many +SELECT sqlc.embed(users), sqlc.embed(bu) FROM users +INNER JOIN baz.users bu ON users.id = bu.id; \ No newline at end of file diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/sqlc.json b/internal/endtoend/testdata/sqlc_embed/mysql/sqlc.json new file mode 100644 index 0000000000..445bbd1589 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/mysql/sqlc.json @@ -0,0 +1,12 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "mysql", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql" + } + ] +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go new file mode 100644 index 0000000000..7fb8bea331 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go @@ -0,0 +1,32 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 + +package querytest + +import ( + "context" + + "github.com/jackc/pgconn" + "github.com/jackc/pgx/v4" +) + +type DBTX interface { + Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) + Query(context.Context, string, ...interface{}) (pgx.Rows, error) + QueryRow(context.Context, string, ...interface{}) pgx.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx pgx.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go new file mode 100644 index 0000000000..77c8e10d12 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go @@ -0,0 +1,25 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 + +package querytest + +import ( + "database/sql" +) + +type BazUser struct { + ID int32 `db:"id" json:"id"` + Name string `db:"name" json:"name"` +} + +type Post struct { + ID int32 `db:"id" json:"id"` + UserID int32 `db:"user_id" json:"user_id"` +} + +type User struct { + ID int32 `db:"id" json:"id"` + Name string `db:"name" json:"name"` + Age sql.NullInt32 `db:"age" json:"age"` +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go new file mode 100644 index 0000000000..a5d9a03222 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go @@ -0,0 +1,197 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 +// source: query.sql + +package querytest + +import ( + "context" + "database/sql" +) + +const duplicate = `-- name: Duplicate :one +SELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users +` + +type DuplicateRow struct { + User User `db:"user" json:"user"` + User_2 User `db:"user_2" json:"user_2"` +} + +func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { + row := q.db.QueryRow(ctx, duplicate) + var i DuplicateRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.User_2.ID, + &i.User_2.Name, + &i.User_2.Age, + ) + return i, err +} + +const join = `-- name: Join :one +SELECT users.id, users.name, users.age, posts.id, posts.user_id FROM posts +INNER JOIN users ON posts.user_id = users.id +` + +type JoinRow struct { + User User `db:"user" json:"user"` + Post Post `db:"post" json:"post"` +} + +func (q *Queries) Join(ctx context.Context) (JoinRow, error) { + row := q.db.QueryRow(ctx, join) + var i JoinRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.Post.ID, + &i.Post.UserID, + ) + return i, err +} + +const only = `-- name: Only :one +SELECT users.id, users.name, users.age FROM users +` + +type OnlyRow struct { + User User `db:"user" json:"user"` +} + +func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { + row := q.db.QueryRow(ctx, only) + var i OnlyRow + err := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age) + return i, err +} + +const withAlias = `-- name: WithAlias :one +SELECT u.id, u.name, u.age FROM users u +` + +type WithAliasRow struct { + User User `db:"user" json:"user"` +} + +func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { + row := q.db.QueryRow(ctx, withAlias) + var i WithAliasRow + err := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age) + return i, err +} + +const withAsterisk = `-- name: WithAsterisk :one +SELECT users.id, users.name, users.age, id, name, age FROM users +` + +type WithAsteriskRow struct { + User User `db:"user" json:"user"` + ID int32 `db:"id" json:"id"` + Name string `db:"name" json:"name"` + Age sql.NullInt32 `db:"age" json:"age"` +} + +func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) { + row := q.db.QueryRow(ctx, withAsterisk) + var i WithAsteriskRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.ID, + &i.Name, + &i.Age, + ) + return i, err +} + +const withCrossSchema = `-- name: WithCrossSchema :many +SELECT users.id, users.name, users.age, bu.id, bu.name FROM users +INNER JOIN baz.users bu ON users.id = bu.id +` + +type WithCrossSchemaRow struct { + User User `db:"user" json:"user"` + BazUser BazUser `db:"bazuser" json:"bazuser"` +} + +func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) { + rows, err := q.db.Query(ctx, withCrossSchema) + if err != nil { + return nil, err + } + defer rows.Close() + var items []WithCrossSchemaRow + for rows.Next() { + var i WithCrossSchemaRow + if err := rows.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.BazUser.ID, + &i.BazUser.Name, + ); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const withSchema = `-- name: WithSchema :one +SELECT bu.id, bu.name FROM baz.users bu +` + +type WithSchemaRow struct { + BazUser BazUser `db:"bazuser" json:"bazuser"` +} + +func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { + row := q.db.QueryRow(ctx, withSchema) + var i WithSchemaRow + err := row.Scan(&i.BazUser.ID, &i.BazUser.Name) + return i, err +} + +const withSubquery = `-- name: WithSubquery :many +SELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users +` + +type WithSubqueryRow struct { + User User `db:"user" json:"user"` + TotalCount int64 `db:"total_count" json:"total_count"` +} + +func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) { + rows, err := q.db.Query(ctx, withSubquery) + if err != nil { + return nil, err + } + defer rows.Close() + var items []WithSubqueryRow + for rows.Next() { + var i WithSubqueryRow + if err := rows.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.TotalCount, + ); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/query.sql b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/query.sql new file mode 100644 index 0000000000..314f697384 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/query.sql @@ -0,0 +1,44 @@ +CREATE SCHEMA IF NOT EXISTS baz; + +CREATE TABLE users ( + id integer NOT NULL PRIMARY KEY, + name varchar(255) NOT NULL, + age integer NULL +); + +CREATE TABLE posts ( + id integer NOT NULL PRIMARY KEY, + user_id integer NOT NULL +); + +CREATE TABLE baz.users ( + id integer NOT NULL PRIMARY KEY, + name varchar(255) NOT NULL +); + + +-- name: Only :one +SELECT sqlc.embed(users) FROM users; + +-- name: WithAlias :one +SELECT sqlc.embed(u) FROM users u; + +-- name: WithSubquery :many +SELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users; + +-- name: WithAsterisk :one +SELECT sqlc.embed(users), * FROM users; + +-- name: Duplicate :one +SELECT sqlc.embed(users), sqlc.embed(users) FROM users; + +-- name: Join :one +SELECT sqlc.embed(users), sqlc.embed(posts) FROM posts +INNER JOIN users ON posts.user_id = users.id; + +-- name: WithSchema :one +SELECT sqlc.embed(bu) FROM baz.users bu; + +-- name: WithCrossSchema :many +SELECT sqlc.embed(users), sqlc.embed(bu) FROM users +INNER JOIN baz.users bu ON users.id = bu.id; \ No newline at end of file diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/sqlc.json b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/sqlc.json new file mode 100644 index 0000000000..67d658b558 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/sqlc.json @@ -0,0 +1,15 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "postgresql", + "sql_package": "pgx/v4", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql", + "emit_json_tags": true, + "emit_db_tags": true + } + ] +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go new file mode 100644 index 0000000000..eea4166ec6 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go @@ -0,0 +1,31 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 + +package querytest + +import ( + "context" + "database/sql" +) + +type DBTX interface { + ExecContext(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext(context.Context, string) (*sql.Stmt, error) + QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext(context.Context, string, ...interface{}) *sql.Row +} + +func New(db DBTX) *Queries { + return &Queries{db: db} +} + +type Queries struct { + db DBTX +} + +func (q *Queries) WithTx(tx *sql.Tx) *Queries { + return &Queries{ + db: tx, + } +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go new file mode 100644 index 0000000000..51c041f8fd --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go @@ -0,0 +1,25 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 + +package querytest + +import ( + "database/sql" +) + +type BazUser struct { + ID int32 + Name string +} + +type Post struct { + ID int32 + UserID int32 +} + +type User struct { + ID int32 + Name string + Age sql.NullInt32 +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go new file mode 100644 index 0000000000..3c2d9df7e7 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go @@ -0,0 +1,203 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.16.0 +// source: query.sql + +package querytest + +import ( + "context" + "database/sql" +) + +const duplicate = `-- name: Duplicate :one +SELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users +` + +type DuplicateRow struct { + User User + User_2 User +} + +func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { + row := q.db.QueryRowContext(ctx, duplicate) + var i DuplicateRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.User_2.ID, + &i.User_2.Name, + &i.User_2.Age, + ) + return i, err +} + +const join = `-- name: Join :one +SELECT users.id, users.name, users.age, posts.id, posts.user_id FROM posts +INNER JOIN users ON posts.user_id = users.id +` + +type JoinRow struct { + User User + Post Post +} + +func (q *Queries) Join(ctx context.Context) (JoinRow, error) { + row := q.db.QueryRowContext(ctx, join) + var i JoinRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.Post.ID, + &i.Post.UserID, + ) + return i, err +} + +const only = `-- name: Only :one +SELECT users.id, users.name, users.age FROM users +` + +type OnlyRow struct { + User User +} + +func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { + row := q.db.QueryRowContext(ctx, only) + var i OnlyRow + err := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age) + return i, err +} + +const withAlias = `-- name: WithAlias :one +SELECT u.id, u.name, u.age FROM users u +` + +type WithAliasRow struct { + User User +} + +func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { + row := q.db.QueryRowContext(ctx, withAlias) + var i WithAliasRow + err := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age) + return i, err +} + +const withAsterisk = `-- name: WithAsterisk :one +SELECT users.id, users.name, users.age, id, name, age FROM users +` + +type WithAsteriskRow struct { + User User + ID int32 + Name string + Age sql.NullInt32 +} + +func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) { + row := q.db.QueryRowContext(ctx, withAsterisk) + var i WithAsteriskRow + err := row.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.ID, + &i.Name, + &i.Age, + ) + return i, err +} + +const withCrossSchema = `-- name: WithCrossSchema :many +SELECT users.id, users.name, users.age, bu.id, bu.name FROM users +INNER JOIN baz.users bu ON users.id = bu.id +` + +type WithCrossSchemaRow struct { + User User + BazUser BazUser +} + +func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) { + rows, err := q.db.QueryContext(ctx, withCrossSchema) + if err != nil { + return nil, err + } + defer rows.Close() + var items []WithCrossSchemaRow + for rows.Next() { + var i WithCrossSchemaRow + if err := rows.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.BazUser.ID, + &i.BazUser.Name, + ); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} + +const withSchema = `-- name: WithSchema :one +SELECT bu.id, bu.name FROM baz.users bu +` + +type WithSchemaRow struct { + BazUser BazUser +} + +func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { + row := q.db.QueryRowContext(ctx, withSchema) + var i WithSchemaRow + err := row.Scan(&i.BazUser.ID, &i.BazUser.Name) + return i, err +} + +const withSubquery = `-- name: WithSubquery :many +SELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users +` + +type WithSubqueryRow struct { + User User + TotalCount int64 +} + +func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) { + rows, err := q.db.QueryContext(ctx, withSubquery) + if err != nil { + return nil, err + } + defer rows.Close() + var items []WithSubqueryRow + for rows.Next() { + var i WithSubqueryRow + if err := rows.Scan( + &i.User.ID, + &i.User.Name, + &i.User.Age, + &i.TotalCount, + ); err != nil { + return nil, err + } + items = append(items, i) + } + if err := rows.Close(); err != nil { + return nil, err + } + if err := rows.Err(); err != nil { + return nil, err + } + return items, nil +} diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/query.sql b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/query.sql new file mode 100644 index 0000000000..314f697384 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/query.sql @@ -0,0 +1,44 @@ +CREATE SCHEMA IF NOT EXISTS baz; + +CREATE TABLE users ( + id integer NOT NULL PRIMARY KEY, + name varchar(255) NOT NULL, + age integer NULL +); + +CREATE TABLE posts ( + id integer NOT NULL PRIMARY KEY, + user_id integer NOT NULL +); + +CREATE TABLE baz.users ( + id integer NOT NULL PRIMARY KEY, + name varchar(255) NOT NULL +); + + +-- name: Only :one +SELECT sqlc.embed(users) FROM users; + +-- name: WithAlias :one +SELECT sqlc.embed(u) FROM users u; + +-- name: WithSubquery :many +SELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users; + +-- name: WithAsterisk :one +SELECT sqlc.embed(users), * FROM users; + +-- name: Duplicate :one +SELECT sqlc.embed(users), sqlc.embed(users) FROM users; + +-- name: Join :one +SELECT sqlc.embed(users), sqlc.embed(posts) FROM posts +INNER JOIN users ON posts.user_id = users.id; + +-- name: WithSchema :one +SELECT sqlc.embed(bu) FROM baz.users bu; + +-- name: WithCrossSchema :many +SELECT sqlc.embed(users), sqlc.embed(bu) FROM users +INNER JOIN baz.users bu ON users.id = bu.id; \ No newline at end of file diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/sqlc.json b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/sqlc.json new file mode 100644 index 0000000000..c72b6132d5 --- /dev/null +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/sqlc.json @@ -0,0 +1,12 @@ +{ + "version": "1", + "packages": [ + { + "path": "go", + "engine": "postgresql", + "name": "querytest", + "schema": "query.sql", + "queries": "query.sql" + } + ] +} From 6bcbcbf04a3d34f43bee4563aef52f312d798787 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Fri, 7 Apr 2023 09:45:58 -0700 Subject: [PATCH 16/17] regenerate other tests --- .../testdata/codegen_json/gen/codegen.json | 7287 ++- .../process_plugin_disabled/gen/codegen.json | 53251 ++++++++++++++++ .../gen/codegen.json | 7287 +-- .../testdata/sqlc_embed/mysql/go/db.go | 2 +- .../testdata/sqlc_embed/mysql/go/models.go | 2 +- .../testdata/sqlc_embed/mysql/go/query.sql.go | 2 +- .../sqlc_embed/postgresql/pgx/go/db.go | 2 +- .../sqlc_embed/postgresql/pgx/go/models.go | 2 +- .../sqlc_embed/postgresql/pgx/go/query.sql.go | 2 +- .../sqlc_embed/postgresql/stdlib/go/db.go | 2 +- .../sqlc_embed/postgresql/stdlib/go/models.go | 2 +- .../postgresql/stdlib/go/query.sql.go | 2 +- internal/sql/astutils/rewrite.go | 3 + 13 files changed, 60550 insertions(+), 7296 deletions(-) create mode 100644 internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json diff --git a/internal/endtoend/testdata/codegen_json/gen/codegen.json b/internal/endtoend/testdata/codegen_json/gen/codegen.json index 91b0a2a36b..23ce1cfbeb 100644 --- a/internal/endtoend/testdata/codegen_json/gen/codegen.json +++ b/internal/endtoend/testdata/codegen_json/gen/codegen.json @@ -81,7 +81,8 @@ "schema": "", "name": "bigserial" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -103,7 +104,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -125,7 +127,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -172,7 +175,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -194,7 +198,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -216,7 +221,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -238,7 +244,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -260,7 +267,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -282,7 +290,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfnoid", @@ -304,7 +313,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggkind", @@ -326,7 +336,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggnumdirectargs", @@ -348,7 +359,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtransfn", @@ -370,7 +382,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalfn", @@ -392,7 +405,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggcombinefn", @@ -414,7 +428,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggserialfn", @@ -436,7 +451,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggdeserialfn", @@ -458,7 +474,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtransfn", @@ -480,7 +497,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggminvtransfn", @@ -502,7 +520,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalfn", @@ -524,7 +543,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalextra", @@ -546,7 +566,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalextra", @@ -568,7 +589,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalmodify", @@ -590,7 +612,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalmodify", @@ -612,7 +635,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggsortop", @@ -634,7 +658,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtranstype", @@ -656,7 +681,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtransspace", @@ -678,7 +704,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtranstype", @@ -700,7 +727,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtransspace", @@ -722,7 +750,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "agginitval", @@ -744,7 +773,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggminitval", @@ -766,7 +796,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -798,7 +829,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -820,7 +852,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -842,7 +875,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -864,7 +898,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -886,7 +921,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -908,7 +944,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -930,7 +967,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amname", @@ -952,7 +990,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amhandler", @@ -974,7 +1013,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amtype", @@ -996,7 +1036,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1028,7 +1069,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1050,7 +1092,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1072,7 +1115,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1094,7 +1138,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1116,7 +1161,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1138,7 +1184,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1160,7 +1207,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopfamily", @@ -1182,7 +1230,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoplefttype", @@ -1204,7 +1253,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoprighttype", @@ -1226,7 +1276,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopstrategy", @@ -1248,7 +1299,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoppurpose", @@ -1270,7 +1322,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopopr", @@ -1292,7 +1345,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopmethod", @@ -1314,7 +1368,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopsortfamily", @@ -1336,7 +1391,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1368,7 +1424,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1390,7 +1447,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1412,7 +1470,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1434,7 +1493,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1456,7 +1516,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1478,7 +1539,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1500,7 +1562,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocfamily", @@ -1522,7 +1585,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amproclefttype", @@ -1544,7 +1608,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocrighttype", @@ -1566,7 +1631,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocnum", @@ -1588,7 +1654,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amproc", @@ -1610,7 +1677,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1642,7 +1710,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1664,7 +1733,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1686,7 +1756,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1708,7 +1779,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1730,7 +1802,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1752,7 +1825,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1774,7 +1848,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adrelid", @@ -1796,7 +1871,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adnum", @@ -1818,7 +1894,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adbin", @@ -1840,7 +1917,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1872,7 +1950,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1894,7 +1973,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1916,7 +1996,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1938,7 +2019,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1960,7 +2042,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1982,7 +2065,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attrelid", @@ -2004,7 +2088,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -2026,7 +2111,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atttypid", @@ -2048,7 +2134,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attstattarget", @@ -2070,7 +2157,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attlen", @@ -2092,7 +2180,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnum", @@ -2114,7 +2203,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attndims", @@ -2136,7 +2226,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcacheoff", @@ -2158,7 +2249,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atttypmod", @@ -2180,7 +2272,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attbyval", @@ -2202,7 +2295,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attalign", @@ -2224,7 +2318,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attstorage", @@ -2246,7 +2341,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcompression", @@ -2268,7 +2364,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnotnull", @@ -2290,7 +2387,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atthasdef", @@ -2312,7 +2410,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atthasmissing", @@ -2334,7 +2433,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attidentity", @@ -2356,7 +2456,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attgenerated", @@ -2378,7 +2479,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attisdropped", @@ -2400,7 +2502,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attislocal", @@ -2422,7 +2525,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attinhcount", @@ -2444,7 +2548,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcollation", @@ -2466,7 +2571,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attacl", @@ -2488,7 +2594,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attoptions", @@ -2510,7 +2617,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attfdwoptions", @@ -2532,7 +2640,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attmissingval", @@ -2554,7 +2663,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -2586,7 +2696,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -2608,7 +2719,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -2630,7 +2742,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -2652,7 +2765,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -2674,7 +2788,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -2696,7 +2811,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roleid", @@ -2718,7 +2834,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "member", @@ -2740,7 +2857,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantor", @@ -2762,7 +2880,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "admin_option", @@ -2784,7 +2903,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -2816,7 +2936,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -2838,7 +2959,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -2860,7 +2982,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -2882,7 +3005,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -2904,7 +3028,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -2926,7 +3051,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -2948,7 +3074,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolname", @@ -2970,7 +3097,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolsuper", @@ -2992,7 +3120,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolinherit", @@ -3014,7 +3143,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreaterole", @@ -3036,7 +3166,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreatedb", @@ -3058,7 +3189,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcanlogin", @@ -3080,7 +3212,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolreplication", @@ -3102,7 +3235,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolbypassrls", @@ -3124,7 +3258,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconnlimit", @@ -3146,7 +3281,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolpassword", @@ -3168,7 +3304,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolvaliduntil", @@ -3190,7 +3327,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3222,7 +3360,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "version", @@ -3244,7 +3383,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "installed", @@ -3266,7 +3406,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "superuser", @@ -3288,7 +3429,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trusted", @@ -3310,7 +3452,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relocatable", @@ -3332,7 +3475,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema", @@ -3354,7 +3498,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "requires", @@ -3376,7 +3521,8 @@ "schema": "", "name": "_name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comment", @@ -3398,7 +3544,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3430,7 +3577,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_version", @@ -3452,7 +3600,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "installed_version", @@ -3474,7 +3623,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comment", @@ -3496,7 +3646,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3528,7 +3679,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ident", @@ -3550,7 +3702,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parent", @@ -3572,7 +3725,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "level", @@ -3594,7 +3748,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_bytes", @@ -3616,7 +3771,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_nblocks", @@ -3638,7 +3794,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "free_bytes", @@ -3660,7 +3817,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "free_chunks", @@ -3682,7 +3840,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "used_bytes", @@ -3704,7 +3863,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3736,7 +3896,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -3758,7 +3919,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -3780,7 +3942,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -3802,7 +3965,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -3824,7 +3988,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -3846,7 +4011,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -3868,7 +4034,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castsource", @@ -3890,7 +4057,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "casttarget", @@ -3912,7 +4080,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castfunc", @@ -3934,7 +4103,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castcontext", @@ -3956,7 +4126,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castmethod", @@ -3978,7 +4149,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -4010,7 +4182,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -4032,7 +4205,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -4054,7 +4228,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -4076,7 +4251,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -4098,7 +4274,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -4120,7 +4297,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -4142,7 +4320,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -4164,7 +4343,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relnamespace", @@ -4186,7 +4366,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltype", @@ -4208,7 +4389,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reloftype", @@ -4230,7 +4412,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relowner", @@ -4252,7 +4435,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relam", @@ -4274,7 +4458,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relfilenode", @@ -4296,7 +4481,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltablespace", @@ -4318,7 +4504,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpages", @@ -4340,7 +4527,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltuples", @@ -4362,7 +4550,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relallvisible", @@ -4384,7 +4573,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltoastrelid", @@ -4406,7 +4596,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhasindex", @@ -4428,7 +4619,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relisshared", @@ -4450,7 +4642,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpersistence", @@ -4472,7 +4665,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relkind", @@ -4494,7 +4688,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relnatts", @@ -4516,7 +4711,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relchecks", @@ -4538,7 +4734,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhasrules", @@ -4560,7 +4757,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhastriggers", @@ -4582,7 +4780,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhassubclass", @@ -4604,7 +4803,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relrowsecurity", @@ -4626,7 +4826,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relforcerowsecurity", @@ -4648,7 +4849,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relispopulated", @@ -4670,7 +4872,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relreplident", @@ -4692,7 +4895,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relispartition", @@ -4714,7 +4918,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relrewrite", @@ -4736,7 +4941,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relfrozenxid", @@ -4758,7 +4964,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relminmxid", @@ -4780,7 +4987,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relacl", @@ -4802,7 +5010,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reloptions", @@ -4824,7 +5033,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpartbound", @@ -4846,7 +5056,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -4878,7 +5089,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -4900,7 +5112,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -4922,7 +5135,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -4944,7 +5158,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -4966,7 +5181,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -4988,7 +5204,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -5010,7 +5227,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collname", @@ -5032,7 +5250,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collnamespace", @@ -5054,7 +5273,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collowner", @@ -5076,7 +5296,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collprovider", @@ -5098,7 +5319,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collisdeterministic", @@ -5120,7 +5342,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collencoding", @@ -5142,7 +5365,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collcollate", @@ -5164,7 +5388,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collctype", @@ -5186,7 +5411,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "colliculocale", @@ -5208,7 +5434,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collversion", @@ -5230,7 +5457,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5262,7 +5490,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -5284,7 +5513,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5316,7 +5546,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -5338,7 +5569,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -5360,7 +5592,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -5382,7 +5615,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -5404,7 +5638,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -5426,7 +5661,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -5448,7 +5684,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conname", @@ -5470,7 +5707,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connamespace", @@ -5492,7 +5730,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contype", @@ -5514,7 +5753,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condeferrable", @@ -5536,7 +5776,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condeferred", @@ -5558,7 +5799,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "convalidated", @@ -5580,7 +5822,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conrelid", @@ -5602,7 +5845,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contypid", @@ -5624,7 +5868,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conindid", @@ -5646,7 +5891,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conparentid", @@ -5668,7 +5914,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confrelid", @@ -5690,7 +5937,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confupdtype", @@ -5712,7 +5960,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confdeltype", @@ -5734,7 +5983,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confmatchtype", @@ -5756,7 +6006,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conislocal", @@ -5778,7 +6029,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "coninhcount", @@ -5800,7 +6052,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connoinherit", @@ -5822,7 +6075,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conkey", @@ -5844,7 +6098,8 @@ "schema": "", "name": "_int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confkey", @@ -5866,7 +6121,8 @@ "schema": "", "name": "_int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conpfeqop", @@ -5888,7 +6144,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conppeqop", @@ -5910,7 +6167,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conffeqop", @@ -5932,7 +6190,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confdelsetcols", @@ -5954,7 +6213,8 @@ "schema": "", "name": "_int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conexclop", @@ -5976,7 +6236,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conbin", @@ -5998,7 +6259,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6030,7 +6292,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6052,7 +6315,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6074,7 +6338,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6096,7 +6361,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6118,7 +6384,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6140,7 +6407,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -6162,7 +6430,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conname", @@ -6184,7 +6453,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connamespace", @@ -6206,7 +6476,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conowner", @@ -6228,7 +6499,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conforencoding", @@ -6250,7 +6522,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contoencoding", @@ -6272,7 +6545,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conproc", @@ -6294,7 +6568,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condefault", @@ -6316,7 +6591,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6348,7 +6624,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statement", @@ -6370,7 +6647,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_holdable", @@ -6392,7 +6670,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_binary", @@ -6414,7 +6693,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_scrollable", @@ -6436,7 +6716,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "creation_time", @@ -6458,7 +6739,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6490,7 +6772,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6512,7 +6795,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6534,7 +6818,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6556,7 +6841,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6578,7 +6864,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6600,7 +6887,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -6622,7 +6910,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -6644,7 +6933,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datdba", @@ -6666,7 +6956,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "encoding", @@ -6688,7 +6979,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datlocprovider", @@ -6710,7 +7002,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datistemplate", @@ -6732,7 +7025,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datallowconn", @@ -6754,7 +7048,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datconnlimit", @@ -6776,7 +7071,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datfrozenxid", @@ -6798,7 +7094,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datminmxid", @@ -6820,7 +7117,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dattablespace", @@ -6842,7 +7140,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datcollate", @@ -6864,7 +7163,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datctype", @@ -6886,7 +7186,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "daticulocale", @@ -6908,7 +7209,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datcollversion", @@ -6930,7 +7232,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datacl", @@ -6952,7 +7255,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6984,7 +7288,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7006,7 +7311,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7028,7 +7334,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7050,7 +7357,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7072,7 +7380,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7094,7 +7403,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setdatabase", @@ -7116,7 +7426,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setrole", @@ -7138,7 +7449,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setconfig", @@ -7160,7 +7472,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7192,7 +7505,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7214,7 +7528,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7236,7 +7551,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7258,7 +7574,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7280,7 +7597,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7302,7 +7620,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7324,7 +7643,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclrole", @@ -7346,7 +7666,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclnamespace", @@ -7368,7 +7689,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclobjtype", @@ -7390,7 +7712,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclacl", @@ -7412,7 +7735,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7444,7 +7768,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7466,7 +7791,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7488,7 +7814,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7510,7 +7837,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7532,7 +7860,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7554,7 +7883,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -7576,7 +7906,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -7598,7 +7929,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -7620,7 +7952,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refclassid", @@ -7642,7 +7975,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjid", @@ -7664,7 +7998,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjsubid", @@ -7686,7 +8021,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deptype", @@ -7708,7 +8044,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7740,7 +8077,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7762,7 +8100,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7784,7 +8123,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7806,7 +8146,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7828,7 +8169,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7850,7 +8192,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -7872,7 +8215,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -7894,7 +8238,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -7916,7 +8261,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "description", @@ -7938,7 +8284,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7970,7 +8317,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7992,7 +8340,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8014,7 +8363,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8036,7 +8386,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8058,7 +8409,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8080,7 +8432,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8102,7 +8455,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumtypid", @@ -8124,7 +8478,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumsortorder", @@ -8146,7 +8501,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumlabel", @@ -8168,7 +8524,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8200,7 +8557,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8222,7 +8580,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8244,7 +8603,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8266,7 +8626,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8288,7 +8649,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8310,7 +8672,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8332,7 +8695,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtname", @@ -8354,7 +8718,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtevent", @@ -8376,7 +8741,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtowner", @@ -8398,7 +8764,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtfoid", @@ -8420,7 +8787,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtenabled", @@ -8442,7 +8810,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evttags", @@ -8464,7 +8833,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8496,7 +8866,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8518,7 +8889,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8540,7 +8912,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8562,7 +8935,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8584,7 +8958,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8606,7 +8981,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8628,7 +9004,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extname", @@ -8650,7 +9027,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extowner", @@ -8672,7 +9050,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extnamespace", @@ -8694,7 +9073,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extrelocatable", @@ -8716,7 +9096,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extversion", @@ -8738,7 +9119,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extconfig", @@ -8760,7 +9142,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extcondition", @@ -8782,7 +9165,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8814,7 +9198,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourceline", @@ -8836,7 +9221,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqno", @@ -8858,7 +9244,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -8880,7 +9267,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -8902,7 +9290,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "applied", @@ -8924,7 +9313,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -8946,7 +9336,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8978,7 +9369,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9000,7 +9392,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9022,7 +9415,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9044,7 +9438,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9066,7 +9461,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9088,7 +9484,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -9110,7 +9507,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwname", @@ -9132,7 +9530,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwowner", @@ -9154,7 +9553,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwhandler", @@ -9176,7 +9576,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwvalidator", @@ -9198,7 +9599,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwacl", @@ -9220,7 +9622,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwoptions", @@ -9242,7 +9645,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9274,7 +9678,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9296,7 +9701,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9318,7 +9724,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9340,7 +9747,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9362,7 +9770,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9384,7 +9793,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -9406,7 +9816,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvname", @@ -9428,7 +9839,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvowner", @@ -9450,7 +9862,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvfdw", @@ -9472,7 +9885,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvtype", @@ -9494,7 +9908,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvversion", @@ -9516,7 +9931,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvacl", @@ -9538,7 +9954,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvoptions", @@ -9560,7 +9977,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9592,7 +10010,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9614,7 +10033,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9636,7 +10056,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9658,7 +10079,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9680,7 +10102,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9702,7 +10125,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftrelid", @@ -9724,7 +10148,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftserver", @@ -9746,7 +10171,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftoptions", @@ -9768,7 +10194,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9800,7 +10227,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grosysid", @@ -9822,7 +10250,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grolist", @@ -9844,7 +10273,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9876,7 +10306,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type", @@ -9898,7 +10329,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -9920,7 +10352,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_name", @@ -9942,7 +10375,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "address", @@ -9964,7 +10398,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "netmask", @@ -9986,7 +10421,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "auth_method", @@ -10008,7 +10444,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "options", @@ -10030,7 +10467,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -10052,7 +10490,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10084,7 +10523,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "map_name", @@ -10106,7 +10546,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sys_name", @@ -10128,7 +10569,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pg_username", @@ -10150,7 +10592,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -10172,7 +10615,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10204,7 +10648,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10226,7 +10671,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10248,7 +10694,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10270,7 +10717,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10292,7 +10740,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -10314,7 +10763,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -10336,7 +10786,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indrelid", @@ -10358,7 +10809,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnatts", @@ -10380,7 +10832,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnkeyatts", @@ -10402,7 +10855,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisunique", @@ -10424,7 +10878,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnullsnotdistinct", @@ -10446,7 +10901,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisprimary", @@ -10468,7 +10924,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisexclusion", @@ -10490,7 +10947,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indimmediate", @@ -10512,7 +10970,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisclustered", @@ -10534,7 +10993,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisvalid", @@ -10556,7 +11016,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indcheckxmin", @@ -10578,7 +11039,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisready", @@ -10600,7 +11062,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indislive", @@ -10622,7 +11085,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisreplident", @@ -10644,7 +11108,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indkey", @@ -10666,7 +11131,8 @@ "schema": "", "name": "int2vector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indcollation", @@ -10688,7 +11154,8 @@ "schema": "", "name": "oidvector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indclass", @@ -10710,7 +11177,8 @@ "schema": "", "name": "oidvector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indoption", @@ -10732,7 +11200,8 @@ "schema": "", "name": "int2vector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexprs", @@ -10754,7 +11223,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indpred", @@ -10776,7 +11246,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10808,7 +11279,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -10830,7 +11302,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexname", @@ -10852,7 +11325,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -10874,7 +11348,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexdef", @@ -10896,7 +11371,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10928,7 +11404,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10950,7 +11427,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10972,7 +11450,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10994,7 +11473,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11016,7 +11496,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11038,7 +11519,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhrelid", @@ -11060,7 +11542,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhparent", @@ -11082,7 +11565,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhseqno", @@ -11104,7 +11588,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhdetachpending", @@ -11126,7 +11611,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11158,7 +11644,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11180,7 +11667,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11202,7 +11690,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11224,7 +11713,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11246,7 +11736,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11268,7 +11759,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -11290,7 +11782,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -11312,7 +11805,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -11334,7 +11828,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privtype", @@ -11356,7 +11851,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initprivs", @@ -11378,7 +11874,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11410,7 +11907,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11432,7 +11930,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11454,7 +11953,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11476,7 +11976,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11498,7 +11999,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11520,7 +12022,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -11542,7 +12045,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanname", @@ -11564,7 +12068,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanowner", @@ -11586,7 +12091,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanispl", @@ -11608,7 +12114,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanpltrusted", @@ -11630,7 +12137,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanplcallfoid", @@ -11652,7 +12160,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "laninline", @@ -11674,7 +12183,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanvalidator", @@ -11696,7 +12206,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanacl", @@ -11718,7 +12229,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11750,7 +12262,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11772,7 +12285,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11794,7 +12308,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11816,7 +12331,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11838,7 +12354,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11860,7 +12377,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "loid", @@ -11882,7 +12400,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pageno", @@ -11904,7 +12423,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data", @@ -11926,7 +12446,8 @@ "schema": "", "name": "bytea" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11958,7 +12479,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11980,7 +12502,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12002,7 +12525,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12024,7 +12548,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12046,7 +12571,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12068,7 +12594,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12090,7 +12617,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lomowner", @@ -12112,7 +12640,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lomacl", @@ -12134,7 +12663,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12166,7 +12696,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -12188,7 +12719,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relation", @@ -12210,7 +12742,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "page", @@ -12232,7 +12765,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuple", @@ -12254,7 +12788,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "virtualxid", @@ -12276,7 +12811,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "transactionid", @@ -12298,7 +12834,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -12320,7 +12857,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -12342,7 +12880,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -12364,7 +12903,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "virtualtransaction", @@ -12386,7 +12926,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -12408,7 +12949,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mode", @@ -12430,7 +12972,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "granted", @@ -12452,7 +12995,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fastpath", @@ -12474,7 +13018,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "waitstart", @@ -12496,7 +13041,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12528,7 +13074,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "matviewname", @@ -12550,7 +13097,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "matviewowner", @@ -12572,7 +13120,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -12594,7 +13143,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasindexes", @@ -12616,7 +13166,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ispopulated", @@ -12638,7 +13189,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -12660,7 +13212,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12692,7 +13245,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12714,7 +13268,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12736,7 +13291,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12758,7 +13314,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12780,7 +13337,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12802,7 +13360,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12824,7 +13383,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspname", @@ -12846,7 +13406,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspowner", @@ -12868,7 +13429,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspacl", @@ -12890,7 +13452,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12922,7 +13485,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12944,7 +13508,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12966,7 +13531,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12988,7 +13554,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13010,7 +13577,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13032,7 +13600,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13054,7 +13623,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcmethod", @@ -13076,7 +13646,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcname", @@ -13098,7 +13669,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcnamespace", @@ -13120,7 +13692,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcowner", @@ -13142,7 +13715,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcfamily", @@ -13164,7 +13738,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcintype", @@ -13186,7 +13761,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcdefault", @@ -13208,7 +13784,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opckeytype", @@ -13230,7 +13807,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13262,7 +13840,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13284,7 +13863,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13306,7 +13886,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13328,7 +13909,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13350,7 +13932,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13372,7 +13955,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13394,7 +13978,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprname", @@ -13416,7 +14001,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprnamespace", @@ -13438,7 +14024,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprowner", @@ -13460,7 +14047,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprkind", @@ -13482,7 +14070,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcanmerge", @@ -13504,7 +14093,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcanhash", @@ -13526,7 +14116,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprleft", @@ -13548,7 +14139,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprright", @@ -13570,7 +14162,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprresult", @@ -13592,7 +14185,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcom", @@ -13614,7 +14208,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprnegate", @@ -13636,7 +14231,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcode", @@ -13658,7 +14254,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprrest", @@ -13680,7 +14277,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprjoin", @@ -13702,7 +14300,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13734,7 +14333,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13756,7 +14356,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13778,7 +14379,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13800,7 +14402,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13822,7 +14425,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13844,7 +14448,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13866,7 +14471,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfmethod", @@ -13888,7 +14494,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfname", @@ -13910,7 +14517,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfnamespace", @@ -13932,7 +14540,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfowner", @@ -13954,7 +14563,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13986,7 +14596,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14008,7 +14619,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14030,7 +14642,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14052,7 +14665,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14074,7 +14688,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14096,7 +14711,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -14118,7 +14734,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parname", @@ -14140,7 +14757,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "paracl", @@ -14162,7 +14780,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14194,7 +14813,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14216,7 +14836,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14238,7 +14859,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14260,7 +14882,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14282,7 +14905,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14304,7 +14928,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partrelid", @@ -14326,7 +14951,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partstrat", @@ -14348,7 +14974,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partnatts", @@ -14370,7 +14997,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partdefid", @@ -14392,7 +15020,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partattrs", @@ -14414,7 +15043,8 @@ "schema": "", "name": "int2vector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partclass", @@ -14436,7 +15066,8 @@ "schema": "", "name": "oidvector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partcollation", @@ -14458,7 +15089,8 @@ "schema": "", "name": "oidvector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partexprs", @@ -14480,7 +15112,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14512,7 +15145,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -14534,7 +15168,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "policyname", @@ -14556,7 +15191,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "permissive", @@ -14578,7 +15214,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roles", @@ -14600,7 +15237,8 @@ "schema": "", "name": "_name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmd", @@ -14622,7 +15260,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "qual", @@ -14644,7 +15283,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_check", @@ -14666,7 +15306,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14698,7 +15339,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14720,7 +15362,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14742,7 +15385,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14764,7 +15408,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14786,7 +15431,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14808,7 +15454,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -14830,7 +15477,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polname", @@ -14852,7 +15500,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polrelid", @@ -14874,7 +15523,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polcmd", @@ -14896,7 +15546,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polpermissive", @@ -14918,7 +15569,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polroles", @@ -14940,7 +15592,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polqual", @@ -14962,7 +15615,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polwithcheck", @@ -14984,7 +15638,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15016,7 +15671,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statement", @@ -15038,7 +15694,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prepare_time", @@ -15060,7 +15717,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_types", @@ -15082,7 +15740,8 @@ "schema": "", "name": "_regtype" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "from_sql", @@ -15104,7 +15763,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "generic_plans", @@ -15126,7 +15786,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "custom_plans", @@ -15148,7 +15809,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15180,7 +15842,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "gid", @@ -15202,7 +15865,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prepared", @@ -15224,7 +15888,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "owner", @@ -15246,7 +15911,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -15268,7 +15934,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15300,7 +15967,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15322,7 +15990,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15344,7 +16013,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15366,7 +16036,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -15388,7 +16059,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -15410,7 +16082,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -15432,7 +16105,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proname", @@ -15454,7 +16128,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronamespace", @@ -15476,7 +16151,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proowner", @@ -15498,7 +16174,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prolang", @@ -15520,7 +16197,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "procost", @@ -15542,7 +16220,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prorows", @@ -15564,7 +16243,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provariadic", @@ -15586,7 +16266,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosupport", @@ -15608,7 +16289,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prokind", @@ -15630,7 +16312,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosecdef", @@ -15652,7 +16335,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proleakproof", @@ -15674,7 +16358,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proisstrict", @@ -15696,7 +16381,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proretset", @@ -15718,7 +16404,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provolatile", @@ -15740,7 +16427,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proparallel", @@ -15762,7 +16450,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronargs", @@ -15784,7 +16473,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronargdefaults", @@ -15806,7 +16496,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prorettype", @@ -15828,7 +16519,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargtypes", @@ -15850,7 +16542,8 @@ "schema": "", "name": "oidvector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proallargtypes", @@ -15872,7 +16565,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargmodes", @@ -15894,7 +16588,8 @@ "schema": "", "name": "_char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargnames", @@ -15916,7 +16611,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargdefaults", @@ -15938,7 +16634,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "protrftypes", @@ -15960,7 +16657,8 @@ "schema": "", "name": "_oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosrc", @@ -15982,7 +16680,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "probin", @@ -16004,7 +16703,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosqlbody", @@ -16026,7 +16726,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proconfig", @@ -16048,7 +16749,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proacl", @@ -16070,7 +16772,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16102,7 +16805,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16124,7 +16828,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16146,7 +16851,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16168,7 +16874,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16190,7 +16897,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16212,7 +16920,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -16234,7 +16943,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubname", @@ -16256,7 +16966,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubowner", @@ -16278,7 +16989,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "puballtables", @@ -16300,7 +17012,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubinsert", @@ -16322,7 +17035,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubupdate", @@ -16344,7 +17058,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubdelete", @@ -16366,7 +17081,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubtruncate", @@ -16388,7 +17104,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubviaroot", @@ -16410,7 +17127,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16442,7 +17160,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16464,7 +17183,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16486,7 +17206,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16508,7 +17229,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16530,7 +17252,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16552,7 +17275,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -16574,7 +17298,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pnpubid", @@ -16596,7 +17321,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pnnspid", @@ -16618,7 +17344,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16650,7 +17377,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16672,7 +17400,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16694,7 +17423,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16716,7 +17446,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16738,7 +17469,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16760,7 +17492,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -16782,7 +17515,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prpubid", @@ -16804,7 +17538,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prrelid", @@ -16826,7 +17561,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prqual", @@ -16848,7 +17584,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prattrs", @@ -16870,7 +17607,8 @@ "schema": "", "name": "int2vector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16902,7 +17640,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -16924,7 +17663,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -16946,7 +17686,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnames", @@ -16968,7 +17709,8 @@ "schema": "", "name": "_name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rowfilter", @@ -16990,7 +17732,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17022,7 +17765,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17044,7 +17788,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17066,7 +17811,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -17088,7 +17834,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17110,7 +17857,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -17132,7 +17880,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngtypid", @@ -17154,7 +17903,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubtype", @@ -17176,7 +17926,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngmultitypid", @@ -17198,7 +17949,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngcollation", @@ -17220,7 +17972,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubopc", @@ -17242,7 +17995,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngcanonical", @@ -17264,7 +18018,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubdiff", @@ -17286,7 +18041,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17318,7 +18074,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17340,7 +18097,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17362,7 +18120,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -17384,7 +18143,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17406,7 +18166,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -17428,7 +18189,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roident", @@ -17450,7 +18212,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roname", @@ -17472,7 +18235,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17504,7 +18268,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_id", @@ -17526,7 +18291,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "remote_lsn", @@ -17548,7 +18314,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "local_lsn", @@ -17570,7 +18337,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17602,7 +18370,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "plugin", @@ -17624,7 +18393,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "slot_type", @@ -17646,7 +18416,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datoid", @@ -17668,7 +18439,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -17690,7 +18462,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temporary", @@ -17712,7 +18485,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active", @@ -17734,7 +18508,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active_pid", @@ -17756,7 +18531,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17778,7 +18554,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "catalog_xmin", @@ -17800,7 +18577,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "restart_lsn", @@ -17822,7 +18600,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confirmed_flush_lsn", @@ -17844,7 +18623,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_status", @@ -17866,7 +18646,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "safe_wal_size", @@ -17888,7 +18669,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "two_phase", @@ -17910,7 +18692,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17942,7 +18725,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17964,7 +18748,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17986,7 +18771,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -18008,7 +18794,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -18030,7 +18817,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -18052,7 +18840,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -18074,7 +18863,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rulename", @@ -18096,7 +18886,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_class", @@ -18118,7 +18909,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_type", @@ -18140,7 +18932,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_enabled", @@ -18162,7 +18955,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_instead", @@ -18184,7 +18978,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_qual", @@ -18206,7 +19001,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_action", @@ -18228,7 +19024,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18260,7 +19057,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolsuper", @@ -18282,7 +19080,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolinherit", @@ -18304,7 +19103,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreaterole", @@ -18326,7 +19126,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreatedb", @@ -18348,7 +19149,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcanlogin", @@ -18370,7 +19172,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolreplication", @@ -18392,7 +19195,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconnlimit", @@ -18414,7 +19218,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolpassword", @@ -18436,7 +19241,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolvaliduntil", @@ -18458,7 +19264,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolbypassrls", @@ -18480,7 +19287,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconfig", @@ -18502,7 +19310,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -18524,7 +19333,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18556,7 +19366,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -18578,7 +19389,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rulename", @@ -18600,7 +19412,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -18622,7 +19435,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18654,7 +19468,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -18676,7 +19491,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -18698,7 +19514,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -18720,7 +19537,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -18742,7 +19560,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -18764,7 +19583,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -18786,7 +19606,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -18808,7 +19629,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -18830,7 +19652,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -18852,7 +19675,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -18874,7 +19698,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18906,7 +19731,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -18928,7 +19754,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -18950,7 +19777,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objtype", @@ -18972,7 +19800,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objnamespace", @@ -18994,7 +19823,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objname", @@ -19016,7 +19846,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -19038,7 +19869,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -19060,7 +19892,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19092,7 +19925,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19114,7 +19948,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19136,7 +19971,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -19158,7 +19994,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -19180,7 +20017,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -19202,7 +20040,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqrelid", @@ -19224,7 +20063,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqtypid", @@ -19246,7 +20086,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqstart", @@ -19268,7 +20109,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqincrement", @@ -19290,7 +20132,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqmax", @@ -19312,7 +20155,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqmin", @@ -19334,7 +20178,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqcache", @@ -19356,7 +20201,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqcycle", @@ -19378,7 +20224,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19410,7 +20257,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequencename", @@ -19432,7 +20280,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequenceowner", @@ -19454,7 +20303,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -19476,7 +20326,8 @@ "schema": "", "name": "regtype" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "start_value", @@ -19498,7 +20349,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "min_value", @@ -19520,7 +20372,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_value", @@ -19542,7 +20395,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "increment_by", @@ -19564,7 +20418,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cycle", @@ -19586,7 +20441,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cache_size", @@ -19608,7 +20464,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_value", @@ -19630,7 +20487,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19662,7 +20520,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -19684,7 +20543,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unit", @@ -19706,7 +20566,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "category", @@ -19728,7 +20589,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "short_desc", @@ -19750,7 +20612,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extra_desc", @@ -19772,7 +20635,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "context", @@ -19794,7 +20658,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vartype", @@ -19816,7 +20681,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "source", @@ -19838,7 +20704,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "min_val", @@ -19860,7 +20727,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_val", @@ -19882,7 +20750,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumvals", @@ -19904,7 +20773,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "boot_val", @@ -19926,7 +20796,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reset_val", @@ -19948,7 +20819,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourcefile", @@ -19970,7 +20842,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourceline", @@ -19992,7 +20865,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pending_restart", @@ -20014,7 +20888,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20046,7 +20921,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -20068,7 +20944,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usecreatedb", @@ -20090,7 +20967,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesuper", @@ -20112,7 +20990,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "userepl", @@ -20134,7 +21013,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usebypassrls", @@ -20156,7 +21036,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "passwd", @@ -20178,7 +21059,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "valuntil", @@ -20200,7 +21082,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "useconfig", @@ -20222,7 +21105,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20254,7 +21138,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -20276,7 +21161,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -20298,7 +21184,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -20320,7 +21207,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -20342,7 +21230,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -20364,7 +21253,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dbid", @@ -20386,7 +21276,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -20408,7 +21299,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -20430,7 +21322,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -20452,7 +21345,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refclassid", @@ -20474,7 +21368,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjid", @@ -20496,7 +21391,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deptype", @@ -20518,7 +21414,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20550,7 +21447,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -20572,7 +21470,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -20594,7 +21493,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -20616,7 +21516,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -20638,7 +21539,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -20660,7 +21562,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -20682,7 +21585,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -20704,7 +21608,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "description", @@ -20726,7 +21631,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20758,7 +21664,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "off", @@ -20780,7 +21687,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "size", @@ -20802,7 +21710,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "allocated_size", @@ -20824,7 +21733,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20856,7 +21766,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -20878,7 +21789,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -20900,7 +21812,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -20922,7 +21835,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -20944,7 +21858,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -20966,7 +21881,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -20988,7 +21904,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -21010,7 +21927,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -21032,7 +21950,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -21054,7 +21973,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21086,7 +22006,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -21108,7 +22029,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -21130,7 +22052,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "leader_pid", @@ -21152,7 +22075,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -21174,7 +22098,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -21196,7 +22121,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "application_name", @@ -21218,7 +22144,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_addr", @@ -21240,7 +22167,8 @@ "schema": "", "name": "inet" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_hostname", @@ -21262,7 +22190,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_port", @@ -21284,7 +22213,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_start", @@ -21306,7 +22236,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_start", @@ -21328,7 +22259,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query_start", @@ -21350,7 +22282,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state_change", @@ -21372,7 +22305,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wait_event_type", @@ -21394,7 +22328,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wait_event", @@ -21416,7 +22351,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state", @@ -21438,7 +22374,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xid", @@ -21460,7 +22397,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xmin", @@ -21482,7 +22420,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query_id", @@ -21504,7 +22443,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query", @@ -21526,7 +22466,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_type", @@ -21548,7 +22489,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21580,7 +22522,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -21602,7 +22545,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -21624,7 +22568,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -21646,7 +22591,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -21668,7 +22614,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -21690,7 +22637,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -21712,7 +22660,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -21734,7 +22683,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21766,7 +22716,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -21788,7 +22739,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -21810,7 +22762,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -21832,7 +22785,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -21854,7 +22808,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -21876,7 +22831,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -21898,7 +22854,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -21920,7 +22877,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -21942,7 +22900,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -21964,7 +22923,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -21986,7 +22946,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -22008,7 +22969,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -22030,7 +22992,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -22052,7 +23015,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -22074,7 +23038,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -22096,7 +23061,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -22118,7 +23084,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -22140,7 +23107,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -22162,7 +23130,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -22184,7 +23153,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -22206,7 +23176,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -22228,7 +23199,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -22250,7 +23222,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22282,7 +23255,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_archived_wal", @@ -22304,7 +23278,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_archived_time", @@ -22326,7 +23301,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "failed_count", @@ -22348,7 +23324,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_failed_wal", @@ -22370,7 +23347,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_failed_time", @@ -22392,7 +23370,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -22414,7 +23393,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22446,7 +23426,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoints_req", @@ -22468,7 +23449,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoint_write_time", @@ -22490,7 +23472,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoint_sync_time", @@ -22512,7 +23495,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_checkpoint", @@ -22534,7 +23518,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_clean", @@ -22556,7 +23541,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maxwritten_clean", @@ -22578,7 +23564,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_backend", @@ -22600,7 +23587,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_backend_fsync", @@ -22622,7 +23610,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_alloc", @@ -22644,7 +23633,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -22666,7 +23656,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22698,7 +23689,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22720,7 +23712,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numbackends", @@ -22742,7 +23735,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_commit", @@ -22764,7 +23758,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_rollback", @@ -22786,7 +23781,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -22808,7 +23804,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -22830,7 +23827,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_returned", @@ -22852,7 +23850,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_fetched", @@ -22874,7 +23873,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_inserted", @@ -22896,7 +23896,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_updated", @@ -22918,7 +23919,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_deleted", @@ -22940,7 +23942,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conflicts", @@ -22962,7 +23965,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temp_files", @@ -22984,7 +23988,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temp_bytes", @@ -23006,7 +24011,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deadlocks", @@ -23028,7 +24034,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checksum_failures", @@ -23050,7 +24057,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checksum_last_failure", @@ -23072,7 +24080,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blk_read_time", @@ -23094,7 +24103,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blk_write_time", @@ -23116,7 +24126,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "session_time", @@ -23138,7 +24149,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active_time", @@ -23160,7 +24172,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idle_in_transaction_time", @@ -23182,7 +24195,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions", @@ -23204,7 +24218,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_abandoned", @@ -23226,7 +24241,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_fatal", @@ -23248,7 +24264,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_killed", @@ -23270,7 +24287,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -23292,7 +24310,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23324,7 +24343,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23346,7 +24366,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_tablespace", @@ -23368,7 +24389,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_lock", @@ -23390,7 +24412,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_snapshot", @@ -23412,7 +24435,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_bufferpin", @@ -23434,7 +24458,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_deadlock", @@ -23456,7 +24481,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23488,7 +24514,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "gss_authenticated", @@ -23510,7 +24537,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "principal", @@ -23532,7 +24560,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "encrypted", @@ -23554,7 +24583,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23586,7 +24616,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23608,7 +24639,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23630,7 +24662,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23652,7 +24685,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23674,7 +24708,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sample_blks_total", @@ -23696,7 +24731,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sample_blks_scanned", @@ -23718,7 +24754,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ext_stats_total", @@ -23740,7 +24777,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ext_stats_computed", @@ -23762,7 +24800,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "child_tables_total", @@ -23784,7 +24823,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "child_tables_done", @@ -23806,7 +24846,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "current_child_table_relid", @@ -23828,7 +24869,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23860,7 +24902,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23882,7 +24925,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backup_total", @@ -23904,7 +24948,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backup_streamed", @@ -23926,7 +24971,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespaces_total", @@ -23948,7 +24994,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespaces_streamed", @@ -23970,7 +25017,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24002,7 +25050,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -24024,7 +25073,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -24046,7 +25096,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -24068,7 +25119,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -24090,7 +25142,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -24112,7 +25165,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cluster_index_relid", @@ -24134,7 +25188,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_tuples_scanned", @@ -24156,7 +25211,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_tuples_written", @@ -24178,7 +25234,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_total", @@ -24200,7 +25257,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_scanned", @@ -24222,7 +25280,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_rebuild_count", @@ -24244,7 +25303,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24276,7 +25336,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -24298,7 +25359,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -24320,7 +25382,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -24342,7 +25405,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -24364,7 +25428,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type", @@ -24386,7 +25451,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bytes_processed", @@ -24408,7 +25474,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bytes_total", @@ -24430,7 +25497,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_processed", @@ -24452,7 +25520,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_excluded", @@ -24474,7 +25543,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24506,7 +25576,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -24528,7 +25599,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -24550,7 +25622,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -24572,7 +25645,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_relid", @@ -24594,7 +25668,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -24616,7 +25691,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -24638,7 +25714,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lockers_total", @@ -24660,7 +25737,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lockers_done", @@ -24682,7 +25760,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "current_locker_pid", @@ -24704,7 +25783,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blocks_total", @@ -24726,7 +25806,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blocks_done", @@ -24748,7 +25829,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_total", @@ -24770,7 +25852,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_done", @@ -24792,7 +25875,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partitions_total", @@ -24814,7 +25898,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partitions_done", @@ -24836,7 +25921,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24868,7 +25954,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -24890,7 +25977,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -24912,7 +26000,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -24934,7 +26023,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -24956,7 +26046,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_total", @@ -24978,7 +26069,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_scanned", @@ -25000,7 +26092,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_vacuumed", @@ -25022,7 +26115,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_vacuum_count", @@ -25044,7 +26138,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_dead_tuples", @@ -25066,7 +26161,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "num_dead_tuples", @@ -25088,7 +26184,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25120,7 +26217,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prefetch", @@ -25142,7 +26240,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hit", @@ -25164,7 +26263,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_init", @@ -25186,7 +26286,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_new", @@ -25208,7 +26309,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_fpw", @@ -25230,7 +26332,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_rep", @@ -25252,7 +26355,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_distance", @@ -25274,7 +26378,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "block_distance", @@ -25296,7 +26401,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "io_depth", @@ -25318,7 +26424,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25350,7 +26457,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -25372,7 +26480,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -25394,7 +26503,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "application_name", @@ -25416,7 +26526,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_addr", @@ -25438,7 +26549,8 @@ "schema": "", "name": "inet" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_hostname", @@ -25460,7 +26572,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_port", @@ -25482,7 +26595,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_start", @@ -25504,7 +26618,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xmin", @@ -25526,7 +26641,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state", @@ -25548,7 +26664,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sent_lsn", @@ -25570,7 +26687,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "write_lsn", @@ -25592,7 +26710,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flush_lsn", @@ -25614,7 +26733,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "replay_lsn", @@ -25636,7 +26756,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "write_lag", @@ -25658,7 +26779,8 @@ "schema": "", "name": "interval" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flush_lag", @@ -25680,7 +26802,8 @@ "schema": "", "name": "interval" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "replay_lag", @@ -25702,7 +26825,8 @@ "schema": "", "name": "interval" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_priority", @@ -25724,7 +26848,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_state", @@ -25746,7 +26871,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reply_time", @@ -25768,7 +26894,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25800,7 +26927,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_txns", @@ -25822,7 +26950,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_count", @@ -25844,7 +26973,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_bytes", @@ -25866,7 +26996,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_txns", @@ -25888,7 +27019,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_count", @@ -25910,7 +27042,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_bytes", @@ -25932,7 +27065,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_txns", @@ -25954,7 +27088,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_bytes", @@ -25976,7 +27111,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -25998,7 +27134,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26030,7 +27167,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_zeroed", @@ -26052,7 +27190,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -26074,7 +27213,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -26096,7 +27236,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_written", @@ -26118,7 +27259,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_exists", @@ -26140,7 +27282,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flushes", @@ -26162,7 +27305,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "truncates", @@ -26184,7 +27328,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -26206,7 +27351,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26238,7 +27384,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ssl", @@ -26260,7 +27407,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "version", @@ -26282,7 +27430,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cipher", @@ -26304,7 +27453,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bits", @@ -26326,7 +27476,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_dn", @@ -26348,7 +27499,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_serial", @@ -26370,7 +27522,8 @@ "schema": "", "name": "numeric" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "issuer_dn", @@ -26392,7 +27545,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26424,7 +27578,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -26446,7 +27601,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -26468,7 +27624,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -26490,7 +27647,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "received_lsn", @@ -26512,7 +27670,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_send_time", @@ -26534,7 +27693,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_receipt_time", @@ -26556,7 +27716,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_lsn", @@ -26578,7 +27739,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_time", @@ -26600,7 +27762,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26632,7 +27795,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -26654,7 +27818,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "apply_error_count", @@ -26676,7 +27841,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_error_count", @@ -26698,7 +27864,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -26720,7 +27887,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26752,7 +27920,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -26774,7 +27943,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26796,7 +27966,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -26818,7 +27989,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -26840,7 +28012,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -26862,7 +28035,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -26884,7 +28058,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -26906,7 +28081,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26938,7 +28114,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26960,7 +28137,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -26982,7 +28160,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -27004,7 +28183,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -27026,7 +28206,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27048,7 +28229,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27070,7 +28252,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -27092,7 +28275,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -27114,7 +28298,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -27136,7 +28321,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -27158,7 +28344,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -27180,7 +28367,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -27202,7 +28390,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -27224,7 +28413,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -27246,7 +28436,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -27268,7 +28459,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -27290,7 +28482,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -27312,7 +28505,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -27334,7 +28528,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -27356,7 +28551,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -27378,7 +28574,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -27400,7 +28597,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -27422,7 +28620,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27454,7 +28653,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27476,7 +28676,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "funcname", @@ -27498,7 +28699,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "calls", @@ -27520,7 +28722,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_time", @@ -27542,7 +28745,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_time", @@ -27564,7 +28768,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27596,7 +28801,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -27618,7 +28824,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27640,7 +28847,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -27662,7 +28870,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -27684,7 +28893,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27706,7 +28916,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -27728,7 +28939,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27750,7 +28962,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27782,7 +28995,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27804,7 +29018,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -27826,7 +29041,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -27848,7 +29064,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -27870,7 +29087,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27892,7 +29110,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27914,7 +29133,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -27936,7 +29156,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -27958,7 +29179,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -27980,7 +29202,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -28002,7 +29225,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -28024,7 +29248,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -28046,7 +29271,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -28068,7 +29294,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -28090,7 +29317,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -28112,7 +29340,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -28134,7 +29363,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -28156,7 +29386,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -28178,7 +29409,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -28200,7 +29432,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -28222,7 +29455,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -28244,7 +29478,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -28266,7 +29501,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28298,7 +29534,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_fpi", @@ -28320,7 +29557,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_bytes", @@ -28342,7 +29580,8 @@ "schema": "", "name": "numeric" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_buffers_full", @@ -28364,7 +29603,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_write", @@ -28386,7 +29626,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_sync", @@ -28408,7 +29649,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_write_time", @@ -28430,7 +29672,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_sync_time", @@ -28452,7 +29695,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -28474,7 +29718,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28506,7 +29751,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "status", @@ -28528,7 +29774,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "receive_start_lsn", @@ -28550,7 +29797,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "receive_start_tli", @@ -28572,7 +29820,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "written_lsn", @@ -28594,7 +29843,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flushed_lsn", @@ -28616,7 +29866,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "received_tli", @@ -28638,7 +29889,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_send_time", @@ -28660,7 +29912,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_receipt_time", @@ -28682,7 +29935,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_lsn", @@ -28704,7 +29958,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_time", @@ -28726,7 +29981,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "slot_name", @@ -28748,7 +30004,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sender_host", @@ -28770,7 +30027,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sender_port", @@ -28792,7 +30050,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conninfo", @@ -28814,7 +30073,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28846,7 +30106,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28868,7 +30129,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28890,7 +30152,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -28912,7 +30175,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -28934,7 +30198,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -28956,7 +30221,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -28978,7 +30244,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -29000,7 +30267,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -29022,7 +30290,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -29044,7 +30313,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -29066,7 +30336,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29098,7 +30369,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29120,7 +30392,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29142,7 +30415,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -29164,7 +30438,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -29186,7 +30461,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -29208,7 +30484,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -29230,7 +30507,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -29252,7 +30530,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -29274,7 +30553,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -29296,7 +30576,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -29318,7 +30599,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29350,7 +30632,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29372,7 +30655,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "funcname", @@ -29394,7 +30678,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "calls", @@ -29416,7 +30701,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_time", @@ -29438,7 +30724,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_time", @@ -29460,7 +30747,8 @@ "schema": "", "name": "float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29492,7 +30780,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29514,7 +30803,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29536,7 +30826,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -29558,7 +30849,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -29580,7 +30872,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -29602,7 +30895,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -29624,7 +30918,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -29646,7 +30941,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -29668,7 +30964,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -29690,7 +30987,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -29712,7 +31010,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29744,7 +31043,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -29766,7 +31066,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29788,7 +31089,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29810,7 +31112,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -29832,7 +31135,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29854,7 +31158,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29876,7 +31181,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29908,7 +31214,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29930,7 +31237,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29952,7 +31260,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -29974,7 +31283,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -29996,7 +31306,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30028,7 +31339,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -30050,7 +31362,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -30072,7 +31385,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -30094,7 +31408,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -30116,7 +31431,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -30138,7 +31454,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -30160,7 +31477,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -30182,7 +31500,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -30204,7 +31523,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -30226,7 +31546,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -30248,7 +31569,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30280,7 +31602,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -30302,7 +31625,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -30324,7 +31648,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -30346,7 +31671,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -30368,7 +31694,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -30390,7 +31717,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -30412,7 +31740,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30444,7 +31773,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -30466,7 +31796,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -30488,7 +31819,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -30510,7 +31842,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -30532,7 +31865,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30564,7 +31898,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -30586,7 +31921,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -30608,7 +31944,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -30630,7 +31967,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -30652,7 +31990,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -30674,7 +32013,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -30696,7 +32036,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -30718,7 +32059,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -30740,7 +32082,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -30762,7 +32105,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -30784,7 +32128,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30816,7 +32161,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -30838,7 +32184,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -30860,7 +32207,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -30882,7 +32230,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -30904,7 +32253,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -30926,7 +32276,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -30948,7 +32299,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30980,7 +32332,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -31002,7 +32355,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -31024,7 +32378,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -31046,7 +32401,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -31068,7 +32424,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31100,7 +32457,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -31122,7 +32480,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -31144,7 +32503,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -31166,7 +32526,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -31188,7 +32549,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -31210,7 +32572,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -31232,7 +32595,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -31254,7 +32618,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -31276,7 +32641,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -31298,7 +32664,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -31320,7 +32687,8 @@ "schema": "", "name": "int8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31352,7 +32720,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -31374,7 +32743,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -31396,7 +32766,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -31418,7 +32789,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -31440,7 +32812,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -31462,7 +32835,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "starelid", @@ -31484,7 +32858,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staattnum", @@ -31506,7 +32881,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stainherit", @@ -31528,7 +32904,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanullfrac", @@ -31550,7 +32927,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stawidth", @@ -31572,7 +32950,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stadistinct", @@ -31594,7 +32973,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind1", @@ -31616,7 +32996,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind2", @@ -31638,7 +33019,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind3", @@ -31660,7 +33042,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind4", @@ -31682,7 +33065,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind5", @@ -31704,7 +33088,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop1", @@ -31726,7 +33111,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop2", @@ -31748,7 +33134,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop3", @@ -31770,7 +33157,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop4", @@ -31792,7 +33180,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop5", @@ -31814,7 +33203,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll1", @@ -31836,7 +33226,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll2", @@ -31858,7 +33249,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll3", @@ -31880,7 +33272,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll4", @@ -31902,7 +33295,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll5", @@ -31924,7 +33318,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers1", @@ -31946,7 +33341,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers2", @@ -31968,7 +33364,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers3", @@ -31990,7 +33387,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers4", @@ -32012,7 +33410,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers5", @@ -32034,7 +33433,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues1", @@ -32056,7 +33456,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues2", @@ -32078,7 +33479,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues3", @@ -32100,7 +33502,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues4", @@ -32122,7 +33525,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues5", @@ -32144,7 +33548,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32176,7 +33581,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -32198,7 +33604,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -32220,7 +33627,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -32242,7 +33650,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -32264,7 +33673,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -32286,7 +33696,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -32308,7 +33719,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxrelid", @@ -32330,7 +33742,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxname", @@ -32352,7 +33765,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxnamespace", @@ -32374,7 +33788,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxowner", @@ -32396,7 +33811,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxstattarget", @@ -32418,7 +33834,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxkeys", @@ -32440,7 +33857,8 @@ "schema": "", "name": "int2vector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxkind", @@ -32462,7 +33880,8 @@ "schema": "", "name": "_char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxexprs", @@ -32484,7 +33903,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32516,7 +33936,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -32538,7 +33959,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -32560,7 +33982,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -32582,7 +34005,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -32604,7 +34028,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -32626,7 +34051,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxoid", @@ -32648,7 +34074,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdinherit", @@ -32670,7 +34097,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdndistinct", @@ -32692,7 +34120,8 @@ "schema": "", "name": "pg_ndistinct" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxddependencies", @@ -32714,7 +34143,8 @@ "schema": "", "name": "pg_dependencies" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdmcv", @@ -32736,7 +34166,8 @@ "schema": "", "name": "pg_mcv_list" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdexpr", @@ -32758,7 +34189,8 @@ "schema": "", "name": "_pg_statistic" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32790,7 +34222,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -32812,7 +34245,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -32834,7 +34268,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -32856,7 +34291,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "null_frac", @@ -32878,7 +34314,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "avg_width", @@ -32900,7 +34337,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -32922,7 +34360,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -32944,7 +34383,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -32966,7 +34406,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "histogram_bounds", @@ -32988,7 +34429,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "correlation", @@ -33010,7 +34452,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elems", @@ -33032,7 +34475,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elem_freqs", @@ -33054,7 +34498,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "elem_count_histogram", @@ -33076,7 +34521,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33108,7 +34554,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -33130,7 +34577,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_schemaname", @@ -33152,7 +34600,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_name", @@ -33174,7 +34623,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_owner", @@ -33196,7 +34646,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnames", @@ -33218,7 +34669,8 @@ "schema": "", "name": "_name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "exprs", @@ -33240,7 +34692,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "kinds", @@ -33262,7 +34715,8 @@ "schema": "", "name": "_char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -33284,7 +34738,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -33306,7 +34761,8 @@ "schema": "", "name": "pg_ndistinct" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dependencies", @@ -33328,7 +34784,8 @@ "schema": "", "name": "pg_dependencies" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -33350,7 +34807,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_val_nulls", @@ -33372,7 +34830,8 @@ "schema": "", "name": "_bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -33394,7 +34853,8 @@ "schema": "", "name": "_float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_base_freqs", @@ -33416,7 +34876,8 @@ "schema": "", "name": "_float8" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33448,7 +34909,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -33470,7 +34932,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_schemaname", @@ -33492,7 +34955,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_name", @@ -33514,7 +34978,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_owner", @@ -33536,7 +35001,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "expr", @@ -33558,7 +35024,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -33580,7 +35047,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "null_frac", @@ -33602,7 +35070,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "avg_width", @@ -33624,7 +35093,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -33646,7 +35116,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -33668,7 +35139,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -33690,7 +35162,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "histogram_bounds", @@ -33712,7 +35185,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "correlation", @@ -33734,7 +35208,8 @@ "schema": "", "name": "float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elems", @@ -33756,7 +35231,8 @@ "schema": "", "name": "anyarray" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elem_freqs", @@ -33778,7 +35254,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "elem_count_histogram", @@ -33800,7 +35277,8 @@ "schema": "", "name": "_float4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33832,7 +35310,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33854,7 +35333,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33876,7 +35356,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33898,7 +35379,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33920,7 +35402,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33942,7 +35425,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33964,7 +35448,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subdbid", @@ -33986,7 +35471,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subskiplsn", @@ -34008,7 +35494,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -34030,7 +35517,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subowner", @@ -34052,7 +35540,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subenabled", @@ -34074,7 +35563,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subbinary", @@ -34096,7 +35586,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "substream", @@ -34118,7 +35609,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subtwophasestate", @@ -34140,7 +35632,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subdisableonerr", @@ -34162,7 +35655,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subconninfo", @@ -34184,7 +35678,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subslotname", @@ -34206,7 +35701,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subsynccommit", @@ -34228,7 +35724,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subpublications", @@ -34250,7 +35747,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34282,7 +35780,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34304,7 +35803,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34326,7 +35826,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34348,7 +35849,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34370,7 +35872,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34392,7 +35895,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsubid", @@ -34414,7 +35918,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srrelid", @@ -34436,7 +35941,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsubstate", @@ -34458,7 +35964,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsublsn", @@ -34480,7 +35987,8 @@ "schema": "", "name": "pg_lsn" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34512,7 +36020,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -34534,7 +36043,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tableowner", @@ -34556,7 +36066,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -34578,7 +36089,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasindexes", @@ -34600,7 +36112,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasrules", @@ -34622,7 +36135,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hastriggers", @@ -34644,7 +36158,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rowsecurity", @@ -34666,7 +36181,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34698,7 +36214,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34720,7 +36237,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34742,7 +36260,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34764,7 +36283,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34786,7 +36306,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34808,7 +36329,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -34830,7 +36352,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcname", @@ -34852,7 +36375,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcowner", @@ -34874,7 +36398,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcacl", @@ -34896,7 +36421,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcoptions", @@ -34918,7 +36444,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34950,7 +36477,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "utc_offset", @@ -34972,7 +36500,8 @@ "schema": "", "name": "interval" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_dst", @@ -34994,7 +36523,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35026,7 +36556,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "abbrev", @@ -35048,7 +36579,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "utc_offset", @@ -35070,7 +36602,8 @@ "schema": "", "name": "interval" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_dst", @@ -35092,7 +36625,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35124,7 +36658,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35146,7 +36681,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35168,7 +36704,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35190,7 +36727,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35212,7 +36750,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35234,7 +36773,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35256,7 +36796,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trftype", @@ -35278,7 +36819,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trflang", @@ -35300,7 +36842,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trffromsql", @@ -35322,7 +36865,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trftosql", @@ -35344,7 +36888,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35376,7 +36921,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35398,7 +36944,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35420,7 +36967,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35442,7 +36990,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35464,7 +37013,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35486,7 +37036,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35508,7 +37059,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgrelid", @@ -35530,7 +37082,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgparentid", @@ -35552,7 +37105,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgname", @@ -35574,7 +37128,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgfoid", @@ -35596,7 +37151,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgtype", @@ -35618,7 +37174,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgenabled", @@ -35640,7 +37197,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgisinternal", @@ -35662,7 +37220,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstrrelid", @@ -35684,7 +37243,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstrindid", @@ -35706,7 +37266,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstraint", @@ -35728,7 +37289,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgdeferrable", @@ -35750,7 +37312,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tginitdeferred", @@ -35772,7 +37335,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgnargs", @@ -35794,7 +37358,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgattr", @@ -35816,7 +37381,8 @@ "schema": "", "name": "int2vector" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgargs", @@ -35838,7 +37404,8 @@ "schema": "", "name": "bytea" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgqual", @@ -35860,7 +37427,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgoldtable", @@ -35882,7 +37450,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgnewtable", @@ -35904,7 +37473,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35936,7 +37506,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35958,7 +37529,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35980,7 +37552,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -36002,7 +37575,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -36024,7 +37598,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -36046,7 +37621,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -36068,7 +37644,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgname", @@ -36090,7 +37667,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgnamespace", @@ -36112,7 +37690,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgowner", @@ -36134,7 +37713,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgparser", @@ -36156,7 +37736,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36188,7 +37769,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -36210,7 +37792,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -36232,7 +37815,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -36254,7 +37838,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -36276,7 +37861,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -36298,7 +37884,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapcfg", @@ -36320,7 +37907,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maptokentype", @@ -36342,7 +37930,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapseqno", @@ -36364,7 +37953,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapdict", @@ -36386,7 +37976,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36418,7 +38009,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -36440,7 +38032,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -36462,7 +38055,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -36484,7 +38078,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -36506,7 +38101,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -36528,7 +38124,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -36550,7 +38147,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictname", @@ -36572,7 +38170,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictnamespace", @@ -36594,7 +38193,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictowner", @@ -36616,7 +38216,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dicttemplate", @@ -36638,7 +38239,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictinitoption", @@ -36660,7 +38262,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36692,7 +38295,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -36714,7 +38318,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -36736,7 +38341,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -36758,7 +38364,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -36780,7 +38387,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -36802,7 +38410,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -36824,7 +38433,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsname", @@ -36846,7 +38456,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsnamespace", @@ -36868,7 +38479,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsstart", @@ -36890,7 +38502,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prstoken", @@ -36912,7 +38525,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsend", @@ -36934,7 +38548,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsheadline", @@ -36956,7 +38571,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prslextype", @@ -36978,7 +38594,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37010,7 +38627,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -37032,7 +38650,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -37054,7 +38673,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -37076,7 +38696,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -37098,7 +38719,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -37120,7 +38742,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -37142,7 +38765,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplname", @@ -37164,7 +38788,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplnamespace", @@ -37186,7 +38811,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplinit", @@ -37208,7 +38834,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmpllexize", @@ -37230,7 +38857,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37262,7 +38890,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -37284,7 +38913,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -37306,7 +38936,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -37328,7 +38959,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -37350,7 +38982,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -37372,7 +39005,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -37394,7 +39028,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typname", @@ -37416,7 +39051,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typnamespace", @@ -37438,7 +39074,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typowner", @@ -37460,7 +39097,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typlen", @@ -37482,7 +39120,8 @@ "schema": "", "name": "int2" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typbyval", @@ -37504,7 +39143,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typtype", @@ -37526,7 +39166,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typcategory", @@ -37548,7 +39189,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typispreferred", @@ -37570,7 +39212,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typisdefined", @@ -37592,7 +39235,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdelim", @@ -37614,7 +39258,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typrelid", @@ -37636,7 +39281,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typsubscript", @@ -37658,7 +39304,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typelem", @@ -37680,7 +39327,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typarray", @@ -37702,7 +39350,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typinput", @@ -37724,7 +39373,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typoutput", @@ -37746,7 +39396,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typreceive", @@ -37768,7 +39419,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typsend", @@ -37790,7 +39442,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typmodin", @@ -37812,7 +39465,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typmodout", @@ -37834,7 +39488,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typanalyze", @@ -37856,7 +39511,8 @@ "schema": "", "name": "regproc" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typalign", @@ -37878,7 +39534,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typstorage", @@ -37900,7 +39557,8 @@ "schema": "", "name": "char" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typnotnull", @@ -37922,7 +39580,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typbasetype", @@ -37944,7 +39603,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typtypmod", @@ -37966,7 +39626,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typndims", @@ -37988,7 +39649,8 @@ "schema": "", "name": "int4" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typcollation", @@ -38010,7 +39672,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdefaultbin", @@ -38032,7 +39695,8 @@ "schema": "", "name": "pg_node_tree" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdefault", @@ -38054,7 +39718,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typacl", @@ -38076,7 +39741,8 @@ "schema": "", "name": "_aclitem" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38108,7 +39774,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -38130,7 +39797,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usecreatedb", @@ -38152,7 +39820,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesuper", @@ -38174,7 +39843,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "userepl", @@ -38196,7 +39866,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usebypassrls", @@ -38218,7 +39889,8 @@ "schema": "", "name": "bool" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "passwd", @@ -38240,7 +39912,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "valuntil", @@ -38262,7 +39935,8 @@ "schema": "", "name": "timestamptz" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "useconfig", @@ -38284,7 +39958,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38316,7 +39991,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -38338,7 +40014,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -38360,7 +40037,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -38382,7 +40060,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -38404,7 +40083,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -38426,7 +40106,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -38448,7 +40129,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -38470,7 +40152,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umserver", @@ -38492,7 +40175,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -38514,7 +40198,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38546,7 +40231,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvid", @@ -38568,7 +40254,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvname", @@ -38590,7 +40277,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -38612,7 +40300,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -38634,7 +40323,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -38656,7 +40346,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38688,7 +40379,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "viewname", @@ -38710,7 +40402,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "viewowner", @@ -38732,7 +40425,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -38754,7 +40448,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38794,7 +40489,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwowner", @@ -38816,7 +40512,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwoptions", @@ -38838,7 +40535,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -38860,7 +40558,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -38882,7 +40581,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -38904,7 +40604,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_language", @@ -38926,7 +40627,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38958,7 +40660,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvoptions", @@ -38980,7 +40683,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -39002,7 +40706,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -39024,7 +40729,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -39046,7 +40752,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -39068,7 +40775,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_type", @@ -39090,7 +40798,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_version", @@ -39112,7 +40821,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -39134,7 +40844,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39166,7 +40877,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -39188,7 +40900,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -39210,7 +40923,8 @@ "schema": "", "name": "name" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attfdwoptions", @@ -39232,7 +40946,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39264,7 +40979,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -39286,7 +41002,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -39308,7 +41025,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftoptions", @@ -39330,7 +41048,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -39352,7 +41071,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -39374,7 +41094,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -39396,7 +41117,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39428,7 +41150,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -39450,7 +41173,8 @@ "schema": "", "name": "_text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -39472,7 +41196,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -39494,7 +41219,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -39516,7 +41242,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -39538,7 +41265,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvowner", @@ -39560,7 +41288,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39592,7 +41321,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "role_name", @@ -39614,7 +41344,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -39636,7 +41367,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39668,7 +41400,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "role_name", @@ -39690,7 +41423,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -39712,7 +41446,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39744,7 +41479,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -39766,7 +41502,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -39788,7 +41525,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_name", @@ -39810,7 +41548,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -39832,7 +41571,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_default", @@ -39854,7 +41594,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_nullable", @@ -39876,7 +41617,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -39898,7 +41640,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -39920,7 +41663,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -39942,7 +41686,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -39964,7 +41709,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -39986,7 +41732,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -40008,7 +41755,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -40030,7 +41778,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -40052,7 +41801,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -40074,7 +41824,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -40096,7 +41847,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -40118,7 +41870,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -40140,7 +41893,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -40162,7 +41916,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -40184,7 +41939,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -40206,7 +41962,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_catalog", @@ -40228,7 +41985,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_schema", @@ -40250,7 +42008,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_name", @@ -40272,7 +42031,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -40294,7 +42054,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -40316,7 +42077,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -40338,7 +42100,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -40360,7 +42123,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -40382,7 +42146,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_derived_reference_attribute", @@ -40404,7 +42169,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40436,7 +42202,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -40458,7 +42225,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -40480,7 +42248,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_repertoire", @@ -40502,7 +42271,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "form_of_use", @@ -40524,7 +42294,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_catalog", @@ -40546,7 +42317,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_schema", @@ -40568,7 +42340,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_name", @@ -40590,7 +42363,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40622,7 +42396,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -40644,7 +42419,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -40666,7 +42442,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -40688,7 +42465,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -40710,7 +42488,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -40732,7 +42511,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40764,7 +42544,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -40786,7 +42567,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -40808,7 +42590,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "check_clause", @@ -40830,7 +42613,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40862,7 +42646,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -40884,7 +42669,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -40906,7 +42692,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -40928,7 +42715,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -40950,7 +42738,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -40972,7 +42761,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41004,7 +42794,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -41026,7 +42817,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -41048,7 +42840,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pad_attribute", @@ -41070,7 +42863,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41102,7 +42896,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41124,7 +42919,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41146,7 +42942,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41168,7 +42965,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dependent_column", @@ -41190,7 +42988,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41222,7 +43021,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41244,7 +43044,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41266,7 +43067,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -41288,7 +43090,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41310,7 +43113,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41332,7 +43136,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41354,7 +43159,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41386,7 +43192,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41408,7 +43215,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41430,7 +43238,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41452,7 +43261,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -41474,7 +43284,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -41496,7 +43307,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41528,7 +43340,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -41550,7 +43363,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -41572,7 +43386,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41594,7 +43409,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41616,7 +43432,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41638,7 +43455,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -41660,7 +43478,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -41682,7 +43501,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41714,7 +43534,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -41736,7 +43557,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -41758,7 +43580,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -41780,7 +43603,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41802,7 +43626,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41824,7 +43649,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41846,7 +43672,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41878,7 +43705,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41900,7 +43728,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41922,7 +43751,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41944,7 +43774,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -41966,7 +43797,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_default", @@ -41988,7 +43820,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_nullable", @@ -42010,7 +43843,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -42032,7 +43866,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -42054,7 +43889,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -42076,7 +43912,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -42098,7 +43935,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -42120,7 +43958,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -42142,7 +43981,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -42164,7 +44004,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -42186,7 +44027,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -42208,7 +44050,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -42230,7 +44073,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -42252,7 +44096,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -42274,7 +44119,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -42296,7 +44142,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -42318,7 +44165,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -42340,7 +44188,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -42362,7 +44211,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -42384,7 +44234,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -42406,7 +44257,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -42428,7 +44280,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -42450,7 +44303,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -42472,7 +44326,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -42494,7 +44349,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -42516,7 +44372,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -42538,7 +44395,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -42560,7 +44418,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -42582,7 +44441,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_self_referencing", @@ -42604,7 +44464,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_identity", @@ -42626,7 +44487,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_generation", @@ -42648,7 +44510,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_start", @@ -42670,7 +44533,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_increment", @@ -42692,7 +44556,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_maximum", @@ -42714,7 +44579,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_minimum", @@ -42736,7 +44602,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_cycle", @@ -42758,7 +44625,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_generated", @@ -42780,7 +44648,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "generation_expression", @@ -42802,7 +44671,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_updatable", @@ -42824,7 +44694,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42856,7 +44727,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -42878,7 +44750,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -42900,7 +44773,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -42922,7 +44796,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_catalog", @@ -42944,7 +44819,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -42966,7 +44842,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -42988,7 +44865,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43020,7 +44898,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -43042,7 +44921,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -43064,7 +44944,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_catalog", @@ -43086,7 +44967,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -43108,7 +44990,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -43130,7 +45013,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43162,7 +45046,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -43184,7 +45069,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -43206,7 +45092,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -43228,7 +45115,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -43250,7 +45138,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43282,7 +45171,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -43304,7 +45194,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -43326,7 +45217,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -43348,7 +45240,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -43370,7 +45263,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -43392,7 +45286,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deferrable", @@ -43414,7 +45309,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initially_deferred", @@ -43436,7 +45332,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43468,7 +45365,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -43490,7 +45388,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -43512,7 +45411,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -43534,7 +45434,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -43556,7 +45457,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -43578,7 +45480,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43610,7 +45513,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -43632,7 +45536,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -43654,7 +45559,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -43676,7 +45582,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -43698,7 +45605,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -43720,7 +45628,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -43742,7 +45651,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -43764,7 +45674,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -43786,7 +45697,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -43808,7 +45720,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -43830,7 +45743,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -43852,7 +45766,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -43874,7 +45789,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -43896,7 +45812,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -43918,7 +45835,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -43940,7 +45858,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -43962,7 +45881,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -43984,7 +45904,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_default", @@ -44006,7 +45927,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -44028,7 +45950,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -44050,7 +45973,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -44072,7 +45996,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -44094,7 +46019,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -44116,7 +46042,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -44138,7 +46065,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -44160,7 +46088,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -44182,7 +46111,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44214,7 +46144,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -44236,7 +46167,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -44258,7 +46190,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -44280,7 +46213,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collection_type_identifier", @@ -44302,7 +46236,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -44324,7 +46259,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -44346,7 +46282,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -44368,7 +46305,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -44390,7 +46328,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -44412,7 +46351,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -44434,7 +46374,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -44456,7 +46397,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -44478,7 +46420,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -44500,7 +46443,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -44522,7 +46466,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -44544,7 +46489,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -44566,7 +46512,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -44588,7 +46535,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -44610,7 +46558,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -44632,7 +46581,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_default", @@ -44654,7 +46604,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -44676,7 +46627,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -44698,7 +46650,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -44720,7 +46673,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -44742,7 +46696,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -44764,7 +46719,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -44786,7 +46742,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -44808,7 +46765,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -44830,7 +46788,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44862,7 +46821,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44894,7 +46854,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -44916,7 +46877,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -44938,7 +46900,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -44960,7 +46923,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44992,7 +46956,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -45014,7 +46979,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -45036,7 +47002,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "library_name", @@ -45058,7 +47025,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_language", @@ -45080,7 +47048,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45112,7 +47081,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -45134,7 +47104,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -45156,7 +47127,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -45178,7 +47150,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45210,7 +47183,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -45232,7 +47206,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -45254,7 +47229,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -45276,7 +47252,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_type", @@ -45298,7 +47275,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_version", @@ -45320,7 +47298,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -45342,7 +47321,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45374,7 +47354,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -45396,7 +47377,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -45418,7 +47400,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -45440,7 +47423,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -45462,7 +47446,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45494,7 +47479,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -45516,7 +47502,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -45538,7 +47525,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -45560,7 +47548,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -45582,7 +47571,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45614,7 +47604,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45646,7 +47637,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -45668,7 +47660,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -45690,7 +47683,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -45712,7 +47706,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -45734,7 +47729,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -45756,7 +47752,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -45778,7 +47775,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -45800,7 +47798,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "position_in_unique_constraint", @@ -45822,7 +47821,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45854,7 +47854,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -45876,7 +47877,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -45898,7 +47900,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -45920,7 +47923,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_mode", @@ -45942,7 +47946,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_result", @@ -45964,7 +47969,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "as_locator", @@ -45986,7 +47992,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_name", @@ -46008,7 +48015,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -46030,7 +48038,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -46052,7 +48061,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -46074,7 +48084,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -46096,7 +48107,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -46118,7 +48130,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -46140,7 +48153,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -46162,7 +48176,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -46184,7 +48199,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -46206,7 +48222,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -46228,7 +48245,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -46250,7 +48268,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -46272,7 +48291,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -46294,7 +48314,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -46316,7 +48337,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -46338,7 +48360,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -46360,7 +48383,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -46382,7 +48406,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -46404,7 +48429,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -46426,7 +48452,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -46448,7 +48475,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -46470,7 +48498,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -46492,7 +48521,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -46514,7 +48544,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_default", @@ -46536,7 +48567,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46568,7 +48600,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -46590,7 +48623,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -46612,7 +48646,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_catalog", @@ -46634,7 +48669,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_schema", @@ -46656,7 +48692,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_name", @@ -46678,7 +48715,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "match_option", @@ -46700,7 +48738,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "update_rule", @@ -46722,7 +48761,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "delete_rule", @@ -46744,7 +48784,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46776,7 +48817,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -46798,7 +48840,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -46820,7 +48863,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -46842,7 +48886,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -46864,7 +48909,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -46886,7 +48932,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -46908,7 +48955,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -46930,7 +48978,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46962,7 +49011,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -46984,7 +49034,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -47006,7 +49057,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -47028,7 +49080,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -47050,7 +49103,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -47072,7 +49126,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -47094,7 +49149,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -47116,7 +49172,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -47138,7 +49195,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -47160,7 +49218,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -47192,7 +49251,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -47214,7 +49274,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -47236,7 +49297,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -47258,7 +49320,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -47280,7 +49343,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -47302,7 +49366,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -47324,7 +49389,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_hierarchy", @@ -47346,7 +49412,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -47378,7 +49445,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -47400,7 +49468,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -47422,7 +49491,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -47444,7 +49514,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -47466,7 +49537,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -47488,7 +49560,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -47510,7 +49583,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -47542,7 +49616,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -47564,7 +49639,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_catalog", @@ -47586,7 +49662,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -47608,7 +49685,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -47630,7 +49708,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -47652,7 +49731,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -47674,7 +49754,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -47696,7 +49777,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -47728,7 +49810,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -47750,7 +49833,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -47772,7 +49856,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -47794,7 +49879,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -47816,7 +49902,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -47838,7 +49925,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -47860,7 +49948,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -47882,7 +49971,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -47904,7 +49994,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -47926,7 +50017,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -47958,7 +50050,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -47980,7 +50073,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -48002,7 +50096,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -48024,7 +50119,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -48046,7 +50142,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -48068,7 +50165,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -48090,7 +50188,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -48112,7 +50211,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -48134,7 +50234,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -48156,7 +50257,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48188,7 +50290,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -48210,7 +50313,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -48232,7 +50336,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -48254,7 +50359,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -48276,7 +50382,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -48298,7 +50405,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48330,7 +50438,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -48352,7 +50461,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -48374,7 +50484,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -48396,7 +50507,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -48418,7 +50530,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -48440,7 +50553,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_catalog", @@ -48462,7 +50576,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_schema", @@ -48484,7 +50599,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_name", @@ -48506,7 +50622,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48538,7 +50655,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -48560,7 +50678,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -48582,7 +50701,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -48604,7 +50724,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -48626,7 +50747,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -48648,7 +50770,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -48670,7 +50793,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -48692,7 +50816,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -48714,7 +50839,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48746,7 +50872,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -48768,7 +50895,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -48790,7 +50918,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -48812,7 +50941,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -48834,7 +50964,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -48856,7 +50987,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_type", @@ -48878,7 +51010,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_catalog", @@ -48900,7 +51033,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_schema", @@ -48922,7 +51056,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_name", @@ -48944,7 +51079,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -48966,7 +51102,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -48988,7 +51125,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -49010,7 +51148,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -49032,7 +51171,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -49054,7 +51194,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -49076,7 +51217,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -49098,7 +51240,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -49120,7 +51263,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -49142,7 +51286,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -49164,7 +51309,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -49186,7 +51332,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -49208,7 +51355,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -49230,7 +51378,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -49252,7 +51401,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -49274,7 +51424,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -49296,7 +51447,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -49318,7 +51470,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -49340,7 +51493,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_catalog", @@ -49362,7 +51516,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_schema", @@ -49384,7 +51539,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_name", @@ -49406,7 +51562,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -49428,7 +51585,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -49450,7 +51608,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -49472,7 +51631,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -49494,7 +51654,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -49516,7 +51677,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_body", @@ -49538,7 +51700,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_definition", @@ -49560,7 +51723,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_name", @@ -49582,7 +51746,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_language", @@ -49604,7 +51769,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_style", @@ -49626,7 +51792,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deterministic", @@ -49648,7 +51815,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_data_access", @@ -49670,7 +51838,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_null_call", @@ -49692,7 +51861,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_path", @@ -49714,7 +51884,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_level_routine", @@ -49736,7 +51907,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_dynamic_result_sets", @@ -49758,7 +51930,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_user_defined_cast", @@ -49780,7 +51953,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_implicitly_invocable", @@ -49802,7 +51976,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "security_type", @@ -49824,7 +51999,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_catalog", @@ -49846,7 +52022,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_schema", @@ -49868,7 +52045,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_name", @@ -49890,7 +52068,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "as_locator", @@ -49912,7 +52091,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "created", @@ -49934,7 +52114,8 @@ "schema": "", "name": "time_stamp" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_altered", @@ -49956,7 +52137,8 @@ "schema": "", "name": "time_stamp" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "new_savepoint_level", @@ -49978,7 +52160,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_udt_dependent", @@ -50000,7 +52183,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_from_data_type", @@ -50022,7 +52206,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_as_locator", @@ -50044,7 +52229,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_max_length", @@ -50066,7 +52252,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_octet_length", @@ -50088,7 +52275,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_catalog", @@ -50110,7 +52298,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_schema", @@ -50132,7 +52321,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_name", @@ -50154,7 +52344,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_catalog", @@ -50176,7 +52367,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_schema", @@ -50198,7 +52390,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_name", @@ -50220,7 +52413,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_precision", @@ -50242,7 +52436,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_precision_radix", @@ -50264,7 +52459,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_scale", @@ -50286,7 +52482,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_datetime_precision", @@ -50308,7 +52505,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_interval_type", @@ -50330,7 +52528,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_interval_precision", @@ -50352,7 +52551,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_catalog", @@ -50374,7 +52574,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_schema", @@ -50396,7 +52597,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_name", @@ -50418,7 +52620,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_catalog", @@ -50440,7 +52643,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_schema", @@ -50462,7 +52666,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_name", @@ -50484,7 +52689,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_maximum_cardinality", @@ -50506,7 +52712,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_dtd_identifier", @@ -50528,7 +52735,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50560,7 +52768,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_name", @@ -50582,7 +52791,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_owner", @@ -50604,7 +52814,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_catalog", @@ -50626,7 +52837,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_schema", @@ -50648,7 +52860,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_name", @@ -50670,7 +52883,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_path", @@ -50692,7 +52906,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50724,7 +52939,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_schema", @@ -50746,7 +52962,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_name", @@ -50768,7 +52985,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -50790,7 +53008,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -50812,7 +53031,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -50834,7 +53054,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -50856,7 +53077,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "start_value", @@ -50878,7 +53100,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "minimum_value", @@ -50900,7 +53123,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_value", @@ -50922,7 +53146,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "increment", @@ -50944,7 +53169,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cycle_option", @@ -50966,7 +53192,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50998,7 +53225,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -51020,7 +53248,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -51042,7 +53271,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -51064,7 +53294,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -51086,7 +53317,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -51108,7 +53340,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_id", @@ -51130,7 +53363,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_name", @@ -51152,7 +53386,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sub_feature_id", @@ -51174,7 +53409,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sub_feature_name", @@ -51196,7 +53432,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_supported", @@ -51218,7 +53455,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_verified_by", @@ -51240,7 +53478,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -51262,7 +53501,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51294,7 +53534,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -51316,7 +53557,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -51338,7 +53580,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -51360,7 +53603,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -51382,7 +53626,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -51404,7 +53649,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "implementation_info_id", @@ -51426,7 +53672,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "implementation_info_name", @@ -51448,7 +53695,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "integer_value", @@ -51470,7 +53718,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_value", @@ -51492,7 +53741,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -51514,7 +53764,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51546,7 +53797,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -51568,7 +53820,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -51590,7 +53843,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -51612,7 +53866,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -51634,7 +53889,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -51656,7 +53912,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_id", @@ -51678,7 +53935,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_name", @@ -51700,7 +53958,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_supported", @@ -51722,7 +53981,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_verified_by", @@ -51744,7 +54004,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -51766,7 +54027,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51798,7 +54060,8 @@ "schema": "", "name": "oid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -51820,7 +54083,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -51842,7 +54106,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -51864,7 +54129,8 @@ "schema": "", "name": "cid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -51886,7 +54152,8 @@ "schema": "", "name": "xid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -51908,7 +54175,8 @@ "schema": "", "name": "tid" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sizing_id", @@ -51930,7 +54198,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sizing_name", @@ -51952,7 +54221,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "supported_value", @@ -51974,7 +54244,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -51996,7 +54267,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52028,7 +54300,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -52050,7 +54323,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -52072,7 +54346,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -52094,7 +54369,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52116,7 +54392,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52138,7 +54415,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_type", @@ -52160,7 +54438,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deferrable", @@ -52182,7 +54461,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initially_deferred", @@ -52204,7 +54484,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enforced", @@ -52226,7 +54507,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nulls_distinct", @@ -52248,7 +54530,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52280,7 +54563,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -52302,7 +54586,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -52324,7 +54609,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52346,7 +54632,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52368,7 +54655,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -52390,7 +54678,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -52412,7 +54701,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_hierarchy", @@ -52434,7 +54724,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52466,7 +54757,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52488,7 +54780,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52510,7 +54803,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_type", @@ -52532,7 +54826,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_referencing_column_name", @@ -52554,7 +54849,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reference_generation", @@ -52576,7 +54872,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_catalog", @@ -52598,7 +54895,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_schema", @@ -52620,7 +54918,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_name", @@ -52642,7 +54941,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_insertable_into", @@ -52664,7 +54964,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_typed", @@ -52686,7 +54987,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "commit_action", @@ -52708,7 +55010,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52740,7 +55043,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -52762,7 +55066,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -52784,7 +55089,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -52806,7 +55112,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -52828,7 +55135,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -52850,7 +55158,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "group_name", @@ -52872,7 +55181,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "transform_type", @@ -52894,7 +55204,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52926,7 +55237,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_schema", @@ -52948,7 +55260,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_name", @@ -52970,7 +55283,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_catalog", @@ -52992,7 +55306,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_schema", @@ -53014,7 +55329,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_table", @@ -53036,7 +55352,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_column", @@ -53058,7 +55375,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -53090,7 +55408,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_schema", @@ -53112,7 +55431,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_name", @@ -53134,7 +55454,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_manipulation", @@ -53156,7 +55477,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_catalog", @@ -53178,7 +55500,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_schema", @@ -53200,7 +55523,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_table", @@ -53222,7 +55546,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_order", @@ -53244,7 +55569,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_condition", @@ -53266,7 +55592,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_statement", @@ -53288,7 +55615,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_orientation", @@ -53310,7 +55638,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_timing", @@ -53332,7 +55661,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_old_table", @@ -53354,7 +55684,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_new_table", @@ -53376,7 +55707,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_old_row", @@ -53398,7 +55730,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_new_row", @@ -53420,7 +55753,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "created", @@ -53442,7 +55776,8 @@ "schema": "", "name": "time_stamp" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -53474,7 +55809,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -53496,7 +55832,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -53518,7 +55855,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -53540,7 +55878,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -53562,7 +55901,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -53584,7 +55924,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -53606,7 +55947,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -53638,7 +55980,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -53660,7 +56003,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_catalog", @@ -53682,7 +56026,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -53704,7 +56049,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -53726,7 +56072,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -53748,7 +56095,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -53770,7 +56118,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -53792,7 +56141,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -53824,7 +56174,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_schema", @@ -53846,7 +56197,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_name", @@ -53868,7 +56220,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_category", @@ -53890,7 +56243,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_instantiable", @@ -53912,7 +56266,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_final", @@ -53934,7 +56289,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_form", @@ -53956,7 +56312,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_category", @@ -53978,7 +56335,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_catalog", @@ -54000,7 +56358,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_schema", @@ -54022,7 +56381,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_name", @@ -54044,7 +56404,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reference_type", @@ -54066,7 +56427,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -54088,7 +56450,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -54110,7 +56473,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -54132,7 +56496,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -54154,7 +56519,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -54176,7 +56542,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -54198,7 +56565,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -54220,7 +56588,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -54242,7 +56611,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -54264,7 +56634,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -54286,7 +56657,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -54308,7 +56680,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -54330,7 +56703,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -54352,7 +56726,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -54374,7 +56749,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -54396,7 +56772,8 @@ "schema": "", "name": "cardinal_number" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "source_dtd_identifier", @@ -54418,7 +56795,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ref_dtd_identifier", @@ -54440,7 +56818,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -54472,7 +56851,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -54494,7 +56874,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -54516,7 +56897,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -54538,7 +56920,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -54560,7 +56943,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -54592,7 +56976,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -54614,7 +56999,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -54636,7 +57022,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -54668,7 +57055,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_schema", @@ -54690,7 +57078,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_name", @@ -54712,7 +57101,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -54734,7 +57124,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -54756,7 +57147,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -54778,7 +57170,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -54800,7 +57193,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -54832,7 +57226,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -54854,7 +57249,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -54876,7 +57272,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -54898,7 +57295,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -54920,7 +57318,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -54942,7 +57341,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -54974,7 +57374,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_schema", @@ -54996,7 +57397,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_name", @@ -55018,7 +57420,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -55040,7 +57443,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -55062,7 +57466,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -55084,7 +57489,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -55116,7 +57522,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -55138,7 +57545,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -55160,7 +57568,8 @@ "schema": "", "name": "sql_identifier" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_definition", @@ -55182,7 +57591,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "check_option", @@ -55204,7 +57614,8 @@ "schema": "", "name": "character_data" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_updatable", @@ -55226,7 +57637,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_insertable_into", @@ -55248,7 +57660,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_updatable", @@ -55270,7 +57683,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_deletable", @@ -55292,7 +57706,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_insertable_into", @@ -55314,7 +57729,8 @@ "schema": "", "name": "yes_or_no" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -55351,7 +57767,8 @@ "schema": "", "name": "bigserial" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -55373,7 +57790,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -55395,7 +57813,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "params": [ @@ -55421,7 +57840,8 @@ "schema": "", "name": "bigserial" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } } ], @@ -55454,7 +57874,8 @@ "schema": "", "name": "bigserial" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -55476,7 +57897,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -55498,7 +57920,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "params": [], @@ -55531,7 +57954,8 @@ "schema": "", "name": "bigserial" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -55553,7 +57977,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -55575,7 +58000,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } ], "params": [ @@ -55601,7 +58027,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } }, { @@ -55626,7 +58053,8 @@ "schema": "", "name": "text" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } } ], @@ -55666,7 +58094,8 @@ "schema": "", "name": "bigserial" }, - "is_sqlc_slice": false + "is_sqlc_slice": false, + "embed_table": null } } ], diff --git a/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json b/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json new file mode 100644 index 0000000000..26abb2b93a --- /dev/null +++ b/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json @@ -0,0 +1,53251 @@ +{ + "settings": { + "version": "2", + "engine": "postgresql", + "schema": [ + "schema.sql" + ], + "queries": [ + "query.sql" + ], + "rename": {}, + "overrides": [], + "codegen": { + "out": "gen", + "plugin": "jsonb", + "options": "eyJmaWxlbmFtZSI6ImNvZGVnZW4uanNvbiIsImluZGVudCI6IiAgIn0=" + }, + "go": { + "emit_interface": false, + "emit_json_tags": false, + "emit_db_tags": false, + "emit_prepared_queries": false, + "emit_exact_table_names": false, + "emit_empty_slices": false, + "emit_exported_queries": false, + "emit_result_struct_pointers": false, + "emit_params_struct_pointers": false, + "emit_methods_with_db_argument": false, + "json_tags_case_style": "", + "package": "", + "out": "", + "sql_package": "", + "output_db_file_name": "", + "output_models_file_name": "", + "output_querier_file_name": "", + "output_files_suffix": "", + "emit_enum_valid_method": false, + "emit_all_enum_values": false, + "inflection_exclude_table_names": [], + "emit_pointers_for_null_types": false + }, + "json": { + "out": "", + "indent": "", + "filename": "" + } + }, + "catalog": { + "comment": "", + "default_schema": "public", + "name": "", + "schemas": [ + { + "comment": "", + "name": "public", + "tables": [ + { + "rel": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "columns": [ + { + "name": "id", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bigserial" + } + }, + { + "name": "name", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "bio", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + } + ], + "enums": [], + "composite_types": [] + }, + { + "comment": "", + "name": "pg_temp", + "tables": [], + "enums": [], + "composite_types": [] + }, + { + "comment": "", + "name": "pg_catalog", + "tables": [ + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "aggfnoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggkind", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "aggnumdirectargs", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "aggtransfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggfinalfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggcombinefn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggserialfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggdeserialfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggmtransfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggminvtransfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggmfinalfn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "aggfinalextra", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "aggmfinalextra", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "aggfinalmodify", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "aggmfinalmodify", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "aggsortop", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "aggtranstype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "aggtransspace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "aggmtranstype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "aggmtransspace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "agginitval", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "aggminitval", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_aggregate" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "amhandler", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "amtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_am" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amopfamily", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amoplefttype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amoprighttype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amopstrategy", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "amoppurpose", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "amopopr", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amopmethod", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amopsortfamily", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amop" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amprocfamily", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amproclefttype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amprocrighttype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "amprocnum", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "amproc", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_amproc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "adrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "adnum", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "adbin", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attrdef" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "attrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "attname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "atttypid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "attstattarget", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "attlen", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "attnum", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "attndims", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "attcacheoff", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "atttypmod", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "attbyval", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "attalign", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "attstorage", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "attcompression", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "attnotnull", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "atthasdef", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "atthasmissing", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "attidentity", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "attgenerated", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "attisdropped", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "attislocal", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "attinhcount", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "attcollation", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "attacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + }, + { + "name": "attoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "attfdwoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "attmissingval", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_attribute" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "roleid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "member", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "grantor", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "admin_option", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_auth_members" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rolname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "rolsuper", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolinherit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolcreaterole", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolcreatedb", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolcanlogin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolreplication", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolbypassrls", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolconnlimit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "rolpassword", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "rolvaliduntil", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_authid" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "version", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "installed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "superuser", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "trusted", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relocatable", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "requires", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_name" + } + }, + { + "name": "comment", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extension_versions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extensions" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extensions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "default_version", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extensions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "installed_version", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extensions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "comment", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_available_extensions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "ident", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "parent", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "level", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "total_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "total_nblocks", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "free_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "free_chunks", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "used_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_backend_memory_contexts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "castsource", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "casttarget", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "castfunc", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "castcontext", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "castmethod", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cast" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "reltype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "reloftype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relam", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relfilenode", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "reltablespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relpages", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "reltuples", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "relallvisible", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "reltoastrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relhasindex", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relisshared", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relpersistence", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "relkind", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "relnatts", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "relchecks", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "relhasrules", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relhastriggers", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relhassubclass", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relrowsecurity", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relforcerowsecurity", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relispopulated", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relreplident", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "relispartition", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "relrewrite", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relfrozenxid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "relminmxid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "relacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + }, + { + "name": "reloptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "relpartbound", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_class" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "collname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "collnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "collowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "collprovider", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "collisdeterministic", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "collencoding", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "collcollate", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "collctype", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "colliculocale", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "collversion", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_collation" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_config" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "setting", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "conname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "connamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "contype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "condeferrable", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "condeferred", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "convalidated", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "conrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "contypid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "conindid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "conparentid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "confrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "confupdtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "confdeltype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "confmatchtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "conislocal", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "coninhcount", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "connoinherit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "conkey", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_int2" + } + }, + { + "name": "confkey", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_int2" + } + }, + { + "name": "conpfeqop", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "conppeqop", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "conffeqop", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "confdelsetcols", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_int2" + } + }, + { + "name": "conexclop", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "conbin", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_constraint" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "conname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "connamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "conowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "conforencoding", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "contoencoding", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "conproc", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "condefault", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_conversion" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "statement", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "is_holdable", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "is_binary", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "is_scrollable", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "creation_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_cursors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "datdba", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "encoding", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datlocprovider", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "datistemplate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "datallowconn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "datconnlimit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datfrozenxid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "datminmxid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "dattablespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datcollate", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "datctype", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "daticulocale", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "datcollversion", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "datacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "setdatabase", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "setrole", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "setconfig", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_db_role_setting" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "defaclrole", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "defaclnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "defaclobjtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "defaclacl", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_default_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "classid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "refclassid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "refobjid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "refobjsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "deptype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_depend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "objoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "description", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_description" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "enumtypid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "enumsortorder", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "enumlabel", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_enum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "evtname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "evtevent", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "evtowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "evtfoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "evtenabled", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "evttags", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_event_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "extname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "extowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "extnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "extrelocatable", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "extversion", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "extconfig", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "extcondition", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_extension" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "columns": [ + { + "name": "sourcefile", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sourceline", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "seqno", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "setting", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "applied", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "error", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_file_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "fdwname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "fdwowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "fdwhandler", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "fdwvalidator", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "fdwacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + }, + { + "name": "fdwoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_data_wrapper" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srvname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "srvowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srvfdw", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srvtype", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "srvversion", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "srvacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + }, + { + "name": "srvoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_server" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "ftrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "ftserver", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "ftoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_foreign_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_group" + }, + "columns": [ + { + "name": "groname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_group" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "grosysid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_group" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "grolist", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_group" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "columns": [ + { + "name": "line_number", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "database", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "user_name", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "address", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "netmask", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "auth_method", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "options", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "error", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_hba_file_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ident_file_mappings" + }, + "columns": [ + { + "name": "line_number", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ident_file_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "map_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ident_file_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sys_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ident_file_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "pg_username", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ident_file_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "error", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ident_file_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "indexrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indnatts", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "indnkeyatts", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "indisunique", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indnullsnotdistinct", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indisprimary", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indisexclusion", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indimmediate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indisclustered", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indisvalid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indcheckxmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indisready", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indislive", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indisreplident", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "indkey", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2vector" + } + }, + { + "name": "indcollation", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oidvector" + } + }, + { + "name": "indclass", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oidvector" + } + }, + { + "name": "indoption", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2vector" + } + }, + { + "name": "indexprs", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "indpred", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_indexes" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablespace", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexdef", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "inhrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "inhparent", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "inhseqno", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "inhdetachpending", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_inherits" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "objoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "privtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "initprivs", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_init_privs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "lanname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "lanowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "lanispl", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "lanpltrusted", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "lanplcallfoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "laninline", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "lanvalidator", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "lanacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_language" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "loid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "pageno", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "data", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bytea" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "lomowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "lomacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_largeobject_metadata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "columns": [ + { + "name": "locktype", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "database", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "relation", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "page", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "tuple", + "not_null": false, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "virtualxid", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "transactionid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "classid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "virtualtransaction", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "mode", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "granted", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "fastpath", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "waitstart", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_locks" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "matviewname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "matviewowner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablespace", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "hasindexes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "ispopulated", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "definition", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_matviews" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "nspname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "nspowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "nspacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opcmethod", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opcname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "opcnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opcowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opcfamily", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opcintype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opcdefault", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "opckeytype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opclass" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "oprnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprkind", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "oprcanmerge", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "oprcanhash", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "oprleft", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprright", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprresult", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprcom", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprnegate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "oprcode", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "oprrest", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "oprjoin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_operator" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opfmethod", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opfname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "opfnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "opfowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_opfamily" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "parname", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "paracl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_parameter_acl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "partrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "partstrat", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "partnatts", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "partdefid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "partattrs", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2vector" + } + }, + { + "name": "partclass", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oidvector" + } + }, + { + "name": "partcollation", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oidvector" + } + }, + { + "name": "partexprs", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_partitioned_table" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "policyname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "permissive", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "roles", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_name" + } + }, + { + "name": "cmd", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "qual", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "with_check", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policies" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "polname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "polrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "polcmd", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "polpermissive", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "polroles", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "polqual", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "polwithcheck", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_policy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "statement", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "prepare_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "parameter_types", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_regtype" + } + }, + { + "name": "from_sql", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "generic_plans", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "custom_plans", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_statements" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_xacts" + }, + "columns": [ + { + "name": "transaction", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_xacts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "gid", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_xacts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "prepared", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_xacts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "owner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_xacts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "database", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_prepared_xacts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "proname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "pronamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "proowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prolang", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "procost", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "prorows", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "provariadic", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prosupport", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "prokind", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "prosecdef", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "proleakproof", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "proisstrict", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "proretset", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "provolatile", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "proparallel", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "pronargs", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "pronargdefaults", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "prorettype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "proargtypes", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oidvector" + } + }, + { + "name": "proallargtypes", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "proargmodes", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_char" + } + }, + { + "name": "proargnames", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "proargdefaults", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "protrftypes", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_oid" + } + }, + { + "name": "prosrc", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "probin", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "prosqlbody", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "proconfig", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "proacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_proc" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "pubname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "pubowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "puballtables", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "pubinsert", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "pubupdate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "pubdelete", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "pubtruncate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "pubviaroot", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "pnpubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "pnnspid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_namespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prpubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prqual", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "prattrs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2vector" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_tables" + }, + "columns": [ + { + "name": "pubname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "attnames", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_name" + } + }, + { + "name": "rowfilter", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_publication_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "rngtypid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rngsubtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rngmultitypid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rngcollation", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rngsubopc", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rngcanonical", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "rngsubdiff", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_range" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "roident", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "roname", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin_status" + }, + "columns": [ + { + "name": "local_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin_status" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "external_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin_status" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "remote_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin_status" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "local_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_origin_status" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "columns": [ + { + "name": "slot_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "plugin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "slot_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "datoid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "database", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "temporary", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "active", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "active_pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "xmin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "catalog_xmin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "restart_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "confirmed_flush_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "wal_status", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "safe_wal_size", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "two_phase", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "rulename", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "ev_class", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "ev_type", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "ev_enabled", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "is_instead", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "ev_qual", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "ev_action", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rewrite" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "columns": [ + { + "name": "rolname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "rolsuper", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolinherit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolcreaterole", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolcreatedb", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolcanlogin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolreplication", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolconnlimit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "rolpassword", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "rolvaliduntil", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "rolbypassrls", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rolconfig", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "oid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rules" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "rulename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "definition", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_rules" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "objoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "provider", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "label", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "columns": [ + { + "name": "objoid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classoid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "objtype", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "objnamespace", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objname", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "provider", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "label", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_seclabels" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "seqrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "seqtypid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "seqstart", + "not_null": true, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seqincrement", + "not_null": true, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seqmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seqmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seqcache", + "not_null": true, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seqcycle", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequence" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "sequencename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "sequenceowner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regtype" + } + }, + { + "name": "start_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "min_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "max_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "increment_by", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "cycle", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "cache_size", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "last_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "setting", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "unit", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "category", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "short_desc", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "extra_desc", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "context", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "vartype", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "source", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "min_val", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "max_val", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "enumvals", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "boot_val", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "reset_val", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sourcefile", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sourceline", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "pending_restart", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_settings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "columns": [ + { + "name": "usename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "usesysid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "usecreatedb", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "usesuper", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "userepl", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "usebypassrls", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "passwd", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "valuntil", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "useconfig", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shadow" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "dbid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "objsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "refclassid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "refobjid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "deptype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdepend" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "objoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "description", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shdescription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shmem_allocations" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shmem_allocations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "off", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shmem_allocations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "size", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shmem_allocations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "allocated_size", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shmem_allocations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "objoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "classoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "provider", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "label", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_shseclabel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "columns": [ + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "leader_pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "usesysid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "usename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "application_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "client_addr", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "inet" + } + }, + { + "name": "client_hostname", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "client_port", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "backend_start", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "xact_start", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "query_start", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "state_change", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "wait_event_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "wait_event", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "state", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "backend_xid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "backend_xmin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "query_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "query", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "backend_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_activity" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indexrelid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexrelname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "seq_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seq_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_ins", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_del", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_hot_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_live_tup", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_dead_tup", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_mod_since_analyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_ins_since_vacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "last_vacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_autovacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_analyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_autoanalyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "vacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "autovacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "analyze_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "autoanalyze_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "columns": [ + { + "name": "archived_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "last_archived_wal", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "last_archived_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "failed_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "last_failed_wal", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "last_failed_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_archiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "columns": [ + { + "name": "checkpoints_timed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "checkpoints_req", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "checkpoint_write_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "checkpoint_sync_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "buffers_checkpoint", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "buffers_clean", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "maxwritten_clean", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "buffers_backend", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "buffers_backend_fsync", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "buffers_alloc", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_bgwriter" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "columns": [ + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "numbackends", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "xact_commit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "xact_rollback", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tup_returned", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tup_fetched", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tup_inserted", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tup_updated", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tup_deleted", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "conflicts", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "temp_files", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "temp_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "deadlocks", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "checksum_failures", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "checksum_last_failure", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "blk_read_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "blk_write_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "session_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "active_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "idle_in_transaction_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "sessions", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "sessions_abandoned", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "sessions_fatal", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "sessions_killed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "columns": [ + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "confl_tablespace", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "confl_lock", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "confl_snapshot", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "confl_bufferpin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "confl_deadlock", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_database_conflicts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_gssapi" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_gssapi" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "gss_authenticated", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_gssapi" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "principal", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_gssapi" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "encrypted", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_gssapi" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "phase", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sample_blks_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "sample_blks_scanned", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "ext_stats_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "ext_stats_computed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "child_tables_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "child_tables_done", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "current_child_table_relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_analyze" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "phase", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "backup_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "backup_streamed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tablespaces_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tablespaces_streamed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_basebackup" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "command", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "phase", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "cluster_index_relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "heap_tuples_scanned", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_tuples_written", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_scanned", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "index_rebuild_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_cluster" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "command", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "bytes_processed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "bytes_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tuples_processed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tuples_excluded", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_copy" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "index_relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "command", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "phase", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "lockers_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "lockers_done", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "current_locker_pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blocks_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blocks_done", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tuples_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tuples_done", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "partitions_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "partitions_done", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_create_index" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "datid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "datname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "phase", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "heap_blks_total", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_scanned", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_vacuumed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "index_vacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "max_dead_tuples", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "num_dead_tuples", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_progress_vacuum" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "columns": [ + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "prefetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "skip_init", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "skip_new", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "skip_fpw", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "skip_rep", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "wal_distance", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "block_distance", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "io_depth", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_recovery_prefetch" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "usesysid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "usename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "application_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "client_addr", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "inet" + } + }, + { + "name": "client_hostname", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "client_port", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "backend_start", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "backend_xmin", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "state", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sent_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "write_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "flush_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "replay_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "write_lag", + "not_null": false, + "is_array": false, + "comment": "", + "length": 16, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "interval" + } + }, + { + "name": "flush_lag", + "not_null": false, + "is_array": false, + "comment": "", + "length": 16, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "interval" + } + }, + { + "name": "replay_lag", + "not_null": false, + "is_array": false, + "comment": "", + "length": 16, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "interval" + } + }, + { + "name": "sync_priority", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "sync_state", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "reply_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "columns": [ + { + "name": "slot_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "spill_txns", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "spill_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "spill_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stream_txns", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stream_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stream_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "total_txns", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "total_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_replication_slots" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "blks_zeroed", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_written", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_exists", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "flushes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "truncates", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_slru" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "ssl", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "version", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "cipher", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "bits", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "client_dn", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "client_serial", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "numeric" + } + }, + { + "name": "issuer_dn", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_ssl" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "columns": [ + { + "name": "subid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "subname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "received_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "last_msg_send_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_msg_receipt_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "latest_end_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "latest_end_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription_stats" + }, + "columns": [ + { + "name": "subid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "subname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "apply_error_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "sync_error_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_subscription_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indexrelid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexrelname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "seq_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seq_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_ins", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_del", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_hot_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_live_tup", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_dead_tup", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_mod_since_analyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_ins_since_vacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "last_vacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_autovacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_analyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_autoanalyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "vacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "autovacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "analyze_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "autoanalyze_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "columns": [ + { + "name": "funcid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "funcname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "calls", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "total_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "self_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indexrelid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexrelname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "seq_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seq_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_ins", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_del", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_hot_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_live_tup", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_dead_tup", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_mod_since_analyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_ins_since_vacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "last_vacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_autovacuum", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_analyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_autoanalyze", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "vacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "autovacuum_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "analyze_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "autoanalyze_count", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "columns": [ + { + "name": "wal_records", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "wal_fpi", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "wal_bytes", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "numeric" + } + }, + { + "name": "wal_buffers_full", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "wal_write", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "wal_sync", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "wal_write_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "wal_sync_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "stats_reset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "columns": [ + { + "name": "pid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "status", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "receive_start_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "receive_start_tli", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "written_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "flushed_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "received_tli", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "last_msg_send_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "last_msg_receipt_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "latest_end_lsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "latest_end_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "slot_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sender_host", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "sender_port", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "conninfo", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_wal_receiver" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "seq_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seq_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_ins", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_del", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_hot_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "seq_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seq_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_ins", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_del", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_hot_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "columns": [ + { + "name": "funcid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "funcname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "calls", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "total_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + }, + { + "name": "self_time", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_functions" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "seq_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "seq_tup_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_scan", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_tup_fetch", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_ins", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_del", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "n_tup_hot_upd", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stat_xact_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indexrelid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexrelname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "idx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_sequences" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "heap_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "toast_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "toast_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tidx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tidx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_all_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indexrelid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexrelname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "idx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_sequences" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "heap_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "toast_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "toast_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tidx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tidx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_sys_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "indexrelid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "indexrelname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "idx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_indexes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_sequences" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "columns": [ + { + "name": "relid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "heap_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "heap_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "idx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "toast_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "toast_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tidx_blks_read", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + }, + { + "name": "tidx_blks_hit", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statio_user_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "starelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "staattnum", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "stainherit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "stanullfrac", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "stawidth", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "stadistinct", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "stakind1", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "stakind2", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "stakind3", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "stakind4", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "stakind5", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "staop1", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "staop2", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "staop3", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "staop4", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "staop5", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stacoll1", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stacoll2", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stacoll3", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stacoll4", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stacoll5", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stanumbers1", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "stanumbers2", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "stanumbers3", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "stanumbers4", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "stanumbers5", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "stavalues1", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "stavalues2", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "stavalues3", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "stavalues4", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "stavalues5", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stxrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stxname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "stxnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stxowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stxstattarget", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "stxkeys", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2vector" + } + }, + { + "name": "stxkind", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_char" + } + }, + { + "name": "stxexprs", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "stxoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "stxdinherit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "stxdndistinct", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_ndistinct" + } + }, + { + "name": "stxddependencies", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_dependencies" + } + }, + { + "name": "stxdmcv", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_mcv_list" + } + }, + { + "name": "stxdexpr", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_statistic_ext_data" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_pg_statistic" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "attname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "inherited", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "null_frac", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "avg_width", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "n_distinct", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "most_common_vals", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "most_common_freqs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "histogram_bounds", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "correlation", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "most_common_elems", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "most_common_elem_freqs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "elem_count_histogram", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "statistics_schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "statistics_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "statistics_owner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "attnames", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_name" + } + }, + { + "name": "exprs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "kinds", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_char" + } + }, + { + "name": "inherited", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "n_distinct", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_ndistinct" + } + }, + { + "name": "dependencies", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_dependencies" + } + }, + { + "name": "most_common_vals", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "most_common_val_nulls", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_bool" + } + }, + { + "name": "most_common_freqs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float8" + } + }, + { + "name": "most_common_base_freqs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float8" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "statistics_schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "statistics_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "statistics_owner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "expr", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "inherited", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "null_frac", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "avg_width", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "n_distinct", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "most_common_vals", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "most_common_freqs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "histogram_bounds", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "correlation", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "float4" + } + }, + { + "name": "most_common_elems", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "anyarray" + } + }, + { + "name": "most_common_elem_freqs", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + }, + { + "name": "elem_count_histogram", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_stats_ext_exprs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_float4" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "subdbid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "subskiplsn", + "not_null": true, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + }, + { + "name": "subname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "subowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "subenabled", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "subbinary", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "substream", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "subtwophasestate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "subdisableonerr", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "subconninfo", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "subslotname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "subsynccommit", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "subpublications", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "srsubid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srsubstate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "srsublsn", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_subscription_rel" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_lsn" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tableowner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tablespace", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "hasindexes", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "hasrules", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "hastriggers", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "rowsecurity", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "spcname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "spcowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "spcacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + }, + { + "name": "spcoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_tablespace" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_abbrevs" + }, + "columns": [ + { + "name": "abbrev", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_abbrevs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "utc_offset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 16, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_abbrevs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "interval" + } + }, + { + "name": "is_dst", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_abbrevs" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_names" + }, + "columns": [ + { + "name": "name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_names" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "abbrev", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_names" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "utc_offset", + "not_null": false, + "is_array": false, + "comment": "", + "length": 16, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_names" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "interval" + } + }, + { + "name": "is_dst", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_timezone_names" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "trftype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "trflang", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "trffromsql", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "trftosql", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_transform" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgparentid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tgfoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "tgenabled", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "tgisinternal", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "tgconstrrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgconstrindid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgconstraint", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tgdeferrable", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "tginitdeferred", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "tgnargs", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "tgattr", + "not_null": true, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2vector" + } + }, + { + "name": "tgargs", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bytea" + } + }, + { + "name": "tgqual", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "tgoldtable", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tgnewtable", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_trigger" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cfgname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "cfgnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cfgowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cfgparser", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "mapcfg", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "maptokentype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "mapseqno", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "mapdict", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_config_map" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "dictname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "dictnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "dictowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "dicttemplate", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "dictinitoption", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_dict" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prsname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "prsnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "prsstart", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "prstoken", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "prsend", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "prsheadline", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "prslextype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_parser" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tmplname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "tmplnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "tmplinit", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "tmpllexize", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_ts_template" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typname", + "not_null": true, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "typnamespace", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typowner", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typlen", + "not_null": true, + "is_array": false, + "comment": "", + "length": 2, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int2" + } + }, + { + "name": "typbyval", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "typtype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "typcategory", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "typispreferred", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "typisdefined", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "typdelim", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "typrelid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typsubscript", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typelem", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typarray", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typinput", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typoutput", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typreceive", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typsend", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typmodin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typmodout", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typanalyze", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "regproc" + } + }, + { + "name": "typalign", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "typstorage", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "char" + } + }, + { + "name": "typnotnull", + "not_null": true, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "typbasetype", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typtypmod", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "typndims", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "int4" + } + }, + { + "name": "typcollation", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "typdefaultbin", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "pg_node_tree" + } + }, + { + "name": "typdefault", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "typacl", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_type" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_aclitem" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "columns": [ + { + "name": "usename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "usesysid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "usecreatedb", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "usesuper", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "userepl", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "usebypassrls", + "not_null": false, + "is_array": false, + "comment": "", + "length": 1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bool" + } + }, + { + "name": "passwd", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "valuntil", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "timestamptz" + } + }, + { + "name": "useconfig", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "oid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "umuser", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "umserver", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "umoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mapping" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "columns": [ + { + "name": "umid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srvid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srvname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "umuser", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "usename", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "umoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_views" + }, + "columns": [ + { + "name": "schemaname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "viewname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "viewowner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "definition", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "pg_catalog", + "name": "pg_views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "comment": "" + } + ], + "enums": [], + "composite_types": [] + }, + { + "comment": "", + "name": "information_schema", + "tables": [ + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "columns": [ + { + "name": "oid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "fdwowner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "fdwoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "foreign_data_wrapper_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_language", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "columns": [ + { + "name": "oid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "srvoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "foreign_server_version", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_table_columns" + }, + "columns": [ + { + "name": "nspname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_table_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "relname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_table_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "attname", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_table_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "name" + } + }, + { + "name": "attfdwoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_table_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "columns": [ + { + "name": "foreign_table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ftoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "columns": [ + { + "name": "oid", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "umoptions", + "not_null": false, + "is_array": true, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "_text" + } + }, + { + "name": "umuser", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "srvowner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "_pg_user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "administrable_role_authorizations" + }, + "columns": [ + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "administrable_role_authorizations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "role_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "administrable_role_authorizations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "administrable_role_authorizations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "applicable_roles" + }, + "columns": [ + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "applicable_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "role_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "applicable_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "applicable_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "columns": [ + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "attribute_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ordinal_position", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "attribute_default", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_nullable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "attribute_udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "attribute_udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "attribute_udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "is_derived_reference_attribute", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "attributes" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "columns": [ + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_repertoire", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "form_of_use", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "default_collate_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "default_collate_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "default_collate_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "character_sets" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "columns": [ + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraint_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraints" + }, + "columns": [ + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "check_clause", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "check_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "columns": [ + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collation_character_set_applicability" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collations" + }, + "columns": [ + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "pad_attribute", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "collations" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_column_usage" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "dependent_column", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "columns": [ + { + "name": "domain_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_domain_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "columns": [ + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "column_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ordinal_position", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "column_default", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_nullable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "is_self_referencing", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_identity", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "identity_generation", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "identity_start", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "identity_increment", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "identity_maximum", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "identity_minimum", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "identity_cycle", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_generated", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "generation_expression", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_updatable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "constraint_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "data_type_privileges" + }, + "columns": [ + { + "name": "object_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "data_type_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "data_type_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "data_type_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "data_type_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "data_type_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "columns": [ + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "is_deferrable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "initially_deferred", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "columns": [ + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domain_udt_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "columns": [ + { + "name": "domain_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "domain_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "domain_default", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "domains" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "columns": [ + { + "name": "object_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "collection_type_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "domain_default", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "element_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "enabled_roles" + }, + "columns": [ + { + "name": "role_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "enabled_roles" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrapper_options" + }, + "columns": [ + { + "name": "foreign_data_wrapper_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrapper_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrapper_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrapper_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrapper_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrappers" + }, + "columns": [ + { + "name": "foreign_data_wrapper_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "library_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "foreign_data_wrapper_language", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_data_wrappers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_server_options" + }, + "columns": [ + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_server_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_server_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_server_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_server_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "columns": [ + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_data_wrapper_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "foreign_server_version", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_servers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_table_options" + }, + "columns": [ + { + "name": "foreign_table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_table_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_table_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_table_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_table_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_table_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_tables" + }, + "columns": [ + { + "name": "foreign_table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "foreign_tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "information_schema_catalog_name" + }, + "columns": [ + { + "name": "catalog_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "information_schema_catalog_name" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "columns": [ + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ordinal_position", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "position_in_unique_constraint", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "key_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "columns": [ + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ordinal_position", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "parameter_mode", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_result", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "as_locator", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "parameter_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "parameter_default", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "parameters" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "columns": [ + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "unique_constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "unique_constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "unique_constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "match_option", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "update_rule", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "delete_rule", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "referential_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_column_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_routine_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "with_hierarchy", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_table_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_udt_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "role_usage_grants" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "columns": [ + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "columns": [ + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "columns": [ + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "sequence_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "sequence_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "sequence_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_sequence_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "columns": [ + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routine_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "columns": [ + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "module_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "module_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "module_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "type_udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "type_udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "type_udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "routine_body", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "routine_definition", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "external_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "external_language", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "parameter_style", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_deterministic", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "sql_data_access", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_null_call", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "sql_path", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "schema_level_routine", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "max_dynamic_result_sets", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "is_user_defined_cast", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_implicitly_invocable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "security_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "to_sql_specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "to_sql_specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "to_sql_specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "as_locator", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "created", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "time_stamp" + } + }, + { + "name": "last_altered", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "time_stamp" + } + }, + { + "name": "new_savepoint_level", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_udt_dependent", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "result_cast_from_data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "result_cast_as_locator", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "result_cast_char_max_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_char_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_char_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_char_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_char_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "result_cast_interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_type_udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_type_udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_type_udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_scope_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_scope_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_scope_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "result_cast_maximum_cardinality", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "result_cast_dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "routines" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "columns": [ + { + "name": "catalog_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "schema_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "schema_owner", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "default_character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "default_character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "default_character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "sql_path", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "schemata" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "columns": [ + { + "name": "sequence_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "sequence_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "sequence_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "start_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "minimum_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "maximum_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "increment", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "cycle_option", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sequences" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "feature_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "feature_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "sub_feature_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "sub_feature_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_supported", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_verified_by", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "comments", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_features" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "implementation_info_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "implementation_info_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "integer_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "comments", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_implementation_info" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "feature_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "feature_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_supported", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_verified_by", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "comments", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_parts" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "columns": [ + { + "name": "tableoid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "oid" + } + }, + { + "name": "cmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmax", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "cmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cid" + } + }, + { + "name": "xmin", + "not_null": true, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "xid" + } + }, + { + "name": "ctid", + "not_null": true, + "is_array": false, + "comment": "", + "length": 6, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "tid" + } + }, + { + "name": "sizing_id", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "sizing_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "supported_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "comments", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "sql_sizing" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "columns": [ + { + "name": "constraint_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "constraint_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_deferrable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "initially_deferred", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "enforced", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "nulls_distinct", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_constraints" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "with_hierarchy", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "table_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "self_referencing_column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "reference_generation", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "user_defined_type_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "user_defined_type_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "user_defined_type_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "is_insertable_into", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_typed", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "commit_action", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "tables" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "columns": [ + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "group_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "transform_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "transforms" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "columns": [ + { + "name": "trigger_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "trigger_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "trigger_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_object_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_object_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_object_table", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_object_column", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggered_update_columns" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "columns": [ + { + "name": "trigger_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "trigger_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "trigger_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_manipulation", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "event_object_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_object_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "event_object_table", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "action_order", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "action_condition", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "action_statement", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "action_orientation", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "action_timing", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "action_reference_old_table", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "action_reference_new_table", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "action_reference_old_row", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "action_reference_new_row", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "created", + "not_null": false, + "is_array": false, + "comment": "", + "length": 8, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "triggers" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "time_stamp" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "udt_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "udt_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "columns": [ + { + "name": "grantor", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "grantee", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "object_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "privilege_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_grantable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "usage_privileges" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "columns": [ + { + "name": "user_defined_type_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "user_defined_type_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "user_defined_type_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "user_defined_type_category", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_instantiable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_final", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "ordering_form", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "ordering_category", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "ordering_routine_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ordering_routine_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ordering_routine_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "reference_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "data_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "character_maximum_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_octet_length", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "character_set_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "character_set_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "collation_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "numeric_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_precision_radix", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "numeric_scale", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "datetime_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "interval_type", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "interval_precision", + "not_null": false, + "is_array": false, + "comment": "", + "length": 4, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "cardinal_number" + } + }, + { + "name": "source_dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "ref_dtd_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_defined_types" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mapping_options" + }, + "columns": [ + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mapping_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mapping_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mapping_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mapping_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "option_value", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mapping_options" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mappings" + }, + "columns": [ + { + "name": "authorization_identifier", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "foreign_server_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "user_mappings" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "columns": [ + { + "name": "view_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "view_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "view_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "column_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_column_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "specific_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_routine_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "columns": [ + { + "name": "view_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "view_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "view_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "view_table_usage" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + } + ], + "comment": "" + }, + { + "rel": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "columns": [ + { + "name": "table_catalog", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_schema", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "table_name", + "not_null": false, + "is_array": false, + "comment": "", + "length": 64, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "sql_identifier" + } + }, + { + "name": "view_definition", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "check_option", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "character_data" + } + }, + { + "name": "is_updatable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_insertable_into", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_trigger_updatable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_trigger_deletable", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + }, + { + "name": "is_trigger_insertable_into", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "pg_catalog", + "schema": "information_schema", + "name": "views" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "yes_or_no" + } + } + ], + "comment": "" + } + ], + "enums": [], + "composite_types": [] + } + ] + }, + "queries": [ + { + "text": "SELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1", + "name": "GetAuthor", + "cmd": ":one", + "columns": [ + { + "name": "id", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bigserial" + } + }, + { + "name": "name", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "bio", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "params": [ + { + "number": 1, + "column": { + "name": "id", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bigserial" + } + } + } + ], + "comments": [], + "filename": "query.sql", + "insert_into_table": null + }, + { + "text": "SELECT id, name, bio FROM authors\nORDER BY name", + "name": "ListAuthors", + "cmd": ":many", + "columns": [ + { + "name": "id", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bigserial" + } + }, + { + "name": "name", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "bio", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "params": [], + "comments": [], + "filename": "query.sql", + "insert_into_table": null + }, + { + "text": "INSERT INTO authors (\n name, bio\n) VALUES (\n $1, $2\n)\nRETURNING id, name, bio", + "name": "CreateAuthor", + "cmd": ":one", + "columns": [ + { + "name": "id", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bigserial" + } + }, + { + "name": "name", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + }, + { + "name": "bio", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + ], + "params": [ + { + "number": 1, + "column": { + "name": "name", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "public", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + }, + { + "number": 2, + "column": { + "name": "bio", + "not_null": false, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "public", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "text" + } + } + } + ], + "comments": [], + "filename": "query.sql", + "insert_into_table": { + "catalog": "", + "schema": "", + "name": "authors" + } + }, + { + "text": "DELETE FROM authors\nWHERE id = $1", + "name": "DeleteAuthor", + "cmd": ":exec", + "columns": [], + "params": [ + { + "number": 1, + "column": { + "name": "id", + "not_null": true, + "is_array": false, + "comment": "", + "length": -1, + "is_named_param": false, + "is_func_call": false, + "scope": "", + "table": { + "catalog": "", + "schema": "", + "name": "authors" + }, + "table_alias": "", + "type": { + "catalog": "", + "schema": "", + "name": "bigserial" + } + } + } + ], + "comments": [], + "filename": "query.sql", + "insert_into_table": null + } + ], + "sqlc_version": "v1.17.2", + "plugin_options": "eyJmaWxlbmFtZSI6ImNvZGVnZW4uanNvbiIsImluZGVudCI6IiAgIn0=" +} diff --git a/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json b/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json index 8b40a4494c..26abb2b93a 100644 --- a/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json +++ b/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json @@ -80,8 +80,7 @@ "catalog": "", "schema": "", "name": "bigserial" - }, - "is_sqlc_slice": false + } }, { "name": "name", @@ -102,8 +101,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "bio", @@ -124,8 +122,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -171,8 +168,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -193,8 +189,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -215,8 +210,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -237,8 +231,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -259,8 +252,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -281,8 +273,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "aggfnoid", @@ -303,8 +294,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggkind", @@ -325,8 +315,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "aggnumdirectargs", @@ -347,8 +336,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "aggtransfn", @@ -369,8 +357,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggfinalfn", @@ -391,8 +378,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggcombinefn", @@ -413,8 +399,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggserialfn", @@ -435,8 +420,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggdeserialfn", @@ -457,8 +441,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggmtransfn", @@ -479,8 +462,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggminvtransfn", @@ -501,8 +483,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggmfinalfn", @@ -523,8 +504,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "aggfinalextra", @@ -545,8 +525,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "aggmfinalextra", @@ -567,8 +546,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "aggfinalmodify", @@ -589,8 +567,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "aggmfinalmodify", @@ -611,8 +588,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "aggsortop", @@ -633,8 +609,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "aggtranstype", @@ -655,8 +630,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "aggtransspace", @@ -677,8 +651,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "aggmtranstype", @@ -699,8 +672,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "aggmtransspace", @@ -721,8 +693,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "agginitval", @@ -743,8 +714,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "aggminitval", @@ -765,8 +735,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -797,8 +766,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -819,8 +787,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -841,8 +808,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -863,8 +829,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -885,8 +850,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -907,8 +871,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -929,8 +892,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amname", @@ -951,8 +913,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "amhandler", @@ -973,8 +934,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "amtype", @@ -995,8 +955,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -1027,8 +986,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -1049,8 +1007,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -1071,8 +1028,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -1093,8 +1049,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -1115,8 +1070,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -1137,8 +1091,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -1159,8 +1112,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amopfamily", @@ -1181,8 +1133,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amoplefttype", @@ -1203,8 +1154,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amoprighttype", @@ -1225,8 +1175,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amopstrategy", @@ -1247,8 +1196,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "amoppurpose", @@ -1269,8 +1217,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "amopopr", @@ -1291,8 +1238,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amopmethod", @@ -1313,8 +1259,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amopsortfamily", @@ -1335,8 +1280,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -1367,8 +1311,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -1389,8 +1332,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -1411,8 +1353,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -1433,8 +1374,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -1455,8 +1395,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -1477,8 +1416,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -1499,8 +1437,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amprocfamily", @@ -1521,8 +1458,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amproclefttype", @@ -1543,8 +1479,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amprocrighttype", @@ -1565,8 +1500,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "amprocnum", @@ -1587,8 +1521,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "amproc", @@ -1609,8 +1542,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -1641,8 +1573,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -1663,8 +1594,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -1685,8 +1615,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -1707,8 +1636,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -1729,8 +1657,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -1751,8 +1678,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -1773,8 +1699,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "adrelid", @@ -1795,8 +1720,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "adnum", @@ -1817,8 +1741,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "adbin", @@ -1839,8 +1762,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -1871,8 +1793,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -1893,8 +1814,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -1915,8 +1835,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -1937,8 +1856,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -1959,8 +1877,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -1981,8 +1898,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "attrelid", @@ -2003,8 +1919,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "attname", @@ -2025,8 +1940,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "atttypid", @@ -2047,8 +1961,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "attstattarget", @@ -2069,8 +1982,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "attlen", @@ -2091,8 +2003,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "attnum", @@ -2113,8 +2024,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "attndims", @@ -2135,8 +2045,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "attcacheoff", @@ -2157,8 +2066,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "atttypmod", @@ -2179,8 +2087,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "attbyval", @@ -2201,8 +2108,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "attalign", @@ -2223,8 +2129,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "attstorage", @@ -2245,8 +2150,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "attcompression", @@ -2267,8 +2171,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "attnotnull", @@ -2289,8 +2192,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "atthasdef", @@ -2311,8 +2213,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "atthasmissing", @@ -2333,8 +2234,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "attidentity", @@ -2355,8 +2255,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "attgenerated", @@ -2377,8 +2276,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "attisdropped", @@ -2399,8 +2297,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "attislocal", @@ -2421,8 +2318,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "attinhcount", @@ -2443,8 +2339,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "attcollation", @@ -2465,8 +2360,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "attacl", @@ -2487,8 +2381,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } }, { "name": "attoptions", @@ -2509,8 +2402,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "attfdwoptions", @@ -2531,8 +2423,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "attmissingval", @@ -2553,8 +2444,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -2585,8 +2475,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -2607,8 +2496,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -2629,8 +2517,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -2651,8 +2538,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -2673,8 +2559,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -2695,8 +2580,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "roleid", @@ -2717,8 +2601,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "member", @@ -2739,8 +2622,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "grantor", @@ -2761,8 +2643,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "admin_option", @@ -2783,8 +2664,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -2815,8 +2695,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -2837,8 +2716,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -2859,8 +2737,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -2881,8 +2758,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -2903,8 +2779,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -2925,8 +2800,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -2947,8 +2821,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rolname", @@ -2969,8 +2842,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "rolsuper", @@ -2991,8 +2863,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolinherit", @@ -3013,8 +2884,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolcreaterole", @@ -3035,8 +2905,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolcreatedb", @@ -3057,8 +2926,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolcanlogin", @@ -3079,8 +2947,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolreplication", @@ -3101,8 +2968,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolbypassrls", @@ -3123,8 +2989,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolconnlimit", @@ -3145,8 +3010,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "rolpassword", @@ -3167,8 +3031,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "rolvaliduntil", @@ -3189,8 +3052,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -3221,8 +3083,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "version", @@ -3243,8 +3104,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "installed", @@ -3265,8 +3125,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "superuser", @@ -3287,8 +3146,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "trusted", @@ -3309,8 +3167,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relocatable", @@ -3331,8 +3188,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "schema", @@ -3353,8 +3209,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "requires", @@ -3375,8 +3230,7 @@ "catalog": "", "schema": "", "name": "_name" - }, - "is_sqlc_slice": false + } }, { "name": "comment", @@ -3397,8 +3251,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -3429,8 +3282,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "default_version", @@ -3451,8 +3303,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "installed_version", @@ -3473,8 +3324,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "comment", @@ -3495,8 +3345,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -3527,8 +3376,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "ident", @@ -3549,8 +3397,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "parent", @@ -3571,8 +3418,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "level", @@ -3593,8 +3439,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "total_bytes", @@ -3615,8 +3460,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "total_nblocks", @@ -3637,8 +3481,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "free_bytes", @@ -3659,8 +3502,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "free_chunks", @@ -3681,8 +3523,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "used_bytes", @@ -3703,8 +3544,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -3735,8 +3575,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -3757,8 +3596,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -3779,8 +3617,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -3801,8 +3638,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -3823,8 +3659,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -3845,8 +3680,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -3867,8 +3701,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "castsource", @@ -3889,8 +3722,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "casttarget", @@ -3911,8 +3743,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "castfunc", @@ -3933,8 +3764,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "castcontext", @@ -3955,8 +3785,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "castmethod", @@ -3977,8 +3806,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -4009,8 +3837,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -4031,8 +3858,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -4053,8 +3879,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -4075,8 +3900,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -4097,8 +3921,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -4119,8 +3942,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -4141,8 +3963,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -4163,8 +3984,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relnamespace", @@ -4185,8 +4005,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "reltype", @@ -4207,8 +4026,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "reloftype", @@ -4229,8 +4047,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relowner", @@ -4251,8 +4068,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relam", @@ -4273,8 +4089,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relfilenode", @@ -4295,8 +4110,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "reltablespace", @@ -4317,8 +4131,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relpages", @@ -4339,8 +4152,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "reltuples", @@ -4361,8 +4173,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "relallvisible", @@ -4383,8 +4194,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "reltoastrelid", @@ -4405,8 +4215,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relhasindex", @@ -4427,8 +4236,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relisshared", @@ -4449,8 +4257,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relpersistence", @@ -4471,8 +4278,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "relkind", @@ -4493,8 +4299,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "relnatts", @@ -4515,8 +4320,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "relchecks", @@ -4537,8 +4341,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "relhasrules", @@ -4559,8 +4362,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relhastriggers", @@ -4581,8 +4383,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relhassubclass", @@ -4603,8 +4404,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relrowsecurity", @@ -4625,8 +4425,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relforcerowsecurity", @@ -4647,8 +4446,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relispopulated", @@ -4669,8 +4467,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relreplident", @@ -4691,8 +4488,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "relispartition", @@ -4713,8 +4509,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "relrewrite", @@ -4735,8 +4530,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relfrozenxid", @@ -4757,8 +4551,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "relminmxid", @@ -4779,8 +4572,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "relacl", @@ -4801,8 +4593,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } }, { "name": "reloptions", @@ -4823,8 +4614,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "relpartbound", @@ -4845,8 +4635,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -4877,8 +4666,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -4899,8 +4687,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -4921,8 +4708,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -4943,8 +4729,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -4965,8 +4750,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -4987,8 +4771,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -5009,8 +4792,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "collname", @@ -5031,8 +4813,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "collnamespace", @@ -5053,8 +4834,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "collowner", @@ -5075,8 +4855,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "collprovider", @@ -5097,8 +4876,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "collisdeterministic", @@ -5119,8 +4897,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "collencoding", @@ -5141,8 +4918,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "collcollate", @@ -5163,8 +4939,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "collctype", @@ -5185,8 +4960,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "colliculocale", @@ -5207,8 +4981,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "collversion", @@ -5229,8 +5002,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -5261,8 +5033,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "setting", @@ -5283,8 +5054,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -5315,8 +5085,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -5337,8 +5106,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -5359,8 +5127,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -5381,8 +5148,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -5403,8 +5169,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -5425,8 +5190,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -5447,8 +5211,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "conname", @@ -5469,8 +5232,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "connamespace", @@ -5491,8 +5253,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "contype", @@ -5513,8 +5274,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "condeferrable", @@ -5535,8 +5295,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "condeferred", @@ -5557,8 +5316,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "convalidated", @@ -5579,8 +5337,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "conrelid", @@ -5601,8 +5358,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "contypid", @@ -5623,8 +5379,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "conindid", @@ -5645,8 +5400,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "conparentid", @@ -5667,8 +5421,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "confrelid", @@ -5689,8 +5442,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "confupdtype", @@ -5711,8 +5463,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "confdeltype", @@ -5733,8 +5484,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "confmatchtype", @@ -5755,8 +5505,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "conislocal", @@ -5777,8 +5526,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "coninhcount", @@ -5799,8 +5547,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "connoinherit", @@ -5821,8 +5568,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "conkey", @@ -5843,8 +5589,7 @@ "catalog": "", "schema": "", "name": "_int2" - }, - "is_sqlc_slice": false + } }, { "name": "confkey", @@ -5865,8 +5610,7 @@ "catalog": "", "schema": "", "name": "_int2" - }, - "is_sqlc_slice": false + } }, { "name": "conpfeqop", @@ -5887,8 +5631,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "conppeqop", @@ -5909,8 +5652,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "conffeqop", @@ -5931,8 +5673,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "confdelsetcols", @@ -5953,8 +5694,7 @@ "catalog": "", "schema": "", "name": "_int2" - }, - "is_sqlc_slice": false + } }, { "name": "conexclop", @@ -5975,8 +5715,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "conbin", @@ -5997,8 +5736,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -6029,8 +5767,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -6051,8 +5788,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -6073,8 +5809,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -6095,8 +5830,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -6117,8 +5851,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -6139,8 +5872,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -6161,8 +5893,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "conname", @@ -6183,8 +5914,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "connamespace", @@ -6205,8 +5935,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "conowner", @@ -6227,8 +5956,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "conforencoding", @@ -6249,8 +5977,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "contoencoding", @@ -6271,8 +5998,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "conproc", @@ -6293,8 +6019,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "condefault", @@ -6315,8 +6040,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -6347,8 +6071,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "statement", @@ -6369,8 +6092,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "is_holdable", @@ -6391,8 +6113,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "is_binary", @@ -6413,8 +6134,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "is_scrollable", @@ -6435,8 +6155,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "creation_time", @@ -6457,8 +6176,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -6489,8 +6207,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -6511,8 +6228,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -6533,8 +6249,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -6555,8 +6270,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -6577,8 +6291,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -6599,8 +6312,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -6621,8 +6333,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -6643,8 +6354,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "datdba", @@ -6665,8 +6375,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "encoding", @@ -6687,8 +6396,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datlocprovider", @@ -6709,8 +6417,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "datistemplate", @@ -6731,8 +6438,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "datallowconn", @@ -6753,8 +6459,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "datconnlimit", @@ -6775,8 +6480,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datfrozenxid", @@ -6797,8 +6501,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "datminmxid", @@ -6819,8 +6522,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "dattablespace", @@ -6841,8 +6543,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datcollate", @@ -6863,8 +6564,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "datctype", @@ -6885,8 +6585,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "daticulocale", @@ -6907,8 +6606,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "datcollversion", @@ -6929,8 +6627,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "datacl", @@ -6951,8 +6648,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -6983,8 +6679,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -7005,8 +6700,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -7027,8 +6721,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -7049,8 +6742,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -7071,8 +6763,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -7093,8 +6784,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "setdatabase", @@ -7115,8 +6805,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "setrole", @@ -7137,8 +6826,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "setconfig", @@ -7159,8 +6847,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -7191,8 +6878,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -7213,8 +6899,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -7235,8 +6920,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -7257,8 +6941,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -7279,8 +6962,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -7301,8 +6983,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -7323,8 +7004,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "defaclrole", @@ -7345,8 +7025,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "defaclnamespace", @@ -7367,8 +7046,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "defaclobjtype", @@ -7389,8 +7067,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "defaclacl", @@ -7411,8 +7088,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -7443,8 +7119,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -7465,8 +7140,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -7487,8 +7161,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -7509,8 +7182,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -7531,8 +7203,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -7553,8 +7224,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "classid", @@ -7575,8 +7245,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objid", @@ -7597,8 +7266,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -7619,8 +7287,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "refclassid", @@ -7641,8 +7308,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "refobjid", @@ -7663,8 +7329,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "refobjsubid", @@ -7685,8 +7350,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "deptype", @@ -7707,8 +7371,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -7739,8 +7402,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -7761,8 +7423,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -7783,8 +7444,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -7805,8 +7465,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -7827,8 +7486,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -7849,8 +7507,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "objoid", @@ -7871,8 +7528,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classoid", @@ -7893,8 +7549,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -7915,8 +7570,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "description", @@ -7937,8 +7591,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -7969,8 +7622,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -7991,8 +7643,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -8013,8 +7664,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -8035,8 +7685,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -8057,8 +7706,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -8079,8 +7727,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -8101,8 +7748,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "enumtypid", @@ -8123,8 +7769,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "enumsortorder", @@ -8145,8 +7790,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "enumlabel", @@ -8167,8 +7811,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -8199,8 +7842,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -8221,8 +7863,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -8243,8 +7884,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -8265,8 +7905,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -8287,8 +7926,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -8309,8 +7947,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -8331,8 +7968,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "evtname", @@ -8353,8 +7989,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "evtevent", @@ -8375,8 +8010,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "evtowner", @@ -8397,8 +8031,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "evtfoid", @@ -8419,8 +8052,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "evtenabled", @@ -8441,8 +8073,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "evttags", @@ -8463,8 +8094,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -8495,8 +8125,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -8517,8 +8146,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -8539,8 +8167,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -8561,8 +8188,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -8583,8 +8209,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -8605,8 +8230,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -8627,8 +8251,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "extname", @@ -8649,8 +8272,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "extowner", @@ -8671,8 +8293,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "extnamespace", @@ -8693,8 +8314,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "extrelocatable", @@ -8715,8 +8335,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "extversion", @@ -8737,8 +8356,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "extconfig", @@ -8759,8 +8377,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "extcondition", @@ -8781,8 +8398,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -8813,8 +8429,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sourceline", @@ -8835,8 +8450,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "seqno", @@ -8857,8 +8471,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "name", @@ -8879,8 +8492,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "setting", @@ -8901,8 +8513,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "applied", @@ -8923,8 +8534,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "error", @@ -8945,8 +8555,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -8977,8 +8586,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -8999,8 +8607,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -9021,8 +8628,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -9043,8 +8649,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -9065,8 +8670,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -9087,8 +8691,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -9109,8 +8712,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "fdwname", @@ -9131,8 +8733,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "fdwowner", @@ -9153,8 +8754,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "fdwhandler", @@ -9175,8 +8775,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "fdwvalidator", @@ -9197,8 +8796,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "fdwacl", @@ -9219,8 +8817,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } }, { "name": "fdwoptions", @@ -9241,8 +8838,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -9273,8 +8869,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -9295,8 +8890,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -9317,8 +8911,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -9339,8 +8932,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -9361,8 +8953,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -9383,8 +8974,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -9405,8 +8995,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srvname", @@ -9427,8 +9016,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "srvowner", @@ -9449,8 +9037,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srvfdw", @@ -9471,8 +9058,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srvtype", @@ -9493,8 +9079,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "srvversion", @@ -9515,8 +9100,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "srvacl", @@ -9537,8 +9121,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } }, { "name": "srvoptions", @@ -9559,8 +9142,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -9591,8 +9173,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -9613,8 +9194,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -9635,8 +9215,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -9657,8 +9236,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -9679,8 +9257,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -9701,8 +9278,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "ftrelid", @@ -9723,8 +9299,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "ftserver", @@ -9745,8 +9320,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "ftoptions", @@ -9767,8 +9341,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -9799,8 +9372,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "grosysid", @@ -9821,8 +9393,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "grolist", @@ -9843,8 +9414,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -9875,8 +9445,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "type", @@ -9897,8 +9466,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "database", @@ -9919,8 +9487,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "user_name", @@ -9941,8 +9508,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "address", @@ -9963,8 +9529,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "netmask", @@ -9985,8 +9550,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "auth_method", @@ -10007,8 +9571,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "options", @@ -10029,8 +9592,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "error", @@ -10051,8 +9613,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -10083,8 +9644,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "map_name", @@ -10105,8 +9665,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sys_name", @@ -10127,8 +9686,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "pg_username", @@ -10149,8 +9707,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "error", @@ -10171,8 +9728,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -10203,8 +9759,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -10225,8 +9780,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -10247,8 +9801,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -10269,8 +9822,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -10291,8 +9843,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -10313,8 +9864,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -10335,8 +9885,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indrelid", @@ -10357,8 +9906,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indnatts", @@ -10379,8 +9927,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "indnkeyatts", @@ -10401,8 +9948,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "indisunique", @@ -10423,8 +9969,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indnullsnotdistinct", @@ -10445,8 +9990,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indisprimary", @@ -10467,8 +10011,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indisexclusion", @@ -10489,8 +10032,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indimmediate", @@ -10511,8 +10053,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indisclustered", @@ -10533,8 +10074,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indisvalid", @@ -10555,8 +10095,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indcheckxmin", @@ -10577,8 +10116,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indisready", @@ -10599,8 +10137,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indislive", @@ -10621,8 +10158,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indisreplident", @@ -10643,8 +10179,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "indkey", @@ -10665,8 +10200,7 @@ "catalog": "", "schema": "", "name": "int2vector" - }, - "is_sqlc_slice": false + } }, { "name": "indcollation", @@ -10687,8 +10221,7 @@ "catalog": "", "schema": "", "name": "oidvector" - }, - "is_sqlc_slice": false + } }, { "name": "indclass", @@ -10709,8 +10242,7 @@ "catalog": "", "schema": "", "name": "oidvector" - }, - "is_sqlc_slice": false + } }, { "name": "indoption", @@ -10731,8 +10263,7 @@ "catalog": "", "schema": "", "name": "int2vector" - }, - "is_sqlc_slice": false + } }, { "name": "indexprs", @@ -10753,8 +10284,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "indpred", @@ -10775,8 +10305,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -10807,8 +10336,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -10829,8 +10357,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexname", @@ -10851,8 +10378,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablespace", @@ -10873,8 +10399,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexdef", @@ -10895,8 +10420,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -10927,8 +10451,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -10949,8 +10472,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -10971,8 +10493,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -10993,8 +10514,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -11015,8 +10535,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -11037,8 +10556,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "inhrelid", @@ -11059,8 +10577,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "inhparent", @@ -11081,8 +10598,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "inhseqno", @@ -11103,8 +10619,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "inhdetachpending", @@ -11125,8 +10640,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -11157,8 +10671,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -11179,8 +10692,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -11201,8 +10713,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -11223,8 +10734,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -11245,8 +10755,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -11267,8 +10776,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "objoid", @@ -11289,8 +10797,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classoid", @@ -11311,8 +10818,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -11333,8 +10839,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "privtype", @@ -11355,8 +10860,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "initprivs", @@ -11377,8 +10881,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -11409,8 +10912,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -11431,8 +10933,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -11453,8 +10954,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -11475,8 +10975,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -11497,8 +10996,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -11519,8 +11017,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -11541,8 +11038,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "lanname", @@ -11563,8 +11059,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "lanowner", @@ -11585,8 +11080,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "lanispl", @@ -11607,8 +11101,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "lanpltrusted", @@ -11629,8 +11122,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "lanplcallfoid", @@ -11651,8 +11143,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "laninline", @@ -11673,8 +11164,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "lanvalidator", @@ -11695,8 +11185,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "lanacl", @@ -11717,8 +11206,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -11749,8 +11237,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -11771,8 +11258,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -11793,8 +11279,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -11815,8 +11300,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -11837,8 +11321,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -11859,8 +11342,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "loid", @@ -11881,8 +11363,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "pageno", @@ -11903,8 +11384,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "data", @@ -11925,8 +11405,7 @@ "catalog": "", "schema": "", "name": "bytea" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -11957,8 +11436,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -11979,8 +11457,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -12001,8 +11478,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -12023,8 +11499,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -12045,8 +11520,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -12067,8 +11541,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -12089,8 +11562,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "lomowner", @@ -12111,8 +11583,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "lomacl", @@ -12133,8 +11604,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -12165,8 +11635,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "database", @@ -12187,8 +11656,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "relation", @@ -12209,8 +11677,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "page", @@ -12231,8 +11698,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "tuple", @@ -12253,8 +11719,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "virtualxid", @@ -12275,8 +11740,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "transactionid", @@ -12297,8 +11761,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "classid", @@ -12319,8 +11782,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objid", @@ -12341,8 +11803,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -12363,8 +11824,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "virtualtransaction", @@ -12385,8 +11845,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "pid", @@ -12407,8 +11866,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "mode", @@ -12429,8 +11887,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "granted", @@ -12451,8 +11908,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "fastpath", @@ -12473,8 +11929,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "waitstart", @@ -12495,8 +11950,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -12527,8 +11981,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "matviewname", @@ -12549,8 +12002,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "matviewowner", @@ -12571,8 +12023,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablespace", @@ -12593,8 +12044,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "hasindexes", @@ -12615,8 +12065,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "ispopulated", @@ -12637,8 +12086,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "definition", @@ -12659,8 +12107,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -12691,8 +12138,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -12713,8 +12159,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -12735,8 +12180,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -12757,8 +12201,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -12779,8 +12222,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -12801,8 +12243,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -12823,8 +12264,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "nspname", @@ -12845,8 +12285,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "nspowner", @@ -12867,8 +12306,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "nspacl", @@ -12889,8 +12327,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -12921,8 +12358,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -12943,8 +12379,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -12965,8 +12400,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -12987,8 +12421,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -13009,8 +12442,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -13031,8 +12463,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -13053,8 +12484,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opcmethod", @@ -13075,8 +12505,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opcname", @@ -13097,8 +12526,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "opcnamespace", @@ -13119,8 +12547,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opcowner", @@ -13141,8 +12568,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opcfamily", @@ -13163,8 +12589,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opcintype", @@ -13185,8 +12610,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opcdefault", @@ -13207,8 +12631,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "opckeytype", @@ -13229,8 +12652,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -13261,8 +12683,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -13283,8 +12704,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -13305,8 +12725,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -13327,8 +12746,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -13349,8 +12767,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -13371,8 +12788,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -13393,8 +12809,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprname", @@ -13415,8 +12830,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "oprnamespace", @@ -13437,8 +12851,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprowner", @@ -13459,8 +12872,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprkind", @@ -13481,8 +12893,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "oprcanmerge", @@ -13503,8 +12914,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "oprcanhash", @@ -13525,8 +12935,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "oprleft", @@ -13547,8 +12956,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprright", @@ -13569,8 +12977,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprresult", @@ -13591,8 +12998,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprcom", @@ -13613,8 +13019,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprnegate", @@ -13635,8 +13040,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "oprcode", @@ -13657,8 +13061,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "oprrest", @@ -13679,8 +13082,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "oprjoin", @@ -13701,8 +13103,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -13733,8 +13134,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -13755,8 +13155,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -13777,8 +13176,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -13799,8 +13197,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -13821,8 +13218,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -13843,8 +13239,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -13865,8 +13260,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opfmethod", @@ -13887,8 +13281,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opfname", @@ -13909,8 +13302,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "opfnamespace", @@ -13931,8 +13323,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "opfowner", @@ -13953,8 +13344,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -13985,8 +13375,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -14007,8 +13396,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -14029,8 +13417,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -14051,8 +13438,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -14073,8 +13459,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -14095,8 +13480,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -14117,8 +13501,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "parname", @@ -14139,8 +13522,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "paracl", @@ -14161,8 +13543,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -14193,8 +13574,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -14215,8 +13595,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -14237,8 +13616,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -14259,8 +13637,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -14281,8 +13658,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -14303,8 +13679,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "partrelid", @@ -14325,8 +13700,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "partstrat", @@ -14347,8 +13721,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "partnatts", @@ -14369,8 +13742,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "partdefid", @@ -14391,8 +13763,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "partattrs", @@ -14413,8 +13784,7 @@ "catalog": "", "schema": "", "name": "int2vector" - }, - "is_sqlc_slice": false + } }, { "name": "partclass", @@ -14435,8 +13805,7 @@ "catalog": "", "schema": "", "name": "oidvector" - }, - "is_sqlc_slice": false + } }, { "name": "partcollation", @@ -14457,8 +13826,7 @@ "catalog": "", "schema": "", "name": "oidvector" - }, - "is_sqlc_slice": false + } }, { "name": "partexprs", @@ -14479,8 +13847,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -14511,8 +13878,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -14533,8 +13899,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "policyname", @@ -14555,8 +13920,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "permissive", @@ -14577,8 +13941,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "roles", @@ -14599,8 +13962,7 @@ "catalog": "", "schema": "", "name": "_name" - }, - "is_sqlc_slice": false + } }, { "name": "cmd", @@ -14621,8 +13983,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "qual", @@ -14643,8 +14004,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "with_check", @@ -14665,8 +14025,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -14697,8 +14056,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -14719,8 +14077,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -14741,8 +14098,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -14763,8 +14119,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -14785,8 +14140,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -14807,8 +14161,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -14829,8 +14182,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "polname", @@ -14851,8 +14203,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "polrelid", @@ -14873,8 +14224,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "polcmd", @@ -14895,8 +14245,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "polpermissive", @@ -14917,8 +14266,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "polroles", @@ -14939,8 +14287,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "polqual", @@ -14961,8 +14308,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "polwithcheck", @@ -14983,8 +14329,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -15015,8 +14360,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "statement", @@ -15037,8 +14381,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "prepare_time", @@ -15059,8 +14402,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "parameter_types", @@ -15081,8 +14423,7 @@ "catalog": "", "schema": "", "name": "_regtype" - }, - "is_sqlc_slice": false + } }, { "name": "from_sql", @@ -15103,8 +14444,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "generic_plans", @@ -15125,8 +14465,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "custom_plans", @@ -15147,8 +14486,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -15179,8 +14517,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "gid", @@ -15201,8 +14538,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "prepared", @@ -15223,8 +14559,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "owner", @@ -15245,8 +14580,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "database", @@ -15267,8 +14601,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -15299,8 +14632,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -15321,8 +14653,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -15343,8 +14674,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -15365,8 +14695,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -15387,8 +14716,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -15409,8 +14737,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -15431,8 +14758,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "proname", @@ -15453,8 +14779,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "pronamespace", @@ -15475,8 +14800,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "proowner", @@ -15497,8 +14821,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prolang", @@ -15519,8 +14842,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "procost", @@ -15541,8 +14863,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "prorows", @@ -15563,8 +14884,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "provariadic", @@ -15585,8 +14905,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prosupport", @@ -15607,8 +14926,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "prokind", @@ -15629,8 +14947,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "prosecdef", @@ -15651,8 +14968,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "proleakproof", @@ -15673,8 +14989,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "proisstrict", @@ -15695,8 +15010,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "proretset", @@ -15717,8 +15031,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "provolatile", @@ -15739,8 +15052,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "proparallel", @@ -15761,8 +15073,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "pronargs", @@ -15783,8 +15094,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "pronargdefaults", @@ -15805,8 +15115,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "prorettype", @@ -15827,8 +15136,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "proargtypes", @@ -15849,8 +15157,7 @@ "catalog": "", "schema": "", "name": "oidvector" - }, - "is_sqlc_slice": false + } }, { "name": "proallargtypes", @@ -15871,8 +15178,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "proargmodes", @@ -15893,8 +15199,7 @@ "catalog": "", "schema": "", "name": "_char" - }, - "is_sqlc_slice": false + } }, { "name": "proargnames", @@ -15915,8 +15220,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "proargdefaults", @@ -15937,8 +15241,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "protrftypes", @@ -15959,8 +15262,7 @@ "catalog": "", "schema": "", "name": "_oid" - }, - "is_sqlc_slice": false + } }, { "name": "prosrc", @@ -15981,8 +15283,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "probin", @@ -16003,8 +15304,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "prosqlbody", @@ -16025,8 +15325,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "proconfig", @@ -16047,8 +15346,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "proacl", @@ -16069,8 +15367,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -16101,8 +15398,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -16123,8 +15419,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -16145,8 +15440,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -16167,8 +15461,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -16189,8 +15482,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -16211,8 +15503,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -16233,8 +15524,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "pubname", @@ -16255,8 +15545,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "pubowner", @@ -16277,8 +15566,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "puballtables", @@ -16299,8 +15587,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "pubinsert", @@ -16321,8 +15608,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "pubupdate", @@ -16343,8 +15629,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "pubdelete", @@ -16365,8 +15650,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "pubtruncate", @@ -16387,8 +15671,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "pubviaroot", @@ -16409,8 +15692,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -16441,8 +15723,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -16463,8 +15744,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -16485,8 +15765,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -16507,8 +15786,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -16529,8 +15807,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -16551,8 +15828,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -16573,8 +15849,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "pnpubid", @@ -16595,8 +15870,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "pnnspid", @@ -16617,8 +15891,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -16649,8 +15922,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -16671,8 +15943,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -16693,8 +15964,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -16715,8 +15985,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -16737,8 +16006,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -16759,8 +16027,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -16781,8 +16048,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prpubid", @@ -16803,8 +16069,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prrelid", @@ -16825,8 +16090,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prqual", @@ -16847,8 +16111,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "prattrs", @@ -16869,8 +16132,7 @@ "catalog": "", "schema": "", "name": "int2vector" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -16901,8 +16163,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -16923,8 +16184,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -16945,8 +16205,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "attnames", @@ -16967,8 +16226,7 @@ "catalog": "", "schema": "", "name": "_name" - }, - "is_sqlc_slice": false + } }, { "name": "rowfilter", @@ -16989,8 +16247,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -17021,8 +16278,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -17043,8 +16299,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -17065,8 +16320,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -17087,8 +16341,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -17109,8 +16362,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -17131,8 +16383,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "rngtypid", @@ -17153,8 +16404,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rngsubtype", @@ -17175,8 +16425,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rngmultitypid", @@ -17197,8 +16446,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rngcollation", @@ -17219,8 +16467,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rngsubopc", @@ -17241,8 +16488,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rngcanonical", @@ -17263,8 +16509,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "rngsubdiff", @@ -17285,8 +16530,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -17317,8 +16561,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -17339,8 +16582,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -17361,8 +16603,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -17383,8 +16624,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -17405,8 +16645,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -17427,8 +16666,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "roident", @@ -17449,8 +16687,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "roname", @@ -17471,8 +16708,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -17503,8 +16739,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "external_id", @@ -17525,8 +16760,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "remote_lsn", @@ -17547,8 +16781,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "local_lsn", @@ -17569,8 +16802,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -17601,8 +16833,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "plugin", @@ -17623,8 +16854,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "slot_type", @@ -17645,8 +16875,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "datoid", @@ -17667,8 +16896,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "database", @@ -17689,8 +16917,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "temporary", @@ -17711,8 +16938,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "active", @@ -17733,8 +16959,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "active_pid", @@ -17755,8 +16980,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -17777,8 +17001,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "catalog_xmin", @@ -17799,8 +17022,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "restart_lsn", @@ -17821,8 +17043,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "confirmed_flush_lsn", @@ -17843,8 +17064,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "wal_status", @@ -17865,8 +17085,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "safe_wal_size", @@ -17887,8 +17106,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "two_phase", @@ -17909,8 +17127,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -17941,8 +17158,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -17963,8 +17179,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -17985,8 +17200,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -18007,8 +17221,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -18029,8 +17242,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -18051,8 +17263,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -18073,8 +17284,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "rulename", @@ -18095,8 +17305,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "ev_class", @@ -18117,8 +17326,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "ev_type", @@ -18139,8 +17347,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "ev_enabled", @@ -18161,8 +17368,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "is_instead", @@ -18183,8 +17389,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "ev_qual", @@ -18205,8 +17410,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "ev_action", @@ -18227,8 +17431,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -18259,8 +17462,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "rolsuper", @@ -18281,8 +17483,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolinherit", @@ -18303,8 +17504,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolcreaterole", @@ -18325,8 +17525,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolcreatedb", @@ -18347,8 +17546,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolcanlogin", @@ -18369,8 +17567,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolreplication", @@ -18391,8 +17588,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolconnlimit", @@ -18413,8 +17609,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "rolpassword", @@ -18435,8 +17630,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "rolvaliduntil", @@ -18457,8 +17651,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "rolbypassrls", @@ -18479,8 +17672,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rolconfig", @@ -18501,8 +17693,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -18523,8 +17714,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -18555,8 +17745,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -18577,8 +17766,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "rulename", @@ -18599,8 +17787,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "definition", @@ -18621,8 +17808,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -18653,8 +17839,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -18675,8 +17860,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -18697,8 +17881,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -18719,8 +17902,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -18741,8 +17923,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -18763,8 +17944,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "objoid", @@ -18785,8 +17965,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classoid", @@ -18807,8 +17986,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -18829,8 +18007,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "provider", @@ -18851,8 +18028,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "label", @@ -18873,8 +18049,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -18905,8 +18080,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classoid", @@ -18927,8 +18101,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -18949,8 +18122,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "objtype", @@ -18971,8 +18143,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "objnamespace", @@ -18993,8 +18164,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objname", @@ -19015,8 +18185,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "provider", @@ -19037,8 +18206,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "label", @@ -19059,8 +18227,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -19091,8 +18258,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -19113,8 +18279,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -19135,8 +18300,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -19157,8 +18321,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -19179,8 +18342,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -19201,8 +18363,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "seqrelid", @@ -19223,8 +18384,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "seqtypid", @@ -19245,8 +18405,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "seqstart", @@ -19267,8 +18426,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seqincrement", @@ -19289,8 +18447,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seqmax", @@ -19311,8 +18468,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seqmin", @@ -19333,8 +18489,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seqcache", @@ -19355,8 +18510,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seqcycle", @@ -19377,8 +18531,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -19409,8 +18562,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "sequencename", @@ -19431,8 +18583,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "sequenceowner", @@ -19453,8 +18604,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -19475,8 +18625,7 @@ "catalog": "", "schema": "", "name": "regtype" - }, - "is_sqlc_slice": false + } }, { "name": "start_value", @@ -19497,8 +18646,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "min_value", @@ -19519,8 +18667,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "max_value", @@ -19541,8 +18688,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "increment_by", @@ -19563,8 +18709,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "cycle", @@ -19585,8 +18730,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "cache_size", @@ -19607,8 +18751,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "last_value", @@ -19629,8 +18772,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -19661,8 +18803,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "setting", @@ -19683,8 +18824,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "unit", @@ -19705,8 +18845,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "category", @@ -19727,8 +18866,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "short_desc", @@ -19749,8 +18887,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "extra_desc", @@ -19771,8 +18908,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "context", @@ -19793,8 +18929,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "vartype", @@ -19815,8 +18950,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "source", @@ -19837,8 +18971,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "min_val", @@ -19859,8 +18992,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "max_val", @@ -19881,8 +19013,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "enumvals", @@ -19903,8 +19034,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "boot_val", @@ -19925,8 +19055,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "reset_val", @@ -19947,8 +19076,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sourcefile", @@ -19969,8 +19097,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sourceline", @@ -19991,8 +19118,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "pending_restart", @@ -20013,8 +19139,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -20045,8 +19170,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "usesysid", @@ -20067,8 +19191,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "usecreatedb", @@ -20089,8 +19212,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "usesuper", @@ -20111,8 +19233,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "userepl", @@ -20133,8 +19254,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "usebypassrls", @@ -20155,8 +19275,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "passwd", @@ -20177,8 +19296,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "valuntil", @@ -20199,8 +19317,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "useconfig", @@ -20221,8 +19338,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -20253,8 +19369,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -20275,8 +19390,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -20297,8 +19411,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -20319,8 +19432,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -20341,8 +19453,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -20363,8 +19474,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "dbid", @@ -20385,8 +19495,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classid", @@ -20407,8 +19516,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objid", @@ -20429,8 +19537,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "objsubid", @@ -20451,8 +19558,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "refclassid", @@ -20473,8 +19579,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "refobjid", @@ -20495,8 +19600,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "deptype", @@ -20517,8 +19621,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -20549,8 +19652,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -20571,8 +19673,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -20593,8 +19694,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -20615,8 +19715,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -20637,8 +19736,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -20659,8 +19757,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "objoid", @@ -20681,8 +19778,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classoid", @@ -20703,8 +19799,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "description", @@ -20725,8 +19820,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -20757,8 +19851,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "off", @@ -20779,8 +19872,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "size", @@ -20801,8 +19893,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "allocated_size", @@ -20823,8 +19914,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -20855,8 +19945,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -20877,8 +19966,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -20899,8 +19987,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -20921,8 +20008,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -20943,8 +20029,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -20965,8 +20050,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "objoid", @@ -20987,8 +20071,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "classoid", @@ -21009,8 +20092,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "provider", @@ -21031,8 +20113,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "label", @@ -21053,8 +20134,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -21085,8 +20165,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -21107,8 +20186,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "pid", @@ -21129,8 +20207,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "leader_pid", @@ -21151,8 +20228,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "usesysid", @@ -21173,8 +20249,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "usename", @@ -21195,8 +20270,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "application_name", @@ -21217,8 +20291,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "client_addr", @@ -21239,8 +20312,7 @@ "catalog": "", "schema": "", "name": "inet" - }, - "is_sqlc_slice": false + } }, { "name": "client_hostname", @@ -21261,8 +20333,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "client_port", @@ -21283,8 +20354,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "backend_start", @@ -21305,8 +20375,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "xact_start", @@ -21327,8 +20396,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "query_start", @@ -21349,8 +20417,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "state_change", @@ -21371,8 +20438,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "wait_event_type", @@ -21393,8 +20459,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "wait_event", @@ -21415,8 +20480,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "state", @@ -21437,8 +20501,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "backend_xid", @@ -21459,8 +20522,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "backend_xmin", @@ -21481,8 +20543,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "query_id", @@ -21503,8 +20564,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "query", @@ -21525,8 +20585,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "backend_type", @@ -21547,8 +20606,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -21579,8 +20637,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -21601,8 +20658,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -21623,8 +20679,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -21645,8 +20700,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelname", @@ -21667,8 +20721,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -21689,8 +20742,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_read", @@ -21711,8 +20763,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -21733,8 +20784,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -21765,8 +20815,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -21787,8 +20836,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -21809,8 +20857,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "seq_scan", @@ -21831,8 +20878,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seq_tup_read", @@ -21853,8 +20899,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -21875,8 +20920,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -21897,8 +20941,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_ins", @@ -21919,8 +20962,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_upd", @@ -21941,8 +20983,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_del", @@ -21963,8 +21004,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_hot_upd", @@ -21985,8 +21025,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_live_tup", @@ -22007,8 +21046,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_dead_tup", @@ -22029,8 +21067,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_mod_since_analyze", @@ -22051,8 +21088,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_ins_since_vacuum", @@ -22073,8 +21109,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "last_vacuum", @@ -22095,8 +21130,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_autovacuum", @@ -22117,8 +21151,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_analyze", @@ -22139,8 +21172,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_autoanalyze", @@ -22161,8 +21193,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "vacuum_count", @@ -22183,8 +21214,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "autovacuum_count", @@ -22205,8 +21235,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "analyze_count", @@ -22227,8 +21256,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "autoanalyze_count", @@ -22249,8 +21277,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -22281,8 +21308,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "last_archived_wal", @@ -22303,8 +21329,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "last_archived_time", @@ -22325,8 +21350,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "failed_count", @@ -22347,8 +21371,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "last_failed_wal", @@ -22369,8 +21392,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "last_failed_time", @@ -22391,8 +21413,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -22413,8 +21434,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -22445,8 +21465,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "checkpoints_req", @@ -22467,8 +21486,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "checkpoint_write_time", @@ -22489,8 +21507,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "checkpoint_sync_time", @@ -22511,8 +21528,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "buffers_checkpoint", @@ -22533,8 +21549,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "buffers_clean", @@ -22555,8 +21570,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "maxwritten_clean", @@ -22577,8 +21591,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "buffers_backend", @@ -22599,8 +21612,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "buffers_backend_fsync", @@ -22621,8 +21633,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "buffers_alloc", @@ -22643,8 +21654,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -22665,8 +21675,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -22697,8 +21706,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -22719,8 +21727,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "numbackends", @@ -22741,8 +21748,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "xact_commit", @@ -22763,8 +21769,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "xact_rollback", @@ -22785,8 +21790,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_read", @@ -22807,8 +21811,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_hit", @@ -22829,8 +21832,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tup_returned", @@ -22851,8 +21853,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tup_fetched", @@ -22873,8 +21874,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tup_inserted", @@ -22895,8 +21895,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tup_updated", @@ -22917,8 +21916,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tup_deleted", @@ -22939,8 +21937,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "conflicts", @@ -22961,8 +21958,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "temp_files", @@ -22983,8 +21979,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "temp_bytes", @@ -23005,8 +22000,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "deadlocks", @@ -23027,8 +22021,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "checksum_failures", @@ -23049,8 +22042,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "checksum_last_failure", @@ -23071,8 +22063,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "blk_read_time", @@ -23093,8 +22084,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "blk_write_time", @@ -23115,8 +22105,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "session_time", @@ -23137,8 +22126,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "active_time", @@ -23159,8 +22147,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "idle_in_transaction_time", @@ -23181,8 +22168,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "sessions", @@ -23203,8 +22189,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "sessions_abandoned", @@ -23225,8 +22210,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "sessions_fatal", @@ -23247,8 +22231,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "sessions_killed", @@ -23269,8 +22252,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -23291,8 +22273,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -23323,8 +22304,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -23345,8 +22325,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "confl_tablespace", @@ -23367,8 +22346,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "confl_lock", @@ -23389,8 +22367,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "confl_snapshot", @@ -23411,8 +22388,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "confl_bufferpin", @@ -23433,8 +22409,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "confl_deadlock", @@ -23455,8 +22430,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -23487,8 +22461,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "gss_authenticated", @@ -23509,8 +22482,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "principal", @@ -23531,8 +22503,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "encrypted", @@ -23553,8 +22524,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -23585,8 +22555,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datid", @@ -23607,8 +22576,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -23629,8 +22597,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relid", @@ -23651,8 +22618,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "phase", @@ -23673,8 +22639,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sample_blks_total", @@ -23695,8 +22660,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "sample_blks_scanned", @@ -23717,8 +22681,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "ext_stats_total", @@ -23739,8 +22702,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "ext_stats_computed", @@ -23761,8 +22723,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "child_tables_total", @@ -23783,8 +22744,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "child_tables_done", @@ -23805,8 +22765,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "current_child_table_relid", @@ -23827,8 +22786,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -23859,8 +22817,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "phase", @@ -23881,8 +22838,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "backup_total", @@ -23903,8 +22859,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "backup_streamed", @@ -23925,8 +22880,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tablespaces_total", @@ -23947,8 +22901,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tablespaces_streamed", @@ -23969,8 +22922,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -24001,8 +22953,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datid", @@ -24023,8 +22974,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -24045,8 +22995,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relid", @@ -24067,8 +23016,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "command", @@ -24089,8 +23037,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "phase", @@ -24111,8 +23058,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "cluster_index_relid", @@ -24133,8 +23079,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "heap_tuples_scanned", @@ -24155,8 +23100,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_tuples_written", @@ -24177,8 +23121,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_total", @@ -24199,8 +23142,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_scanned", @@ -24221,8 +23163,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "index_rebuild_count", @@ -24243,8 +23184,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -24275,8 +23215,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datid", @@ -24297,8 +23236,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -24319,8 +23257,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relid", @@ -24341,8 +23278,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "command", @@ -24363,8 +23299,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "type", @@ -24385,8 +23320,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "bytes_processed", @@ -24407,8 +23341,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "bytes_total", @@ -24429,8 +23362,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tuples_processed", @@ -24451,8 +23383,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tuples_excluded", @@ -24473,8 +23404,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -24505,8 +23435,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datid", @@ -24527,8 +23456,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -24549,8 +23477,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relid", @@ -24571,8 +23498,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "index_relid", @@ -24593,8 +23519,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "command", @@ -24615,8 +23540,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "phase", @@ -24637,8 +23561,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "lockers_total", @@ -24659,8 +23582,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "lockers_done", @@ -24681,8 +23603,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "current_locker_pid", @@ -24703,8 +23624,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blocks_total", @@ -24725,8 +23645,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blocks_done", @@ -24747,8 +23666,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tuples_total", @@ -24769,8 +23687,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tuples_done", @@ -24791,8 +23708,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "partitions_total", @@ -24813,8 +23729,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "partitions_done", @@ -24835,8 +23750,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -24867,8 +23781,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "datid", @@ -24889,8 +23802,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "datname", @@ -24911,8 +23823,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relid", @@ -24933,8 +23844,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "phase", @@ -24955,8 +23865,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_total", @@ -24977,8 +23886,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_scanned", @@ -24999,8 +23907,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_vacuumed", @@ -25021,8 +23928,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "index_vacuum_count", @@ -25043,8 +23949,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "max_dead_tuples", @@ -25065,8 +23970,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "num_dead_tuples", @@ -25087,8 +23991,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -25119,8 +24022,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "prefetch", @@ -25141,8 +24043,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "hit", @@ -25163,8 +24064,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "skip_init", @@ -25185,8 +24085,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "skip_new", @@ -25207,8 +24106,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "skip_fpw", @@ -25229,8 +24127,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "skip_rep", @@ -25251,8 +24148,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_distance", @@ -25273,8 +24169,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "block_distance", @@ -25295,8 +24190,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "io_depth", @@ -25317,8 +24211,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -25349,8 +24242,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "usesysid", @@ -25371,8 +24263,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "usename", @@ -25393,8 +24284,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "application_name", @@ -25415,8 +24305,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "client_addr", @@ -25437,8 +24326,7 @@ "catalog": "", "schema": "", "name": "inet" - }, - "is_sqlc_slice": false + } }, { "name": "client_hostname", @@ -25459,8 +24347,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "client_port", @@ -25481,8 +24368,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "backend_start", @@ -25503,8 +24389,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "backend_xmin", @@ -25525,8 +24410,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "state", @@ -25547,8 +24431,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sent_lsn", @@ -25569,8 +24452,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "write_lsn", @@ -25591,8 +24473,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "flush_lsn", @@ -25613,8 +24494,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "replay_lsn", @@ -25635,8 +24515,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "write_lag", @@ -25657,8 +24536,7 @@ "catalog": "", "schema": "", "name": "interval" - }, - "is_sqlc_slice": false + } }, { "name": "flush_lag", @@ -25679,8 +24557,7 @@ "catalog": "", "schema": "", "name": "interval" - }, - "is_sqlc_slice": false + } }, { "name": "replay_lag", @@ -25701,8 +24578,7 @@ "catalog": "", "schema": "", "name": "interval" - }, - "is_sqlc_slice": false + } }, { "name": "sync_priority", @@ -25723,8 +24599,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "sync_state", @@ -25745,8 +24620,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "reply_time", @@ -25767,8 +24641,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -25799,8 +24672,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "spill_txns", @@ -25821,8 +24693,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "spill_count", @@ -25843,8 +24714,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "spill_bytes", @@ -25865,8 +24735,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stream_txns", @@ -25887,8 +24756,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stream_count", @@ -25909,8 +24777,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stream_bytes", @@ -25931,8 +24798,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "total_txns", @@ -25953,8 +24819,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "total_bytes", @@ -25975,8 +24840,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -25997,8 +24861,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -26029,8 +24892,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "blks_zeroed", @@ -26051,8 +24913,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_hit", @@ -26073,8 +24934,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_read", @@ -26095,8 +24955,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_written", @@ -26117,8 +24976,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_exists", @@ -26139,8 +24997,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "flushes", @@ -26161,8 +25018,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "truncates", @@ -26183,8 +25039,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -26205,8 +25060,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -26237,8 +25091,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "ssl", @@ -26259,8 +25112,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "version", @@ -26281,8 +25133,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "cipher", @@ -26303,8 +25154,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "bits", @@ -26325,8 +25175,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "client_dn", @@ -26347,8 +25196,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "client_serial", @@ -26369,8 +25217,7 @@ "catalog": "", "schema": "", "name": "numeric" - }, - "is_sqlc_slice": false + } }, { "name": "issuer_dn", @@ -26391,8 +25238,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -26423,8 +25269,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "subname", @@ -26445,8 +25290,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "pid", @@ -26467,8 +25311,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "relid", @@ -26489,8 +25332,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "received_lsn", @@ -26511,8 +25353,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "last_msg_send_time", @@ -26533,8 +25374,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_msg_receipt_time", @@ -26555,8 +25395,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "latest_end_lsn", @@ -26577,8 +25416,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "latest_end_time", @@ -26599,8 +25437,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -26631,8 +25468,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "subname", @@ -26653,8 +25489,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "apply_error_count", @@ -26675,8 +25510,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "sync_error_count", @@ -26697,8 +25531,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -26719,8 +25552,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -26751,8 +25583,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -26773,8 +25604,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -26795,8 +25625,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -26817,8 +25646,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelname", @@ -26839,8 +25667,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -26861,8 +25688,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_read", @@ -26883,8 +25709,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -26905,8 +25730,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -26937,8 +25761,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -26959,8 +25782,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -26981,8 +25803,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "seq_scan", @@ -27003,8 +25824,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seq_tup_read", @@ -27025,8 +25845,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -27047,8 +25866,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -27069,8 +25887,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_ins", @@ -27091,8 +25908,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_upd", @@ -27113,8 +25929,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_del", @@ -27135,8 +25950,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_hot_upd", @@ -27157,8 +25971,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_live_tup", @@ -27179,8 +25992,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_dead_tup", @@ -27201,8 +26013,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_mod_since_analyze", @@ -27223,8 +26034,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_ins_since_vacuum", @@ -27245,8 +26055,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "last_vacuum", @@ -27267,8 +26076,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_autovacuum", @@ -27289,8 +26097,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_analyze", @@ -27311,8 +26118,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_autoanalyze", @@ -27333,8 +26139,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "vacuum_count", @@ -27355,8 +26160,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "autovacuum_count", @@ -27377,8 +26181,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "analyze_count", @@ -27399,8 +26202,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "autoanalyze_count", @@ -27421,8 +26223,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -27453,8 +26254,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -27475,8 +26275,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "funcname", @@ -27497,8 +26296,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "calls", @@ -27519,8 +26317,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "total_time", @@ -27541,8 +26338,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "self_time", @@ -27563,8 +26359,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -27595,8 +26390,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -27617,8 +26411,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -27639,8 +26432,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -27661,8 +26453,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelname", @@ -27683,8 +26474,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -27705,8 +26495,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_read", @@ -27727,8 +26516,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -27749,8 +26537,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -27781,8 +26568,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -27803,8 +26589,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -27825,8 +26610,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "seq_scan", @@ -27847,8 +26631,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seq_tup_read", @@ -27869,8 +26652,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -27891,8 +26673,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -27913,8 +26694,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_ins", @@ -27935,8 +26715,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_upd", @@ -27957,8 +26736,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_del", @@ -27979,8 +26757,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_hot_upd", @@ -28001,8 +26778,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_live_tup", @@ -28023,8 +26799,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_dead_tup", @@ -28045,8 +26820,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_mod_since_analyze", @@ -28067,8 +26841,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_ins_since_vacuum", @@ -28089,8 +26862,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "last_vacuum", @@ -28111,8 +26883,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_autovacuum", @@ -28133,8 +26904,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_analyze", @@ -28155,8 +26925,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_autoanalyze", @@ -28177,8 +26946,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "vacuum_count", @@ -28199,8 +26967,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "autovacuum_count", @@ -28221,8 +26988,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "analyze_count", @@ -28243,8 +27009,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "autoanalyze_count", @@ -28265,8 +27030,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -28297,8 +27061,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_fpi", @@ -28319,8 +27082,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_bytes", @@ -28341,8 +27103,7 @@ "catalog": "", "schema": "", "name": "numeric" - }, - "is_sqlc_slice": false + } }, { "name": "wal_buffers_full", @@ -28363,8 +27124,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_write", @@ -28385,8 +27145,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_sync", @@ -28407,8 +27166,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_write_time", @@ -28429,8 +27187,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "wal_sync_time", @@ -28451,8 +27208,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "stats_reset", @@ -28473,8 +27229,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -28505,8 +27260,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "status", @@ -28527,8 +27281,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "receive_start_lsn", @@ -28549,8 +27302,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "receive_start_tli", @@ -28571,8 +27323,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "written_lsn", @@ -28593,8 +27344,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "flushed_lsn", @@ -28615,8 +27365,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "received_tli", @@ -28637,8 +27386,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "last_msg_send_time", @@ -28659,8 +27407,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "last_msg_receipt_time", @@ -28681,8 +27428,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "latest_end_lsn", @@ -28703,8 +27449,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "latest_end_time", @@ -28725,8 +27470,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "slot_name", @@ -28747,8 +27491,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sender_host", @@ -28769,8 +27512,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "sender_port", @@ -28791,8 +27533,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "conninfo", @@ -28813,8 +27554,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -28845,8 +27585,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -28867,8 +27606,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -28889,8 +27627,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "seq_scan", @@ -28911,8 +27648,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seq_tup_read", @@ -28933,8 +27669,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -28955,8 +27690,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -28977,8 +27711,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_ins", @@ -28999,8 +27732,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_upd", @@ -29021,8 +27753,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_del", @@ -29043,8 +27774,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_hot_upd", @@ -29065,8 +27795,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -29097,8 +27826,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -29119,8 +27847,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -29141,8 +27868,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "seq_scan", @@ -29163,8 +27889,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seq_tup_read", @@ -29185,8 +27910,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -29207,8 +27931,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -29229,8 +27952,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_ins", @@ -29251,8 +27973,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_upd", @@ -29273,8 +27994,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_del", @@ -29295,8 +28015,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_hot_upd", @@ -29317,8 +28036,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -29349,8 +28067,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -29371,8 +28088,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "funcname", @@ -29393,8 +28109,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "calls", @@ -29415,8 +28130,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "total_time", @@ -29437,8 +28151,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } }, { "name": "self_time", @@ -29459,8 +28172,7 @@ "catalog": "", "schema": "", "name": "float8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -29491,8 +28203,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -29513,8 +28224,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -29535,8 +28245,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "seq_scan", @@ -29557,8 +28266,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "seq_tup_read", @@ -29579,8 +28287,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_scan", @@ -29601,8 +28308,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_tup_fetch", @@ -29623,8 +28329,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_ins", @@ -29645,8 +28350,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_upd", @@ -29667,8 +28371,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_del", @@ -29689,8 +28392,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "n_tup_hot_upd", @@ -29711,8 +28413,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -29743,8 +28444,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -29765,8 +28465,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -29787,8 +28486,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -29809,8 +28507,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelname", @@ -29831,8 +28528,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_read", @@ -29853,8 +28549,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_hit", @@ -29875,8 +28570,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -29907,8 +28601,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -29929,8 +28622,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -29951,8 +28643,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "blks_read", @@ -29973,8 +28664,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_hit", @@ -29995,8 +28685,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -30027,8 +28716,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -30049,8 +28737,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -30071,8 +28758,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_read", @@ -30093,8 +28779,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_hit", @@ -30115,8 +28800,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_read", @@ -30137,8 +28821,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_hit", @@ -30159,8 +28842,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "toast_blks_read", @@ -30181,8 +28863,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "toast_blks_hit", @@ -30203,8 +28884,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tidx_blks_read", @@ -30225,8 +28905,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tidx_blks_hit", @@ -30247,8 +28926,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -30279,8 +28957,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -30301,8 +28978,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -30323,8 +28999,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -30345,8 +29020,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelname", @@ -30367,8 +29041,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_read", @@ -30389,8 +29062,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_hit", @@ -30411,8 +29083,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -30443,8 +29114,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -30465,8 +29135,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -30487,8 +29156,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "blks_read", @@ -30509,8 +29177,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_hit", @@ -30531,8 +29198,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -30563,8 +29229,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -30585,8 +29250,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -30607,8 +29271,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_read", @@ -30629,8 +29292,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_hit", @@ -30651,8 +29313,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_read", @@ -30673,8 +29334,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_hit", @@ -30695,8 +29355,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "toast_blks_read", @@ -30717,8 +29376,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "toast_blks_hit", @@ -30739,8 +29397,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tidx_blks_read", @@ -30761,8 +29418,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tidx_blks_hit", @@ -30783,8 +29439,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -30815,8 +29470,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelid", @@ -30837,8 +29491,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -30859,8 +29512,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -30881,8 +29533,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "indexrelname", @@ -30903,8 +29554,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_read", @@ -30925,8 +29575,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_hit", @@ -30947,8 +29596,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -30979,8 +29627,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -31001,8 +29648,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -31023,8 +29669,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "blks_read", @@ -31045,8 +29690,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "blks_hit", @@ -31067,8 +29711,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -31099,8 +29742,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "schemaname", @@ -31121,8 +29763,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -31143,8 +29784,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_read", @@ -31165,8 +29805,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "heap_blks_hit", @@ -31187,8 +29826,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_read", @@ -31209,8 +29847,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "idx_blks_hit", @@ -31231,8 +29868,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "toast_blks_read", @@ -31253,8 +29889,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "toast_blks_hit", @@ -31275,8 +29910,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tidx_blks_read", @@ -31297,8 +29931,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } }, { "name": "tidx_blks_hit", @@ -31319,8 +29952,7 @@ "catalog": "", "schema": "", "name": "int8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -31351,8 +29983,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -31373,8 +30004,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -31395,8 +30025,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -31417,8 +30046,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -31439,8 +30067,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -31461,8 +30088,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "starelid", @@ -31483,8 +30109,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "staattnum", @@ -31505,8 +30130,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "stainherit", @@ -31527,8 +30151,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "stanullfrac", @@ -31549,8 +30172,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "stawidth", @@ -31571,8 +30193,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "stadistinct", @@ -31593,8 +30214,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "stakind1", @@ -31615,8 +30235,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "stakind2", @@ -31637,8 +30256,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "stakind3", @@ -31659,8 +30277,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "stakind4", @@ -31681,8 +30298,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "stakind5", @@ -31703,8 +30319,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "staop1", @@ -31725,8 +30340,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "staop2", @@ -31747,8 +30361,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "staop3", @@ -31769,8 +30382,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "staop4", @@ -31791,8 +30403,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "staop5", @@ -31813,8 +30424,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stacoll1", @@ -31835,8 +30445,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stacoll2", @@ -31857,8 +30466,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stacoll3", @@ -31879,8 +30487,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stacoll4", @@ -31901,8 +30508,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stacoll5", @@ -31923,8 +30529,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stanumbers1", @@ -31945,8 +30550,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "stanumbers2", @@ -31967,8 +30571,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "stanumbers3", @@ -31989,8 +30592,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "stanumbers4", @@ -32011,8 +30613,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "stanumbers5", @@ -32033,8 +30634,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "stavalues1", @@ -32055,8 +30655,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "stavalues2", @@ -32077,8 +30676,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "stavalues3", @@ -32099,8 +30697,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "stavalues4", @@ -32121,8 +30718,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "stavalues5", @@ -32143,8 +30739,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -32175,8 +30770,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -32197,8 +30791,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -32219,8 +30812,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -32241,8 +30833,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -32263,8 +30854,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -32285,8 +30875,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -32307,8 +30896,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stxrelid", @@ -32329,8 +30917,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stxname", @@ -32351,8 +30938,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "stxnamespace", @@ -32373,8 +30959,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stxowner", @@ -32395,8 +30980,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stxstattarget", @@ -32417,8 +31001,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "stxkeys", @@ -32439,8 +31022,7 @@ "catalog": "", "schema": "", "name": "int2vector" - }, - "is_sqlc_slice": false + } }, { "name": "stxkind", @@ -32461,8 +31043,7 @@ "catalog": "", "schema": "", "name": "_char" - }, - "is_sqlc_slice": false + } }, { "name": "stxexprs", @@ -32483,8 +31064,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -32515,8 +31095,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -32537,8 +31116,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -32559,8 +31137,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -32581,8 +31158,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -32603,8 +31179,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -32625,8 +31200,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "stxoid", @@ -32647,8 +31221,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "stxdinherit", @@ -32669,8 +31242,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "stxdndistinct", @@ -32691,8 +31263,7 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - }, - "is_sqlc_slice": false + } }, { "name": "stxddependencies", @@ -32713,8 +31284,7 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - }, - "is_sqlc_slice": false + } }, { "name": "stxdmcv", @@ -32735,8 +31305,7 @@ "catalog": "", "schema": "", "name": "pg_mcv_list" - }, - "is_sqlc_slice": false + } }, { "name": "stxdexpr", @@ -32757,8 +31326,7 @@ "catalog": "", "schema": "", "name": "_pg_statistic" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -32789,8 +31357,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -32811,8 +31378,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "attname", @@ -32833,8 +31399,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "inherited", @@ -32855,8 +31420,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "null_frac", @@ -32877,8 +31441,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "avg_width", @@ -32899,8 +31462,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "n_distinct", @@ -32921,8 +31483,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_vals", @@ -32943,8 +31504,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_freqs", @@ -32965,8 +31525,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "histogram_bounds", @@ -32987,8 +31546,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "correlation", @@ -33009,8 +31567,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_elems", @@ -33031,8 +31588,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_elem_freqs", @@ -33053,8 +31609,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "elem_count_histogram", @@ -33075,8 +31630,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -33107,8 +31661,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -33129,8 +31682,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "statistics_schemaname", @@ -33151,8 +31703,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "statistics_name", @@ -33173,8 +31724,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "statistics_owner", @@ -33195,8 +31745,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "attnames", @@ -33217,8 +31766,7 @@ "catalog": "", "schema": "", "name": "_name" - }, - "is_sqlc_slice": false + } }, { "name": "exprs", @@ -33239,8 +31787,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "kinds", @@ -33261,8 +31808,7 @@ "catalog": "", "schema": "", "name": "_char" - }, - "is_sqlc_slice": false + } }, { "name": "inherited", @@ -33283,8 +31829,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "n_distinct", @@ -33305,8 +31850,7 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - }, - "is_sqlc_slice": false + } }, { "name": "dependencies", @@ -33327,8 +31871,7 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_vals", @@ -33349,8 +31892,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_val_nulls", @@ -33371,8 +31913,7 @@ "catalog": "", "schema": "", "name": "_bool" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_freqs", @@ -33393,8 +31934,7 @@ "catalog": "", "schema": "", "name": "_float8" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_base_freqs", @@ -33415,8 +31955,7 @@ "catalog": "", "schema": "", "name": "_float8" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -33447,8 +31986,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -33469,8 +32007,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "statistics_schemaname", @@ -33491,8 +32028,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "statistics_name", @@ -33513,8 +32049,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "statistics_owner", @@ -33535,8 +32070,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "expr", @@ -33557,8 +32091,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "inherited", @@ -33579,8 +32112,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "null_frac", @@ -33601,8 +32133,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "avg_width", @@ -33623,8 +32154,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "n_distinct", @@ -33645,8 +32175,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_vals", @@ -33667,8 +32196,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_freqs", @@ -33689,8 +32217,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "histogram_bounds", @@ -33711,8 +32238,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "correlation", @@ -33733,8 +32259,7 @@ "catalog": "", "schema": "", "name": "float4" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_elems", @@ -33755,8 +32280,7 @@ "catalog": "", "schema": "", "name": "anyarray" - }, - "is_sqlc_slice": false + } }, { "name": "most_common_elem_freqs", @@ -33777,8 +32301,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } }, { "name": "elem_count_histogram", @@ -33799,8 +32322,7 @@ "catalog": "", "schema": "", "name": "_float4" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -33831,8 +32353,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -33853,8 +32374,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -33875,8 +32395,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -33897,8 +32416,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -33919,8 +32437,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -33941,8 +32458,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -33963,8 +32479,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "subdbid", @@ -33985,8 +32500,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "subskiplsn", @@ -34007,8 +32521,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } }, { "name": "subname", @@ -34029,8 +32542,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "subowner", @@ -34051,8 +32563,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "subenabled", @@ -34073,8 +32584,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "subbinary", @@ -34095,8 +32605,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "substream", @@ -34117,8 +32626,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "subtwophasestate", @@ -34139,8 +32647,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "subdisableonerr", @@ -34161,8 +32668,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "subconninfo", @@ -34183,8 +32689,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "subslotname", @@ -34205,8 +32710,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "subsynccommit", @@ -34227,8 +32731,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "subpublications", @@ -34249,8 +32752,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -34281,8 +32783,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -34303,8 +32804,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -34325,8 +32825,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -34347,8 +32846,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -34369,8 +32867,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -34391,8 +32888,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "srsubid", @@ -34413,8 +32909,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srrelid", @@ -34435,8 +32930,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srsubstate", @@ -34457,8 +32951,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "srsublsn", @@ -34479,8 +32972,7 @@ "catalog": "", "schema": "", "name": "pg_lsn" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -34511,8 +33003,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablename", @@ -34533,8 +33024,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tableowner", @@ -34555,8 +33045,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tablespace", @@ -34577,8 +33066,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "hasindexes", @@ -34599,8 +33087,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "hasrules", @@ -34621,8 +33108,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "hastriggers", @@ -34643,8 +33129,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "rowsecurity", @@ -34665,8 +33150,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -34697,8 +33181,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -34719,8 +33202,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -34741,8 +33223,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -34763,8 +33244,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -34785,8 +33265,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -34807,8 +33286,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -34829,8 +33307,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "spcname", @@ -34851,8 +33328,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "spcowner", @@ -34873,8 +33349,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "spcacl", @@ -34895,8 +33370,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } }, { "name": "spcoptions", @@ -34917,8 +33391,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -34949,8 +33422,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "utc_offset", @@ -34971,8 +33443,7 @@ "catalog": "", "schema": "", "name": "interval" - }, - "is_sqlc_slice": false + } }, { "name": "is_dst", @@ -34993,8 +33464,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -35025,8 +33495,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "abbrev", @@ -35047,8 +33516,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "utc_offset", @@ -35069,8 +33537,7 @@ "catalog": "", "schema": "", "name": "interval" - }, - "is_sqlc_slice": false + } }, { "name": "is_dst", @@ -35091,8 +33558,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -35123,8 +33589,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -35145,8 +33610,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -35167,8 +33631,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -35189,8 +33652,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -35211,8 +33673,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -35233,8 +33694,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -35255,8 +33715,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "trftype", @@ -35277,8 +33736,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "trflang", @@ -35299,8 +33757,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "trffromsql", @@ -35321,8 +33778,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "trftosql", @@ -35343,8 +33799,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -35375,8 +33830,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -35397,8 +33851,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -35419,8 +33872,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -35441,8 +33893,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -35463,8 +33914,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -35485,8 +33935,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -35507,8 +33956,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgrelid", @@ -35529,8 +33977,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgparentid", @@ -35551,8 +33998,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgname", @@ -35573,8 +34019,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tgfoid", @@ -35595,8 +34040,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgtype", @@ -35617,8 +34061,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "tgenabled", @@ -35639,8 +34082,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "tgisinternal", @@ -35661,8 +34103,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "tgconstrrelid", @@ -35683,8 +34124,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgconstrindid", @@ -35705,8 +34145,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgconstraint", @@ -35727,8 +34166,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tgdeferrable", @@ -35749,8 +34187,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "tginitdeferred", @@ -35771,8 +34208,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "tgnargs", @@ -35793,8 +34229,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "tgattr", @@ -35815,8 +34250,7 @@ "catalog": "", "schema": "", "name": "int2vector" - }, - "is_sqlc_slice": false + } }, { "name": "tgargs", @@ -35837,8 +34271,7 @@ "catalog": "", "schema": "", "name": "bytea" - }, - "is_sqlc_slice": false + } }, { "name": "tgqual", @@ -35859,8 +34292,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "tgoldtable", @@ -35881,8 +34313,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tgnewtable", @@ -35903,8 +34334,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -35935,8 +34365,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -35957,8 +34386,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -35979,8 +34407,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -36001,8 +34428,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -36023,8 +34449,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -36045,8 +34470,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -36067,8 +34491,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cfgname", @@ -36089,8 +34512,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "cfgnamespace", @@ -36111,8 +34533,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cfgowner", @@ -36133,8 +34554,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cfgparser", @@ -36155,8 +34575,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -36187,8 +34606,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -36209,8 +34627,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -36231,8 +34648,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -36253,8 +34669,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -36275,8 +34690,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -36297,8 +34711,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "mapcfg", @@ -36319,8 +34732,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "maptokentype", @@ -36341,8 +34753,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "mapseqno", @@ -36363,8 +34774,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "mapdict", @@ -36385,8 +34795,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -36417,8 +34826,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -36439,8 +34847,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -36461,8 +34868,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -36483,8 +34889,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -36505,8 +34910,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -36527,8 +34931,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -36549,8 +34952,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "dictname", @@ -36571,8 +34973,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "dictnamespace", @@ -36593,8 +34994,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "dictowner", @@ -36615,8 +35015,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "dicttemplate", @@ -36637,8 +35036,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "dictinitoption", @@ -36659,8 +35057,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -36691,8 +35088,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -36713,8 +35109,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -36735,8 +35130,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -36757,8 +35151,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -36779,8 +35172,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -36801,8 +35193,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -36823,8 +35214,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prsname", @@ -36845,8 +35235,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "prsnamespace", @@ -36867,8 +35256,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "prsstart", @@ -36889,8 +35277,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "prstoken", @@ -36911,8 +35298,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "prsend", @@ -36933,8 +35319,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "prsheadline", @@ -36955,8 +35340,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "prslextype", @@ -36977,8 +35361,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -37009,8 +35392,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -37031,8 +35413,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -37053,8 +35434,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -37075,8 +35455,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -37097,8 +35476,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -37119,8 +35497,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -37141,8 +35518,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tmplname", @@ -37163,8 +35539,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "tmplnamespace", @@ -37185,8 +35560,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "tmplinit", @@ -37207,8 +35581,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "tmpllexize", @@ -37229,8 +35602,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -37261,8 +35633,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -37283,8 +35654,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -37305,8 +35675,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -37327,8 +35696,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -37349,8 +35717,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -37371,8 +35738,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -37393,8 +35759,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typname", @@ -37415,8 +35780,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "typnamespace", @@ -37437,8 +35801,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typowner", @@ -37459,8 +35822,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typlen", @@ -37481,8 +35843,7 @@ "catalog": "", "schema": "", "name": "int2" - }, - "is_sqlc_slice": false + } }, { "name": "typbyval", @@ -37503,8 +35864,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "typtype", @@ -37525,8 +35885,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "typcategory", @@ -37547,8 +35906,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "typispreferred", @@ -37569,8 +35927,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "typisdefined", @@ -37591,8 +35948,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "typdelim", @@ -37613,8 +35969,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "typrelid", @@ -37635,8 +35990,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typsubscript", @@ -37657,8 +36011,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typelem", @@ -37679,8 +36032,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typarray", @@ -37701,8 +36053,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typinput", @@ -37723,8 +36074,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typoutput", @@ -37745,8 +36095,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typreceive", @@ -37767,8 +36116,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typsend", @@ -37789,8 +36137,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typmodin", @@ -37811,8 +36158,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typmodout", @@ -37833,8 +36179,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typanalyze", @@ -37855,8 +36200,7 @@ "catalog": "", "schema": "", "name": "regproc" - }, - "is_sqlc_slice": false + } }, { "name": "typalign", @@ -37877,8 +36221,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "typstorage", @@ -37899,8 +36242,7 @@ "catalog": "", "schema": "", "name": "char" - }, - "is_sqlc_slice": false + } }, { "name": "typnotnull", @@ -37921,8 +36263,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "typbasetype", @@ -37943,8 +36284,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typtypmod", @@ -37965,8 +36305,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "typndims", @@ -37987,8 +36326,7 @@ "catalog": "", "schema": "", "name": "int4" - }, - "is_sqlc_slice": false + } }, { "name": "typcollation", @@ -38009,8 +36347,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "typdefaultbin", @@ -38031,8 +36368,7 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - }, - "is_sqlc_slice": false + } }, { "name": "typdefault", @@ -38053,8 +36389,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "typacl", @@ -38075,8 +36410,7 @@ "catalog": "", "schema": "", "name": "_aclitem" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -38107,8 +36441,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "usesysid", @@ -38129,8 +36462,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "usecreatedb", @@ -38151,8 +36483,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "usesuper", @@ -38173,8 +36504,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "userepl", @@ -38195,8 +36525,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "usebypassrls", @@ -38217,8 +36546,7 @@ "catalog": "", "schema": "", "name": "bool" - }, - "is_sqlc_slice": false + } }, { "name": "passwd", @@ -38239,8 +36567,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "valuntil", @@ -38261,8 +36588,7 @@ "catalog": "", "schema": "", "name": "timestamptz" - }, - "is_sqlc_slice": false + } }, { "name": "useconfig", @@ -38283,8 +36609,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -38315,8 +36640,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -38337,8 +36661,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -38359,8 +36682,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -38381,8 +36703,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -38403,8 +36724,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -38425,8 +36745,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "oid", @@ -38447,8 +36766,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "umuser", @@ -38469,8 +36787,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "umserver", @@ -38491,8 +36808,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "umoptions", @@ -38513,8 +36829,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -38545,8 +36860,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srvid", @@ -38567,8 +36881,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srvname", @@ -38589,8 +36902,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "umuser", @@ -38611,8 +36923,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "usename", @@ -38633,8 +36944,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "umoptions", @@ -38655,8 +36965,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -38687,8 +36996,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "viewname", @@ -38709,8 +37017,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "viewowner", @@ -38731,8 +37038,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "definition", @@ -38753,8 +37059,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -38793,8 +37098,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "fdwowner", @@ -38815,8 +37119,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "fdwoptions", @@ -38837,8 +37140,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_catalog", @@ -38859,8 +37161,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_name", @@ -38881,8 +37182,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "authorization_identifier", @@ -38903,8 +37203,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_language", @@ -38925,8 +37224,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -38957,8 +37255,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "srvoptions", @@ -38979,8 +37276,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_catalog", @@ -39001,8 +37297,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -39023,8 +37318,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_catalog", @@ -39045,8 +37339,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_name", @@ -39067,8 +37360,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_type", @@ -39089,8 +37381,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_version", @@ -39111,8 +37402,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "authorization_identifier", @@ -39133,8 +37423,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -39165,8 +37454,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "relname", @@ -39187,8 +37475,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "attname", @@ -39209,8 +37496,7 @@ "catalog": "", "schema": "", "name": "name" - }, - "is_sqlc_slice": false + } }, { "name": "attfdwoptions", @@ -39231,8 +37517,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -39263,8 +37548,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_table_schema", @@ -39285,8 +37569,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_table_name", @@ -39307,8 +37590,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ftoptions", @@ -39329,8 +37611,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_catalog", @@ -39351,8 +37632,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -39373,8 +37653,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "authorization_identifier", @@ -39395,8 +37674,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -39427,8 +37705,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "umoptions", @@ -39449,8 +37726,7 @@ "catalog": "", "schema": "", "name": "_text" - }, - "is_sqlc_slice": false + } }, { "name": "umuser", @@ -39471,8 +37747,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "authorization_identifier", @@ -39493,8 +37768,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_catalog", @@ -39515,8 +37789,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -39537,8 +37810,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "srvowner", @@ -39559,8 +37831,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -39591,8 +37862,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "role_name", @@ -39613,8 +37883,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -39635,8 +37904,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -39667,8 +37935,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "role_name", @@ -39689,8 +37956,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -39711,8 +37977,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -39743,8 +38008,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -39765,8 +38029,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -39787,8 +38050,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "attribute_name", @@ -39809,8 +38071,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ordinal_position", @@ -39831,8 +38092,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "attribute_default", @@ -39853,8 +38113,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_nullable", @@ -39875,8 +38134,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -39897,8 +38155,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -39919,8 +38176,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -39941,8 +38197,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -39963,8 +38218,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -39985,8 +38239,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -40007,8 +38260,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -40029,8 +38281,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -40051,8 +38302,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -40073,8 +38323,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -40095,8 +38344,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -40117,8 +38365,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -40139,8 +38386,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -40161,8 +38407,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -40183,8 +38428,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -40205,8 +38449,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "attribute_udt_catalog", @@ -40227,8 +38470,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "attribute_udt_schema", @@ -40249,8 +38491,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "attribute_udt_name", @@ -40271,8 +38512,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_catalog", @@ -40293,8 +38533,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_schema", @@ -40315,8 +38554,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_name", @@ -40337,8 +38575,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_cardinality", @@ -40359,8 +38596,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -40381,8 +38617,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "is_derived_reference_attribute", @@ -40403,8 +38638,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -40435,8 +38669,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -40457,8 +38690,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -40479,8 +38711,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_repertoire", @@ -40501,8 +38732,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "form_of_use", @@ -40523,8 +38753,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "default_collate_catalog", @@ -40545,8 +38774,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "default_collate_schema", @@ -40567,8 +38795,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "default_collate_name", @@ -40589,8 +38816,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -40621,8 +38847,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -40643,8 +38868,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -40665,8 +38889,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_catalog", @@ -40687,8 +38910,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -40709,8 +38931,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -40731,8 +38952,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -40763,8 +38983,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -40785,8 +39004,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -40807,8 +39025,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "check_clause", @@ -40829,8 +39046,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -40861,8 +39077,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -40883,8 +39098,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -40905,8 +39119,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -40927,8 +39140,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -40949,8 +39161,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -40971,8 +39182,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41003,8 +39213,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -41025,8 +39234,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -41047,8 +39255,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "pad_attribute", @@ -41069,8 +39276,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41101,8 +39307,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -41123,8 +39328,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -41145,8 +39349,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -41167,8 +39370,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "dependent_column", @@ -41189,8 +39391,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41221,8 +39422,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_schema", @@ -41243,8 +39443,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_name", @@ -41265,8 +39464,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -41287,8 +39485,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -41309,8 +39506,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -41331,8 +39527,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -41353,8 +39548,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41385,8 +39579,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -41407,8 +39600,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -41429,8 +39621,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -41451,8 +39642,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_name", @@ -41473,8 +39663,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_value", @@ -41495,8 +39684,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41527,8 +39715,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -41549,8 +39736,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -41571,8 +39757,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -41593,8 +39778,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -41615,8 +39799,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -41637,8 +39820,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -41659,8 +39841,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -41681,8 +39862,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41713,8 +39893,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -41735,8 +39914,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -41757,8 +39935,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -41779,8 +39956,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -41801,8 +39977,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -41823,8 +39998,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -41845,8 +40019,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -41877,8 +40050,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -41899,8 +40071,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -41921,8 +40092,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -41943,8 +40113,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ordinal_position", @@ -41965,8 +40134,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "column_default", @@ -41987,8 +40155,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_nullable", @@ -42009,8 +40176,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -42031,8 +40197,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -42053,8 +40218,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -42075,8 +40239,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -42097,8 +40260,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -42119,8 +40281,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -42141,8 +40302,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -42163,8 +40323,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -42185,8 +40344,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -42207,8 +40365,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -42229,8 +40386,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -42251,8 +40407,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -42273,8 +40428,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -42295,8 +40449,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -42317,8 +40470,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -42339,8 +40491,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_catalog", @@ -42361,8 +40512,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_schema", @@ -42383,8 +40533,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_name", @@ -42405,8 +40554,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -42427,8 +40575,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -42449,8 +40596,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -42471,8 +40617,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_catalog", @@ -42493,8 +40638,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_schema", @@ -42515,8 +40659,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_name", @@ -42537,8 +40680,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_cardinality", @@ -42559,8 +40701,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -42581,8 +40722,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "is_self_referencing", @@ -42603,8 +40743,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_identity", @@ -42625,8 +40764,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "identity_generation", @@ -42647,8 +40785,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "identity_start", @@ -42669,8 +40806,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "identity_increment", @@ -42691,8 +40827,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "identity_maximum", @@ -42713,8 +40848,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "identity_minimum", @@ -42735,8 +40869,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "identity_cycle", @@ -42757,8 +40890,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_generated", @@ -42779,8 +40911,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "generation_expression", @@ -42801,8 +40932,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_updatable", @@ -42823,8 +40953,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -42855,8 +40984,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -42877,8 +41005,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -42899,8 +41026,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -42921,8 +41047,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_catalog", @@ -42943,8 +41068,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -42965,8 +41089,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -42987,8 +41110,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -43019,8 +41141,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -43041,8 +41162,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -43063,8 +41183,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_catalog", @@ -43085,8 +41204,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -43107,8 +41225,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -43129,8 +41246,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -43161,8 +41277,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_schema", @@ -43183,8 +41298,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_name", @@ -43205,8 +41319,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_type", @@ -43227,8 +41340,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -43249,8 +41361,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -43281,8 +41392,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -43303,8 +41413,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -43325,8 +41434,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_catalog", @@ -43347,8 +41455,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_schema", @@ -43369,8 +41476,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_name", @@ -43391,8 +41497,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "is_deferrable", @@ -43413,8 +41518,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "initially_deferred", @@ -43435,8 +41539,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -43467,8 +41570,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -43489,8 +41591,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -43511,8 +41612,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_catalog", @@ -43533,8 +41633,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_schema", @@ -43555,8 +41654,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_name", @@ -43577,8 +41675,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -43609,8 +41706,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_schema", @@ -43631,8 +41727,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "domain_name", @@ -43653,8 +41748,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -43675,8 +41769,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -43697,8 +41790,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -43719,8 +41811,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -43741,8 +41832,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -43763,8 +41853,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -43785,8 +41874,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -43807,8 +41895,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -43829,8 +41916,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -43851,8 +41937,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -43873,8 +41958,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -43895,8 +41979,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -43917,8 +42000,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -43939,8 +42021,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -43961,8 +42042,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -43983,8 +42063,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "domain_default", @@ -44005,8 +42084,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -44027,8 +42105,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -44049,8 +42126,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -44071,8 +42147,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_catalog", @@ -44093,8 +42168,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_schema", @@ -44115,8 +42189,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_name", @@ -44137,8 +42210,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_cardinality", @@ -44159,8 +42231,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -44181,8 +42252,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -44213,8 +42283,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_schema", @@ -44235,8 +42304,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_name", @@ -44257,8 +42325,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_type", @@ -44279,8 +42346,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "collection_type_identifier", @@ -44301,8 +42367,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -44323,8 +42388,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -44345,8 +42409,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -44367,8 +42430,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -44389,8 +42451,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -44411,8 +42472,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -44433,8 +42493,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -44455,8 +42514,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -44477,8 +42535,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -44499,8 +42556,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -44521,8 +42577,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -44543,8 +42598,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -44565,8 +42619,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -44587,8 +42640,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -44609,8 +42661,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -44631,8 +42682,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "domain_default", @@ -44653,8 +42703,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -44675,8 +42724,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -44697,8 +42745,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -44719,8 +42766,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_catalog", @@ -44741,8 +42787,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_schema", @@ -44763,8 +42808,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_name", @@ -44785,8 +42829,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_cardinality", @@ -44807,8 +42850,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -44829,8 +42871,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -44861,8 +42902,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -44893,8 +42933,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_name", @@ -44915,8 +42954,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_name", @@ -44937,8 +42975,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_value", @@ -44959,8 +42996,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -44991,8 +43027,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_name", @@ -45013,8 +43048,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "authorization_identifier", @@ -45035,8 +43069,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "library_name", @@ -45057,8 +43090,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_language", @@ -45079,8 +43111,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45111,8 +43142,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -45133,8 +43163,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_name", @@ -45155,8 +43184,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_value", @@ -45177,8 +43205,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45209,8 +43236,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -45231,8 +43257,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_catalog", @@ -45253,8 +43278,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_data_wrapper_name", @@ -45275,8 +43299,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_type", @@ -45297,8 +43320,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_version", @@ -45319,8 +43341,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "authorization_identifier", @@ -45341,8 +43362,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45373,8 +43393,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_table_schema", @@ -45395,8 +43414,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_table_name", @@ -45417,8 +43435,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_name", @@ -45439,8 +43456,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_value", @@ -45461,8 +43477,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45493,8 +43508,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_table_schema", @@ -45515,8 +43529,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_table_name", @@ -45537,8 +43550,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_catalog", @@ -45559,8 +43571,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -45581,8 +43592,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45613,8 +43623,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45645,8 +43654,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -45667,8 +43675,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -45689,8 +43696,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -45711,8 +43717,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -45733,8 +43738,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -45755,8 +43759,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -45777,8 +43780,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ordinal_position", @@ -45799,8 +43801,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "position_in_unique_constraint", @@ -45821,8 +43822,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -45853,8 +43853,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -45875,8 +43874,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -45897,8 +43895,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ordinal_position", @@ -45919,8 +43916,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "parameter_mode", @@ -45941,8 +43937,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_result", @@ -45963,8 +43958,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "as_locator", @@ -45985,8 +43979,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "parameter_name", @@ -46007,8 +44000,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -46029,8 +44021,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -46051,8 +44042,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -46073,8 +44063,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -46095,8 +44084,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -46117,8 +44105,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -46139,8 +44126,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -46161,8 +44147,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -46183,8 +44168,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -46205,8 +44189,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -46227,8 +44210,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -46249,8 +44231,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -46271,8 +44252,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -46293,8 +44273,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -46315,8 +44294,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -46337,8 +44315,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -46359,8 +44336,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -46381,8 +44357,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -46403,8 +44378,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_catalog", @@ -46425,8 +44399,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_schema", @@ -46447,8 +44420,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_name", @@ -46469,8 +44441,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_cardinality", @@ -46491,8 +44462,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -46513,8 +44483,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "parameter_default", @@ -46535,8 +44504,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -46567,8 +44535,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -46589,8 +44556,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -46611,8 +44577,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "unique_constraint_catalog", @@ -46633,8 +44598,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "unique_constraint_schema", @@ -46655,8 +44619,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "unique_constraint_name", @@ -46677,8 +44640,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "match_option", @@ -46699,8 +44661,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "update_rule", @@ -46721,8 +44682,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "delete_rule", @@ -46743,8 +44703,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -46775,8 +44734,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -46797,8 +44755,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -46819,8 +44776,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -46841,8 +44797,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -46863,8 +44818,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -46885,8 +44839,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -46907,8 +44860,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -46929,8 +44881,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -46961,8 +44912,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -46983,8 +44933,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_catalog", @@ -47005,8 +44954,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -47027,8 +44975,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -47049,8 +44996,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -47071,8 +45017,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -47093,8 +45038,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -47115,8 +45059,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -47137,8 +45080,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -47159,8 +45101,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -47191,8 +45132,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -47213,8 +45153,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -47235,8 +45174,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -47257,8 +45195,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -47279,8 +45216,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -47301,8 +45237,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -47323,8 +45258,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "with_hierarchy", @@ -47345,8 +45279,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -47377,8 +45310,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -47399,8 +45331,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -47421,8 +45352,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -47443,8 +45373,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -47465,8 +45394,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -47487,8 +45415,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -47509,8 +45436,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -47541,8 +45467,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -47563,8 +45488,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_catalog", @@ -47585,8 +45509,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_schema", @@ -47607,8 +45530,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_name", @@ -47629,8 +45551,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_type", @@ -47651,8 +45572,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -47673,8 +45593,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -47695,8 +45614,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -47727,8 +45645,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -47749,8 +45666,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -47771,8 +45687,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -47793,8 +45708,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -47815,8 +45729,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -47837,8 +45750,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -47859,8 +45771,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -47881,8 +45792,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -47903,8 +45813,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -47925,8 +45834,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -47957,8 +45865,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -47979,8 +45886,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_catalog", @@ -48001,8 +45907,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -48023,8 +45928,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -48045,8 +45949,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -48067,8 +45970,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -48089,8 +45991,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -48111,8 +46012,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -48133,8 +46033,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -48155,8 +46054,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -48187,8 +46085,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -48209,8 +46106,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -48231,8 +46127,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -48253,8 +46148,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -48275,8 +46169,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -48297,8 +46190,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -48329,8 +46221,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -48351,8 +46242,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -48373,8 +46263,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -48395,8 +46284,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -48417,8 +46305,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -48439,8 +46326,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "sequence_catalog", @@ -48461,8 +46347,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "sequence_schema", @@ -48483,8 +46368,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "sequence_name", @@ -48505,8 +46389,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -48537,8 +46420,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -48559,8 +46441,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -48581,8 +46462,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -48603,8 +46483,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -48625,8 +46504,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -48647,8 +46525,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -48669,8 +46546,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -48691,8 +46567,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -48713,8 +46588,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -48745,8 +46619,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -48767,8 +46640,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -48789,8 +46661,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_catalog", @@ -48811,8 +46682,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_schema", @@ -48833,8 +46703,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_name", @@ -48855,8 +46724,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_type", @@ -48877,8 +46745,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "module_catalog", @@ -48899,8 +46766,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "module_schema", @@ -48921,8 +46787,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "module_name", @@ -48943,8 +46808,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -48965,8 +46829,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -48987,8 +46850,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -49009,8 +46871,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -49031,8 +46892,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -49053,8 +46913,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -49075,8 +46934,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -49097,8 +46955,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -49119,8 +46976,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -49141,8 +46997,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -49163,8 +47018,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -49185,8 +47039,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -49207,8 +47060,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -49229,8 +47081,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -49251,8 +47102,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -49273,8 +47123,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -49295,8 +47144,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -49317,8 +47165,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -49339,8 +47186,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "type_udt_catalog", @@ -49361,8 +47207,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "type_udt_schema", @@ -49383,8 +47228,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "type_udt_name", @@ -49405,8 +47249,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_catalog", @@ -49427,8 +47270,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_schema", @@ -49449,8 +47291,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "scope_name", @@ -49471,8 +47312,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_cardinality", @@ -49493,8 +47333,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "dtd_identifier", @@ -49515,8 +47354,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "routine_body", @@ -49537,8 +47375,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "routine_definition", @@ -49559,8 +47396,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "external_name", @@ -49581,8 +47417,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "external_language", @@ -49603,8 +47438,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "parameter_style", @@ -49625,8 +47459,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_deterministic", @@ -49647,8 +47480,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "sql_data_access", @@ -49669,8 +47501,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_null_call", @@ -49691,8 +47522,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "sql_path", @@ -49713,8 +47543,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "schema_level_routine", @@ -49735,8 +47564,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "max_dynamic_result_sets", @@ -49757,8 +47585,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "is_user_defined_cast", @@ -49779,8 +47606,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_implicitly_invocable", @@ -49801,8 +47627,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "security_type", @@ -49823,8 +47648,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "to_sql_specific_catalog", @@ -49845,8 +47669,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "to_sql_specific_schema", @@ -49867,8 +47690,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "to_sql_specific_name", @@ -49889,8 +47711,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "as_locator", @@ -49911,8 +47732,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "created", @@ -49933,8 +47753,7 @@ "catalog": "", "schema": "", "name": "time_stamp" - }, - "is_sqlc_slice": false + } }, { "name": "last_altered", @@ -49955,8 +47774,7 @@ "catalog": "", "schema": "", "name": "time_stamp" - }, - "is_sqlc_slice": false + } }, { "name": "new_savepoint_level", @@ -49977,8 +47795,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_udt_dependent", @@ -49999,8 +47816,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_from_data_type", @@ -50021,8 +47837,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_as_locator", @@ -50043,8 +47858,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_char_max_length", @@ -50065,8 +47879,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_char_octet_length", @@ -50087,8 +47900,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_char_set_catalog", @@ -50109,8 +47921,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_char_set_schema", @@ -50131,8 +47942,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_char_set_name", @@ -50153,8 +47963,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_collation_catalog", @@ -50175,8 +47984,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_collation_schema", @@ -50197,8 +48005,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_collation_name", @@ -50219,8 +48026,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_numeric_precision", @@ -50241,8 +48047,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_numeric_precision_radix", @@ -50263,8 +48068,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_numeric_scale", @@ -50285,8 +48089,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_datetime_precision", @@ -50307,8 +48110,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_interval_type", @@ -50329,8 +48131,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_interval_precision", @@ -50351,8 +48152,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_type_udt_catalog", @@ -50373,8 +48173,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_type_udt_schema", @@ -50395,8 +48194,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_type_udt_name", @@ -50417,8 +48215,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_scope_catalog", @@ -50439,8 +48236,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_scope_schema", @@ -50461,8 +48257,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_scope_name", @@ -50483,8 +48278,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_maximum_cardinality", @@ -50505,8 +48299,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "result_cast_dtd_identifier", @@ -50527,8 +48320,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -50559,8 +48351,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "schema_name", @@ -50581,8 +48372,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "schema_owner", @@ -50603,8 +48393,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "default_character_set_catalog", @@ -50625,8 +48414,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "default_character_set_schema", @@ -50647,8 +48435,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "default_character_set_name", @@ -50669,8 +48456,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "sql_path", @@ -50691,8 +48477,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -50723,8 +48508,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "sequence_schema", @@ -50745,8 +48529,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "sequence_name", @@ -50767,8 +48550,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -50789,8 +48571,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -50811,8 +48592,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -50833,8 +48613,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -50855,8 +48634,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "start_value", @@ -50877,8 +48655,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "minimum_value", @@ -50899,8 +48676,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "maximum_value", @@ -50921,8 +48697,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "increment", @@ -50943,8 +48718,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "cycle_option", @@ -50965,8 +48739,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -50997,8 +48770,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -51019,8 +48791,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -51041,8 +48812,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -51063,8 +48833,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -51085,8 +48854,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -51107,8 +48875,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "feature_id", @@ -51129,8 +48896,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "feature_name", @@ -51151,8 +48917,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "sub_feature_id", @@ -51173,8 +48938,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "sub_feature_name", @@ -51195,8 +48959,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_supported", @@ -51217,8 +48980,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_verified_by", @@ -51239,8 +49001,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "comments", @@ -51261,8 +49022,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -51293,8 +49053,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -51315,8 +49074,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -51337,8 +49095,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -51359,8 +49116,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -51381,8 +49137,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -51403,8 +49158,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "implementation_info_id", @@ -51425,8 +49179,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "implementation_info_name", @@ -51447,8 +49200,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "integer_value", @@ -51469,8 +49221,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_value", @@ -51491,8 +49242,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "comments", @@ -51513,8 +49263,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -51545,8 +49294,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -51567,8 +49315,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -51589,8 +49336,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -51611,8 +49357,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -51633,8 +49378,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -51655,8 +49399,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "feature_id", @@ -51677,8 +49420,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "feature_name", @@ -51699,8 +49441,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_supported", @@ -51721,8 +49462,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_verified_by", @@ -51743,8 +49483,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "comments", @@ -51765,8 +49504,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -51797,8 +49535,7 @@ "catalog": "", "schema": "", "name": "oid" - }, - "is_sqlc_slice": false + } }, { "name": "cmax", @@ -51819,8 +49556,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmax", @@ -51841,8 +49577,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "cmin", @@ -51863,8 +49598,7 @@ "catalog": "", "schema": "", "name": "cid" - }, - "is_sqlc_slice": false + } }, { "name": "xmin", @@ -51885,8 +49619,7 @@ "catalog": "", "schema": "", "name": "xid" - }, - "is_sqlc_slice": false + } }, { "name": "ctid", @@ -51907,8 +49640,7 @@ "catalog": "", "schema": "", "name": "tid" - }, - "is_sqlc_slice": false + } }, { "name": "sizing_id", @@ -51929,8 +49661,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "sizing_name", @@ -51951,8 +49682,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "supported_value", @@ -51973,8 +49703,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "comments", @@ -51995,8 +49724,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -52027,8 +49755,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_schema", @@ -52049,8 +49776,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_name", @@ -52071,8 +49797,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -52093,8 +49818,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -52115,8 +49839,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -52137,8 +49860,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "constraint_type", @@ -52159,8 +49881,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_deferrable", @@ -52181,8 +49902,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "initially_deferred", @@ -52203,8 +49923,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "enforced", @@ -52225,8 +49944,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "nulls_distinct", @@ -52247,8 +49965,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -52279,8 +49996,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -52301,8 +50017,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -52323,8 +50038,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -52345,8 +50059,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -52367,8 +50080,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -52389,8 +50101,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -52411,8 +50122,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "with_hierarchy", @@ -52433,8 +50143,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -52465,8 +50174,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -52487,8 +50195,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -52509,8 +50216,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_type", @@ -52531,8 +50237,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "self_referencing_column_name", @@ -52553,8 +50258,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "reference_generation", @@ -52575,8 +50279,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "user_defined_type_catalog", @@ -52597,8 +50300,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "user_defined_type_schema", @@ -52619,8 +50321,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "user_defined_type_name", @@ -52641,8 +50342,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "is_insertable_into", @@ -52663,8 +50363,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_typed", @@ -52685,8 +50384,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "commit_action", @@ -52707,8 +50405,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -52739,8 +50436,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -52761,8 +50457,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -52783,8 +50478,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_catalog", @@ -52805,8 +50499,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -52827,8 +50520,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -52849,8 +50541,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "group_name", @@ -52871,8 +50562,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "transform_type", @@ -52893,8 +50583,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -52925,8 +50614,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "trigger_schema", @@ -52947,8 +50635,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "trigger_name", @@ -52969,8 +50656,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_catalog", @@ -52991,8 +50677,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_schema", @@ -53013,8 +50698,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_table", @@ -53035,8 +50719,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_column", @@ -53057,8 +50740,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -53089,8 +50771,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "trigger_schema", @@ -53111,8 +50792,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "trigger_name", @@ -53133,8 +50813,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_manipulation", @@ -53155,8 +50834,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_catalog", @@ -53177,8 +50855,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_schema", @@ -53199,8 +50876,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "event_object_table", @@ -53221,8 +50897,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "action_order", @@ -53243,8 +50918,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "action_condition", @@ -53265,8 +50939,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "action_statement", @@ -53287,8 +50960,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "action_orientation", @@ -53309,8 +50981,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "action_timing", @@ -53331,8 +51002,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "action_reference_old_table", @@ -53353,8 +51023,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "action_reference_new_table", @@ -53375,8 +51044,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "action_reference_old_row", @@ -53397,8 +51065,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "action_reference_new_row", @@ -53419,8 +51086,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "created", @@ -53441,8 +51107,7 @@ "catalog": "", "schema": "", "name": "time_stamp" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -53473,8 +51138,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -53495,8 +51159,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_catalog", @@ -53517,8 +51180,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_schema", @@ -53539,8 +51201,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "udt_name", @@ -53561,8 +51222,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -53583,8 +51243,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -53605,8 +51264,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -53637,8 +51295,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "grantee", @@ -53659,8 +51316,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_catalog", @@ -53681,8 +51337,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_schema", @@ -53703,8 +51358,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_name", @@ -53725,8 +51379,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "object_type", @@ -53747,8 +51400,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "privilege_type", @@ -53769,8 +51421,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_grantable", @@ -53791,8 +51442,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -53823,8 +51473,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "user_defined_type_schema", @@ -53845,8 +51494,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "user_defined_type_name", @@ -53867,8 +51515,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "user_defined_type_category", @@ -53889,8 +51536,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_instantiable", @@ -53911,8 +51557,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_final", @@ -53933,8 +51578,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "ordering_form", @@ -53955,8 +51599,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "ordering_category", @@ -53977,8 +51620,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "ordering_routine_catalog", @@ -53999,8 +51641,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ordering_routine_schema", @@ -54021,8 +51662,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ordering_routine_name", @@ -54043,8 +51683,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "reference_type", @@ -54065,8 +51704,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "data_type", @@ -54087,8 +51725,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "character_maximum_length", @@ -54109,8 +51746,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_octet_length", @@ -54131,8 +51767,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_catalog", @@ -54153,8 +51788,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_schema", @@ -54175,8 +51809,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "character_set_name", @@ -54197,8 +51830,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_catalog", @@ -54219,8 +51851,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_schema", @@ -54241,8 +51872,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "collation_name", @@ -54263,8 +51893,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision", @@ -54285,8 +51914,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_precision_radix", @@ -54307,8 +51935,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "numeric_scale", @@ -54329,8 +51956,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "datetime_precision", @@ -54351,8 +51977,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "interval_type", @@ -54373,8 +51998,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "interval_precision", @@ -54395,8 +52019,7 @@ "catalog": "", "schema": "", "name": "cardinal_number" - }, - "is_sqlc_slice": false + } }, { "name": "source_dtd_identifier", @@ -54417,8 +52040,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "ref_dtd_identifier", @@ -54439,8 +52061,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -54471,8 +52092,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_catalog", @@ -54493,8 +52113,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -54515,8 +52134,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_name", @@ -54537,8 +52155,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "option_value", @@ -54559,8 +52176,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -54591,8 +52207,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_catalog", @@ -54613,8 +52228,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "foreign_server_name", @@ -54635,8 +52249,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -54667,8 +52280,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "view_schema", @@ -54689,8 +52301,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "view_name", @@ -54711,8 +52322,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -54733,8 +52343,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -54755,8 +52364,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -54777,8 +52385,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "column_name", @@ -54799,8 +52406,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -54831,8 +52437,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -54853,8 +52458,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -54875,8 +52479,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_catalog", @@ -54897,8 +52500,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_schema", @@ -54919,8 +52521,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "specific_name", @@ -54941,8 +52542,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -54973,8 +52573,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "view_schema", @@ -54995,8 +52594,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "view_name", @@ -55017,8 +52615,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_catalog", @@ -55039,8 +52636,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -55061,8 +52657,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -55083,8 +52678,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -55115,8 +52709,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_schema", @@ -55137,8 +52730,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "table_name", @@ -55159,8 +52751,7 @@ "catalog": "", "schema": "", "name": "sql_identifier" - }, - "is_sqlc_slice": false + } }, { "name": "view_definition", @@ -55181,8 +52772,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "check_option", @@ -55203,8 +52793,7 @@ "catalog": "", "schema": "", "name": "character_data" - }, - "is_sqlc_slice": false + } }, { "name": "is_updatable", @@ -55225,8 +52814,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_insertable_into", @@ -55247,8 +52835,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_trigger_updatable", @@ -55269,8 +52856,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_trigger_deletable", @@ -55291,8 +52877,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } }, { "name": "is_trigger_insertable_into", @@ -55313,8 +52898,7 @@ "catalog": "", "schema": "", "name": "yes_or_no" - }, - "is_sqlc_slice": false + } } ], "comment": "" @@ -55350,8 +52934,7 @@ "catalog": "", "schema": "", "name": "bigserial" - }, - "is_sqlc_slice": false + } }, { "name": "name", @@ -55372,8 +52955,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "bio", @@ -55394,8 +52976,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "params": [ @@ -55420,8 +53001,7 @@ "catalog": "", "schema": "", "name": "bigserial" - }, - "is_sqlc_slice": false + } } } ], @@ -55453,8 +53033,7 @@ "catalog": "", "schema": "", "name": "bigserial" - }, - "is_sqlc_slice": false + } }, { "name": "name", @@ -55475,8 +53054,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "bio", @@ -55497,8 +53075,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "params": [], @@ -55530,8 +53107,7 @@ "catalog": "", "schema": "", "name": "bigserial" - }, - "is_sqlc_slice": false + } }, { "name": "name", @@ -55552,8 +53128,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } }, { "name": "bio", @@ -55574,8 +53149,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } ], "params": [ @@ -55600,8 +53174,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } }, { @@ -55625,8 +53198,7 @@ "catalog": "", "schema": "", "name": "text" - }, - "is_sqlc_slice": false + } } } ], @@ -55665,8 +53237,7 @@ "catalog": "", "schema": "", "name": "bigserial" - }, - "is_sqlc_slice": false + } } } ], diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go b/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go index eea4166ec6..02974bda59 100644 --- a/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go +++ b/internal/endtoend/testdata/sqlc_embed/mysql/go/db.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go b/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go index 51c041f8fd..83de041b05 100644 --- a/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go +++ b/internal/endtoend/testdata/sqlc_embed/mysql/go/models.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go b/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go index 3c2d9df7e7..bd41a9d6ae 100644 --- a/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go +++ b/internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 // source: query.sql package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go index 7fb8bea331..439db75e69 100644 --- a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go index 77c8e10d12..38d10cf170 100644 --- a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go index a5d9a03222..5017e3b375 100644 --- a/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 // source: query.sql package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go index eea4166ec6..02974bda59 100644 --- a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go index 51c041f8fd..83de041b05 100644 --- a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 package querytest diff --git a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go index 3c2d9df7e7..bd41a9d6ae 100644 --- a/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go +++ b/internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go @@ -1,6 +1,6 @@ // Code generated by sqlc. DO NOT EDIT. // versions: -// sqlc v1.16.0 +// sqlc v1.17.2 // source: query.sql package querytest diff --git a/internal/sql/astutils/rewrite.go b/internal/sql/astutils/rewrite.go index 2735d6e3eb..c4fea7da18 100644 --- a/internal/sql/astutils/rewrite.go +++ b/internal/sql/astutils/rewrite.go @@ -406,6 +406,9 @@ func (a *application) apply(parent ast.Node, name string, iter *iterator, n ast. case *ast.BlockIdData: // pass + case *ast.Boolean: + // pass + case *ast.BoolExpr: a.apply(n, "Xpr", nil, n.Xpr) a.apply(n, "Args", nil, n.Args) From 6af060878c4de1bf775f6e812210e79aec607abd Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Fri, 7 Apr 2023 09:52:42 -0700 Subject: [PATCH 17/17] Fix codegen.json tests --- .../process_plugin_disabled/gen/codegen.json | 9716 ++++++++++++----- .../gen/codegen.json | 9716 ++++++++++++----- 2 files changed, 14574 insertions(+), 4858 deletions(-) diff --git a/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json b/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json index 26abb2b93a..ffe0ab5c37 100644 --- a/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json +++ b/internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json @@ -80,7 +80,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -101,7 +103,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -122,7 +126,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -168,7 +174,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -189,7 +197,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -210,7 +220,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -231,7 +243,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -252,7 +266,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -273,7 +289,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfnoid", @@ -294,7 +312,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggkind", @@ -315,7 +335,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggnumdirectargs", @@ -336,7 +358,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtransfn", @@ -357,7 +381,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalfn", @@ -378,7 +404,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggcombinefn", @@ -399,7 +427,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggserialfn", @@ -420,7 +450,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggdeserialfn", @@ -441,7 +473,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtransfn", @@ -462,7 +496,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggminvtransfn", @@ -483,7 +519,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalfn", @@ -504,7 +542,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalextra", @@ -525,7 +565,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalextra", @@ -546,7 +588,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalmodify", @@ -567,7 +611,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalmodify", @@ -588,7 +634,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggsortop", @@ -609,7 +657,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtranstype", @@ -630,7 +680,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtransspace", @@ -651,7 +703,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtranstype", @@ -672,7 +726,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtransspace", @@ -693,7 +749,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "agginitval", @@ -714,7 +772,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggminitval", @@ -735,7 +795,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -766,7 +828,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -787,7 +851,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -808,7 +874,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -829,7 +897,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -850,7 +920,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -871,7 +943,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -892,7 +966,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amname", @@ -913,7 +989,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amhandler", @@ -934,7 +1012,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amtype", @@ -955,7 +1035,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -986,7 +1068,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1007,7 +1091,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1028,7 +1114,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1049,7 +1137,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1070,7 +1160,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1091,7 +1183,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1112,7 +1206,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopfamily", @@ -1133,7 +1229,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoplefttype", @@ -1154,7 +1252,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoprighttype", @@ -1175,7 +1275,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopstrategy", @@ -1196,7 +1298,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoppurpose", @@ -1217,7 +1321,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopopr", @@ -1238,7 +1344,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopmethod", @@ -1259,7 +1367,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopsortfamily", @@ -1280,7 +1390,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1311,7 +1423,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1332,7 +1446,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1353,7 +1469,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1374,7 +1492,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1395,7 +1515,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1416,7 +1538,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1437,7 +1561,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocfamily", @@ -1458,7 +1584,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amproclefttype", @@ -1479,7 +1607,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocrighttype", @@ -1500,7 +1630,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocnum", @@ -1521,7 +1653,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amproc", @@ -1542,7 +1676,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1573,7 +1709,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1594,7 +1732,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1615,7 +1755,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1636,7 +1778,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1657,7 +1801,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1678,7 +1824,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1699,7 +1847,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adrelid", @@ -1720,7 +1870,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adnum", @@ -1741,7 +1893,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adbin", @@ -1762,7 +1916,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1793,7 +1949,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1814,7 +1972,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1835,7 +1995,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1856,7 +2018,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1877,7 +2041,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1898,7 +2064,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attrelid", @@ -1919,7 +2087,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -1940,7 +2110,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atttypid", @@ -1961,7 +2133,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attstattarget", @@ -1982,7 +2156,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attlen", @@ -2003,7 +2179,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnum", @@ -2024,7 +2202,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attndims", @@ -2045,7 +2225,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcacheoff", @@ -2066,7 +2248,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atttypmod", @@ -2087,7 +2271,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attbyval", @@ -2108,7 +2294,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attalign", @@ -2129,7 +2317,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attstorage", @@ -2150,7 +2340,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcompression", @@ -2171,7 +2363,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnotnull", @@ -2192,7 +2386,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atthasdef", @@ -2213,7 +2409,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atthasmissing", @@ -2234,7 +2432,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attidentity", @@ -2255,7 +2455,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attgenerated", @@ -2276,7 +2478,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attisdropped", @@ -2297,7 +2501,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attislocal", @@ -2318,7 +2524,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attinhcount", @@ -2339,7 +2547,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcollation", @@ -2360,7 +2570,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attacl", @@ -2381,7 +2593,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attoptions", @@ -2402,7 +2616,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attfdwoptions", @@ -2423,7 +2639,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attmissingval", @@ -2444,7 +2662,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -2475,7 +2695,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -2496,7 +2718,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -2517,7 +2741,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -2538,7 +2764,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -2559,7 +2787,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -2580,7 +2810,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roleid", @@ -2601,7 +2833,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "member", @@ -2622,7 +2856,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantor", @@ -2643,7 +2879,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "admin_option", @@ -2664,7 +2902,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -2695,7 +2935,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -2716,7 +2958,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -2737,7 +2981,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -2758,7 +3004,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -2779,7 +3027,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -2800,7 +3050,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -2821,7 +3073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolname", @@ -2842,7 +3096,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolsuper", @@ -2863,7 +3119,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolinherit", @@ -2884,7 +3142,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreaterole", @@ -2905,7 +3165,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreatedb", @@ -2926,7 +3188,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcanlogin", @@ -2947,7 +3211,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolreplication", @@ -2968,7 +3234,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolbypassrls", @@ -2989,7 +3257,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconnlimit", @@ -3010,7 +3280,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolpassword", @@ -3031,7 +3303,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolvaliduntil", @@ -3052,7 +3326,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3083,7 +3359,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "version", @@ -3104,7 +3382,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "installed", @@ -3125,7 +3405,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "superuser", @@ -3146,7 +3428,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trusted", @@ -3167,7 +3451,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relocatable", @@ -3188,7 +3474,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema", @@ -3209,7 +3497,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "requires", @@ -3230,7 +3520,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comment", @@ -3251,7 +3543,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3282,7 +3576,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_version", @@ -3303,7 +3599,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "installed_version", @@ -3324,7 +3622,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comment", @@ -3345,7 +3645,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3376,7 +3678,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ident", @@ -3397,7 +3701,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parent", @@ -3418,7 +3724,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "level", @@ -3439,7 +3747,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_bytes", @@ -3460,7 +3770,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_nblocks", @@ -3481,7 +3793,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "free_bytes", @@ -3502,7 +3816,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "free_chunks", @@ -3523,7 +3839,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "used_bytes", @@ -3544,7 +3862,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3575,7 +3895,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -3596,7 +3918,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -3617,7 +3941,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -3638,7 +3964,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -3659,7 +3987,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -3680,7 +4010,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -3701,7 +4033,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castsource", @@ -3722,7 +4056,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "casttarget", @@ -3743,7 +4079,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castfunc", @@ -3764,7 +4102,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castcontext", @@ -3785,7 +4125,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castmethod", @@ -3806,7 +4148,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3837,7 +4181,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -3858,7 +4204,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -3879,7 +4227,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -3900,7 +4250,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -3921,7 +4273,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -3942,7 +4296,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -3963,7 +4319,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -3984,7 +4342,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relnamespace", @@ -4005,7 +4365,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltype", @@ -4026,7 +4388,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reloftype", @@ -4047,7 +4411,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relowner", @@ -4068,7 +4434,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relam", @@ -4089,7 +4457,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relfilenode", @@ -4110,7 +4480,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltablespace", @@ -4131,7 +4503,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpages", @@ -4152,7 +4526,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltuples", @@ -4173,7 +4549,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relallvisible", @@ -4194,7 +4572,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltoastrelid", @@ -4215,7 +4595,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhasindex", @@ -4236,7 +4618,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relisshared", @@ -4257,7 +4641,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpersistence", @@ -4278,7 +4664,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relkind", @@ -4299,7 +4687,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relnatts", @@ -4320,7 +4710,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relchecks", @@ -4341,7 +4733,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhasrules", @@ -4362,7 +4756,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhastriggers", @@ -4383,7 +4779,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhassubclass", @@ -4404,7 +4802,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relrowsecurity", @@ -4425,7 +4825,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relforcerowsecurity", @@ -4446,7 +4848,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relispopulated", @@ -4467,7 +4871,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relreplident", @@ -4488,7 +4894,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relispartition", @@ -4509,7 +4917,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relrewrite", @@ -4530,7 +4940,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relfrozenxid", @@ -4551,7 +4963,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relminmxid", @@ -4572,7 +4986,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relacl", @@ -4593,7 +5009,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reloptions", @@ -4614,7 +5032,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpartbound", @@ -4635,7 +5055,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -4666,7 +5088,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -4687,7 +5111,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -4708,7 +5134,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -4729,7 +5157,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -4750,7 +5180,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -4771,7 +5203,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -4792,7 +5226,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collname", @@ -4813,7 +5249,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collnamespace", @@ -4834,7 +5272,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collowner", @@ -4855,7 +5295,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collprovider", @@ -4876,7 +5318,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collisdeterministic", @@ -4897,7 +5341,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collencoding", @@ -4918,7 +5364,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collcollate", @@ -4939,7 +5387,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collctype", @@ -4960,7 +5410,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "colliculocale", @@ -4981,7 +5433,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collversion", @@ -5002,7 +5456,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5033,7 +5489,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -5054,7 +5512,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5085,7 +5545,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -5106,7 +5568,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -5127,7 +5591,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -5148,7 +5614,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -5169,7 +5637,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -5190,7 +5660,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -5211,7 +5683,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conname", @@ -5232,7 +5706,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connamespace", @@ -5253,7 +5729,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contype", @@ -5274,7 +5752,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condeferrable", @@ -5295,7 +5775,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condeferred", @@ -5316,7 +5798,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "convalidated", @@ -5337,7 +5821,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conrelid", @@ -5358,7 +5844,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contypid", @@ -5379,7 +5867,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conindid", @@ -5400,7 +5890,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conparentid", @@ -5421,7 +5913,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confrelid", @@ -5442,7 +5936,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confupdtype", @@ -5463,7 +5959,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confdeltype", @@ -5484,7 +5982,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confmatchtype", @@ -5505,7 +6005,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conislocal", @@ -5526,7 +6028,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "coninhcount", @@ -5547,7 +6051,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connoinherit", @@ -5568,7 +6074,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conkey", @@ -5589,7 +6097,9 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confkey", @@ -5610,7 +6120,9 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conpfeqop", @@ -5631,7 +6143,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conppeqop", @@ -5652,7 +6166,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conffeqop", @@ -5673,7 +6189,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confdelsetcols", @@ -5694,7 +6212,9 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conexclop", @@ -5715,7 +6235,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conbin", @@ -5736,7 +6258,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5767,7 +6291,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -5788,7 +6314,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -5809,7 +6337,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -5830,7 +6360,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -5851,7 +6383,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -5872,7 +6406,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -5893,7 +6429,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conname", @@ -5914,7 +6452,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connamespace", @@ -5935,7 +6475,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conowner", @@ -5956,7 +6498,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conforencoding", @@ -5977,7 +6521,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contoencoding", @@ -5998,7 +6544,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conproc", @@ -6019,7 +6567,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condefault", @@ -6040,7 +6590,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6071,7 +6623,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statement", @@ -6092,7 +6646,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_holdable", @@ -6113,7 +6669,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_binary", @@ -6134,7 +6692,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_scrollable", @@ -6155,7 +6715,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "creation_time", @@ -6176,7 +6738,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6207,7 +6771,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6228,7 +6794,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6249,7 +6817,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6270,7 +6840,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6291,7 +6863,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6312,7 +6886,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -6333,7 +6909,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -6354,7 +6932,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datdba", @@ -6375,7 +6955,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "encoding", @@ -6396,7 +6978,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datlocprovider", @@ -6417,7 +7001,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datistemplate", @@ -6438,7 +7024,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datallowconn", @@ -6459,7 +7047,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datconnlimit", @@ -6480,7 +7070,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datfrozenxid", @@ -6501,7 +7093,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datminmxid", @@ -6522,7 +7116,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dattablespace", @@ -6543,7 +7139,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datcollate", @@ -6564,7 +7162,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datctype", @@ -6585,7 +7185,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "daticulocale", @@ -6606,7 +7208,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datcollversion", @@ -6627,7 +7231,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datacl", @@ -6648,7 +7254,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6679,7 +7287,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6700,7 +7310,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6721,7 +7333,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6742,7 +7356,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6763,7 +7379,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6784,7 +7402,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setdatabase", @@ -6805,7 +7425,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setrole", @@ -6826,7 +7448,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setconfig", @@ -6847,7 +7471,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6878,7 +7504,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6899,7 +7527,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6920,7 +7550,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6941,7 +7573,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6962,7 +7596,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6983,7 +7619,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7004,7 +7642,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclrole", @@ -7025,7 +7665,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclnamespace", @@ -7046,7 +7688,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclobjtype", @@ -7067,7 +7711,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclacl", @@ -7088,7 +7734,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7119,7 +7767,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7140,7 +7790,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7161,7 +7813,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7182,7 +7836,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7203,7 +7859,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7224,7 +7882,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -7245,7 +7905,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -7266,7 +7928,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -7287,7 +7951,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refclassid", @@ -7308,7 +7974,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjid", @@ -7329,7 +7997,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjsubid", @@ -7350,7 +8020,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deptype", @@ -7371,7 +8043,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7402,7 +8076,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7423,7 +8099,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7444,7 +8122,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7465,7 +8145,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7486,7 +8168,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7507,7 +8191,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -7528,7 +8214,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -7549,7 +8237,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -7570,7 +8260,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "description", @@ -7591,7 +8283,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7622,7 +8316,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7643,7 +8339,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7664,7 +8362,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7685,7 +8385,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7706,7 +8408,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7727,7 +8431,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7748,7 +8454,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumtypid", @@ -7769,7 +8477,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumsortorder", @@ -7790,7 +8500,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumlabel", @@ -7811,7 +8523,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7842,7 +8556,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7863,7 +8579,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7884,7 +8602,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7905,7 +8625,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7926,7 +8648,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7947,7 +8671,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7968,7 +8694,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtname", @@ -7989,7 +8717,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtevent", @@ -8010,7 +8740,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtowner", @@ -8031,7 +8763,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtfoid", @@ -8052,7 +8786,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtenabled", @@ -8073,7 +8809,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evttags", @@ -8094,7 +8832,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8125,7 +8865,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8146,7 +8888,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8167,7 +8911,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8188,7 +8934,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8209,7 +8957,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8230,7 +8980,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8251,7 +9003,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extname", @@ -8272,7 +9026,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extowner", @@ -8293,7 +9049,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extnamespace", @@ -8314,7 +9072,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extrelocatable", @@ -8335,7 +9095,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extversion", @@ -8356,7 +9118,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extconfig", @@ -8377,7 +9141,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extcondition", @@ -8398,7 +9164,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8429,7 +9197,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourceline", @@ -8450,7 +9220,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqno", @@ -8471,7 +9243,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -8492,7 +9266,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -8513,7 +9289,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "applied", @@ -8534,7 +9312,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -8555,7 +9335,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8586,7 +9368,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8607,7 +9391,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8628,7 +9414,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8649,7 +9437,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8670,7 +9460,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8691,7 +9483,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8712,7 +9506,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwname", @@ -8733,7 +9529,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwowner", @@ -8754,7 +9552,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwhandler", @@ -8775,7 +9575,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwvalidator", @@ -8796,7 +9598,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwacl", @@ -8817,7 +9621,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwoptions", @@ -8838,7 +9644,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8869,7 +9677,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8890,7 +9700,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8911,7 +9723,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8932,7 +9746,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8953,7 +9769,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8974,7 +9792,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8995,7 +9815,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvname", @@ -9016,7 +9838,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvowner", @@ -9037,7 +9861,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvfdw", @@ -9058,7 +9884,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvtype", @@ -9079,7 +9907,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvversion", @@ -9100,7 +9930,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvacl", @@ -9121,7 +9953,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvoptions", @@ -9142,7 +9976,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9173,7 +10009,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9194,7 +10032,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9215,7 +10055,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9236,7 +10078,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9257,7 +10101,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9278,7 +10124,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftrelid", @@ -9299,7 +10147,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftserver", @@ -9320,7 +10170,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftoptions", @@ -9341,7 +10193,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9372,7 +10226,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grosysid", @@ -9393,7 +10249,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grolist", @@ -9414,7 +10272,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9445,7 +10305,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type", @@ -9466,7 +10328,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -9487,7 +10351,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_name", @@ -9508,7 +10374,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "address", @@ -9529,7 +10397,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "netmask", @@ -9550,7 +10420,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "auth_method", @@ -9571,7 +10443,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "options", @@ -9592,7 +10466,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -9613,7 +10489,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9644,7 +10522,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "map_name", @@ -9665,7 +10545,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sys_name", @@ -9686,7 +10568,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pg_username", @@ -9707,7 +10591,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -9728,7 +10614,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9759,7 +10647,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9780,7 +10670,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9801,7 +10693,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9822,7 +10716,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9843,7 +10739,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9864,7 +10762,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -9885,7 +10785,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indrelid", @@ -9906,7 +10808,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnatts", @@ -9927,7 +10831,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnkeyatts", @@ -9948,7 +10854,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisunique", @@ -9969,7 +10877,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnullsnotdistinct", @@ -9990,7 +10900,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisprimary", @@ -10011,7 +10923,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisexclusion", @@ -10032,7 +10946,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indimmediate", @@ -10053,7 +10969,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisclustered", @@ -10074,7 +10992,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisvalid", @@ -10095,7 +11015,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indcheckxmin", @@ -10116,7 +11038,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisready", @@ -10137,7 +11061,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indislive", @@ -10158,7 +11084,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisreplident", @@ -10179,7 +11107,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indkey", @@ -10200,7 +11130,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indcollation", @@ -10221,7 +11153,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indclass", @@ -10242,7 +11176,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indoption", @@ -10263,7 +11199,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexprs", @@ -10284,7 +11222,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indpred", @@ -10305,7 +11245,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10336,7 +11278,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -10357,7 +11301,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexname", @@ -10378,7 +11324,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -10399,7 +11347,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexdef", @@ -10420,7 +11370,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10451,7 +11403,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10472,7 +11426,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10493,7 +11449,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10514,7 +11472,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10535,7 +11495,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -10556,7 +11518,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhrelid", @@ -10577,7 +11541,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhparent", @@ -10598,7 +11564,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhseqno", @@ -10619,7 +11587,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhdetachpending", @@ -10640,7 +11610,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10671,7 +11643,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10692,7 +11666,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10713,7 +11689,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10734,7 +11712,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10755,7 +11735,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -10776,7 +11758,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -10797,7 +11781,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -10818,7 +11804,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -10839,7 +11827,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privtype", @@ -10860,7 +11850,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initprivs", @@ -10881,7 +11873,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10912,7 +11906,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10933,7 +11929,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10954,7 +11952,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10975,7 +11975,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10996,7 +11998,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11017,7 +12021,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -11038,7 +12044,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanname", @@ -11059,7 +12067,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanowner", @@ -11080,7 +12090,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanispl", @@ -11101,7 +12113,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanpltrusted", @@ -11122,7 +12136,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanplcallfoid", @@ -11143,7 +12159,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "laninline", @@ -11164,7 +12182,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanvalidator", @@ -11185,7 +12205,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanacl", @@ -11206,7 +12228,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11237,7 +12261,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11258,7 +12284,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11279,7 +12307,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11300,7 +12330,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11321,7 +12353,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11342,7 +12376,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "loid", @@ -11363,7 +12399,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pageno", @@ -11384,7 +12422,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data", @@ -11405,7 +12445,9 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11436,7 +12478,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11457,7 +12501,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11478,7 +12524,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11499,7 +12547,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11520,7 +12570,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11541,7 +12593,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -11562,7 +12616,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lomowner", @@ -11583,7 +12639,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lomacl", @@ -11604,7 +12662,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11635,7 +12695,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -11656,7 +12718,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relation", @@ -11677,7 +12741,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "page", @@ -11698,7 +12764,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuple", @@ -11719,7 +12787,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "virtualxid", @@ -11740,7 +12810,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "transactionid", @@ -11761,7 +12833,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -11782,7 +12856,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -11803,7 +12879,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -11824,7 +12902,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "virtualtransaction", @@ -11845,7 +12925,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -11866,7 +12948,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mode", @@ -11887,7 +12971,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "granted", @@ -11908,7 +12994,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fastpath", @@ -11929,7 +13017,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "waitstart", @@ -11950,7 +13040,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11981,7 +13073,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "matviewname", @@ -12002,7 +13096,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "matviewowner", @@ -12023,7 +13119,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -12044,7 +13142,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasindexes", @@ -12065,7 +13165,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ispopulated", @@ -12086,7 +13188,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -12107,7 +13211,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12138,7 +13244,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12159,7 +13267,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12180,7 +13290,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12201,7 +13313,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12222,7 +13336,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12243,7 +13359,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12264,7 +13382,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspname", @@ -12285,7 +13405,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspowner", @@ -12306,7 +13428,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspacl", @@ -12327,7 +13451,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12358,7 +13484,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12379,7 +13507,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12400,7 +13530,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12421,7 +13553,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12442,7 +13576,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12463,7 +13599,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12484,7 +13622,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcmethod", @@ -12505,7 +13645,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcname", @@ -12526,7 +13668,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcnamespace", @@ -12547,7 +13691,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcowner", @@ -12568,7 +13714,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcfamily", @@ -12589,7 +13737,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcintype", @@ -12610,7 +13760,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcdefault", @@ -12631,7 +13783,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opckeytype", @@ -12652,7 +13806,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12683,7 +13839,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12704,7 +13862,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12725,7 +13885,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12746,7 +13908,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12767,7 +13931,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12788,7 +13954,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12809,7 +13977,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprname", @@ -12830,7 +14000,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprnamespace", @@ -12851,7 +14023,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprowner", @@ -12872,7 +14046,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprkind", @@ -12893,7 +14069,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcanmerge", @@ -12914,7 +14092,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcanhash", @@ -12935,7 +14115,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprleft", @@ -12956,7 +14138,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprright", @@ -12977,7 +14161,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprresult", @@ -12998,7 +14184,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcom", @@ -13019,7 +14207,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprnegate", @@ -13040,7 +14230,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcode", @@ -13061,7 +14253,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprrest", @@ -13082,7 +14276,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprjoin", @@ -13103,7 +14299,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13134,7 +14332,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13155,7 +14355,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13176,7 +14378,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13197,7 +14401,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13218,7 +14424,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13239,7 +14447,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13260,7 +14470,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfmethod", @@ -13281,7 +14493,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfname", @@ -13302,7 +14516,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfnamespace", @@ -13323,7 +14539,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfowner", @@ -13344,7 +14562,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13375,7 +14595,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13396,7 +14618,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13417,7 +14641,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13438,7 +14664,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13459,7 +14687,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13480,7 +14710,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13501,7 +14733,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parname", @@ -13522,7 +14756,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "paracl", @@ -13543,7 +14779,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13574,7 +14812,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13595,7 +14835,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13616,7 +14858,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13637,7 +14881,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13658,7 +14904,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13679,7 +14927,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partrelid", @@ -13700,7 +14950,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partstrat", @@ -13721,7 +14973,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partnatts", @@ -13742,7 +14996,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partdefid", @@ -13763,7 +15019,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partattrs", @@ -13784,7 +15042,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partclass", @@ -13805,7 +15065,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partcollation", @@ -13826,7 +15088,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partexprs", @@ -13847,7 +15111,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13878,7 +15144,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -13899,7 +15167,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "policyname", @@ -13920,7 +15190,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "permissive", @@ -13941,7 +15213,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roles", @@ -13962,7 +15236,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmd", @@ -13983,7 +15259,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "qual", @@ -14004,7 +15282,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_check", @@ -14025,7 +15305,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14056,7 +15338,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14077,7 +15361,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14098,7 +15384,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14119,7 +15407,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14140,7 +15430,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14161,7 +15453,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -14182,7 +15476,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polname", @@ -14203,7 +15499,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polrelid", @@ -14224,7 +15522,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polcmd", @@ -14245,7 +15545,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polpermissive", @@ -14266,7 +15568,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polroles", @@ -14287,7 +15591,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polqual", @@ -14308,7 +15614,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polwithcheck", @@ -14329,7 +15637,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14360,7 +15670,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statement", @@ -14381,7 +15693,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prepare_time", @@ -14402,7 +15716,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_types", @@ -14423,7 +15739,9 @@ "catalog": "", "schema": "", "name": "_regtype" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "from_sql", @@ -14444,7 +15762,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "generic_plans", @@ -14465,7 +15785,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "custom_plans", @@ -14486,7 +15808,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14517,7 +15841,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "gid", @@ -14538,7 +15864,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prepared", @@ -14559,7 +15887,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "owner", @@ -14580,7 +15910,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -14601,7 +15933,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14632,7 +15966,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14653,7 +15989,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14674,7 +16012,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14695,7 +16035,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14716,7 +16058,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14737,7 +16081,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -14758,7 +16104,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proname", @@ -14779,7 +16127,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronamespace", @@ -14800,7 +16150,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proowner", @@ -14821,7 +16173,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prolang", @@ -14842,7 +16196,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "procost", @@ -14863,7 +16219,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prorows", @@ -14884,7 +16242,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provariadic", @@ -14905,7 +16265,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosupport", @@ -14926,7 +16288,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prokind", @@ -14947,7 +16311,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosecdef", @@ -14968,7 +16334,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proleakproof", @@ -14989,7 +16357,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proisstrict", @@ -15010,7 +16380,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proretset", @@ -15031,7 +16403,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provolatile", @@ -15052,7 +16426,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proparallel", @@ -15073,7 +16449,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronargs", @@ -15094,7 +16472,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronargdefaults", @@ -15115,7 +16495,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prorettype", @@ -15136,7 +16518,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargtypes", @@ -15157,7 +16541,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proallargtypes", @@ -15178,7 +16564,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargmodes", @@ -15199,7 +16587,9 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargnames", @@ -15220,7 +16610,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargdefaults", @@ -15241,7 +16633,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "protrftypes", @@ -15262,7 +16656,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosrc", @@ -15283,7 +16679,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "probin", @@ -15304,7 +16702,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosqlbody", @@ -15325,7 +16725,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proconfig", @@ -15346,7 +16748,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proacl", @@ -15367,7 +16771,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15398,7 +16804,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15419,7 +16827,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15440,7 +16850,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15461,7 +16873,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -15482,7 +16896,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -15503,7 +16919,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -15524,7 +16942,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubname", @@ -15545,7 +16965,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubowner", @@ -15566,7 +16988,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "puballtables", @@ -15587,7 +17011,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubinsert", @@ -15608,7 +17034,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubupdate", @@ -15629,7 +17057,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubdelete", @@ -15650,7 +17080,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubtruncate", @@ -15671,7 +17103,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubviaroot", @@ -15692,7 +17126,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15723,7 +17159,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15744,7 +17182,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15765,7 +17205,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15786,7 +17228,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -15807,7 +17251,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -15828,7 +17274,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -15849,7 +17297,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pnpubid", @@ -15870,7 +17320,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pnnspid", @@ -15891,7 +17343,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15922,7 +17376,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15943,7 +17399,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15964,7 +17422,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15985,7 +17445,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16006,7 +17468,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16027,7 +17491,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -16048,7 +17514,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prpubid", @@ -16069,7 +17537,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prrelid", @@ -16090,7 +17560,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prqual", @@ -16111,7 +17583,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prattrs", @@ -16132,7 +17606,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16163,7 +17639,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -16184,7 +17662,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -16205,7 +17685,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnames", @@ -16226,7 +17708,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rowfilter", @@ -16247,7 +17731,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16278,7 +17764,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16299,7 +17787,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16320,7 +17810,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16341,7 +17833,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16362,7 +17856,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16383,7 +17879,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngtypid", @@ -16404,7 +17902,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubtype", @@ -16425,7 +17925,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngmultitypid", @@ -16446,7 +17948,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngcollation", @@ -16467,7 +17971,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubopc", @@ -16488,7 +17994,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngcanonical", @@ -16509,7 +18017,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubdiff", @@ -16530,7 +18040,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16561,7 +18073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16582,7 +18096,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16603,7 +18119,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16624,7 +18142,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16645,7 +18165,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16666,7 +18188,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roident", @@ -16687,7 +18211,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roname", @@ -16708,7 +18234,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16739,7 +18267,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_id", @@ -16760,7 +18290,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "remote_lsn", @@ -16781,7 +18313,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "local_lsn", @@ -16802,7 +18336,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16833,7 +18369,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "plugin", @@ -16854,7 +18392,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "slot_type", @@ -16875,7 +18415,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datoid", @@ -16896,7 +18438,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -16917,7 +18461,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temporary", @@ -16938,7 +18484,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active", @@ -16959,7 +18507,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active_pid", @@ -16980,7 +18530,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17001,7 +18553,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "catalog_xmin", @@ -17022,7 +18576,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "restart_lsn", @@ -17043,7 +18599,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confirmed_flush_lsn", @@ -17064,7 +18622,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_status", @@ -17085,7 +18645,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "safe_wal_size", @@ -17106,7 +18668,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "two_phase", @@ -17127,7 +18691,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17158,7 +18724,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17179,7 +18747,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17200,7 +18770,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -17221,7 +18793,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17242,7 +18816,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -17263,7 +18839,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -17284,7 +18862,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rulename", @@ -17305,7 +18885,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_class", @@ -17326,7 +18908,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_type", @@ -17347,7 +18931,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_enabled", @@ -17368,7 +18954,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_instead", @@ -17389,7 +18977,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_qual", @@ -17410,7 +19000,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_action", @@ -17431,7 +19023,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17462,7 +19056,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolsuper", @@ -17483,7 +19079,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolinherit", @@ -17504,7 +19102,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreaterole", @@ -17525,7 +19125,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreatedb", @@ -17546,7 +19148,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcanlogin", @@ -17567,7 +19171,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolreplication", @@ -17588,7 +19194,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconnlimit", @@ -17609,7 +19217,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolpassword", @@ -17630,7 +19240,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolvaliduntil", @@ -17651,7 +19263,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolbypassrls", @@ -17672,7 +19286,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconfig", @@ -17693,7 +19309,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -17714,7 +19332,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17745,7 +19365,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -17766,7 +19388,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rulename", @@ -17787,7 +19411,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -17808,7 +19434,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17839,7 +19467,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17860,7 +19490,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17881,7 +19513,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -17902,7 +19536,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17923,7 +19559,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -17944,7 +19582,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -17965,7 +19605,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -17986,7 +19628,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -18007,7 +19651,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -18028,7 +19674,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -18049,7 +19697,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18080,7 +19730,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -18101,7 +19753,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -18122,7 +19776,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objtype", @@ -18143,7 +19799,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objnamespace", @@ -18164,7 +19822,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objname", @@ -18185,7 +19845,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -18206,7 +19868,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -18227,7 +19891,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18258,7 +19924,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -18279,7 +19947,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -18300,7 +19970,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -18321,7 +19993,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -18342,7 +20016,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -18363,7 +20039,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqrelid", @@ -18384,7 +20062,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqtypid", @@ -18405,7 +20085,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqstart", @@ -18426,7 +20108,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqincrement", @@ -18447,7 +20131,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqmax", @@ -18468,7 +20154,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqmin", @@ -18489,7 +20177,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqcache", @@ -18510,7 +20200,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqcycle", @@ -18531,7 +20223,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18562,7 +20256,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequencename", @@ -18583,7 +20279,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequenceowner", @@ -18604,7 +20302,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -18625,7 +20325,9 @@ "catalog": "", "schema": "", "name": "regtype" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "start_value", @@ -18646,7 +20348,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "min_value", @@ -18667,7 +20371,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_value", @@ -18688,7 +20394,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "increment_by", @@ -18709,7 +20417,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cycle", @@ -18730,7 +20440,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cache_size", @@ -18751,7 +20463,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_value", @@ -18772,7 +20486,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18803,7 +20519,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -18824,7 +20542,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unit", @@ -18845,7 +20565,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "category", @@ -18866,7 +20588,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "short_desc", @@ -18887,7 +20611,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extra_desc", @@ -18908,7 +20634,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "context", @@ -18929,7 +20657,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vartype", @@ -18950,7 +20680,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "source", @@ -18971,7 +20703,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "min_val", @@ -18992,7 +20726,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_val", @@ -19013,7 +20749,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumvals", @@ -19034,7 +20772,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "boot_val", @@ -19055,7 +20795,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reset_val", @@ -19076,7 +20818,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourcefile", @@ -19097,7 +20841,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourceline", @@ -19118,7 +20864,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pending_restart", @@ -19139,7 +20887,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19170,7 +20920,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -19191,7 +20943,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usecreatedb", @@ -19212,7 +20966,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesuper", @@ -19233,7 +20989,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "userepl", @@ -19254,7 +21012,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usebypassrls", @@ -19275,7 +21035,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "passwd", @@ -19296,7 +21058,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "valuntil", @@ -19317,7 +21081,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "useconfig", @@ -19338,7 +21104,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19369,7 +21137,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19390,7 +21160,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19411,7 +21183,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -19432,7 +21206,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -19453,7 +21229,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -19474,7 +21252,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dbid", @@ -19495,7 +21275,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -19516,7 +21298,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -19537,7 +21321,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -19558,7 +21344,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refclassid", @@ -19579,7 +21367,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjid", @@ -19600,7 +21390,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deptype", @@ -19621,7 +21413,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19652,7 +21446,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19673,7 +21469,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19694,7 +21492,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -19715,7 +21515,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -19736,7 +21538,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -19757,7 +21561,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -19778,7 +21584,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -19799,7 +21607,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "description", @@ -19820,7 +21630,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19851,7 +21663,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "off", @@ -19872,7 +21686,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "size", @@ -19893,7 +21709,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "allocated_size", @@ -19914,7 +21732,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19945,7 +21765,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19966,7 +21788,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19987,7 +21811,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -20008,7 +21834,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -20029,7 +21857,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -20050,7 +21880,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -20071,7 +21903,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -20092,7 +21926,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -20113,7 +21949,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -20134,7 +21972,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20165,7 +22005,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -20186,7 +22028,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -20207,7 +22051,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "leader_pid", @@ -20228,7 +22074,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -20249,7 +22097,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -20270,7 +22120,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "application_name", @@ -20291,7 +22143,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_addr", @@ -20312,7 +22166,9 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_hostname", @@ -20333,7 +22189,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_port", @@ -20354,7 +22212,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_start", @@ -20375,7 +22235,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_start", @@ -20396,7 +22258,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query_start", @@ -20417,7 +22281,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state_change", @@ -20438,7 +22304,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wait_event_type", @@ -20459,7 +22327,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wait_event", @@ -20480,7 +22350,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state", @@ -20501,7 +22373,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xid", @@ -20522,7 +22396,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xmin", @@ -20543,7 +22419,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query_id", @@ -20564,7 +22442,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query", @@ -20585,7 +22465,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_type", @@ -20606,7 +22488,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20637,7 +22521,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -20658,7 +22544,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -20679,7 +22567,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -20700,7 +22590,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -20721,7 +22613,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -20742,7 +22636,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -20763,7 +22659,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -20784,7 +22682,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20815,7 +22715,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -20836,7 +22738,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -20857,7 +22761,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -20878,7 +22784,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -20899,7 +22807,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -20920,7 +22830,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -20941,7 +22853,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -20962,7 +22876,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -20983,7 +22899,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -21004,7 +22922,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -21025,7 +22945,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -21046,7 +22968,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -21067,7 +22991,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -21088,7 +23014,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -21109,7 +23037,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -21130,7 +23060,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -21151,7 +23083,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -21172,7 +23106,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -21193,7 +23129,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -21214,7 +23152,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -21235,7 +23175,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -21256,7 +23198,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -21277,7 +23221,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21308,7 +23254,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_archived_wal", @@ -21329,7 +23277,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_archived_time", @@ -21350,7 +23300,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "failed_count", @@ -21371,7 +23323,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_failed_wal", @@ -21392,7 +23346,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_failed_time", @@ -21413,7 +23369,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -21434,7 +23392,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21465,7 +23425,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoints_req", @@ -21486,7 +23448,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoint_write_time", @@ -21507,7 +23471,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoint_sync_time", @@ -21528,7 +23494,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_checkpoint", @@ -21549,7 +23517,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_clean", @@ -21570,7 +23540,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maxwritten_clean", @@ -21591,7 +23563,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_backend", @@ -21612,7 +23586,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_backend_fsync", @@ -21633,7 +23609,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_alloc", @@ -21654,7 +23632,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -21675,7 +23655,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21706,7 +23688,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -21727,7 +23711,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numbackends", @@ -21748,7 +23734,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_commit", @@ -21769,7 +23757,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_rollback", @@ -21790,7 +23780,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -21811,7 +23803,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -21832,7 +23826,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_returned", @@ -21853,7 +23849,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_fetched", @@ -21874,7 +23872,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_inserted", @@ -21895,7 +23895,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_updated", @@ -21916,7 +23918,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_deleted", @@ -21937,7 +23941,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conflicts", @@ -21958,7 +23964,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temp_files", @@ -21979,7 +23987,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temp_bytes", @@ -22000,7 +24010,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deadlocks", @@ -22021,7 +24033,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checksum_failures", @@ -22042,7 +24056,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checksum_last_failure", @@ -22063,7 +24079,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blk_read_time", @@ -22084,7 +24102,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blk_write_time", @@ -22105,7 +24125,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "session_time", @@ -22126,7 +24148,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active_time", @@ -22147,7 +24171,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idle_in_transaction_time", @@ -22168,7 +24194,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions", @@ -22189,7 +24217,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_abandoned", @@ -22210,7 +24240,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_fatal", @@ -22231,7 +24263,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_killed", @@ -22252,7 +24286,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -22273,7 +24309,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22304,7 +24342,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22325,7 +24365,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_tablespace", @@ -22346,7 +24388,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_lock", @@ -22367,7 +24411,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_snapshot", @@ -22388,7 +24434,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_bufferpin", @@ -22409,7 +24457,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_deadlock", @@ -22430,7 +24480,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22461,7 +24513,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "gss_authenticated", @@ -22482,7 +24536,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "principal", @@ -22503,7 +24559,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "encrypted", @@ -22524,7 +24582,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22555,7 +24615,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -22576,7 +24638,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22597,7 +24661,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -22618,7 +24684,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -22639,7 +24707,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sample_blks_total", @@ -22660,7 +24730,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sample_blks_scanned", @@ -22681,7 +24753,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ext_stats_total", @@ -22702,7 +24776,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ext_stats_computed", @@ -22723,7 +24799,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "child_tables_total", @@ -22744,7 +24822,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "child_tables_done", @@ -22765,7 +24845,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "current_child_table_relid", @@ -22786,7 +24868,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22817,7 +24901,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -22838,7 +24924,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backup_total", @@ -22859,7 +24947,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backup_streamed", @@ -22880,7 +24970,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespaces_total", @@ -22901,7 +24993,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespaces_streamed", @@ -22922,7 +25016,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22953,7 +25049,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -22974,7 +25072,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22995,7 +25095,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23016,7 +25118,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -23037,7 +25141,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23058,7 +25164,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cluster_index_relid", @@ -23079,7 +25187,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_tuples_scanned", @@ -23100,7 +25210,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_tuples_written", @@ -23121,7 +25233,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_total", @@ -23142,7 +25256,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_scanned", @@ -23163,7 +25279,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_rebuild_count", @@ -23184,7 +25302,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23215,7 +25335,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23236,7 +25358,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23257,7 +25381,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23278,7 +25404,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -23299,7 +25427,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type", @@ -23320,7 +25450,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bytes_processed", @@ -23341,7 +25473,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bytes_total", @@ -23362,7 +25496,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_processed", @@ -23383,7 +25519,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_excluded", @@ -23404,7 +25542,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23435,7 +25575,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23456,7 +25598,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23477,7 +25621,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23498,7 +25644,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_relid", @@ -23519,7 +25667,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -23540,7 +25690,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23561,7 +25713,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lockers_total", @@ -23582,7 +25736,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lockers_done", @@ -23603,7 +25759,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "current_locker_pid", @@ -23624,7 +25782,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blocks_total", @@ -23645,7 +25805,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blocks_done", @@ -23666,7 +25828,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_total", @@ -23687,7 +25851,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_done", @@ -23708,7 +25874,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partitions_total", @@ -23729,7 +25897,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partitions_done", @@ -23750,7 +25920,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23781,7 +25953,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23802,7 +25976,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23823,7 +25999,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23844,7 +26022,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23865,7 +26045,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_total", @@ -23886,7 +26068,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_scanned", @@ -23907,7 +26091,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_vacuumed", @@ -23928,7 +26114,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_vacuum_count", @@ -23949,7 +26137,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_dead_tuples", @@ -23970,7 +26160,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "num_dead_tuples", @@ -23991,7 +26183,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24022,7 +26216,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prefetch", @@ -24043,7 +26239,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hit", @@ -24064,7 +26262,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_init", @@ -24085,7 +26285,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_new", @@ -24106,7 +26308,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_fpw", @@ -24127,7 +26331,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_rep", @@ -24148,7 +26354,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_distance", @@ -24169,7 +26377,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "block_distance", @@ -24190,7 +26400,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "io_depth", @@ -24211,7 +26423,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24242,7 +26456,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -24263,7 +26479,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -24284,7 +26502,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "application_name", @@ -24305,7 +26525,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_addr", @@ -24326,7 +26548,9 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_hostname", @@ -24347,7 +26571,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_port", @@ -24368,7 +26594,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_start", @@ -24389,7 +26617,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xmin", @@ -24410,7 +26640,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state", @@ -24431,7 +26663,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sent_lsn", @@ -24452,7 +26686,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "write_lsn", @@ -24473,7 +26709,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flush_lsn", @@ -24494,7 +26732,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "replay_lsn", @@ -24515,7 +26755,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "write_lag", @@ -24536,7 +26778,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flush_lag", @@ -24557,7 +26801,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "replay_lag", @@ -24578,7 +26824,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_priority", @@ -24599,7 +26847,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_state", @@ -24620,7 +26870,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reply_time", @@ -24641,7 +26893,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24672,7 +26926,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_txns", @@ -24693,7 +26949,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_count", @@ -24714,7 +26972,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_bytes", @@ -24735,7 +26995,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_txns", @@ -24756,7 +27018,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_count", @@ -24777,7 +27041,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_bytes", @@ -24798,7 +27064,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_txns", @@ -24819,7 +27087,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_bytes", @@ -24840,7 +27110,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -24861,7 +27133,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24892,7 +27166,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_zeroed", @@ -24913,7 +27189,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -24934,7 +27212,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -24955,7 +27235,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_written", @@ -24976,7 +27258,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_exists", @@ -24997,7 +27281,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flushes", @@ -25018,7 +27304,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "truncates", @@ -25039,7 +27327,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -25060,7 +27350,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25091,7 +27383,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ssl", @@ -25112,7 +27406,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "version", @@ -25133,7 +27429,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cipher", @@ -25154,7 +27452,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bits", @@ -25175,7 +27475,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_dn", @@ -25196,7 +27498,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_serial", @@ -25217,7 +27521,9 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "issuer_dn", @@ -25238,7 +27544,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25269,7 +27577,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -25290,7 +27600,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -25311,7 +27623,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -25332,7 +27646,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "received_lsn", @@ -25353,7 +27669,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_send_time", @@ -25374,7 +27692,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_receipt_time", @@ -25395,7 +27715,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_lsn", @@ -25416,7 +27738,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_time", @@ -25437,7 +27761,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25468,7 +27794,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -25489,7 +27817,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "apply_error_count", @@ -25510,7 +27840,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_error_count", @@ -25531,7 +27863,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -25552,7 +27886,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25583,7 +27919,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -25604,7 +27942,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -25625,7 +27965,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -25646,7 +27988,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -25667,7 +28011,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -25688,7 +28034,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -25709,7 +28057,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -25730,7 +28080,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25761,7 +28113,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -25782,7 +28136,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -25803,7 +28159,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -25824,7 +28182,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -25845,7 +28205,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -25866,7 +28228,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -25887,7 +28251,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -25908,7 +28274,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -25929,7 +28297,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -25950,7 +28320,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -25971,7 +28343,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -25992,7 +28366,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -26013,7 +28389,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -26034,7 +28412,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -26055,7 +28435,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -26076,7 +28458,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -26097,7 +28481,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -26118,7 +28504,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -26139,7 +28527,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -26160,7 +28550,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -26181,7 +28573,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -26202,7 +28596,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -26223,7 +28619,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26254,7 +28652,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26275,7 +28675,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "funcname", @@ -26296,7 +28698,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "calls", @@ -26317,7 +28721,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_time", @@ -26338,7 +28744,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_time", @@ -26359,7 +28767,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26390,7 +28800,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -26411,7 +28823,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26432,7 +28846,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -26453,7 +28869,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -26474,7 +28892,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -26495,7 +28915,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -26516,7 +28938,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -26537,7 +28961,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26568,7 +28994,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26589,7 +29017,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -26610,7 +29040,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -26631,7 +29063,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -26652,7 +29086,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -26673,7 +29109,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -26694,7 +29132,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -26715,7 +29155,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -26736,7 +29178,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -26757,7 +29201,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -26778,7 +29224,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -26799,7 +29247,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -26820,7 +29270,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -26841,7 +29293,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -26862,7 +29316,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -26883,7 +29339,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -26904,7 +29362,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -26925,7 +29385,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -26946,7 +29408,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -26967,7 +29431,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -26988,7 +29454,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -27009,7 +29477,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -27030,7 +29500,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27061,7 +29533,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_fpi", @@ -27082,7 +29556,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_bytes", @@ -27103,7 +29579,9 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_buffers_full", @@ -27124,7 +29602,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_write", @@ -27145,7 +29625,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_sync", @@ -27166,7 +29648,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_write_time", @@ -27187,7 +29671,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_sync_time", @@ -27208,7 +29694,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -27229,7 +29717,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27260,7 +29750,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "status", @@ -27281,7 +29773,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "receive_start_lsn", @@ -27302,7 +29796,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "receive_start_tli", @@ -27323,7 +29819,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "written_lsn", @@ -27344,7 +29842,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flushed_lsn", @@ -27365,7 +29865,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "received_tli", @@ -27386,7 +29888,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_send_time", @@ -27407,7 +29911,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_receipt_time", @@ -27428,7 +29934,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_lsn", @@ -27449,7 +29957,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_time", @@ -27470,7 +29980,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "slot_name", @@ -27491,7 +30003,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sender_host", @@ -27512,7 +30026,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sender_port", @@ -27533,7 +30049,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conninfo", @@ -27554,7 +30072,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27585,7 +30105,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27606,7 +30128,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -27627,7 +30151,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -27648,7 +30174,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -27669,7 +30197,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27690,7 +30220,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27711,7 +30243,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -27732,7 +30266,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -27753,7 +30289,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -27774,7 +30312,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -27795,7 +30335,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27826,7 +30368,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27847,7 +30391,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -27868,7 +30414,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -27889,7 +30437,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -27910,7 +30460,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27931,7 +30483,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27952,7 +30506,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -27973,7 +30529,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -27994,7 +30552,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -28015,7 +30575,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -28036,7 +30598,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28067,7 +30631,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28088,7 +30654,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "funcname", @@ -28109,7 +30677,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "calls", @@ -28130,7 +30700,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_time", @@ -28151,7 +30723,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_time", @@ -28172,7 +30746,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28203,7 +30779,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28224,7 +30802,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28245,7 +30825,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -28266,7 +30848,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -28287,7 +30871,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -28308,7 +30894,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -28329,7 +30917,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -28350,7 +30940,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -28371,7 +30963,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -28392,7 +30986,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -28413,7 +31009,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28444,7 +31042,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -28465,7 +31065,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28486,7 +31088,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28507,7 +31111,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -28528,7 +31134,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -28549,7 +31157,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -28570,7 +31180,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28601,7 +31213,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28622,7 +31236,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28643,7 +31259,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -28664,7 +31282,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -28685,7 +31305,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28716,7 +31338,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28737,7 +31361,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28758,7 +31384,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -28779,7 +31407,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -28800,7 +31430,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -28821,7 +31453,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -28842,7 +31476,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -28863,7 +31499,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -28884,7 +31522,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -28905,7 +31545,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -28926,7 +31568,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28957,7 +31601,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -28978,7 +31624,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28999,7 +31647,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29020,7 +31670,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -29041,7 +31693,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29062,7 +31716,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29083,7 +31739,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29114,7 +31772,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29135,7 +31795,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29156,7 +31818,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -29177,7 +31841,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -29198,7 +31864,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29229,7 +31897,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29250,7 +31920,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29271,7 +31943,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -29292,7 +31966,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -29313,7 +31989,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29334,7 +32012,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29355,7 +32035,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -29376,7 +32058,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -29397,7 +32081,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -29418,7 +32104,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -29439,7 +32127,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29470,7 +32160,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -29491,7 +32183,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29512,7 +32206,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29533,7 +32229,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -29554,7 +32252,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29575,7 +32275,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29596,7 +32298,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29627,7 +32331,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29648,7 +32354,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29669,7 +32377,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -29690,7 +32400,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -29711,7 +32423,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29742,7 +32456,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29763,7 +32479,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29784,7 +32502,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -29805,7 +32525,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -29826,7 +32548,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29847,7 +32571,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29868,7 +32594,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -29889,7 +32617,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -29910,7 +32640,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -29931,7 +32663,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -29952,7 +32686,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29983,7 +32719,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -30004,7 +32742,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -30025,7 +32765,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -30046,7 +32788,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -30067,7 +32811,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -30088,7 +32834,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "starelid", @@ -30109,7 +32857,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staattnum", @@ -30130,7 +32880,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stainherit", @@ -30151,7 +32903,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanullfrac", @@ -30172,7 +32926,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stawidth", @@ -30193,7 +32949,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stadistinct", @@ -30214,7 +32972,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind1", @@ -30235,7 +32995,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind2", @@ -30256,7 +33018,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind3", @@ -30277,7 +33041,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind4", @@ -30298,7 +33064,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind5", @@ -30319,7 +33087,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop1", @@ -30340,7 +33110,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop2", @@ -30361,7 +33133,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop3", @@ -30382,7 +33156,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop4", @@ -30403,7 +33179,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop5", @@ -30424,7 +33202,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll1", @@ -30445,7 +33225,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll2", @@ -30466,7 +33248,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll3", @@ -30487,7 +33271,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll4", @@ -30508,7 +33294,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll5", @@ -30529,7 +33317,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers1", @@ -30550,7 +33340,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers2", @@ -30571,7 +33363,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers3", @@ -30592,7 +33386,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers4", @@ -30613,7 +33409,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers5", @@ -30634,7 +33432,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues1", @@ -30655,7 +33455,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues2", @@ -30676,7 +33478,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues3", @@ -30697,7 +33501,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues4", @@ -30718,7 +33524,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues5", @@ -30739,7 +33547,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30770,7 +33580,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -30791,7 +33603,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -30812,7 +33626,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -30833,7 +33649,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -30854,7 +33672,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -30875,7 +33695,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -30896,7 +33718,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxrelid", @@ -30917,7 +33741,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxname", @@ -30938,7 +33764,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxnamespace", @@ -30959,7 +33787,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxowner", @@ -30980,7 +33810,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxstattarget", @@ -31001,7 +33833,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxkeys", @@ -31022,7 +33856,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxkind", @@ -31043,7 +33879,9 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxexprs", @@ -31064,7 +33902,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31095,7 +33935,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -31116,7 +33958,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -31137,7 +33981,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -31158,7 +34004,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -31179,7 +34027,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -31200,7 +34050,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxoid", @@ -31221,7 +34073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdinherit", @@ -31242,7 +34096,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdndistinct", @@ -31263,7 +34119,9 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxddependencies", @@ -31284,7 +34142,9 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdmcv", @@ -31305,7 +34165,9 @@ "catalog": "", "schema": "", "name": "pg_mcv_list" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdexpr", @@ -31326,7 +34188,9 @@ "catalog": "", "schema": "", "name": "_pg_statistic" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31357,7 +34221,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -31378,7 +34244,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -31399,7 +34267,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -31420,7 +34290,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "null_frac", @@ -31441,7 +34313,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "avg_width", @@ -31462,7 +34336,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -31483,7 +34359,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -31504,7 +34382,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -31525,7 +34405,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "histogram_bounds", @@ -31546,7 +34428,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "correlation", @@ -31567,7 +34451,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elems", @@ -31588,7 +34474,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elem_freqs", @@ -31609,7 +34497,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "elem_count_histogram", @@ -31630,7 +34520,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31661,7 +34553,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -31682,7 +34576,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_schemaname", @@ -31703,7 +34599,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_name", @@ -31724,7 +34622,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_owner", @@ -31745,7 +34645,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnames", @@ -31766,7 +34668,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "exprs", @@ -31787,7 +34691,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "kinds", @@ -31808,7 +34714,9 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -31829,7 +34737,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -31850,7 +34760,9 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dependencies", @@ -31871,7 +34783,9 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -31892,7 +34806,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_val_nulls", @@ -31913,7 +34829,9 @@ "catalog": "", "schema": "", "name": "_bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -31934,7 +34852,9 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_base_freqs", @@ -31955,7 +34875,9 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31986,7 +34908,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -32007,7 +34931,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_schemaname", @@ -32028,7 +34954,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_name", @@ -32049,7 +34977,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_owner", @@ -32070,7 +35000,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "expr", @@ -32091,7 +35023,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -32112,7 +35046,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "null_frac", @@ -32133,7 +35069,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "avg_width", @@ -32154,7 +35092,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -32175,7 +35115,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -32196,7 +35138,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -32217,7 +35161,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "histogram_bounds", @@ -32238,7 +35184,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "correlation", @@ -32259,7 +35207,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elems", @@ -32280,7 +35230,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elem_freqs", @@ -32301,7 +35253,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "elem_count_histogram", @@ -32322,7 +35276,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32353,7 +35309,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -32374,7 +35332,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -32395,7 +35355,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -32416,7 +35378,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -32437,7 +35401,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -32458,7 +35424,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -32479,7 +35447,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subdbid", @@ -32500,7 +35470,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subskiplsn", @@ -32521,7 +35493,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -32542,7 +35516,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subowner", @@ -32563,7 +35539,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subenabled", @@ -32584,7 +35562,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subbinary", @@ -32605,7 +35585,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "substream", @@ -32626,7 +35608,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subtwophasestate", @@ -32647,7 +35631,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subdisableonerr", @@ -32668,7 +35654,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subconninfo", @@ -32689,7 +35677,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subslotname", @@ -32710,7 +35700,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subsynccommit", @@ -32731,7 +35723,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subpublications", @@ -32752,7 +35746,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32783,7 +35779,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -32804,7 +35802,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -32825,7 +35825,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -32846,7 +35848,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -32867,7 +35871,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -32888,7 +35894,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsubid", @@ -32909,7 +35917,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srrelid", @@ -32930,7 +35940,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsubstate", @@ -32951,7 +35963,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsublsn", @@ -32972,7 +35986,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33003,7 +36019,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -33024,7 +36042,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tableowner", @@ -33045,7 +36065,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -33066,7 +36088,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasindexes", @@ -33087,7 +36111,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasrules", @@ -33108,7 +36134,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hastriggers", @@ -33129,7 +36157,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rowsecurity", @@ -33150,7 +36180,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33181,7 +36213,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33202,7 +36236,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33223,7 +36259,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33244,7 +36282,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33265,7 +36305,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33286,7 +36328,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33307,7 +36351,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcname", @@ -33328,7 +36374,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcowner", @@ -33349,7 +36397,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcacl", @@ -33370,7 +36420,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcoptions", @@ -33391,7 +36443,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33422,7 +36476,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "utc_offset", @@ -33443,7 +36499,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_dst", @@ -33464,7 +36522,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33495,7 +36555,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "abbrev", @@ -33516,7 +36578,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "utc_offset", @@ -33537,7 +36601,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_dst", @@ -33558,7 +36624,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33589,7 +36657,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33610,7 +36680,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33631,7 +36703,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33652,7 +36726,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33673,7 +36749,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33694,7 +36772,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33715,7 +36795,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trftype", @@ -33736,7 +36818,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trflang", @@ -33757,7 +36841,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trffromsql", @@ -33778,7 +36864,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trftosql", @@ -33799,7 +36887,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33830,7 +36920,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33851,7 +36943,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33872,7 +36966,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33893,7 +36989,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33914,7 +37012,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33935,7 +37035,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33956,7 +37058,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgrelid", @@ -33977,7 +37081,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgparentid", @@ -33998,7 +37104,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgname", @@ -34019,7 +37127,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgfoid", @@ -34040,7 +37150,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgtype", @@ -34061,7 +37173,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgenabled", @@ -34082,7 +37196,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgisinternal", @@ -34103,7 +37219,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstrrelid", @@ -34124,7 +37242,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstrindid", @@ -34145,7 +37265,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstraint", @@ -34166,7 +37288,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgdeferrable", @@ -34187,7 +37311,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tginitdeferred", @@ -34208,7 +37334,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgnargs", @@ -34229,7 +37357,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgattr", @@ -34250,7 +37380,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgargs", @@ -34271,7 +37403,9 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgqual", @@ -34292,7 +37426,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgoldtable", @@ -34313,7 +37449,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgnewtable", @@ -34334,7 +37472,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34365,7 +37505,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34386,7 +37528,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34407,7 +37551,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34428,7 +37574,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34449,7 +37597,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34470,7 +37620,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -34491,7 +37643,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgname", @@ -34512,7 +37666,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgnamespace", @@ -34533,7 +37689,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgowner", @@ -34554,7 +37712,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgparser", @@ -34575,7 +37735,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34606,7 +37768,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34627,7 +37791,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34648,7 +37814,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34669,7 +37837,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34690,7 +37860,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34711,7 +37883,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapcfg", @@ -34732,7 +37906,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maptokentype", @@ -34753,7 +37929,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapseqno", @@ -34774,7 +37952,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapdict", @@ -34795,7 +37975,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34826,7 +38008,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34847,7 +38031,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34868,7 +38054,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34889,7 +38077,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34910,7 +38100,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34931,7 +38123,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -34952,7 +38146,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictname", @@ -34973,7 +38169,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictnamespace", @@ -34994,7 +38192,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictowner", @@ -35015,7 +38215,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dicttemplate", @@ -35036,7 +38238,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictinitoption", @@ -35057,7 +38261,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35088,7 +38294,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35109,7 +38317,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35130,7 +38340,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35151,7 +38363,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35172,7 +38386,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35193,7 +38409,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35214,7 +38432,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsname", @@ -35235,7 +38455,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsnamespace", @@ -35256,7 +38478,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsstart", @@ -35277,7 +38501,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prstoken", @@ -35298,7 +38524,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsend", @@ -35319,7 +38547,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsheadline", @@ -35340,7 +38570,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prslextype", @@ -35361,7 +38593,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35392,7 +38626,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35413,7 +38649,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35434,7 +38672,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35455,7 +38695,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35476,7 +38718,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35497,7 +38741,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35518,7 +38764,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplname", @@ -35539,7 +38787,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplnamespace", @@ -35560,7 +38810,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplinit", @@ -35581,7 +38833,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmpllexize", @@ -35602,7 +38856,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35633,7 +38889,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35654,7 +38912,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35675,7 +38935,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35696,7 +38958,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35717,7 +38981,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35738,7 +39004,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35759,7 +39027,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typname", @@ -35780,7 +39050,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typnamespace", @@ -35801,7 +39073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typowner", @@ -35822,7 +39096,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typlen", @@ -35843,7 +39119,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typbyval", @@ -35864,7 +39142,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typtype", @@ -35885,7 +39165,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typcategory", @@ -35906,7 +39188,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typispreferred", @@ -35927,7 +39211,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typisdefined", @@ -35948,7 +39234,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdelim", @@ -35969,7 +39257,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typrelid", @@ -35990,7 +39280,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typsubscript", @@ -36011,7 +39303,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typelem", @@ -36032,7 +39326,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typarray", @@ -36053,7 +39349,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typinput", @@ -36074,7 +39372,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typoutput", @@ -36095,7 +39395,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typreceive", @@ -36116,7 +39418,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typsend", @@ -36137,7 +39441,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typmodin", @@ -36158,7 +39464,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typmodout", @@ -36179,7 +39487,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typanalyze", @@ -36200,7 +39510,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typalign", @@ -36221,7 +39533,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typstorage", @@ -36242,7 +39556,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typnotnull", @@ -36263,7 +39579,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typbasetype", @@ -36284,7 +39602,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typtypmod", @@ -36305,7 +39625,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typndims", @@ -36326,7 +39648,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typcollation", @@ -36347,7 +39671,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdefaultbin", @@ -36368,7 +39694,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdefault", @@ -36389,7 +39717,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typacl", @@ -36410,7 +39740,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36441,7 +39773,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -36462,7 +39796,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usecreatedb", @@ -36483,7 +39819,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesuper", @@ -36504,7 +39842,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "userepl", @@ -36525,7 +39865,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usebypassrls", @@ -36546,7 +39888,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "passwd", @@ -36567,7 +39911,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "valuntil", @@ -36588,7 +39934,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "useconfig", @@ -36609,7 +39957,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36640,7 +39990,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -36661,7 +40013,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -36682,7 +40036,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -36703,7 +40059,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -36724,7 +40082,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -36745,7 +40105,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -36766,7 +40128,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -36787,7 +40151,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umserver", @@ -36808,7 +40174,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -36829,7 +40197,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36860,7 +40230,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvid", @@ -36881,7 +40253,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvname", @@ -36902,7 +40276,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -36923,7 +40299,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -36944,7 +40322,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -36965,7 +40345,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36996,7 +40378,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "viewname", @@ -37017,7 +40401,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "viewowner", @@ -37038,7 +40424,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -37059,7 +40447,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37098,7 +40488,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwowner", @@ -37119,7 +40511,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwoptions", @@ -37140,7 +40534,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -37161,7 +40557,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -37182,7 +40580,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37203,7 +40603,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_language", @@ -37224,7 +40626,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37255,7 +40659,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvoptions", @@ -37276,7 +40682,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -37297,7 +40705,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -37318,7 +40728,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -37339,7 +40751,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -37360,7 +40774,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_type", @@ -37381,7 +40797,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_version", @@ -37402,7 +40820,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37423,7 +40843,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37454,7 +40876,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -37475,7 +40899,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -37496,7 +40922,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attfdwoptions", @@ -37517,7 +40945,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37548,7 +40978,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -37569,7 +41001,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -37590,7 +41024,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftoptions", @@ -37611,7 +41047,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -37632,7 +41070,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -37653,7 +41093,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37674,7 +41116,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37705,7 +41149,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -37726,7 +41172,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -37747,7 +41195,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37768,7 +41218,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -37789,7 +41241,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -37810,7 +41264,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvowner", @@ -37831,7 +41287,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37862,7 +41320,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "role_name", @@ -37883,7 +41343,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -37904,7 +41366,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37935,7 +41399,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "role_name", @@ -37956,7 +41422,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -37977,7 +41445,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38008,7 +41478,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -38029,7 +41501,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -38050,7 +41524,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_name", @@ -38071,7 +41547,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -38092,7 +41570,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_default", @@ -38113,7 +41593,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_nullable", @@ -38134,7 +41616,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -38155,7 +41639,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -38176,7 +41662,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -38197,7 +41685,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -38218,7 +41708,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -38239,7 +41731,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -38260,7 +41754,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -38281,7 +41777,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -38302,7 +41800,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -38323,7 +41823,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -38344,7 +41846,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -38365,7 +41869,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -38386,7 +41892,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -38407,7 +41915,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -38428,7 +41938,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -38449,7 +41961,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_catalog", @@ -38470,7 +41984,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_schema", @@ -38491,7 +42007,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_name", @@ -38512,7 +42030,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -38533,7 +42053,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -38554,7 +42076,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -38575,7 +42099,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -38596,7 +42122,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -38617,7 +42145,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_derived_reference_attribute", @@ -38638,7 +42168,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38669,7 +42201,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -38690,7 +42224,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -38711,7 +42247,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_repertoire", @@ -38732,7 +42270,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "form_of_use", @@ -38753,7 +42293,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_catalog", @@ -38774,7 +42316,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_schema", @@ -38795,7 +42339,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_name", @@ -38816,7 +42362,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38847,7 +42395,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -38868,7 +42418,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -38889,7 +42441,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -38910,7 +42464,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -38931,7 +42487,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -38952,7 +42510,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38983,7 +42543,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -39004,7 +42566,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -39025,7 +42589,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "check_clause", @@ -39046,7 +42612,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39077,7 +42645,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -39098,7 +42668,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -39119,7 +42691,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -39140,7 +42714,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -39161,7 +42737,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -39182,7 +42760,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39213,7 +42793,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -39234,7 +42816,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -39255,7 +42839,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pad_attribute", @@ -39276,7 +42862,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39307,7 +42895,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39328,7 +42918,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39349,7 +42941,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39370,7 +42964,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dependent_column", @@ -39391,7 +42987,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39422,7 +43020,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -39443,7 +43043,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -39464,7 +43066,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -39485,7 +43089,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39506,7 +43112,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39527,7 +43135,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39548,7 +43158,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39579,7 +43191,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39600,7 +43214,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39621,7 +43237,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39642,7 +43260,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -39663,7 +43283,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -39684,7 +43306,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39715,7 +43339,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -39736,7 +43362,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -39757,7 +43385,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39778,7 +43408,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39799,7 +43431,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39820,7 +43454,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -39841,7 +43477,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -39862,7 +43500,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39893,7 +43533,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -39914,7 +43556,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -39935,7 +43579,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -39956,7 +43602,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39977,7 +43625,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39998,7 +43648,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -40019,7 +43671,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40050,7 +43704,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -40071,7 +43727,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -40092,7 +43750,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -40113,7 +43773,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -40134,7 +43796,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_default", @@ -40155,7 +43819,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_nullable", @@ -40176,7 +43842,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -40197,7 +43865,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -40218,7 +43888,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -40239,7 +43911,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -40260,7 +43934,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -40281,7 +43957,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -40302,7 +43980,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -40323,7 +44003,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -40344,7 +44026,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -40365,7 +44049,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -40386,7 +44072,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -40407,7 +44095,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -40428,7 +44118,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -40449,7 +44141,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -40470,7 +44164,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -40491,7 +44187,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -40512,7 +44210,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -40533,7 +44233,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -40554,7 +44256,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -40575,7 +44279,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -40596,7 +44302,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -40617,7 +44325,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -40638,7 +44348,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -40659,7 +44371,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -40680,7 +44394,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -40701,7 +44417,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -40722,7 +44440,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_self_referencing", @@ -40743,7 +44463,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_identity", @@ -40764,7 +44486,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_generation", @@ -40785,7 +44509,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_start", @@ -40806,7 +44532,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_increment", @@ -40827,7 +44555,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_maximum", @@ -40848,7 +44578,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_minimum", @@ -40869,7 +44601,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_cycle", @@ -40890,7 +44624,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_generated", @@ -40911,7 +44647,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "generation_expression", @@ -40932,7 +44670,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_updatable", @@ -40953,7 +44693,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40984,7 +44726,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41005,7 +44749,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41026,7 +44772,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41047,7 +44795,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_catalog", @@ -41068,7 +44818,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -41089,7 +44841,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -41110,7 +44864,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41141,7 +44897,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41162,7 +44920,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41183,7 +44943,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_catalog", @@ -41204,7 +44966,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -41225,7 +44989,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -41246,7 +45012,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41277,7 +45045,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -41298,7 +45068,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -41319,7 +45091,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -41340,7 +45114,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -41361,7 +45137,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41392,7 +45170,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -41413,7 +45193,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -41434,7 +45216,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -41455,7 +45239,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41476,7 +45262,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41497,7 +45285,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deferrable", @@ -41518,7 +45308,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initially_deferred", @@ -41539,7 +45331,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41570,7 +45364,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -41591,7 +45387,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -41612,7 +45410,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -41633,7 +45433,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41654,7 +45456,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41675,7 +45479,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41706,7 +45512,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41727,7 +45535,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41748,7 +45558,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -41769,7 +45581,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -41790,7 +45604,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -41811,7 +45627,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -41832,7 +45650,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -41853,7 +45673,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -41874,7 +45696,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -41895,7 +45719,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -41916,7 +45742,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -41937,7 +45765,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -41958,7 +45788,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -41979,7 +45811,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -42000,7 +45834,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -42021,7 +45857,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -42042,7 +45880,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -42063,7 +45903,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_default", @@ -42084,7 +45926,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -42105,7 +45949,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -42126,7 +45972,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -42147,7 +45995,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -42168,7 +46018,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -42189,7 +46041,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -42210,7 +46064,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -42231,7 +46087,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -42252,7 +46110,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42283,7 +46143,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -42304,7 +46166,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -42325,7 +46189,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -42346,7 +46212,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collection_type_identifier", @@ -42367,7 +46235,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -42388,7 +46258,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -42409,7 +46281,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -42430,7 +46304,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -42451,7 +46327,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -42472,7 +46350,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -42493,7 +46373,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -42514,7 +46396,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -42535,7 +46419,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -42556,7 +46442,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -42577,7 +46465,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -42598,7 +46488,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -42619,7 +46511,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -42640,7 +46534,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -42661,7 +46557,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -42682,7 +46580,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_default", @@ -42703,7 +46603,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -42724,7 +46626,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -42745,7 +46649,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -42766,7 +46672,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -42787,7 +46695,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -42808,7 +46718,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -42829,7 +46741,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -42850,7 +46764,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -42871,7 +46787,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42902,7 +46820,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42933,7 +46853,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -42954,7 +46876,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -42975,7 +46899,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -42996,7 +46922,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43027,7 +46955,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -43048,7 +46978,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -43069,7 +47001,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "library_name", @@ -43090,7 +47024,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_language", @@ -43111,7 +47047,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43142,7 +47080,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -43163,7 +47103,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -43184,7 +47126,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -43205,7 +47149,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43236,7 +47182,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -43257,7 +47205,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -43278,7 +47228,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -43299,7 +47251,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_type", @@ -43320,7 +47274,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_version", @@ -43341,7 +47297,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -43362,7 +47320,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43393,7 +47353,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -43414,7 +47376,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -43435,7 +47399,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -43456,7 +47422,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -43477,7 +47445,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43508,7 +47478,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -43529,7 +47501,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -43550,7 +47524,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -43571,7 +47547,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -43592,7 +47570,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43623,7 +47603,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43654,7 +47636,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -43675,7 +47659,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -43696,7 +47682,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -43717,7 +47705,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -43738,7 +47728,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -43759,7 +47751,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -43780,7 +47774,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -43801,7 +47797,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "position_in_unique_constraint", @@ -43822,7 +47820,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43853,7 +47853,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -43874,7 +47876,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -43895,7 +47899,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -43916,7 +47922,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_mode", @@ -43937,7 +47945,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_result", @@ -43958,7 +47968,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "as_locator", @@ -43979,7 +47991,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_name", @@ -44000,7 +48014,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -44021,7 +48037,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -44042,7 +48060,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -44063,7 +48083,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -44084,7 +48106,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -44105,7 +48129,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -44126,7 +48152,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -44147,7 +48175,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -44168,7 +48198,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -44189,7 +48221,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -44210,7 +48244,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -44231,7 +48267,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -44252,7 +48290,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -44273,7 +48313,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -44294,7 +48336,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -44315,7 +48359,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -44336,7 +48382,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -44357,7 +48405,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -44378,7 +48428,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -44399,7 +48451,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -44420,7 +48474,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -44441,7 +48497,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -44462,7 +48520,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -44483,7 +48543,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_default", @@ -44504,7 +48566,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44535,7 +48599,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -44556,7 +48622,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -44577,7 +48645,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_catalog", @@ -44598,7 +48668,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_schema", @@ -44619,7 +48691,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_name", @@ -44640,7 +48714,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "match_option", @@ -44661,7 +48737,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "update_rule", @@ -44682,7 +48760,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "delete_rule", @@ -44703,7 +48783,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44734,7 +48816,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -44755,7 +48839,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -44776,7 +48862,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -44797,7 +48885,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -44818,7 +48908,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -44839,7 +48931,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -44860,7 +48954,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -44881,7 +48977,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44912,7 +49010,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -44933,7 +49033,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -44954,7 +49056,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -44975,7 +49079,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -44996,7 +49102,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -45017,7 +49125,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -45038,7 +49148,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -45059,7 +49171,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45080,7 +49194,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45101,7 +49217,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45132,7 +49250,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45153,7 +49273,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -45174,7 +49296,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -45195,7 +49319,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -45216,7 +49342,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45237,7 +49365,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45258,7 +49388,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_hierarchy", @@ -45279,7 +49411,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45310,7 +49444,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45331,7 +49467,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -45352,7 +49490,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -45373,7 +49513,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -45394,7 +49536,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45415,7 +49559,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45436,7 +49582,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45467,7 +49615,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45488,7 +49638,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_catalog", @@ -45509,7 +49661,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -45530,7 +49684,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -45551,7 +49707,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -45572,7 +49730,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45593,7 +49753,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45614,7 +49776,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45645,7 +49809,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -45666,7 +49832,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -45687,7 +49855,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -45708,7 +49878,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -45729,7 +49901,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -45750,7 +49924,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -45771,7 +49947,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -45792,7 +49970,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -45813,7 +49993,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -45834,7 +50016,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45865,7 +50049,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45886,7 +50072,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -45907,7 +50095,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -45928,7 +50118,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -45949,7 +50141,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -45970,7 +50164,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -45991,7 +50187,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46012,7 +50210,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -46033,7 +50233,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -46054,7 +50256,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46085,7 +50289,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46106,7 +50312,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46127,7 +50335,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46148,7 +50358,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46169,7 +50381,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46190,7 +50404,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46221,7 +50437,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46242,7 +50460,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46263,7 +50483,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46284,7 +50506,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46305,7 +50529,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46326,7 +50552,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_catalog", @@ -46347,7 +50575,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_schema", @@ -46368,7 +50598,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_name", @@ -46389,7 +50621,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46420,7 +50654,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46441,7 +50677,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46462,7 +50700,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46483,7 +50723,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46504,7 +50746,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46525,7 +50769,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -46546,7 +50792,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -46567,7 +50815,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -46588,7 +50838,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46619,7 +50871,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46640,7 +50894,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46661,7 +50917,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46682,7 +50940,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46703,7 +50963,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46724,7 +50986,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_type", @@ -46745,7 +51009,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_catalog", @@ -46766,7 +51032,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_schema", @@ -46787,7 +51055,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_name", @@ -46808,7 +51078,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -46829,7 +51101,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -46850,7 +51124,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -46871,7 +51147,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -46892,7 +51170,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -46913,7 +51193,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -46934,7 +51216,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -46955,7 +51239,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -46976,7 +51262,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -46997,7 +51285,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -47018,7 +51308,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -47039,7 +51331,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -47060,7 +51354,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -47081,7 +51377,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -47102,7 +51400,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -47123,7 +51423,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -47144,7 +51446,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -47165,7 +51469,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -47186,7 +51492,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_catalog", @@ -47207,7 +51515,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_schema", @@ -47228,7 +51538,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_name", @@ -47249,7 +51561,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -47270,7 +51584,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -47291,7 +51607,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -47312,7 +51630,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -47333,7 +51653,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -47354,7 +51676,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_body", @@ -47375,7 +51699,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_definition", @@ -47396,7 +51722,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_name", @@ -47417,7 +51745,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_language", @@ -47438,7 +51768,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_style", @@ -47459,7 +51791,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deterministic", @@ -47480,7 +51814,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_data_access", @@ -47501,7 +51837,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_null_call", @@ -47522,7 +51860,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_path", @@ -47543,7 +51883,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_level_routine", @@ -47564,7 +51906,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_dynamic_result_sets", @@ -47585,7 +51929,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_user_defined_cast", @@ -47606,7 +51952,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_implicitly_invocable", @@ -47627,7 +51975,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "security_type", @@ -47648,7 +51998,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_catalog", @@ -47669,7 +52021,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_schema", @@ -47690,7 +52044,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_name", @@ -47711,7 +52067,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "as_locator", @@ -47732,7 +52090,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "created", @@ -47753,7 +52113,9 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_altered", @@ -47774,7 +52136,9 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "new_savepoint_level", @@ -47795,7 +52159,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_udt_dependent", @@ -47816,7 +52182,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_from_data_type", @@ -47837,7 +52205,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_as_locator", @@ -47858,7 +52228,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_max_length", @@ -47879,7 +52251,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_octet_length", @@ -47900,7 +52274,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_catalog", @@ -47921,7 +52297,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_schema", @@ -47942,7 +52320,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_name", @@ -47963,7 +52343,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_catalog", @@ -47984,7 +52366,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_schema", @@ -48005,7 +52389,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_name", @@ -48026,7 +52412,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_precision", @@ -48047,7 +52435,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_precision_radix", @@ -48068,7 +52458,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_scale", @@ -48089,7 +52481,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_datetime_precision", @@ -48110,7 +52504,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_interval_type", @@ -48131,7 +52527,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_interval_precision", @@ -48152,7 +52550,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_catalog", @@ -48173,7 +52573,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_schema", @@ -48194,7 +52596,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_name", @@ -48215,7 +52619,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_catalog", @@ -48236,7 +52642,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_schema", @@ -48257,7 +52665,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_name", @@ -48278,7 +52688,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_maximum_cardinality", @@ -48299,7 +52711,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_dtd_identifier", @@ -48320,7 +52734,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48351,7 +52767,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_name", @@ -48372,7 +52790,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_owner", @@ -48393,7 +52813,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_catalog", @@ -48414,7 +52836,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_schema", @@ -48435,7 +52859,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_name", @@ -48456,7 +52882,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_path", @@ -48477,7 +52905,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48508,7 +52938,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_schema", @@ -48529,7 +52961,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_name", @@ -48550,7 +52984,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -48571,7 +53007,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -48592,7 +53030,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -48613,7 +53053,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -48634,7 +53076,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "start_value", @@ -48655,7 +53099,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "minimum_value", @@ -48676,7 +53122,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_value", @@ -48697,7 +53145,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "increment", @@ -48718,7 +53168,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cycle_option", @@ -48739,7 +53191,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48770,7 +53224,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -48791,7 +53247,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -48812,7 +53270,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -48833,7 +53293,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -48854,7 +53316,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -48875,7 +53339,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_id", @@ -48896,7 +53362,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_name", @@ -48917,7 +53385,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sub_feature_id", @@ -48938,7 +53408,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sub_feature_name", @@ -48959,7 +53431,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_supported", @@ -48980,7 +53454,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_verified_by", @@ -49001,7 +53477,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49022,7 +53500,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49053,7 +53533,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -49074,7 +53556,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -49095,7 +53579,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -49116,7 +53602,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -49137,7 +53625,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -49158,7 +53648,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "implementation_info_id", @@ -49179,7 +53671,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "implementation_info_name", @@ -49200,7 +53694,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "integer_value", @@ -49221,7 +53717,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_value", @@ -49242,7 +53740,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49263,7 +53763,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49294,7 +53796,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -49315,7 +53819,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -49336,7 +53842,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -49357,7 +53865,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -49378,7 +53888,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -49399,7 +53911,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_id", @@ -49420,7 +53934,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_name", @@ -49441,7 +53957,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_supported", @@ -49462,7 +53980,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_verified_by", @@ -49483,7 +54003,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49504,7 +54026,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49535,7 +54059,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -49556,7 +54082,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -49577,7 +54105,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -49598,7 +54128,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -49619,7 +54151,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -49640,7 +54174,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sizing_id", @@ -49661,7 +54197,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sizing_name", @@ -49682,7 +54220,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "supported_value", @@ -49703,7 +54243,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49724,7 +54266,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49755,7 +54299,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -49776,7 +54322,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -49797,7 +54345,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -49818,7 +54368,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -49839,7 +54391,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -49860,7 +54414,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_type", @@ -49881,7 +54437,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deferrable", @@ -49902,7 +54460,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initially_deferred", @@ -49923,7 +54483,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enforced", @@ -49944,7 +54506,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nulls_distinct", @@ -49965,7 +54529,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49996,7 +54562,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -50017,7 +54585,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -50038,7 +54608,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -50059,7 +54631,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -50080,7 +54654,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -50101,7 +54677,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -50122,7 +54700,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_hierarchy", @@ -50143,7 +54723,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50174,7 +54756,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -50195,7 +54779,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -50216,7 +54802,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_type", @@ -50237,7 +54825,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_referencing_column_name", @@ -50258,7 +54848,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reference_generation", @@ -50279,7 +54871,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_catalog", @@ -50300,7 +54894,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_schema", @@ -50321,7 +54917,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_name", @@ -50342,7 +54940,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_insertable_into", @@ -50363,7 +54963,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_typed", @@ -50384,7 +54986,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "commit_action", @@ -50405,7 +55009,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50436,7 +55042,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -50457,7 +55065,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -50478,7 +55088,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -50499,7 +55111,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -50520,7 +55134,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -50541,7 +55157,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "group_name", @@ -50562,7 +55180,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "transform_type", @@ -50583,7 +55203,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50614,7 +55236,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_schema", @@ -50635,7 +55259,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_name", @@ -50656,7 +55282,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_catalog", @@ -50677,7 +55305,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_schema", @@ -50698,7 +55328,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_table", @@ -50719,7 +55351,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_column", @@ -50740,7 +55374,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50771,7 +55407,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_schema", @@ -50792,7 +55430,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_name", @@ -50813,7 +55453,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_manipulation", @@ -50834,7 +55476,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_catalog", @@ -50855,7 +55499,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_schema", @@ -50876,7 +55522,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_table", @@ -50897,7 +55545,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_order", @@ -50918,7 +55568,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_condition", @@ -50939,7 +55591,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_statement", @@ -50960,7 +55614,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_orientation", @@ -50981,7 +55637,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_timing", @@ -51002,7 +55660,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_old_table", @@ -51023,7 +55683,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_new_table", @@ -51044,7 +55706,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_old_row", @@ -51065,7 +55729,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_new_row", @@ -51086,7 +55752,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "created", @@ -51107,7 +55775,9 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51138,7 +55808,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -51159,7 +55831,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -51180,7 +55854,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -51201,7 +55877,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -51222,7 +55900,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -51243,7 +55923,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -51264,7 +55946,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51295,7 +55979,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -51316,7 +56002,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_catalog", @@ -51337,7 +56025,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -51358,7 +56048,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -51379,7 +56071,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -51400,7 +56094,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -51421,7 +56117,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -51442,7 +56140,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51473,7 +56173,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_schema", @@ -51494,7 +56196,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_name", @@ -51515,7 +56219,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_category", @@ -51536,7 +56242,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_instantiable", @@ -51557,7 +56265,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_final", @@ -51578,7 +56288,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_form", @@ -51599,7 +56311,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_category", @@ -51620,7 +56334,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_catalog", @@ -51641,7 +56357,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_schema", @@ -51662,7 +56380,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_name", @@ -51683,7 +56403,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reference_type", @@ -51704,7 +56426,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -51725,7 +56449,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -51746,7 +56472,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -51767,7 +56495,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -51788,7 +56518,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -51809,7 +56541,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -51830,7 +56564,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -51851,7 +56587,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -51872,7 +56610,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -51893,7 +56633,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -51914,7 +56656,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -51935,7 +56679,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -51956,7 +56702,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -51977,7 +56725,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -51998,7 +56748,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -52019,7 +56771,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "source_dtd_identifier", @@ -52040,7 +56794,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ref_dtd_identifier", @@ -52061,7 +56817,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52092,7 +56850,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -52113,7 +56873,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -52134,7 +56896,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -52155,7 +56919,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -52176,7 +56942,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52207,7 +56975,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -52228,7 +56998,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -52249,7 +57021,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52280,7 +57054,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_schema", @@ -52301,7 +57077,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_name", @@ -52322,7 +57100,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -52343,7 +57123,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52364,7 +57146,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52385,7 +57169,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -52406,7 +57192,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52437,7 +57225,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52458,7 +57248,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52479,7 +57271,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -52500,7 +57294,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -52521,7 +57317,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -52542,7 +57340,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52573,7 +57373,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_schema", @@ -52594,7 +57396,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_name", @@ -52615,7 +57419,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -52636,7 +57442,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52657,7 +57465,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52678,7 +57488,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52709,7 +57521,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52730,7 +57544,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52751,7 +57567,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_definition", @@ -52772,7 +57590,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "check_option", @@ -52793,7 +57613,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_updatable", @@ -52814,7 +57636,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_insertable_into", @@ -52835,7 +57659,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_updatable", @@ -52856,7 +57682,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_deletable", @@ -52877,7 +57705,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_insertable_into", @@ -52898,7 +57728,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52934,7 +57766,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -52955,7 +57789,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -52976,7 +57812,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "params": [ @@ -53001,7 +57839,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null } } ], @@ -53033,7 +57873,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -53054,7 +57896,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -53075,7 +57919,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "params": [], @@ -53107,7 +57953,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -53128,7 +57976,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -53149,7 +57999,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "params": [ @@ -53174,7 +58026,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } }, { @@ -53198,7 +58052,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } } ], @@ -53237,7 +58093,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null } } ], diff --git a/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json b/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json index 26abb2b93a..ffe0ab5c37 100644 --- a/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json +++ b/internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json @@ -80,7 +80,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -101,7 +103,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -122,7 +126,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -168,7 +174,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -189,7 +197,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -210,7 +220,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -231,7 +243,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -252,7 +266,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -273,7 +289,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfnoid", @@ -294,7 +312,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggkind", @@ -315,7 +335,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggnumdirectargs", @@ -336,7 +358,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtransfn", @@ -357,7 +381,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalfn", @@ -378,7 +404,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggcombinefn", @@ -399,7 +427,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggserialfn", @@ -420,7 +450,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggdeserialfn", @@ -441,7 +473,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtransfn", @@ -462,7 +496,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggminvtransfn", @@ -483,7 +519,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalfn", @@ -504,7 +542,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalextra", @@ -525,7 +565,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalextra", @@ -546,7 +588,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggfinalmodify", @@ -567,7 +611,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmfinalmodify", @@ -588,7 +634,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggsortop", @@ -609,7 +657,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtranstype", @@ -630,7 +680,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggtransspace", @@ -651,7 +703,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtranstype", @@ -672,7 +726,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggmtransspace", @@ -693,7 +749,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "agginitval", @@ -714,7 +772,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "aggminitval", @@ -735,7 +795,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -766,7 +828,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -787,7 +851,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -808,7 +874,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -829,7 +897,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -850,7 +920,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -871,7 +943,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -892,7 +966,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amname", @@ -913,7 +989,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amhandler", @@ -934,7 +1012,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amtype", @@ -955,7 +1035,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -986,7 +1068,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1007,7 +1091,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1028,7 +1114,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1049,7 +1137,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1070,7 +1160,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1091,7 +1183,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1112,7 +1206,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopfamily", @@ -1133,7 +1229,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoplefttype", @@ -1154,7 +1252,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoprighttype", @@ -1175,7 +1275,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopstrategy", @@ -1196,7 +1298,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amoppurpose", @@ -1217,7 +1321,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopopr", @@ -1238,7 +1344,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopmethod", @@ -1259,7 +1367,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amopsortfamily", @@ -1280,7 +1390,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1311,7 +1423,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1332,7 +1446,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1353,7 +1469,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1374,7 +1492,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1395,7 +1515,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1416,7 +1538,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1437,7 +1561,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocfamily", @@ -1458,7 +1584,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amproclefttype", @@ -1479,7 +1607,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocrighttype", @@ -1500,7 +1630,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amprocnum", @@ -1521,7 +1653,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "amproc", @@ -1542,7 +1676,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1573,7 +1709,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1594,7 +1732,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1615,7 +1755,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1636,7 +1778,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1657,7 +1801,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1678,7 +1824,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -1699,7 +1847,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adrelid", @@ -1720,7 +1870,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adnum", @@ -1741,7 +1893,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "adbin", @@ -1762,7 +1916,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -1793,7 +1949,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -1814,7 +1972,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -1835,7 +1995,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -1856,7 +2018,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -1877,7 +2041,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -1898,7 +2064,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attrelid", @@ -1919,7 +2087,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -1940,7 +2110,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atttypid", @@ -1961,7 +2133,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attstattarget", @@ -1982,7 +2156,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attlen", @@ -2003,7 +2179,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnum", @@ -2024,7 +2202,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attndims", @@ -2045,7 +2225,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcacheoff", @@ -2066,7 +2248,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atttypmod", @@ -2087,7 +2271,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attbyval", @@ -2108,7 +2294,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attalign", @@ -2129,7 +2317,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attstorage", @@ -2150,7 +2340,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcompression", @@ -2171,7 +2363,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnotnull", @@ -2192,7 +2386,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atthasdef", @@ -2213,7 +2409,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "atthasmissing", @@ -2234,7 +2432,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attidentity", @@ -2255,7 +2455,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attgenerated", @@ -2276,7 +2478,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attisdropped", @@ -2297,7 +2501,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attislocal", @@ -2318,7 +2524,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attinhcount", @@ -2339,7 +2547,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attcollation", @@ -2360,7 +2570,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attacl", @@ -2381,7 +2593,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attoptions", @@ -2402,7 +2616,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attfdwoptions", @@ -2423,7 +2639,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attmissingval", @@ -2444,7 +2662,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -2475,7 +2695,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -2496,7 +2718,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -2517,7 +2741,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -2538,7 +2764,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -2559,7 +2787,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -2580,7 +2810,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roleid", @@ -2601,7 +2833,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "member", @@ -2622,7 +2856,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantor", @@ -2643,7 +2879,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "admin_option", @@ -2664,7 +2902,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -2695,7 +2935,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -2716,7 +2958,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -2737,7 +2981,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -2758,7 +3004,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -2779,7 +3027,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -2800,7 +3050,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -2821,7 +3073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolname", @@ -2842,7 +3096,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolsuper", @@ -2863,7 +3119,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolinherit", @@ -2884,7 +3142,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreaterole", @@ -2905,7 +3165,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreatedb", @@ -2926,7 +3188,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcanlogin", @@ -2947,7 +3211,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolreplication", @@ -2968,7 +3234,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolbypassrls", @@ -2989,7 +3257,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconnlimit", @@ -3010,7 +3280,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolpassword", @@ -3031,7 +3303,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolvaliduntil", @@ -3052,7 +3326,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3083,7 +3359,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "version", @@ -3104,7 +3382,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "installed", @@ -3125,7 +3405,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "superuser", @@ -3146,7 +3428,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trusted", @@ -3167,7 +3451,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relocatable", @@ -3188,7 +3474,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema", @@ -3209,7 +3497,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "requires", @@ -3230,7 +3520,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comment", @@ -3251,7 +3543,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3282,7 +3576,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_version", @@ -3303,7 +3599,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "installed_version", @@ -3324,7 +3622,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comment", @@ -3345,7 +3645,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3376,7 +3678,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ident", @@ -3397,7 +3701,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parent", @@ -3418,7 +3724,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "level", @@ -3439,7 +3747,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_bytes", @@ -3460,7 +3770,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_nblocks", @@ -3481,7 +3793,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "free_bytes", @@ -3502,7 +3816,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "free_chunks", @@ -3523,7 +3839,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "used_bytes", @@ -3544,7 +3862,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3575,7 +3895,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -3596,7 +3918,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -3617,7 +3941,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -3638,7 +3964,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -3659,7 +3987,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -3680,7 +4010,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -3701,7 +4033,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castsource", @@ -3722,7 +4056,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "casttarget", @@ -3743,7 +4079,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castfunc", @@ -3764,7 +4102,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castcontext", @@ -3785,7 +4125,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "castmethod", @@ -3806,7 +4148,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -3837,7 +4181,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -3858,7 +4204,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -3879,7 +4227,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -3900,7 +4250,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -3921,7 +4273,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -3942,7 +4296,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -3963,7 +4319,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -3984,7 +4342,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relnamespace", @@ -4005,7 +4365,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltype", @@ -4026,7 +4388,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reloftype", @@ -4047,7 +4411,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relowner", @@ -4068,7 +4434,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relam", @@ -4089,7 +4457,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relfilenode", @@ -4110,7 +4480,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltablespace", @@ -4131,7 +4503,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpages", @@ -4152,7 +4526,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltuples", @@ -4173,7 +4549,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relallvisible", @@ -4194,7 +4572,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reltoastrelid", @@ -4215,7 +4595,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhasindex", @@ -4236,7 +4618,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relisshared", @@ -4257,7 +4641,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpersistence", @@ -4278,7 +4664,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relkind", @@ -4299,7 +4687,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relnatts", @@ -4320,7 +4710,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relchecks", @@ -4341,7 +4733,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhasrules", @@ -4362,7 +4756,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhastriggers", @@ -4383,7 +4779,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relhassubclass", @@ -4404,7 +4802,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relrowsecurity", @@ -4425,7 +4825,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relforcerowsecurity", @@ -4446,7 +4848,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relispopulated", @@ -4467,7 +4871,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relreplident", @@ -4488,7 +4894,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relispartition", @@ -4509,7 +4917,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relrewrite", @@ -4530,7 +4940,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relfrozenxid", @@ -4551,7 +4963,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relminmxid", @@ -4572,7 +4986,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relacl", @@ -4593,7 +5009,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reloptions", @@ -4614,7 +5032,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relpartbound", @@ -4635,7 +5055,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -4666,7 +5088,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -4687,7 +5111,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -4708,7 +5134,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -4729,7 +5157,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -4750,7 +5180,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -4771,7 +5203,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -4792,7 +5226,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collname", @@ -4813,7 +5249,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collnamespace", @@ -4834,7 +5272,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collowner", @@ -4855,7 +5295,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collprovider", @@ -4876,7 +5318,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collisdeterministic", @@ -4897,7 +5341,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collencoding", @@ -4918,7 +5364,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collcollate", @@ -4939,7 +5387,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collctype", @@ -4960,7 +5410,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "colliculocale", @@ -4981,7 +5433,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collversion", @@ -5002,7 +5456,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5033,7 +5489,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -5054,7 +5512,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5085,7 +5545,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -5106,7 +5568,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -5127,7 +5591,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -5148,7 +5614,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -5169,7 +5637,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -5190,7 +5660,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -5211,7 +5683,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conname", @@ -5232,7 +5706,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connamespace", @@ -5253,7 +5729,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contype", @@ -5274,7 +5752,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condeferrable", @@ -5295,7 +5775,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condeferred", @@ -5316,7 +5798,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "convalidated", @@ -5337,7 +5821,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conrelid", @@ -5358,7 +5844,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contypid", @@ -5379,7 +5867,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conindid", @@ -5400,7 +5890,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conparentid", @@ -5421,7 +5913,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confrelid", @@ -5442,7 +5936,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confupdtype", @@ -5463,7 +5959,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confdeltype", @@ -5484,7 +5982,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confmatchtype", @@ -5505,7 +6005,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conislocal", @@ -5526,7 +6028,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "coninhcount", @@ -5547,7 +6051,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connoinherit", @@ -5568,7 +6074,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conkey", @@ -5589,7 +6097,9 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confkey", @@ -5610,7 +6120,9 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conpfeqop", @@ -5631,7 +6143,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conppeqop", @@ -5652,7 +6166,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conffeqop", @@ -5673,7 +6189,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confdelsetcols", @@ -5694,7 +6212,9 @@ "catalog": "", "schema": "", "name": "_int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conexclop", @@ -5715,7 +6235,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conbin", @@ -5736,7 +6258,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -5767,7 +6291,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -5788,7 +6314,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -5809,7 +6337,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -5830,7 +6360,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -5851,7 +6383,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -5872,7 +6406,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -5893,7 +6429,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conname", @@ -5914,7 +6452,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "connamespace", @@ -5935,7 +6475,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conowner", @@ -5956,7 +6498,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conforencoding", @@ -5977,7 +6521,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "contoencoding", @@ -5998,7 +6544,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conproc", @@ -6019,7 +6567,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "condefault", @@ -6040,7 +6590,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6071,7 +6623,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statement", @@ -6092,7 +6646,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_holdable", @@ -6113,7 +6669,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_binary", @@ -6134,7 +6692,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_scrollable", @@ -6155,7 +6715,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "creation_time", @@ -6176,7 +6738,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6207,7 +6771,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6228,7 +6794,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6249,7 +6817,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6270,7 +6840,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6291,7 +6863,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6312,7 +6886,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -6333,7 +6909,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -6354,7 +6932,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datdba", @@ -6375,7 +6955,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "encoding", @@ -6396,7 +6978,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datlocprovider", @@ -6417,7 +7001,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datistemplate", @@ -6438,7 +7024,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datallowconn", @@ -6459,7 +7047,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datconnlimit", @@ -6480,7 +7070,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datfrozenxid", @@ -6501,7 +7093,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datminmxid", @@ -6522,7 +7116,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dattablespace", @@ -6543,7 +7139,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datcollate", @@ -6564,7 +7162,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datctype", @@ -6585,7 +7185,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "daticulocale", @@ -6606,7 +7208,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datcollversion", @@ -6627,7 +7231,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datacl", @@ -6648,7 +7254,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6679,7 +7287,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6700,7 +7310,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6721,7 +7333,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6742,7 +7356,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6763,7 +7379,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6784,7 +7402,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setdatabase", @@ -6805,7 +7425,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setrole", @@ -6826,7 +7448,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setconfig", @@ -6847,7 +7471,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -6878,7 +7504,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -6899,7 +7527,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -6920,7 +7550,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -6941,7 +7573,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -6962,7 +7596,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -6983,7 +7619,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7004,7 +7642,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclrole", @@ -7025,7 +7665,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclnamespace", @@ -7046,7 +7688,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclobjtype", @@ -7067,7 +7711,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "defaclacl", @@ -7088,7 +7734,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7119,7 +7767,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7140,7 +7790,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7161,7 +7813,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7182,7 +7836,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7203,7 +7859,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7224,7 +7882,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -7245,7 +7905,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -7266,7 +7928,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -7287,7 +7951,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refclassid", @@ -7308,7 +7974,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjid", @@ -7329,7 +7997,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjsubid", @@ -7350,7 +8020,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deptype", @@ -7371,7 +8043,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7402,7 +8076,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7423,7 +8099,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7444,7 +8122,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7465,7 +8145,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7486,7 +8168,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7507,7 +8191,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -7528,7 +8214,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -7549,7 +8237,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -7570,7 +8260,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "description", @@ -7591,7 +8283,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7622,7 +8316,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7643,7 +8339,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7664,7 +8362,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7685,7 +8385,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7706,7 +8408,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7727,7 +8431,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7748,7 +8454,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumtypid", @@ -7769,7 +8477,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumsortorder", @@ -7790,7 +8500,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumlabel", @@ -7811,7 +8523,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -7842,7 +8556,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -7863,7 +8579,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -7884,7 +8602,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -7905,7 +8625,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -7926,7 +8648,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -7947,7 +8671,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -7968,7 +8694,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtname", @@ -7989,7 +8717,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtevent", @@ -8010,7 +8740,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtowner", @@ -8031,7 +8763,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtfoid", @@ -8052,7 +8786,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evtenabled", @@ -8073,7 +8809,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "evttags", @@ -8094,7 +8832,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8125,7 +8865,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8146,7 +8888,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8167,7 +8911,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8188,7 +8934,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8209,7 +8957,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8230,7 +8980,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8251,7 +9003,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extname", @@ -8272,7 +9026,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extowner", @@ -8293,7 +9049,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extnamespace", @@ -8314,7 +9072,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extrelocatable", @@ -8335,7 +9095,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extversion", @@ -8356,7 +9118,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extconfig", @@ -8377,7 +9141,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extcondition", @@ -8398,7 +9164,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8429,7 +9197,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourceline", @@ -8450,7 +9220,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqno", @@ -8471,7 +9243,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -8492,7 +9266,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -8513,7 +9289,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "applied", @@ -8534,7 +9312,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -8555,7 +9335,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8586,7 +9368,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8607,7 +9391,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8628,7 +9414,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8649,7 +9437,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8670,7 +9460,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8691,7 +9483,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8712,7 +9506,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwname", @@ -8733,7 +9529,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwowner", @@ -8754,7 +9552,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwhandler", @@ -8775,7 +9575,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwvalidator", @@ -8796,7 +9598,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwacl", @@ -8817,7 +9621,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwoptions", @@ -8838,7 +9644,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -8869,7 +9677,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -8890,7 +9700,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -8911,7 +9723,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -8932,7 +9746,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -8953,7 +9769,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -8974,7 +9792,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -8995,7 +9815,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvname", @@ -9016,7 +9838,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvowner", @@ -9037,7 +9861,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvfdw", @@ -9058,7 +9884,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvtype", @@ -9079,7 +9907,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvversion", @@ -9100,7 +9930,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvacl", @@ -9121,7 +9953,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvoptions", @@ -9142,7 +9976,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9173,7 +10009,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9194,7 +10032,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9215,7 +10055,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9236,7 +10078,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9257,7 +10101,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9278,7 +10124,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftrelid", @@ -9299,7 +10147,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftserver", @@ -9320,7 +10170,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftoptions", @@ -9341,7 +10193,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9372,7 +10226,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grosysid", @@ -9393,7 +10249,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grolist", @@ -9414,7 +10272,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9445,7 +10305,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type", @@ -9466,7 +10328,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -9487,7 +10351,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_name", @@ -9508,7 +10374,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "address", @@ -9529,7 +10397,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "netmask", @@ -9550,7 +10420,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "auth_method", @@ -9571,7 +10443,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "options", @@ -9592,7 +10466,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -9613,7 +10489,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9644,7 +10522,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "map_name", @@ -9665,7 +10545,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sys_name", @@ -9686,7 +10568,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pg_username", @@ -9707,7 +10591,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "error", @@ -9728,7 +10614,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -9759,7 +10647,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -9780,7 +10670,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -9801,7 +10693,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -9822,7 +10716,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -9843,7 +10739,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -9864,7 +10762,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -9885,7 +10785,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indrelid", @@ -9906,7 +10808,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnatts", @@ -9927,7 +10831,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnkeyatts", @@ -9948,7 +10854,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisunique", @@ -9969,7 +10877,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indnullsnotdistinct", @@ -9990,7 +10900,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisprimary", @@ -10011,7 +10923,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisexclusion", @@ -10032,7 +10946,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indimmediate", @@ -10053,7 +10969,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisclustered", @@ -10074,7 +10992,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisvalid", @@ -10095,7 +11015,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indcheckxmin", @@ -10116,7 +11038,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisready", @@ -10137,7 +11061,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indislive", @@ -10158,7 +11084,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indisreplident", @@ -10179,7 +11107,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indkey", @@ -10200,7 +11130,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indcollation", @@ -10221,7 +11153,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indclass", @@ -10242,7 +11176,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indoption", @@ -10263,7 +11199,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexprs", @@ -10284,7 +11222,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indpred", @@ -10305,7 +11245,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10336,7 +11278,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -10357,7 +11301,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexname", @@ -10378,7 +11324,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -10399,7 +11347,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexdef", @@ -10420,7 +11370,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10451,7 +11403,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10472,7 +11426,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10493,7 +11449,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10514,7 +11472,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10535,7 +11495,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -10556,7 +11518,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhrelid", @@ -10577,7 +11541,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhparent", @@ -10598,7 +11564,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhseqno", @@ -10619,7 +11587,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inhdetachpending", @@ -10640,7 +11610,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10671,7 +11643,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10692,7 +11666,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10713,7 +11689,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10734,7 +11712,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10755,7 +11735,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -10776,7 +11758,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -10797,7 +11781,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -10818,7 +11804,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -10839,7 +11827,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privtype", @@ -10860,7 +11850,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initprivs", @@ -10881,7 +11873,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -10912,7 +11906,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -10933,7 +11929,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -10954,7 +11952,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -10975,7 +11975,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -10996,7 +11998,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11017,7 +12021,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -11038,7 +12044,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanname", @@ -11059,7 +12067,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanowner", @@ -11080,7 +12090,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanispl", @@ -11101,7 +12113,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanpltrusted", @@ -11122,7 +12136,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanplcallfoid", @@ -11143,7 +12159,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "laninline", @@ -11164,7 +12182,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanvalidator", @@ -11185,7 +12205,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lanacl", @@ -11206,7 +12228,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11237,7 +12261,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11258,7 +12284,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11279,7 +12307,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11300,7 +12330,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11321,7 +12353,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11342,7 +12376,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "loid", @@ -11363,7 +12399,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pageno", @@ -11384,7 +12422,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data", @@ -11405,7 +12445,9 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11436,7 +12478,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -11457,7 +12501,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -11478,7 +12524,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -11499,7 +12547,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -11520,7 +12570,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -11541,7 +12593,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -11562,7 +12616,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lomowner", @@ -11583,7 +12639,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lomacl", @@ -11604,7 +12662,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11635,7 +12695,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -11656,7 +12718,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relation", @@ -11677,7 +12741,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "page", @@ -11698,7 +12764,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuple", @@ -11719,7 +12787,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "virtualxid", @@ -11740,7 +12810,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "transactionid", @@ -11761,7 +12833,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -11782,7 +12856,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -11803,7 +12879,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -11824,7 +12902,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "virtualtransaction", @@ -11845,7 +12925,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -11866,7 +12948,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mode", @@ -11887,7 +12971,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "granted", @@ -11908,7 +12994,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fastpath", @@ -11929,7 +13017,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "waitstart", @@ -11950,7 +13040,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -11981,7 +13073,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "matviewname", @@ -12002,7 +13096,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "matviewowner", @@ -12023,7 +13119,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -12044,7 +13142,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasindexes", @@ -12065,7 +13165,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ispopulated", @@ -12086,7 +13188,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -12107,7 +13211,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12138,7 +13244,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12159,7 +13267,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12180,7 +13290,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12201,7 +13313,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12222,7 +13336,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12243,7 +13359,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12264,7 +13382,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspname", @@ -12285,7 +13405,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspowner", @@ -12306,7 +13428,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nspacl", @@ -12327,7 +13451,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12358,7 +13484,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12379,7 +13507,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12400,7 +13530,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12421,7 +13553,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12442,7 +13576,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12463,7 +13599,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12484,7 +13622,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcmethod", @@ -12505,7 +13645,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcname", @@ -12526,7 +13668,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcnamespace", @@ -12547,7 +13691,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcowner", @@ -12568,7 +13714,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcfamily", @@ -12589,7 +13737,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcintype", @@ -12610,7 +13760,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opcdefault", @@ -12631,7 +13783,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opckeytype", @@ -12652,7 +13806,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -12683,7 +13839,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -12704,7 +13862,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -12725,7 +13885,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -12746,7 +13908,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -12767,7 +13931,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -12788,7 +13954,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -12809,7 +13977,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprname", @@ -12830,7 +14000,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprnamespace", @@ -12851,7 +14023,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprowner", @@ -12872,7 +14046,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprkind", @@ -12893,7 +14069,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcanmerge", @@ -12914,7 +14092,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcanhash", @@ -12935,7 +14115,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprleft", @@ -12956,7 +14138,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprright", @@ -12977,7 +14161,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprresult", @@ -12998,7 +14184,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcom", @@ -13019,7 +14207,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprnegate", @@ -13040,7 +14230,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprcode", @@ -13061,7 +14253,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprrest", @@ -13082,7 +14276,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oprjoin", @@ -13103,7 +14299,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13134,7 +14332,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13155,7 +14355,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13176,7 +14378,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13197,7 +14401,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13218,7 +14424,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13239,7 +14447,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13260,7 +14470,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfmethod", @@ -13281,7 +14493,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfname", @@ -13302,7 +14516,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfnamespace", @@ -13323,7 +14539,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "opfowner", @@ -13344,7 +14562,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13375,7 +14595,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13396,7 +14618,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13417,7 +14641,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13438,7 +14664,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13459,7 +14687,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13480,7 +14710,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -13501,7 +14733,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parname", @@ -13522,7 +14756,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "paracl", @@ -13543,7 +14779,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13574,7 +14812,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -13595,7 +14835,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -13616,7 +14858,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -13637,7 +14881,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -13658,7 +14904,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -13679,7 +14927,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partrelid", @@ -13700,7 +14950,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partstrat", @@ -13721,7 +14973,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partnatts", @@ -13742,7 +14996,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partdefid", @@ -13763,7 +15019,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partattrs", @@ -13784,7 +15042,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partclass", @@ -13805,7 +15065,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partcollation", @@ -13826,7 +15088,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partexprs", @@ -13847,7 +15111,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -13878,7 +15144,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -13899,7 +15167,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "policyname", @@ -13920,7 +15190,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "permissive", @@ -13941,7 +15213,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roles", @@ -13962,7 +15236,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmd", @@ -13983,7 +15259,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "qual", @@ -14004,7 +15282,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_check", @@ -14025,7 +15305,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14056,7 +15338,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14077,7 +15361,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14098,7 +15384,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14119,7 +15407,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14140,7 +15430,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14161,7 +15453,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -14182,7 +15476,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polname", @@ -14203,7 +15499,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polrelid", @@ -14224,7 +15522,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polcmd", @@ -14245,7 +15545,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polpermissive", @@ -14266,7 +15568,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polroles", @@ -14287,7 +15591,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polqual", @@ -14308,7 +15614,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "polwithcheck", @@ -14329,7 +15637,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14360,7 +15670,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statement", @@ -14381,7 +15693,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prepare_time", @@ -14402,7 +15716,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_types", @@ -14423,7 +15739,9 @@ "catalog": "", "schema": "", "name": "_regtype" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "from_sql", @@ -14444,7 +15762,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "generic_plans", @@ -14465,7 +15785,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "custom_plans", @@ -14486,7 +15808,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14517,7 +15841,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "gid", @@ -14538,7 +15864,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prepared", @@ -14559,7 +15887,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "owner", @@ -14580,7 +15910,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -14601,7 +15933,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -14632,7 +15966,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -14653,7 +15989,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -14674,7 +16012,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -14695,7 +16035,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -14716,7 +16058,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -14737,7 +16081,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -14758,7 +16104,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proname", @@ -14779,7 +16127,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronamespace", @@ -14800,7 +16150,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proowner", @@ -14821,7 +16173,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prolang", @@ -14842,7 +16196,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "procost", @@ -14863,7 +16219,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prorows", @@ -14884,7 +16242,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provariadic", @@ -14905,7 +16265,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosupport", @@ -14926,7 +16288,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prokind", @@ -14947,7 +16311,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosecdef", @@ -14968,7 +16334,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proleakproof", @@ -14989,7 +16357,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proisstrict", @@ -15010,7 +16380,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proretset", @@ -15031,7 +16403,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provolatile", @@ -15052,7 +16426,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proparallel", @@ -15073,7 +16449,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronargs", @@ -15094,7 +16472,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pronargdefaults", @@ -15115,7 +16495,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prorettype", @@ -15136,7 +16518,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargtypes", @@ -15157,7 +16541,9 @@ "catalog": "", "schema": "", "name": "oidvector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proallargtypes", @@ -15178,7 +16564,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargmodes", @@ -15199,7 +16587,9 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargnames", @@ -15220,7 +16610,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proargdefaults", @@ -15241,7 +16633,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "protrftypes", @@ -15262,7 +16656,9 @@ "catalog": "", "schema": "", "name": "_oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosrc", @@ -15283,7 +16679,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "probin", @@ -15304,7 +16702,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prosqlbody", @@ -15325,7 +16725,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proconfig", @@ -15346,7 +16748,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "proacl", @@ -15367,7 +16771,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15398,7 +16804,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15419,7 +16827,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15440,7 +16850,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15461,7 +16873,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -15482,7 +16896,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -15503,7 +16919,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -15524,7 +16942,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubname", @@ -15545,7 +16965,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubowner", @@ -15566,7 +16988,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "puballtables", @@ -15587,7 +17011,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubinsert", @@ -15608,7 +17034,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubupdate", @@ -15629,7 +17057,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubdelete", @@ -15650,7 +17080,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubtruncate", @@ -15671,7 +17103,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pubviaroot", @@ -15692,7 +17126,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15723,7 +17159,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15744,7 +17182,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15765,7 +17205,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15786,7 +17228,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -15807,7 +17251,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -15828,7 +17274,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -15849,7 +17297,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pnpubid", @@ -15870,7 +17320,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pnnspid", @@ -15891,7 +17343,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -15922,7 +17376,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -15943,7 +17399,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -15964,7 +17422,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -15985,7 +17445,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16006,7 +17468,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16027,7 +17491,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -16048,7 +17514,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prpubid", @@ -16069,7 +17537,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prrelid", @@ -16090,7 +17560,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prqual", @@ -16111,7 +17583,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prattrs", @@ -16132,7 +17606,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16163,7 +17639,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -16184,7 +17662,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -16205,7 +17685,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnames", @@ -16226,7 +17708,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rowfilter", @@ -16247,7 +17731,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16278,7 +17764,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16299,7 +17787,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16320,7 +17810,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16341,7 +17833,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16362,7 +17856,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16383,7 +17879,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngtypid", @@ -16404,7 +17902,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubtype", @@ -16425,7 +17925,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngmultitypid", @@ -16446,7 +17948,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngcollation", @@ -16467,7 +17971,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubopc", @@ -16488,7 +17994,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngcanonical", @@ -16509,7 +18017,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rngsubdiff", @@ -16530,7 +18040,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16561,7 +18073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -16582,7 +18096,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -16603,7 +18119,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -16624,7 +18142,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -16645,7 +18165,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -16666,7 +18188,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roident", @@ -16687,7 +18211,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "roname", @@ -16708,7 +18234,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16739,7 +18267,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_id", @@ -16760,7 +18290,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "remote_lsn", @@ -16781,7 +18313,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "local_lsn", @@ -16802,7 +18336,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -16833,7 +18369,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "plugin", @@ -16854,7 +18392,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "slot_type", @@ -16875,7 +18415,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datoid", @@ -16896,7 +18438,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "database", @@ -16917,7 +18461,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temporary", @@ -16938,7 +18484,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active", @@ -16959,7 +18507,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active_pid", @@ -16980,7 +18530,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17001,7 +18553,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "catalog_xmin", @@ -17022,7 +18576,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "restart_lsn", @@ -17043,7 +18599,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confirmed_flush_lsn", @@ -17064,7 +18622,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_status", @@ -17085,7 +18645,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "safe_wal_size", @@ -17106,7 +18668,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "two_phase", @@ -17127,7 +18691,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17158,7 +18724,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17179,7 +18747,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17200,7 +18770,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -17221,7 +18793,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17242,7 +18816,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -17263,7 +18839,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -17284,7 +18862,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rulename", @@ -17305,7 +18885,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_class", @@ -17326,7 +18908,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_type", @@ -17347,7 +18931,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_enabled", @@ -17368,7 +18954,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_instead", @@ -17389,7 +18977,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_qual", @@ -17410,7 +19000,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ev_action", @@ -17431,7 +19023,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17462,7 +19056,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolsuper", @@ -17483,7 +19079,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolinherit", @@ -17504,7 +19102,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreaterole", @@ -17525,7 +19125,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcreatedb", @@ -17546,7 +19148,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolcanlogin", @@ -17567,7 +19171,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolreplication", @@ -17588,7 +19194,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconnlimit", @@ -17609,7 +19217,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolpassword", @@ -17630,7 +19240,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolvaliduntil", @@ -17651,7 +19263,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolbypassrls", @@ -17672,7 +19286,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rolconfig", @@ -17693,7 +19309,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -17714,7 +19332,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17745,7 +19365,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -17766,7 +19388,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rulename", @@ -17787,7 +19411,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -17808,7 +19434,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -17839,7 +19467,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -17860,7 +19490,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -17881,7 +19513,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -17902,7 +19536,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -17923,7 +19559,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -17944,7 +19582,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -17965,7 +19605,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -17986,7 +19628,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -18007,7 +19651,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -18028,7 +19674,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -18049,7 +19697,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18080,7 +19730,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -18101,7 +19753,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -18122,7 +19776,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objtype", @@ -18143,7 +19799,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objnamespace", @@ -18164,7 +19822,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objname", @@ -18185,7 +19845,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -18206,7 +19868,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -18227,7 +19891,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18258,7 +19924,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -18279,7 +19947,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -18300,7 +19970,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -18321,7 +19993,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -18342,7 +20016,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -18363,7 +20039,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqrelid", @@ -18384,7 +20062,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqtypid", @@ -18405,7 +20085,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqstart", @@ -18426,7 +20108,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqincrement", @@ -18447,7 +20131,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqmax", @@ -18468,7 +20154,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqmin", @@ -18489,7 +20177,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqcache", @@ -18510,7 +20200,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seqcycle", @@ -18531,7 +20223,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18562,7 +20256,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequencename", @@ -18583,7 +20279,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequenceowner", @@ -18604,7 +20302,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -18625,7 +20325,9 @@ "catalog": "", "schema": "", "name": "regtype" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "start_value", @@ -18646,7 +20348,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "min_value", @@ -18667,7 +20371,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_value", @@ -18688,7 +20394,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "increment_by", @@ -18709,7 +20417,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cycle", @@ -18730,7 +20440,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cache_size", @@ -18751,7 +20463,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_value", @@ -18772,7 +20486,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -18803,7 +20519,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "setting", @@ -18824,7 +20542,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unit", @@ -18845,7 +20565,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "category", @@ -18866,7 +20588,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "short_desc", @@ -18887,7 +20611,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "extra_desc", @@ -18908,7 +20634,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "context", @@ -18929,7 +20657,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vartype", @@ -18950,7 +20680,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "source", @@ -18971,7 +20703,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "min_val", @@ -18992,7 +20726,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_val", @@ -19013,7 +20749,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enumvals", @@ -19034,7 +20772,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "boot_val", @@ -19055,7 +20795,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reset_val", @@ -19076,7 +20818,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourcefile", @@ -19097,7 +20841,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sourceline", @@ -19118,7 +20864,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pending_restart", @@ -19139,7 +20887,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19170,7 +20920,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -19191,7 +20943,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usecreatedb", @@ -19212,7 +20966,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesuper", @@ -19233,7 +20989,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "userepl", @@ -19254,7 +21012,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usebypassrls", @@ -19275,7 +21035,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "passwd", @@ -19296,7 +21058,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "valuntil", @@ -19317,7 +21081,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "useconfig", @@ -19338,7 +21104,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19369,7 +21137,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19390,7 +21160,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19411,7 +21183,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -19432,7 +21206,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -19453,7 +21229,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -19474,7 +21252,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dbid", @@ -19495,7 +21275,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classid", @@ -19516,7 +21298,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objid", @@ -19537,7 +21321,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objsubid", @@ -19558,7 +21344,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refclassid", @@ -19579,7 +21367,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "refobjid", @@ -19600,7 +21390,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deptype", @@ -19621,7 +21413,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19652,7 +21446,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19673,7 +21469,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19694,7 +21492,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -19715,7 +21515,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -19736,7 +21538,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -19757,7 +21561,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -19778,7 +21584,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -19799,7 +21607,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "description", @@ -19820,7 +21630,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19851,7 +21663,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "off", @@ -19872,7 +21686,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "size", @@ -19893,7 +21709,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "allocated_size", @@ -19914,7 +21732,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -19945,7 +21765,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -19966,7 +21788,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -19987,7 +21811,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -20008,7 +21834,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -20029,7 +21857,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -20050,7 +21880,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "objoid", @@ -20071,7 +21903,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "classoid", @@ -20092,7 +21926,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "provider", @@ -20113,7 +21949,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "label", @@ -20134,7 +21972,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20165,7 +22005,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -20186,7 +22028,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -20207,7 +22051,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "leader_pid", @@ -20228,7 +22074,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -20249,7 +22097,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -20270,7 +22120,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "application_name", @@ -20291,7 +22143,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_addr", @@ -20312,7 +22166,9 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_hostname", @@ -20333,7 +22189,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_port", @@ -20354,7 +22212,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_start", @@ -20375,7 +22235,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_start", @@ -20396,7 +22258,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query_start", @@ -20417,7 +22281,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state_change", @@ -20438,7 +22304,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wait_event_type", @@ -20459,7 +22327,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wait_event", @@ -20480,7 +22350,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state", @@ -20501,7 +22373,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xid", @@ -20522,7 +22396,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xmin", @@ -20543,7 +22419,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query_id", @@ -20564,7 +22442,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "query", @@ -20585,7 +22465,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_type", @@ -20606,7 +22488,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20637,7 +22521,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -20658,7 +22544,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -20679,7 +22567,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -20700,7 +22590,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -20721,7 +22613,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -20742,7 +22636,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -20763,7 +22659,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -20784,7 +22682,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -20815,7 +22715,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -20836,7 +22738,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -20857,7 +22761,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -20878,7 +22784,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -20899,7 +22807,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -20920,7 +22830,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -20941,7 +22853,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -20962,7 +22876,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -20983,7 +22899,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -21004,7 +22922,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -21025,7 +22945,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -21046,7 +22968,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -21067,7 +22991,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -21088,7 +23014,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -21109,7 +23037,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -21130,7 +23060,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -21151,7 +23083,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -21172,7 +23106,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -21193,7 +23129,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -21214,7 +23152,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -21235,7 +23175,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -21256,7 +23198,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -21277,7 +23221,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21308,7 +23254,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_archived_wal", @@ -21329,7 +23277,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_archived_time", @@ -21350,7 +23300,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "failed_count", @@ -21371,7 +23323,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_failed_wal", @@ -21392,7 +23346,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_failed_time", @@ -21413,7 +23369,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -21434,7 +23392,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21465,7 +23425,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoints_req", @@ -21486,7 +23448,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoint_write_time", @@ -21507,7 +23471,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checkpoint_sync_time", @@ -21528,7 +23494,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_checkpoint", @@ -21549,7 +23517,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_clean", @@ -21570,7 +23540,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maxwritten_clean", @@ -21591,7 +23563,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_backend", @@ -21612,7 +23586,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_backend_fsync", @@ -21633,7 +23609,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "buffers_alloc", @@ -21654,7 +23632,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -21675,7 +23655,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -21706,7 +23688,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -21727,7 +23711,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numbackends", @@ -21748,7 +23734,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_commit", @@ -21769,7 +23757,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xact_rollback", @@ -21790,7 +23780,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -21811,7 +23803,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -21832,7 +23826,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_returned", @@ -21853,7 +23849,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_fetched", @@ -21874,7 +23872,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_inserted", @@ -21895,7 +23895,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_updated", @@ -21916,7 +23918,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tup_deleted", @@ -21937,7 +23941,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conflicts", @@ -21958,7 +23964,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temp_files", @@ -21979,7 +23987,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "temp_bytes", @@ -22000,7 +24010,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "deadlocks", @@ -22021,7 +24033,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checksum_failures", @@ -22042,7 +24056,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "checksum_last_failure", @@ -22063,7 +24079,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blk_read_time", @@ -22084,7 +24102,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blk_write_time", @@ -22105,7 +24125,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "session_time", @@ -22126,7 +24148,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "active_time", @@ -22147,7 +24171,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idle_in_transaction_time", @@ -22168,7 +24194,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions", @@ -22189,7 +24217,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_abandoned", @@ -22210,7 +24240,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_fatal", @@ -22231,7 +24263,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sessions_killed", @@ -22252,7 +24286,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -22273,7 +24309,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22304,7 +24342,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22325,7 +24365,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_tablespace", @@ -22346,7 +24388,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_lock", @@ -22367,7 +24411,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_snapshot", @@ -22388,7 +24434,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_bufferpin", @@ -22409,7 +24457,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "confl_deadlock", @@ -22430,7 +24480,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22461,7 +24513,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "gss_authenticated", @@ -22482,7 +24536,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "principal", @@ -22503,7 +24559,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "encrypted", @@ -22524,7 +24582,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22555,7 +24615,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -22576,7 +24638,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22597,7 +24661,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -22618,7 +24684,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -22639,7 +24707,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sample_blks_total", @@ -22660,7 +24730,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sample_blks_scanned", @@ -22681,7 +24753,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ext_stats_total", @@ -22702,7 +24776,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ext_stats_computed", @@ -22723,7 +24799,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "child_tables_total", @@ -22744,7 +24822,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "child_tables_done", @@ -22765,7 +24845,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "current_child_table_relid", @@ -22786,7 +24868,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22817,7 +24901,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -22838,7 +24924,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backup_total", @@ -22859,7 +24947,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backup_streamed", @@ -22880,7 +24970,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespaces_total", @@ -22901,7 +24993,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespaces_streamed", @@ -22922,7 +25016,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -22953,7 +25049,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -22974,7 +25072,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -22995,7 +25095,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23016,7 +25118,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -23037,7 +25141,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23058,7 +25164,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cluster_index_relid", @@ -23079,7 +25187,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_tuples_scanned", @@ -23100,7 +25210,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_tuples_written", @@ -23121,7 +25233,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_total", @@ -23142,7 +25256,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_scanned", @@ -23163,7 +25279,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_rebuild_count", @@ -23184,7 +25302,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23215,7 +25335,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23236,7 +25358,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23257,7 +25381,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23278,7 +25404,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -23299,7 +25427,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type", @@ -23320,7 +25450,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bytes_processed", @@ -23341,7 +25473,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bytes_total", @@ -23362,7 +25496,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_processed", @@ -23383,7 +25519,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_excluded", @@ -23404,7 +25542,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23435,7 +25575,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23456,7 +25598,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23477,7 +25621,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23498,7 +25644,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_relid", @@ -23519,7 +25667,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "command", @@ -23540,7 +25690,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23561,7 +25713,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lockers_total", @@ -23582,7 +25736,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "lockers_done", @@ -23603,7 +25759,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "current_locker_pid", @@ -23624,7 +25782,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blocks_total", @@ -23645,7 +25805,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blocks_done", @@ -23666,7 +25828,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_total", @@ -23687,7 +25851,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tuples_done", @@ -23708,7 +25874,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partitions_total", @@ -23729,7 +25897,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "partitions_done", @@ -23750,7 +25920,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -23781,7 +25953,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datid", @@ -23802,7 +25976,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datname", @@ -23823,7 +25999,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -23844,7 +26022,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "phase", @@ -23865,7 +26045,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_total", @@ -23886,7 +26068,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_scanned", @@ -23907,7 +26091,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_vacuumed", @@ -23928,7 +26114,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "index_vacuum_count", @@ -23949,7 +26137,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_dead_tuples", @@ -23970,7 +26160,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "num_dead_tuples", @@ -23991,7 +26183,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24022,7 +26216,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prefetch", @@ -24043,7 +26239,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hit", @@ -24064,7 +26262,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_init", @@ -24085,7 +26285,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_new", @@ -24106,7 +26308,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_fpw", @@ -24127,7 +26331,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "skip_rep", @@ -24148,7 +26354,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_distance", @@ -24169,7 +26377,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "block_distance", @@ -24190,7 +26400,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "io_depth", @@ -24211,7 +26423,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24242,7 +26456,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -24263,7 +26479,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -24284,7 +26502,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "application_name", @@ -24305,7 +26525,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_addr", @@ -24326,7 +26548,9 @@ "catalog": "", "schema": "", "name": "inet" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_hostname", @@ -24347,7 +26571,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_port", @@ -24368,7 +26594,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_start", @@ -24389,7 +26617,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "backend_xmin", @@ -24410,7 +26640,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "state", @@ -24431,7 +26663,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sent_lsn", @@ -24452,7 +26686,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "write_lsn", @@ -24473,7 +26709,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flush_lsn", @@ -24494,7 +26732,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "replay_lsn", @@ -24515,7 +26755,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "write_lag", @@ -24536,7 +26778,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flush_lag", @@ -24557,7 +26801,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "replay_lag", @@ -24578,7 +26824,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_priority", @@ -24599,7 +26847,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_state", @@ -24620,7 +26870,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reply_time", @@ -24641,7 +26893,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24672,7 +26926,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_txns", @@ -24693,7 +26949,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_count", @@ -24714,7 +26972,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spill_bytes", @@ -24735,7 +26995,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_txns", @@ -24756,7 +27018,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_count", @@ -24777,7 +27041,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stream_bytes", @@ -24798,7 +27064,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_txns", @@ -24819,7 +27087,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_bytes", @@ -24840,7 +27110,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -24861,7 +27133,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -24892,7 +27166,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_zeroed", @@ -24913,7 +27189,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -24934,7 +27212,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -24955,7 +27235,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_written", @@ -24976,7 +27258,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_exists", @@ -24997,7 +27281,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flushes", @@ -25018,7 +27304,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "truncates", @@ -25039,7 +27327,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -25060,7 +27350,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25091,7 +27383,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ssl", @@ -25112,7 +27406,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "version", @@ -25133,7 +27429,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cipher", @@ -25154,7 +27452,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bits", @@ -25175,7 +27475,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_dn", @@ -25196,7 +27498,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "client_serial", @@ -25217,7 +27521,9 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "issuer_dn", @@ -25238,7 +27544,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25269,7 +27577,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -25290,7 +27600,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pid", @@ -25311,7 +27623,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relid", @@ -25332,7 +27646,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "received_lsn", @@ -25353,7 +27669,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_send_time", @@ -25374,7 +27692,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_receipt_time", @@ -25395,7 +27715,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_lsn", @@ -25416,7 +27738,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_time", @@ -25437,7 +27761,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25468,7 +27794,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -25489,7 +27817,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "apply_error_count", @@ -25510,7 +27840,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sync_error_count", @@ -25531,7 +27863,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -25552,7 +27886,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25583,7 +27919,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -25604,7 +27942,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -25625,7 +27965,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -25646,7 +27988,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -25667,7 +28011,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -25688,7 +28034,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -25709,7 +28057,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -25730,7 +28080,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -25761,7 +28113,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -25782,7 +28136,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -25803,7 +28159,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -25824,7 +28182,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -25845,7 +28205,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -25866,7 +28228,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -25887,7 +28251,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -25908,7 +28274,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -25929,7 +28297,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -25950,7 +28320,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -25971,7 +28343,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -25992,7 +28366,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -26013,7 +28389,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -26034,7 +28412,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -26055,7 +28435,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -26076,7 +28458,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -26097,7 +28481,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -26118,7 +28504,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -26139,7 +28527,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -26160,7 +28550,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -26181,7 +28573,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -26202,7 +28596,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -26223,7 +28619,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26254,7 +28652,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26275,7 +28675,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "funcname", @@ -26296,7 +28698,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "calls", @@ -26317,7 +28721,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_time", @@ -26338,7 +28744,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_time", @@ -26359,7 +28767,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26390,7 +28800,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -26411,7 +28823,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26432,7 +28846,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -26453,7 +28869,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -26474,7 +28892,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -26495,7 +28915,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_read", @@ -26516,7 +28938,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -26537,7 +28961,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -26568,7 +28994,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -26589,7 +29017,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -26610,7 +29040,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -26631,7 +29063,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -26652,7 +29086,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -26673,7 +29109,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -26694,7 +29132,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -26715,7 +29155,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -26736,7 +29178,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -26757,7 +29201,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -26778,7 +29224,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_live_tup", @@ -26799,7 +29247,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_dead_tup", @@ -26820,7 +29270,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_mod_since_analyze", @@ -26841,7 +29293,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_ins_since_vacuum", @@ -26862,7 +29316,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_vacuum", @@ -26883,7 +29339,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autovacuum", @@ -26904,7 +29362,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_analyze", @@ -26925,7 +29385,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_autoanalyze", @@ -26946,7 +29408,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "vacuum_count", @@ -26967,7 +29431,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autovacuum_count", @@ -26988,7 +29454,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "analyze_count", @@ -27009,7 +29477,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "autoanalyze_count", @@ -27030,7 +29500,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27061,7 +29533,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_fpi", @@ -27082,7 +29556,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_bytes", @@ -27103,7 +29579,9 @@ "catalog": "", "schema": "", "name": "numeric" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_buffers_full", @@ -27124,7 +29602,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_write", @@ -27145,7 +29625,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_sync", @@ -27166,7 +29648,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_write_time", @@ -27187,7 +29671,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "wal_sync_time", @@ -27208,7 +29694,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stats_reset", @@ -27229,7 +29717,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27260,7 +29750,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "status", @@ -27281,7 +29773,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "receive_start_lsn", @@ -27302,7 +29796,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "receive_start_tli", @@ -27323,7 +29819,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "written_lsn", @@ -27344,7 +29842,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "flushed_lsn", @@ -27365,7 +29865,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "received_tli", @@ -27386,7 +29888,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_send_time", @@ -27407,7 +29911,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_msg_receipt_time", @@ -27428,7 +29934,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_lsn", @@ -27449,7 +29957,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "latest_end_time", @@ -27470,7 +29980,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "slot_name", @@ -27491,7 +30003,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sender_host", @@ -27512,7 +30026,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sender_port", @@ -27533,7 +30049,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "conninfo", @@ -27554,7 +30072,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27585,7 +30105,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27606,7 +30128,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -27627,7 +30151,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -27648,7 +30174,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -27669,7 +30197,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27690,7 +30220,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27711,7 +30243,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -27732,7 +30266,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -27753,7 +30289,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -27774,7 +30312,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -27795,7 +30335,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -27826,7 +30368,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -27847,7 +30391,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -27868,7 +30414,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -27889,7 +30437,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -27910,7 +30460,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -27931,7 +30483,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -27952,7 +30506,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -27973,7 +30529,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -27994,7 +30552,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -28015,7 +30575,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -28036,7 +30598,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28067,7 +30631,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28088,7 +30654,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "funcname", @@ -28109,7 +30677,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "calls", @@ -28130,7 +30700,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "total_time", @@ -28151,7 +30723,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_time", @@ -28172,7 +30746,9 @@ "catalog": "", "schema": "", "name": "float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28203,7 +30779,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28224,7 +30802,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28245,7 +30825,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_scan", @@ -28266,7 +30848,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "seq_tup_read", @@ -28287,7 +30871,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_scan", @@ -28308,7 +30894,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_tup_fetch", @@ -28329,7 +30917,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_ins", @@ -28350,7 +30940,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_upd", @@ -28371,7 +30963,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_del", @@ -28392,7 +30986,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_tup_hot_upd", @@ -28413,7 +31009,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28444,7 +31042,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -28465,7 +31065,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28486,7 +31088,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28507,7 +31111,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -28528,7 +31134,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -28549,7 +31157,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -28570,7 +31180,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28601,7 +31213,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28622,7 +31236,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28643,7 +31259,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -28664,7 +31282,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -28685,7 +31305,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28716,7 +31338,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28737,7 +31361,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -28758,7 +31384,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -28779,7 +31407,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -28800,7 +31430,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -28821,7 +31453,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -28842,7 +31476,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -28863,7 +31499,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -28884,7 +31522,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -28905,7 +31545,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -28926,7 +31568,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -28957,7 +31601,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -28978,7 +31624,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -28999,7 +31647,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29020,7 +31670,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -29041,7 +31693,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29062,7 +31716,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29083,7 +31739,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29114,7 +31772,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29135,7 +31795,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29156,7 +31818,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -29177,7 +31841,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -29198,7 +31864,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29229,7 +31897,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29250,7 +31920,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29271,7 +31943,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -29292,7 +31966,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -29313,7 +31989,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29334,7 +32012,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29355,7 +32035,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -29376,7 +32058,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -29397,7 +32081,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -29418,7 +32104,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -29439,7 +32127,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29470,7 +32160,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelid", @@ -29491,7 +32183,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29512,7 +32206,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29533,7 +32229,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "indexrelname", @@ -29554,7 +32252,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29575,7 +32275,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29596,7 +32298,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29627,7 +32331,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29648,7 +32354,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29669,7 +32377,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_read", @@ -29690,7 +32400,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "blks_hit", @@ -29711,7 +32423,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29742,7 +32456,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schemaname", @@ -29763,7 +32479,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -29784,7 +32502,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_read", @@ -29805,7 +32525,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "heap_blks_hit", @@ -29826,7 +32548,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_read", @@ -29847,7 +32571,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "idx_blks_hit", @@ -29868,7 +32594,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_read", @@ -29889,7 +32617,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "toast_blks_hit", @@ -29910,7 +32640,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_read", @@ -29931,7 +32663,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tidx_blks_hit", @@ -29952,7 +32686,9 @@ "catalog": "", "schema": "", "name": "int8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -29983,7 +32719,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -30004,7 +32742,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -30025,7 +32765,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -30046,7 +32788,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -30067,7 +32811,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -30088,7 +32834,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "starelid", @@ -30109,7 +32857,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staattnum", @@ -30130,7 +32880,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stainherit", @@ -30151,7 +32903,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanullfrac", @@ -30172,7 +32926,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stawidth", @@ -30193,7 +32949,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stadistinct", @@ -30214,7 +32972,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind1", @@ -30235,7 +32995,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind2", @@ -30256,7 +33018,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind3", @@ -30277,7 +33041,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind4", @@ -30298,7 +33064,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stakind5", @@ -30319,7 +33087,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop1", @@ -30340,7 +33110,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop2", @@ -30361,7 +33133,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop3", @@ -30382,7 +33156,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop4", @@ -30403,7 +33179,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "staop5", @@ -30424,7 +33202,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll1", @@ -30445,7 +33225,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll2", @@ -30466,7 +33248,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll3", @@ -30487,7 +33271,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll4", @@ -30508,7 +33294,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stacoll5", @@ -30529,7 +33317,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers1", @@ -30550,7 +33340,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers2", @@ -30571,7 +33363,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers3", @@ -30592,7 +33386,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers4", @@ -30613,7 +33409,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stanumbers5", @@ -30634,7 +33432,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues1", @@ -30655,7 +33455,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues2", @@ -30676,7 +33478,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues3", @@ -30697,7 +33501,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues4", @@ -30718,7 +33524,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stavalues5", @@ -30739,7 +33547,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -30770,7 +33580,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -30791,7 +33603,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -30812,7 +33626,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -30833,7 +33649,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -30854,7 +33672,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -30875,7 +33695,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -30896,7 +33718,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxrelid", @@ -30917,7 +33741,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxname", @@ -30938,7 +33764,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxnamespace", @@ -30959,7 +33787,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxowner", @@ -30980,7 +33810,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxstattarget", @@ -31001,7 +33833,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxkeys", @@ -31022,7 +33856,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxkind", @@ -31043,7 +33879,9 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxexprs", @@ -31064,7 +33902,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31095,7 +33935,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -31116,7 +33958,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -31137,7 +33981,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -31158,7 +34004,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -31179,7 +34027,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -31200,7 +34050,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxoid", @@ -31221,7 +34073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdinherit", @@ -31242,7 +34096,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdndistinct", @@ -31263,7 +34119,9 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxddependencies", @@ -31284,7 +34142,9 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdmcv", @@ -31305,7 +34165,9 @@ "catalog": "", "schema": "", "name": "pg_mcv_list" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "stxdexpr", @@ -31326,7 +34188,9 @@ "catalog": "", "schema": "", "name": "_pg_statistic" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31357,7 +34221,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -31378,7 +34244,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -31399,7 +34267,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -31420,7 +34290,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "null_frac", @@ -31441,7 +34313,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "avg_width", @@ -31462,7 +34336,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -31483,7 +34359,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -31504,7 +34382,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -31525,7 +34405,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "histogram_bounds", @@ -31546,7 +34428,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "correlation", @@ -31567,7 +34451,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elems", @@ -31588,7 +34474,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elem_freqs", @@ -31609,7 +34497,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "elem_count_histogram", @@ -31630,7 +34520,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31661,7 +34553,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -31682,7 +34576,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_schemaname", @@ -31703,7 +34599,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_name", @@ -31724,7 +34622,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_owner", @@ -31745,7 +34645,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attnames", @@ -31766,7 +34668,9 @@ "catalog": "", "schema": "", "name": "_name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "exprs", @@ -31787,7 +34691,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "kinds", @@ -31808,7 +34714,9 @@ "catalog": "", "schema": "", "name": "_char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -31829,7 +34737,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -31850,7 +34760,9 @@ "catalog": "", "schema": "", "name": "pg_ndistinct" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dependencies", @@ -31871,7 +34783,9 @@ "catalog": "", "schema": "", "name": "pg_dependencies" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -31892,7 +34806,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_val_nulls", @@ -31913,7 +34829,9 @@ "catalog": "", "schema": "", "name": "_bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -31934,7 +34852,9 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_base_freqs", @@ -31955,7 +34875,9 @@ "catalog": "", "schema": "", "name": "_float8" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -31986,7 +34908,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -32007,7 +34931,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_schemaname", @@ -32028,7 +34954,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_name", @@ -32049,7 +34977,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "statistics_owner", @@ -32070,7 +35000,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "expr", @@ -32091,7 +35023,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "inherited", @@ -32112,7 +35046,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "null_frac", @@ -32133,7 +35069,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "avg_width", @@ -32154,7 +35092,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "n_distinct", @@ -32175,7 +35115,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_vals", @@ -32196,7 +35138,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_freqs", @@ -32217,7 +35161,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "histogram_bounds", @@ -32238,7 +35184,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "correlation", @@ -32259,7 +35207,9 @@ "catalog": "", "schema": "", "name": "float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elems", @@ -32280,7 +35230,9 @@ "catalog": "", "schema": "", "name": "anyarray" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "most_common_elem_freqs", @@ -32301,7 +35253,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "elem_count_histogram", @@ -32322,7 +35276,9 @@ "catalog": "", "schema": "", "name": "_float4" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32353,7 +35309,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -32374,7 +35332,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -32395,7 +35355,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -32416,7 +35378,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -32437,7 +35401,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -32458,7 +35424,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -32479,7 +35447,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subdbid", @@ -32500,7 +35470,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subskiplsn", @@ -32521,7 +35493,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subname", @@ -32542,7 +35516,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subowner", @@ -32563,7 +35539,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subenabled", @@ -32584,7 +35562,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subbinary", @@ -32605,7 +35585,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "substream", @@ -32626,7 +35608,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subtwophasestate", @@ -32647,7 +35631,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subdisableonerr", @@ -32668,7 +35654,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subconninfo", @@ -32689,7 +35677,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subslotname", @@ -32710,7 +35700,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subsynccommit", @@ -32731,7 +35723,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "subpublications", @@ -32752,7 +35746,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -32783,7 +35779,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -32804,7 +35802,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -32825,7 +35825,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -32846,7 +35848,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -32867,7 +35871,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -32888,7 +35894,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsubid", @@ -32909,7 +35917,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srrelid", @@ -32930,7 +35940,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsubstate", @@ -32951,7 +35963,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srsublsn", @@ -32972,7 +35986,9 @@ "catalog": "", "schema": "", "name": "pg_lsn" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33003,7 +36019,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablename", @@ -33024,7 +36042,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tableowner", @@ -33045,7 +36065,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tablespace", @@ -33066,7 +36088,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasindexes", @@ -33087,7 +36111,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hasrules", @@ -33108,7 +36134,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "hastriggers", @@ -33129,7 +36157,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "rowsecurity", @@ -33150,7 +36180,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33181,7 +36213,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33202,7 +36236,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33223,7 +36259,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33244,7 +36282,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33265,7 +36305,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33286,7 +36328,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33307,7 +36351,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcname", @@ -33328,7 +36374,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcowner", @@ -33349,7 +36397,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcacl", @@ -33370,7 +36420,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "spcoptions", @@ -33391,7 +36443,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33422,7 +36476,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "utc_offset", @@ -33443,7 +36499,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_dst", @@ -33464,7 +36522,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33495,7 +36555,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "abbrev", @@ -33516,7 +36578,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "utc_offset", @@ -33537,7 +36601,9 @@ "catalog": "", "schema": "", "name": "interval" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_dst", @@ -33558,7 +36624,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33589,7 +36657,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33610,7 +36680,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33631,7 +36703,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33652,7 +36726,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33673,7 +36749,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33694,7 +36772,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33715,7 +36795,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trftype", @@ -33736,7 +36818,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trflang", @@ -33757,7 +36841,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trffromsql", @@ -33778,7 +36864,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trftosql", @@ -33799,7 +36887,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -33830,7 +36920,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -33851,7 +36943,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -33872,7 +36966,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -33893,7 +36989,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -33914,7 +37012,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -33935,7 +37035,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -33956,7 +37058,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgrelid", @@ -33977,7 +37081,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgparentid", @@ -33998,7 +37104,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgname", @@ -34019,7 +37127,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgfoid", @@ -34040,7 +37150,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgtype", @@ -34061,7 +37173,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgenabled", @@ -34082,7 +37196,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgisinternal", @@ -34103,7 +37219,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstrrelid", @@ -34124,7 +37242,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstrindid", @@ -34145,7 +37265,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgconstraint", @@ -34166,7 +37288,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgdeferrable", @@ -34187,7 +37311,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tginitdeferred", @@ -34208,7 +37334,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgnargs", @@ -34229,7 +37357,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgattr", @@ -34250,7 +37380,9 @@ "catalog": "", "schema": "", "name": "int2vector" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgargs", @@ -34271,7 +37403,9 @@ "catalog": "", "schema": "", "name": "bytea" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgqual", @@ -34292,7 +37426,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgoldtable", @@ -34313,7 +37449,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tgnewtable", @@ -34334,7 +37472,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34365,7 +37505,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34386,7 +37528,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34407,7 +37551,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34428,7 +37574,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34449,7 +37597,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34470,7 +37620,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -34491,7 +37643,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgname", @@ -34512,7 +37666,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgnamespace", @@ -34533,7 +37689,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgowner", @@ -34554,7 +37712,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cfgparser", @@ -34575,7 +37735,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34606,7 +37768,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34627,7 +37791,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34648,7 +37814,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34669,7 +37837,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34690,7 +37860,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34711,7 +37883,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapcfg", @@ -34732,7 +37906,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maptokentype", @@ -34753,7 +37929,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapseqno", @@ -34774,7 +37952,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "mapdict", @@ -34795,7 +37975,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -34826,7 +38008,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -34847,7 +38031,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -34868,7 +38054,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -34889,7 +38077,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -34910,7 +38100,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -34931,7 +38123,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -34952,7 +38146,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictname", @@ -34973,7 +38169,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictnamespace", @@ -34994,7 +38192,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictowner", @@ -35015,7 +38215,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dicttemplate", @@ -35036,7 +38238,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dictinitoption", @@ -35057,7 +38261,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35088,7 +38294,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35109,7 +38317,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35130,7 +38340,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35151,7 +38363,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35172,7 +38386,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35193,7 +38409,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35214,7 +38432,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsname", @@ -35235,7 +38455,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsnamespace", @@ -35256,7 +38478,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsstart", @@ -35277,7 +38501,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prstoken", @@ -35298,7 +38524,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsend", @@ -35319,7 +38547,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prsheadline", @@ -35340,7 +38570,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "prslextype", @@ -35361,7 +38593,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35392,7 +38626,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35413,7 +38649,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35434,7 +38672,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35455,7 +38695,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35476,7 +38718,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35497,7 +38741,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35518,7 +38764,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplname", @@ -35539,7 +38787,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplnamespace", @@ -35560,7 +38810,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmplinit", @@ -35581,7 +38833,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "tmpllexize", @@ -35602,7 +38856,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -35633,7 +38889,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -35654,7 +38912,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -35675,7 +38935,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -35696,7 +38958,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -35717,7 +38981,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -35738,7 +39004,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -35759,7 +39027,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typname", @@ -35780,7 +39050,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typnamespace", @@ -35801,7 +39073,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typowner", @@ -35822,7 +39096,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typlen", @@ -35843,7 +39119,9 @@ "catalog": "", "schema": "", "name": "int2" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typbyval", @@ -35864,7 +39142,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typtype", @@ -35885,7 +39165,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typcategory", @@ -35906,7 +39188,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typispreferred", @@ -35927,7 +39211,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typisdefined", @@ -35948,7 +39234,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdelim", @@ -35969,7 +39257,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typrelid", @@ -35990,7 +39280,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typsubscript", @@ -36011,7 +39303,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typelem", @@ -36032,7 +39326,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typarray", @@ -36053,7 +39349,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typinput", @@ -36074,7 +39372,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typoutput", @@ -36095,7 +39395,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typreceive", @@ -36116,7 +39418,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typsend", @@ -36137,7 +39441,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typmodin", @@ -36158,7 +39464,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typmodout", @@ -36179,7 +39487,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typanalyze", @@ -36200,7 +39510,9 @@ "catalog": "", "schema": "", "name": "regproc" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typalign", @@ -36221,7 +39533,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typstorage", @@ -36242,7 +39556,9 @@ "catalog": "", "schema": "", "name": "char" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typnotnull", @@ -36263,7 +39579,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typbasetype", @@ -36284,7 +39602,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typtypmod", @@ -36305,7 +39625,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typndims", @@ -36326,7 +39648,9 @@ "catalog": "", "schema": "", "name": "int4" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typcollation", @@ -36347,7 +39671,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdefaultbin", @@ -36368,7 +39694,9 @@ "catalog": "", "schema": "", "name": "pg_node_tree" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typdefault", @@ -36389,7 +39717,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "typacl", @@ -36410,7 +39740,9 @@ "catalog": "", "schema": "", "name": "_aclitem" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36441,7 +39773,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesysid", @@ -36462,7 +39796,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usecreatedb", @@ -36483,7 +39819,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usesuper", @@ -36504,7 +39842,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "userepl", @@ -36525,7 +39865,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usebypassrls", @@ -36546,7 +39888,9 @@ "catalog": "", "schema": "", "name": "bool" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "passwd", @@ -36567,7 +39911,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "valuntil", @@ -36588,7 +39934,9 @@ "catalog": "", "schema": "", "name": "timestamptz" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "useconfig", @@ -36609,7 +39957,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36640,7 +39990,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -36661,7 +40013,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -36682,7 +40036,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -36703,7 +40059,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -36724,7 +40082,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -36745,7 +40105,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "oid", @@ -36766,7 +40128,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -36787,7 +40151,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umserver", @@ -36808,7 +40174,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -36829,7 +40197,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36860,7 +40230,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvid", @@ -36881,7 +40253,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvname", @@ -36902,7 +40276,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -36923,7 +40299,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "usename", @@ -36944,7 +40322,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -36965,7 +40345,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -36996,7 +40378,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "viewname", @@ -37017,7 +40401,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "viewowner", @@ -37038,7 +40424,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "definition", @@ -37059,7 +40447,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37098,7 +40488,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwowner", @@ -37119,7 +40511,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "fdwoptions", @@ -37140,7 +40534,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -37161,7 +40557,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -37182,7 +40580,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37203,7 +40603,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_language", @@ -37224,7 +40626,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37255,7 +40659,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvoptions", @@ -37276,7 +40682,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -37297,7 +40705,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -37318,7 +40728,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -37339,7 +40751,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -37360,7 +40774,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_type", @@ -37381,7 +40797,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_version", @@ -37402,7 +40820,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37423,7 +40843,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37454,7 +40876,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "relname", @@ -37475,7 +40899,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attname", @@ -37496,7 +40922,9 @@ "catalog": "", "schema": "", "name": "name" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attfdwoptions", @@ -37517,7 +40945,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37548,7 +40978,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -37569,7 +41001,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -37590,7 +41024,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ftoptions", @@ -37611,7 +41047,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -37632,7 +41070,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -37653,7 +41093,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37674,7 +41116,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37705,7 +41149,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umoptions", @@ -37726,7 +41172,9 @@ "catalog": "", "schema": "", "name": "_text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "umuser", @@ -37747,7 +41195,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -37768,7 +41218,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -37789,7 +41241,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -37810,7 +41264,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "srvowner", @@ -37831,7 +41287,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37862,7 +41320,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "role_name", @@ -37883,7 +41343,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -37904,7 +41366,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -37935,7 +41399,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "role_name", @@ -37956,7 +41422,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -37977,7 +41445,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38008,7 +41478,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -38029,7 +41501,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -38050,7 +41524,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_name", @@ -38071,7 +41547,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -38092,7 +41570,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_default", @@ -38113,7 +41593,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_nullable", @@ -38134,7 +41616,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -38155,7 +41639,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -38176,7 +41662,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -38197,7 +41685,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -38218,7 +41708,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -38239,7 +41731,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -38260,7 +41754,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -38281,7 +41777,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -38302,7 +41800,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -38323,7 +41823,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -38344,7 +41846,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -38365,7 +41869,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -38386,7 +41892,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -38407,7 +41915,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -38428,7 +41938,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -38449,7 +41961,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_catalog", @@ -38470,7 +41984,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_schema", @@ -38491,7 +42007,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "attribute_udt_name", @@ -38512,7 +42030,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -38533,7 +42053,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -38554,7 +42076,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -38575,7 +42099,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -38596,7 +42122,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -38617,7 +42145,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_derived_reference_attribute", @@ -38638,7 +42168,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38669,7 +42201,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -38690,7 +42224,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -38711,7 +42247,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_repertoire", @@ -38732,7 +42270,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "form_of_use", @@ -38753,7 +42293,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_catalog", @@ -38774,7 +42316,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_schema", @@ -38795,7 +42339,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_collate_name", @@ -38816,7 +42362,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38847,7 +42395,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -38868,7 +42418,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -38889,7 +42441,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -38910,7 +42464,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -38931,7 +42487,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -38952,7 +42510,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -38983,7 +42543,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -39004,7 +42566,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -39025,7 +42589,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "check_clause", @@ -39046,7 +42612,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39077,7 +42645,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -39098,7 +42668,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -39119,7 +42691,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -39140,7 +42714,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -39161,7 +42737,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -39182,7 +42760,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39213,7 +42793,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -39234,7 +42816,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -39255,7 +42839,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "pad_attribute", @@ -39276,7 +42862,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39307,7 +42895,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39328,7 +42918,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39349,7 +42941,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39370,7 +42964,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dependent_column", @@ -39391,7 +42987,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39422,7 +43020,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -39443,7 +43043,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -39464,7 +43066,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -39485,7 +43089,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39506,7 +43112,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39527,7 +43135,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39548,7 +43158,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39579,7 +43191,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39600,7 +43214,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39621,7 +43237,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39642,7 +43260,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -39663,7 +43283,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -39684,7 +43306,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39715,7 +43339,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -39736,7 +43362,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -39757,7 +43385,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39778,7 +43408,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39799,7 +43431,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -39820,7 +43454,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -39841,7 +43477,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -39862,7 +43500,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -39893,7 +43533,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -39914,7 +43556,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -39935,7 +43579,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -39956,7 +43602,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -39977,7 +43625,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -39998,7 +43648,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -40019,7 +43671,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40050,7 +43704,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -40071,7 +43727,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -40092,7 +43750,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -40113,7 +43773,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -40134,7 +43796,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_default", @@ -40155,7 +43819,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_nullable", @@ -40176,7 +43842,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -40197,7 +43865,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -40218,7 +43888,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -40239,7 +43911,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -40260,7 +43934,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -40281,7 +43957,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -40302,7 +43980,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -40323,7 +44003,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -40344,7 +44026,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -40365,7 +44049,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -40386,7 +44072,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -40407,7 +44095,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -40428,7 +44118,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -40449,7 +44141,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -40470,7 +44164,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -40491,7 +44187,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -40512,7 +44210,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -40533,7 +44233,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -40554,7 +44256,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -40575,7 +44279,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -40596,7 +44302,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -40617,7 +44325,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -40638,7 +44348,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -40659,7 +44371,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -40680,7 +44394,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -40701,7 +44417,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -40722,7 +44440,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_self_referencing", @@ -40743,7 +44463,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_identity", @@ -40764,7 +44486,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_generation", @@ -40785,7 +44509,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_start", @@ -40806,7 +44532,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_increment", @@ -40827,7 +44555,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_maximum", @@ -40848,7 +44578,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_minimum", @@ -40869,7 +44601,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "identity_cycle", @@ -40890,7 +44624,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_generated", @@ -40911,7 +44647,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "generation_expression", @@ -40932,7 +44670,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_updatable", @@ -40953,7 +44693,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -40984,7 +44726,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41005,7 +44749,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41026,7 +44772,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -41047,7 +44795,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_catalog", @@ -41068,7 +44818,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -41089,7 +44841,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -41110,7 +44864,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41141,7 +44897,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -41162,7 +44920,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -41183,7 +44943,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_catalog", @@ -41204,7 +44966,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -41225,7 +44989,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -41246,7 +45012,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41277,7 +45045,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -41298,7 +45068,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -41319,7 +45091,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -41340,7 +45114,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -41361,7 +45137,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41392,7 +45170,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -41413,7 +45193,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -41434,7 +45216,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -41455,7 +45239,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41476,7 +45262,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41497,7 +45285,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deferrable", @@ -41518,7 +45308,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initially_deferred", @@ -41539,7 +45331,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41570,7 +45364,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -41591,7 +45387,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -41612,7 +45410,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_catalog", @@ -41633,7 +45433,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41654,7 +45456,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41675,7 +45479,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -41706,7 +45512,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_schema", @@ -41727,7 +45535,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_name", @@ -41748,7 +45558,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -41769,7 +45581,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -41790,7 +45604,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -41811,7 +45627,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -41832,7 +45650,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -41853,7 +45673,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -41874,7 +45696,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -41895,7 +45719,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -41916,7 +45742,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -41937,7 +45765,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -41958,7 +45788,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -41979,7 +45811,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -42000,7 +45834,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -42021,7 +45857,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -42042,7 +45880,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -42063,7 +45903,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_default", @@ -42084,7 +45926,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -42105,7 +45949,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -42126,7 +45972,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -42147,7 +45995,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -42168,7 +46018,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -42189,7 +46041,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -42210,7 +46064,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -42231,7 +46087,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -42252,7 +46110,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42283,7 +46143,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -42304,7 +46166,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -42325,7 +46189,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -42346,7 +46212,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collection_type_identifier", @@ -42367,7 +46235,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -42388,7 +46258,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -42409,7 +46281,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -42430,7 +46304,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -42451,7 +46327,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -42472,7 +46350,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -42493,7 +46373,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -42514,7 +46396,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -42535,7 +46419,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -42556,7 +46442,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -42577,7 +46465,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -42598,7 +46488,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -42619,7 +46511,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -42640,7 +46534,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -42661,7 +46557,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -42682,7 +46580,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "domain_default", @@ -42703,7 +46603,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -42724,7 +46626,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -42745,7 +46649,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -42766,7 +46672,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -42787,7 +46695,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -42808,7 +46718,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -42829,7 +46741,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -42850,7 +46764,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -42871,7 +46787,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42902,7 +46820,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -42933,7 +46853,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -42954,7 +46876,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -42975,7 +46899,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -42996,7 +46922,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43027,7 +46955,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -43048,7 +46978,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -43069,7 +47001,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "library_name", @@ -43090,7 +47024,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_language", @@ -43111,7 +47047,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43142,7 +47080,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -43163,7 +47103,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -43184,7 +47126,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -43205,7 +47149,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43236,7 +47182,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -43257,7 +47205,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_catalog", @@ -43278,7 +47228,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_data_wrapper_name", @@ -43299,7 +47251,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_type", @@ -43320,7 +47274,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_version", @@ -43341,7 +47297,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "authorization_identifier", @@ -43362,7 +47320,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43393,7 +47353,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -43414,7 +47376,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -43435,7 +47399,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -43456,7 +47422,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -43477,7 +47445,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43508,7 +47478,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_schema", @@ -43529,7 +47501,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_table_name", @@ -43550,7 +47524,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -43571,7 +47547,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -43592,7 +47570,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43623,7 +47603,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43654,7 +47636,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -43675,7 +47659,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -43696,7 +47682,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -43717,7 +47705,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -43738,7 +47728,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -43759,7 +47751,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -43780,7 +47774,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -43801,7 +47797,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "position_in_unique_constraint", @@ -43822,7 +47820,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -43853,7 +47853,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -43874,7 +47876,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -43895,7 +47899,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordinal_position", @@ -43916,7 +47922,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_mode", @@ -43937,7 +47945,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_result", @@ -43958,7 +47968,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "as_locator", @@ -43979,7 +47991,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_name", @@ -44000,7 +48014,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -44021,7 +48037,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -44042,7 +48060,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -44063,7 +48083,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -44084,7 +48106,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -44105,7 +48129,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -44126,7 +48152,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -44147,7 +48175,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -44168,7 +48198,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -44189,7 +48221,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -44210,7 +48244,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -44231,7 +48267,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -44252,7 +48290,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -44273,7 +48313,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -44294,7 +48336,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -44315,7 +48359,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -44336,7 +48382,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -44357,7 +48405,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -44378,7 +48428,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -44399,7 +48451,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -44420,7 +48474,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -44441,7 +48497,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -44462,7 +48520,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -44483,7 +48543,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_default", @@ -44504,7 +48566,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44535,7 +48599,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -44556,7 +48622,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -44577,7 +48645,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_catalog", @@ -44598,7 +48668,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_schema", @@ -44619,7 +48691,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "unique_constraint_name", @@ -44640,7 +48714,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "match_option", @@ -44661,7 +48737,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "update_rule", @@ -44682,7 +48760,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "delete_rule", @@ -44703,7 +48783,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44734,7 +48816,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -44755,7 +48839,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -44776,7 +48862,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -44797,7 +48885,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -44818,7 +48908,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -44839,7 +48931,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -44860,7 +48954,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -44881,7 +48977,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -44912,7 +49010,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -44933,7 +49033,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -44954,7 +49056,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -44975,7 +49079,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -44996,7 +49102,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -45017,7 +49125,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -45038,7 +49148,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -45059,7 +49171,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45080,7 +49194,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45101,7 +49217,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45132,7 +49250,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45153,7 +49273,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -45174,7 +49296,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -45195,7 +49319,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -45216,7 +49342,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45237,7 +49365,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45258,7 +49388,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_hierarchy", @@ -45279,7 +49411,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45310,7 +49444,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45331,7 +49467,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -45352,7 +49490,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -45373,7 +49513,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -45394,7 +49536,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45415,7 +49559,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45436,7 +49582,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45467,7 +49615,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45488,7 +49638,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_catalog", @@ -45509,7 +49661,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -45530,7 +49684,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -45551,7 +49707,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -45572,7 +49730,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -45593,7 +49753,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -45614,7 +49776,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45645,7 +49809,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -45666,7 +49832,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -45687,7 +49855,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -45708,7 +49878,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -45729,7 +49901,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -45750,7 +49924,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -45771,7 +49947,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -45792,7 +49970,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -45813,7 +49993,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -45834,7 +50016,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -45865,7 +50049,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -45886,7 +50072,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -45907,7 +50095,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -45928,7 +50118,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -45949,7 +50141,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -45970,7 +50164,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -45991,7 +50187,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46012,7 +50210,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -46033,7 +50233,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -46054,7 +50256,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46085,7 +50289,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46106,7 +50312,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46127,7 +50335,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46148,7 +50358,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46169,7 +50381,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46190,7 +50404,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46221,7 +50437,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46242,7 +50460,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46263,7 +50483,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46284,7 +50506,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46305,7 +50529,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46326,7 +50552,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_catalog", @@ -46347,7 +50575,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_schema", @@ -46368,7 +50598,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_name", @@ -46389,7 +50621,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46420,7 +50654,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46441,7 +50677,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46462,7 +50700,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46483,7 +50723,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46504,7 +50746,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46525,7 +50769,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -46546,7 +50792,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -46567,7 +50815,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -46588,7 +50838,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -46619,7 +50871,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -46640,7 +50894,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -46661,7 +50917,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_catalog", @@ -46682,7 +50940,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_schema", @@ -46703,7 +50963,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_name", @@ -46724,7 +50986,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_type", @@ -46745,7 +51009,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_catalog", @@ -46766,7 +51032,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_schema", @@ -46787,7 +51055,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "module_name", @@ -46808,7 +51078,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -46829,7 +51101,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -46850,7 +51124,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -46871,7 +51147,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -46892,7 +51170,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -46913,7 +51193,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -46934,7 +51216,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -46955,7 +51239,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -46976,7 +51262,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -46997,7 +51285,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -47018,7 +51308,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -47039,7 +51331,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -47060,7 +51354,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -47081,7 +51377,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -47102,7 +51400,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -47123,7 +51423,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -47144,7 +51446,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -47165,7 +51469,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -47186,7 +51492,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_catalog", @@ -47207,7 +51515,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_schema", @@ -47228,7 +51538,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "type_udt_name", @@ -47249,7 +51561,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_catalog", @@ -47270,7 +51584,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_schema", @@ -47291,7 +51607,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "scope_name", @@ -47312,7 +51630,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_cardinality", @@ -47333,7 +51653,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "dtd_identifier", @@ -47354,7 +51676,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_body", @@ -47375,7 +51699,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "routine_definition", @@ -47396,7 +51722,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_name", @@ -47417,7 +51745,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "external_language", @@ -47438,7 +51768,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "parameter_style", @@ -47459,7 +51791,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deterministic", @@ -47480,7 +51814,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_data_access", @@ -47501,7 +51837,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_null_call", @@ -47522,7 +51860,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_path", @@ -47543,7 +51883,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_level_routine", @@ -47564,7 +51906,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "max_dynamic_result_sets", @@ -47585,7 +51929,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_user_defined_cast", @@ -47606,7 +51952,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_implicitly_invocable", @@ -47627,7 +51975,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "security_type", @@ -47648,7 +51998,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_catalog", @@ -47669,7 +52021,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_schema", @@ -47690,7 +52044,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "to_sql_specific_name", @@ -47711,7 +52067,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "as_locator", @@ -47732,7 +52090,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "created", @@ -47753,7 +52113,9 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "last_altered", @@ -47774,7 +52136,9 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "new_savepoint_level", @@ -47795,7 +52159,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_udt_dependent", @@ -47816,7 +52182,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_from_data_type", @@ -47837,7 +52205,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_as_locator", @@ -47858,7 +52228,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_max_length", @@ -47879,7 +52251,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_octet_length", @@ -47900,7 +52274,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_catalog", @@ -47921,7 +52297,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_schema", @@ -47942,7 +52320,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_char_set_name", @@ -47963,7 +52343,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_catalog", @@ -47984,7 +52366,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_schema", @@ -48005,7 +52389,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_collation_name", @@ -48026,7 +52412,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_precision", @@ -48047,7 +52435,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_precision_radix", @@ -48068,7 +52458,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_numeric_scale", @@ -48089,7 +52481,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_datetime_precision", @@ -48110,7 +52504,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_interval_type", @@ -48131,7 +52527,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_interval_precision", @@ -48152,7 +52550,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_catalog", @@ -48173,7 +52573,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_schema", @@ -48194,7 +52596,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_type_udt_name", @@ -48215,7 +52619,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_catalog", @@ -48236,7 +52642,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_schema", @@ -48257,7 +52665,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_scope_name", @@ -48278,7 +52688,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_maximum_cardinality", @@ -48299,7 +52711,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "result_cast_dtd_identifier", @@ -48320,7 +52734,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48351,7 +52767,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_name", @@ -48372,7 +52790,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "schema_owner", @@ -48393,7 +52813,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_catalog", @@ -48414,7 +52836,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_schema", @@ -48435,7 +52859,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "default_character_set_name", @@ -48456,7 +52882,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sql_path", @@ -48477,7 +52905,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48508,7 +52938,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_schema", @@ -48529,7 +52961,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sequence_name", @@ -48550,7 +52984,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -48571,7 +53007,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -48592,7 +53030,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -48613,7 +53053,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -48634,7 +53076,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "start_value", @@ -48655,7 +53099,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "minimum_value", @@ -48676,7 +53122,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "maximum_value", @@ -48697,7 +53145,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "increment", @@ -48718,7 +53168,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cycle_option", @@ -48739,7 +53191,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -48770,7 +53224,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -48791,7 +53247,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -48812,7 +53270,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -48833,7 +53293,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -48854,7 +53316,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -48875,7 +53339,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_id", @@ -48896,7 +53362,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_name", @@ -48917,7 +53385,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sub_feature_id", @@ -48938,7 +53408,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sub_feature_name", @@ -48959,7 +53431,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_supported", @@ -48980,7 +53454,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_verified_by", @@ -49001,7 +53477,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49022,7 +53500,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49053,7 +53533,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -49074,7 +53556,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -49095,7 +53579,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -49116,7 +53602,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -49137,7 +53625,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -49158,7 +53648,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "implementation_info_id", @@ -49179,7 +53671,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "implementation_info_name", @@ -49200,7 +53694,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "integer_value", @@ -49221,7 +53717,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_value", @@ -49242,7 +53740,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49263,7 +53763,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49294,7 +53796,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -49315,7 +53819,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -49336,7 +53842,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -49357,7 +53865,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -49378,7 +53888,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -49399,7 +53911,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_id", @@ -49420,7 +53934,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "feature_name", @@ -49441,7 +53957,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_supported", @@ -49462,7 +53980,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_verified_by", @@ -49483,7 +54003,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49504,7 +54026,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49535,7 +54059,9 @@ "catalog": "", "schema": "", "name": "oid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmax", @@ -49556,7 +54082,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmax", @@ -49577,7 +54105,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "cmin", @@ -49598,7 +54128,9 @@ "catalog": "", "schema": "", "name": "cid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "xmin", @@ -49619,7 +54151,9 @@ "catalog": "", "schema": "", "name": "xid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ctid", @@ -49640,7 +54174,9 @@ "catalog": "", "schema": "", "name": "tid" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sizing_id", @@ -49661,7 +54197,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "sizing_name", @@ -49682,7 +54220,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "supported_value", @@ -49703,7 +54243,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "comments", @@ -49724,7 +54266,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49755,7 +54299,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_schema", @@ -49776,7 +54322,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_name", @@ -49797,7 +54345,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -49818,7 +54368,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -49839,7 +54391,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -49860,7 +54414,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "constraint_type", @@ -49881,7 +54437,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_deferrable", @@ -49902,7 +54460,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "initially_deferred", @@ -49923,7 +54483,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "enforced", @@ -49944,7 +54506,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "nulls_distinct", @@ -49965,7 +54529,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -49996,7 +54562,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -50017,7 +54585,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -50038,7 +54608,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -50059,7 +54631,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -50080,7 +54654,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -50101,7 +54677,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -50122,7 +54700,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "with_hierarchy", @@ -50143,7 +54723,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50174,7 +54756,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -50195,7 +54779,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -50216,7 +54802,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_type", @@ -50237,7 +54825,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "self_referencing_column_name", @@ -50258,7 +54848,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reference_generation", @@ -50279,7 +54871,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_catalog", @@ -50300,7 +54894,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_schema", @@ -50321,7 +54917,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_name", @@ -50342,7 +54940,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_insertable_into", @@ -50363,7 +54963,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_typed", @@ -50384,7 +54986,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "commit_action", @@ -50405,7 +55009,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50436,7 +55042,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -50457,7 +55065,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -50478,7 +55088,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -50499,7 +55111,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -50520,7 +55134,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -50541,7 +55157,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "group_name", @@ -50562,7 +55180,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "transform_type", @@ -50583,7 +55203,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50614,7 +55236,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_schema", @@ -50635,7 +55259,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_name", @@ -50656,7 +55282,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_catalog", @@ -50677,7 +55305,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_schema", @@ -50698,7 +55328,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_table", @@ -50719,7 +55351,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_column", @@ -50740,7 +55374,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -50771,7 +55407,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_schema", @@ -50792,7 +55430,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "trigger_name", @@ -50813,7 +55453,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_manipulation", @@ -50834,7 +55476,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_catalog", @@ -50855,7 +55499,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_schema", @@ -50876,7 +55522,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "event_object_table", @@ -50897,7 +55545,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_order", @@ -50918,7 +55568,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_condition", @@ -50939,7 +55591,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_statement", @@ -50960,7 +55614,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_orientation", @@ -50981,7 +55637,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_timing", @@ -51002,7 +55660,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_old_table", @@ -51023,7 +55683,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_new_table", @@ -51044,7 +55706,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_old_row", @@ -51065,7 +55729,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "action_reference_new_row", @@ -51086,7 +55752,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "created", @@ -51107,7 +55775,9 @@ "catalog": "", "schema": "", "name": "time_stamp" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51138,7 +55808,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -51159,7 +55831,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_catalog", @@ -51180,7 +55854,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_schema", @@ -51201,7 +55877,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "udt_name", @@ -51222,7 +55900,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -51243,7 +55923,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -51264,7 +55946,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51295,7 +55979,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "grantee", @@ -51316,7 +56002,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_catalog", @@ -51337,7 +56025,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_schema", @@ -51358,7 +56048,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_name", @@ -51379,7 +56071,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "object_type", @@ -51400,7 +56094,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "privilege_type", @@ -51421,7 +56117,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_grantable", @@ -51442,7 +56140,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -51473,7 +56173,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_schema", @@ -51494,7 +56196,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_name", @@ -51515,7 +56219,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "user_defined_type_category", @@ -51536,7 +56242,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_instantiable", @@ -51557,7 +56265,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_final", @@ -51578,7 +56288,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_form", @@ -51599,7 +56311,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_category", @@ -51620,7 +56334,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_catalog", @@ -51641,7 +56357,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_schema", @@ -51662,7 +56380,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ordering_routine_name", @@ -51683,7 +56403,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "reference_type", @@ -51704,7 +56426,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "data_type", @@ -51725,7 +56449,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_maximum_length", @@ -51746,7 +56472,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_octet_length", @@ -51767,7 +56495,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_catalog", @@ -51788,7 +56518,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_schema", @@ -51809,7 +56541,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "character_set_name", @@ -51830,7 +56564,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_catalog", @@ -51851,7 +56587,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_schema", @@ -51872,7 +56610,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "collation_name", @@ -51893,7 +56633,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision", @@ -51914,7 +56656,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_precision_radix", @@ -51935,7 +56679,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "numeric_scale", @@ -51956,7 +56702,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "datetime_precision", @@ -51977,7 +56725,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_type", @@ -51998,7 +56748,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "interval_precision", @@ -52019,7 +56771,9 @@ "catalog": "", "schema": "", "name": "cardinal_number" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "source_dtd_identifier", @@ -52040,7 +56794,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "ref_dtd_identifier", @@ -52061,7 +56817,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52092,7 +56850,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -52113,7 +56873,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -52134,7 +56896,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_name", @@ -52155,7 +56919,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "option_value", @@ -52176,7 +56942,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52207,7 +56975,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_catalog", @@ -52228,7 +56998,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "foreign_server_name", @@ -52249,7 +57021,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52280,7 +57054,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_schema", @@ -52301,7 +57077,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_name", @@ -52322,7 +57100,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -52343,7 +57123,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52364,7 +57146,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52385,7 +57169,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "column_name", @@ -52406,7 +57192,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52437,7 +57225,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52458,7 +57248,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52479,7 +57271,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_catalog", @@ -52500,7 +57294,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_schema", @@ -52521,7 +57317,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "specific_name", @@ -52542,7 +57340,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52573,7 +57373,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_schema", @@ -52594,7 +57396,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_name", @@ -52615,7 +57419,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_catalog", @@ -52636,7 +57442,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52657,7 +57465,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52678,7 +57488,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52709,7 +57521,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_schema", @@ -52730,7 +57544,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "table_name", @@ -52751,7 +57567,9 @@ "catalog": "", "schema": "", "name": "sql_identifier" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "view_definition", @@ -52772,7 +57590,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "check_option", @@ -52793,7 +57613,9 @@ "catalog": "", "schema": "", "name": "character_data" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_updatable", @@ -52814,7 +57636,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_insertable_into", @@ -52835,7 +57659,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_updatable", @@ -52856,7 +57682,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_deletable", @@ -52877,7 +57705,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "is_trigger_insertable_into", @@ -52898,7 +57728,9 @@ "catalog": "", "schema": "", "name": "yes_or_no" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "comment": "" @@ -52934,7 +57766,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -52955,7 +57789,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -52976,7 +57812,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "params": [ @@ -53001,7 +57839,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null } } ], @@ -53033,7 +57873,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -53054,7 +57896,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -53075,7 +57919,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "params": [], @@ -53107,7 +57953,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "name", @@ -53128,7 +57976,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null }, { "name": "bio", @@ -53149,7 +57999,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } ], "params": [ @@ -53174,7 +58026,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } }, { @@ -53198,7 +58052,9 @@ "catalog": "", "schema": "", "name": "text" - } + }, + "is_sqlc_slice": false, + "embed_table": null } } ], @@ -53237,7 +58093,9 @@ "catalog": "", "schema": "", "name": "bigserial" - } + }, + "is_sqlc_slice": false, + "embed_table": null } } ],