diff --git a/.gitignore b/.gitignore index 0b18ccb4..0a30fe9f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,6 @@ /xo -/examples/postgres/postgres -/examples/mysql/mysql -/examples/sqlite3/sqlite3 -/examples/oracle/oracle -/examples/mssql/mssql /x /out -/*.xo.go + *.sqlite3 +*.sqlite3-journal diff --git a/README.md b/README.md index 8f8669d1..b1fa6c1b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # About xo # -xo is a cli tool to generate [Golang](https://golang.org/project/) types and -funcs based on a database schema or a custom query. xo is designed to vastly -reduce the overhead/redundancy of writing (from scratch) Go types and funcs for -common database tasks. +Project xo provides a cli tool to generate [Go](https://golang.org/project/) +types and funcs based on a database schema or a custom query. xo is designed to +vastly reduce the overhead/redundancy of writing (from scratch) types and +funcs for common database tasks in Go. Currently, xo can generate types for tables, enums, stored procedures, and custom SQL queries for PostgreSQL, MySQL, Oracle, Microsoft SQL Server, and @@ -18,7 +18,7 @@ generates Go code by using database metadata to query the types and relationships within the database, and then generates representative Go types and funcs for well-defined database relationships using raw queries. -# Database Support Features # +## Database Feature Support ## The following is a matrix of the supported features for each database: @@ -32,9 +32,9 @@ The following is a matrix of the supported features for each database: | ENUM types |:white_check_mark:|:white_check_mark:| | | | | Custom types |:white_check_mark:| | | | | -# Installation # +## Installation ## -Install goimports dependency (if not already installed): +Install `goimports` dependency (if not already installed): ```sh go get -u golang.org/x/tools/cmd/goimports ``` @@ -44,23 +44,31 @@ Then, install in the usual way: go get -u github.com/knq/xo ``` -**_NOTE:_** Go 1.6+ is needed for installing from source, as xo makes use of the -trim template syntax in Go templates, which is not compatible with previous -versions of Go. However, the code generated by xo should compile with Go 1.3+. +**_NOTE:_** Go 1.6+ is needed for installing from source, as xo makes use of +the trim template syntax in Go templates, which is not compatible with previous +versions of Go. However, code generated by the `xo` cli tool should compile +with Go 1.3+. -# Quickstart # +## Quickstart ## -The following is a quick working example of how to use xo: +The following is a quick working example of how to use the `xo`: ```sh +# change to project directory +$ cd $GOPATH/src/path/to/project + # make an output directory -mkdir models +$ mkdir models # generate code for a postgres schema -xo pgsql://user:pass@host/dbname -o models +$ xo pgsql://user:pass@host/dbname -o models + +# generate code for a mysql schema using a custom templates directory (see below) +$ mkdir mssqlmodels +$ xo mysql://user:pass@host/dbname -o mssqlmodels --template-path /path/to/custom/templates # generate code for a custom postgres query -xo pgsql://user:pass@host/dbname -N -M -B -T AuthorResult -o models/ << ENDSQL +$ xo pgsql://user:pass@host/dbname -N -M -B -T AuthorResult -o models/ << ENDSQL SELECT a.name::varchar AS name, b.type::integer AS my_type @@ -72,10 +80,13 @@ LIMIT %%limit int%% ENDSQL # build generated code -go build ./models +$ go build ./models + +# or a standard go install +$ go install ./models ``` -# Command Line # +### Command Line Options ### The following are xo's arguments and options: @@ -143,175 +154,18 @@ options: --help, -h display this help and exit ``` -# Example: End-to-End # - -For example, given the following PostgreSQL schema: -```PLpgSQL -CREATE TABLE authors ( - author_id SERIAL PRIMARY KEY, - isbn text NOT NULL DEFAULT '' UNIQUE, - name text NOT NULL DEFAULT '', - subject text NOT NULL DEFAULT '' -); - -CREATE INDEX authors_name_idx ON authors(name); - -CREATE TYPE book_type AS ENUM ( - 'FICTION', - 'NONFICTION' -); - -CREATE TABLE books ( - book_id SERIAL PRIMARY KEY, - author_id integer NOT NULL REFERENCES authors(author_id), - title text NOT NULL DEFAULT '', - booktype book_type NOT NULL DEFAULT 'FICTION', - year integer NOT NULL DEFAULT 2000 -); - -CREATE INDEX books_title_idx ON books(title, year); - -CREATE FUNCTION say_hello(text) RETURNS text AS $$ -BEGIN - RETURN CONCAT('hello ' || $1); -END; -$$ LANGUAGE plpgsql; -``` - -xo will generate the following (note: this is an abbreviated copy of actual -output -- please see the [examples](examples) directory for how the generated -types and funcs are used (generated via -[examples/postgres/gen.sh](examples/postgres/gen.sh)), and see the -[examples/postgres/models](examples/postgres/models) directory for the full -generated code): -```go -// Author represents a row from public.authors. -type Author struct { - AuthorID int // author_id - Isbn string // isbn - Name string // name - Subject string // subject -} - -// Exists determines if the Author exists in the database. -func (a *Author) Exists() bool { /* ... */ } - -// Deleted provides information if the Author has been deleted from the database. -func (a *Author) Deleted() bool { /* ... */ } - -// Insert inserts the Author to the database. -func (a *Author) Insert(db XODB) error { /* ... */ } - -// Update updates the Author in the database. -func (a *Author) Update(db XODB) error { /* ... */ } - -// Save saves the Author to the database. -func (a *Author) Save(db XODB) error { /* ... */ } - -// Upsert performs an upsert for Author. -func (a *Author) Upsert(db XODB) error { /* ... */ } - -// Delete deletes the Author from the database. -func (a *Author) Delete(db XODB) error { /* ... */ } - -// AuthorByIsbn retrieves a row from public.authors as a Author. -// -// Looks up using index authors_isbn_key. -func AuthorByIsbn(db XODB, isbn string) (*Author, error) { /* ... */ } - -// AuthorsByName retrieves rows from public.authors, each as a Author. -// -// Looks up using index authors_name_idx. -func AuthorsByName(db XODB, name string) ([]*Author, error) { /* ... */ } - -// AuthorByAuthorID retrieves a row from public.authors as a Author. -// -// Looks up using index authors_pkey. -func AuthorByAuthorID(db XODB, authorID int) (*Author, error) { /* ... */ } - -// Book represents a row from public.books. -type Book struct { - BookID int // book_id - AuthorID int // author_id - Title string // title - Booktype BookType // booktype - Year int // year -} - -// Exists determines if the Book exists in the database. -func (b *Book) Exists() bool { /* ... */ } +## Example: End-to-End ## -// Deleted provides information if the Book has been deleted from the database. -func (b *Book) Deleted() bool { /* ... */ } +Please see the [booktest examples](examples/booktest) directory for full +examples for each supported database on how a schema can be used with xo, and +the resulting types/funcs generated for each supported database. -// Insert inserts the Book to the database. -func (b *Book) Insert(db XODB) error { /* ... */ } +## Example: Ignoring Fields ## -// Update updates the Book in the database. -func (b *Book) Update(db XODB) error { /* ... */ } - -// Save saves the Book to the database. -func (b *Book) Save(db XODB) error { /* ... */ } - -// Upsert performs an upsert for Book. -func (b *Book) Upsert(db XODB) error { /* ... */ } - -// Delete deletes the Book from the database. -func (b *Book) Delete(db XODB) error { /* ... */ } - -// Book returns the Author associated with the Book's AuthorID (author_id). -func (b *Book) Author(db XODB) (*Author, error) { /* ... */ } - -// BookByBookID retrieves a row from public.books as a Book. -// -// Looks up using index books_pkey. -func BookByBookID(db XODB, bookID int) (*Book, error) { /* ... */ } - -// BooksByTitle retrieves rows from public.books, each as a Book. -// -// Looks up using index books_title_idx. -func BooksByTitle(db XODB, title string, year int) ([]*Book, error) { /* ... */ } - -// BookType is the 'book_type' enum type. -type BookType uint16 - -const ( - // BookTypeFiction is the book_type for 'FICTION'. - BookTypeFiction = BookType(1) - - // BookTypeNonfiction is the book_type for 'NONFICTION'. - BookTypeNonfiction = BookType(2) -) - -// String returns the string value of the BookType. -func (bt BookType) String() string { /* ... */ } - -// MarshalText marshals BookType into text. -func (bt BookType) MarshalText() ([]byte, error) { /* ... */ } - -// UnmarshalText unmarshals BookType from text. -func (bt *BookType) UnmarshalText(text []byte) error { /* ... */ } - -// SayHello calls the stored procedure 'public.say_hello(text) text' on db. -func SayHello(db XODB, v0 string) (string, error) { /* ... */ } - -// XODB is the common interface for database operations that can be used with -// types from public. -// -// This should work with database/sql.DB and database/sql.Tx. -type XODB interface { - Exec(string, ...interface{}) (sql.Result, error) - Query(string, ...interface{}) (*sql.Rows, error) - QueryRow(string, ...interface{}) *sql.Row -} -``` - -# Example: Ignoring Fields # - -Sometimes you may wish to have the database manage the values of columns instead -of having them managed in the generated Go code. If you are generating the Go -code from an existing database, you can use the `--ignore-fields` flag to -specify that the fields should not be managed by `xo`. +Sometimes you may wish to have the database manage the values of columns +instead of having them managed in the generated Go code. If you are generating +the Go code from an existing database, you can use the `--ignore-fields` flag +to specify that the fields should not be managed by `xo`. For instance, consider this PostgreSQL schema which defines a function and trigger to set the `modified_at` column automatically on `UPDATE` (as well as @@ -339,7 +193,7 @@ CREATE TRIGGER update_users_modtime BEFORE UPDATE ON users FROM EACH ROW EXECUTE We could ensure that these columns are managed by PostgreSQL and not by the generated Go code using `--ignore-fields`: -``` +```sh $ xo pgsql://user:pass@host/db -o models --ignore-fields created_at modified_at ``` @@ -356,7 +210,7 @@ selection of templates which you might be able to use to customize the templated code to your needs. You can vendor these templates into your own project to do so. e.g.: -```console +```sh $ mkdir templates $ cp -r "$GOPATH/go/src/github.com/knq/xo/templates" . $ xo pgsql://user:pass@host/db -o models --template-path templates @@ -403,45 +257,55 @@ of `xo`, e.g. at the time of writing, `.` represents an instance of `Type` from `github.com/knq/xo/internal/types.go`. You may want to consider deleting the templates for databases other than the -one you are using, as well as the generated `templates/tpls.go` "binary" file, -from a vendored `templates/` directory. Those are needed by `xo` upstream, but -are most likely not needed for your project. +one you are using, as well as the generated `templates/templates.go` "binary" +file, from a vendored `templates/` directory. Those are needed by `xo` +upstream, but are most likely not needed for your project. -# Oracle Support # +## Oracle Support ## -Oracle support is disabled by default as the Go driver for it relies on the -Oracle client libs that may not be installed on your system. If you would like -to build a version of xo with Oracle support, please first [install rana's -Oracle driver](https://github.com/rana/ora#installation). +Oracle support is disabled by default as the [Go Oracle driver](https://github.com/rana/ora) +used by `xo` relies on the Oracle `instantclient` libs installed and available +through `pkg-config`. If you already have rana\`s Oracle driver [installed](https://github.com/rana/ora#installation), +then you can simply pass the `-tags oracle` to `go get`, `go install` or `go +build` in order to build/install `xo` with Oracle support: + +```sh +$ go get -tags oracle -u github.com/knq/xo +``` + +For reference, the [sath89/oracle-12c](https://hub.docker.com/r/sath89/oracle-12c/) +Docker image is used by the xo developers for testing Oracle database support. +Additionally, there are some additional scripts available in the [contrib](contrib/) +directory that makes it significantly easier to rapidly build schemas using +`xo` and an Oracle database. + +### Installing Oracle instantclient Libraries on Debian/Ubuntu ### + +On Ubuntu/Debian, you may download the instantclient RPMs +[here](http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html). -On Ubuntu/Debian, you may download the instantclient RPMs [available from -here](http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html). You should then be able to do the following: ```sh # install alien, if not already installed -sudo aptitude install alien +$ sudo aptitude install alien # install the instantclient RPMs -alien -i oracle-instantclient-12.1-basic-*.rpm -alien -i oracle-instantclient-12.1-devel-*.rpm -alien -i oracle-instantclient-12.1-sqlplus-*.rpm +$ sudo alien -i oracle-instantclient-12.1-basic-*.rpm +$ sudo alien -i oracle-instantclient-12.1-devel-*.rpm +$ sudo alien -i oracle-instantclient-12.1-sqlplus-*.rpm -# get xo, if not done already -go get -u github.com/knq/xo +# get xo +$ go get -u github.com/knq/xo # copy oci8.pc from xo contrib to pkg-config directory -sudo cp $GOPATH/src/github.com/knq/xo/contrib/oci8.pc /usr/lib/pkgconfig/ - -# export cgo flags (rana's ora driver does not have a cgo pkg-config tag [yet]) -export CGO_CFLAGS=$(pkg-config --cflags oci8) -export CGO_LDFLAGS=$(pkg-config --libs oci8) +$ sudo cp $GOPATH/src/github.com/knq/xo/contrib/oci8.pc /usr/lib/pkgconfig/ -# install rana's ora driver -- see here: https://github.com/rana/ora -go get -u gopkg.in/rana/ora.v3 +# install rana's ora driver +$ go get -u gopkg.in/rana/ora.v3 # install xo with oracle support enabled -go install -tags oracle github.com/knq/xo +$ go install -tags oracle github.com/knq/xo ``` # Design, Origin, Philosophy, and History # @@ -450,57 +314,59 @@ xo can likely get you 99% "of the way there" on medium or large database schemas and 100% of the way there for small or trivial database schemas. In short, xo is a great launching point for developing standardized packages for standard database abstractions/relationships, and xo's most common use-case is -indeed in a code generation pipeline, ala ```stringer```. +indeed in a code generation pipeline, ala `stringer`. **NOTE:** While the code generated by xo is production quality, it is not the goal, nor the intention for xo to be a "silver bullet," nor to completely eliminate the manual authoring of SQL / Go code. -xo was originally developed while migrating a "large" application written in +xo was originally developed while migrating a large application written in PHP to Go. The schema in use in the original app, while well designed, had become inconsistent over multiple iterations/generations, mainly due to different naming styles adopted by various developers/database admins over the preceding years. Additionally, some components had been written in different languages (Ruby, Java) and had also accumulated significant drift from the -original application and schema. Simultaneously, a large amount of growth meant -that the PHP/Ruby code could no longer efficiently serve the traffic volumes. +original application and accompanying schema. Simultaneously, a large amount of +growth meant that the PHP/Ruby code could no longer efficiently serve the +traffic volumes. In late 2014/early 2015, a decision was made to unify and strip out certain backend services and to fully isolate the API from the original application, allowing the various components to instead speak to a common API layer instead of directly to the database, and to build that service layer in Go. -However, unraveling the old PHP/Ruby/Java code became a relatively large -headache as the code, the database, and the API, had all experienced -significant drift, and thus underlying function names, fields, and API methods -no longer aligned. As such, after a round of standardizing names, dropping -accumulated cruft, and adding a small number of relationship changes to the -schema, the various codebases were fixed to match the schema changes. After -that was determined to be a success, the next target was to rewrite the backend -services in Go. +However, unraveling the old PHP/Ruby/Java code became a large headache, as the +code, the database, and the API, all had significant drift -- thus, underlying +function names, fields, and API methods no longer coincided with the actual +database schema, and were named differently in each language. As such, after a +round of standardizing names, dropping cruft, and adding a small number of +relationship changes to the schema, the various codebases were fixed to match +the schema changes. After that was determined to be a success, the next target +was to rewrite the backend services in Go. In order to keep a similar and consistent workflow for the developers, the previous code generator (written in PHP and Twig templates) was modified to -generate Go code. Additionally, at this time, but tangential to the story here, -the API definitions were ported from JSON to Protobuf to make use of its code +generate Go code. Additionally, at this time, but tangential to the story, the +API definitions were ported from JSON to Protobuf to make use of its code generation abilities as well. -xo is the open source version of that code generation tool, and is the the -fruits of those development efforts. It is hoped that others will be able to -use and expand xo to support other databases, SQL or otherwise, and that xo can +xo is the open source version of that code generation tool, and is the fruits +of those development efforts. It is hoped that others will be able to use and +expand xo to support other databases -- SQL or otherwise -- and that xo can become a common tool in any Go developer's toolbox. Part of xo's goal is to avoid writing an ORM, or an ORM-like in Go, and to -instead generate static, type-safe, fast, and idiomatic Go code. Additionally, -the xo developers are of the opinion that relational databases should have -proper, well-designed relationships and all the related definitions should -reside within the database schema itself -- call it "self-documenting" schema. -xo is an end to that pursuit. +instead generate static, type-safe, fast, and idiomatic Go code across +languages and databases. Additionally, the xo developers are of the opinion +that relational databases should have proper, well-designed relationships and +all the related definitions should reside within the database schema itself: +ie, a "self-documenting" schema. xo is an end to that pursuit. + +## Similar Projects ## -# Similar Projects # The following projects work with similar concepts as xo: -## Go Generators ## +### Go Generators ### * [ModelQ](https://github.com/mijia/modelq) * [sqlgen](https://github.com/drone/sqlgen) * [squirrel](https://github.com/Masterminds/squirrel) @@ -509,14 +375,13 @@ The following projects work with similar concepts as xo: [rootx](https://github.com/willowtreeapps/rootx) \[[read overview here](http://willowtreeapps.com/blog/go-generate-your-database-code/)\] -## Go ORM-likes ## +### Go ORM-likes ### * [sqlc](https://github.com/relops/sqlc) -# TODO # +## TODO ## * Completely refactor / fix code, templates, and other issues (PRIORITY #1) * Add (finish) stored proc support for Oracle + Microsoft SQL Server * Better standardize example `gen.sh` scripts, using [usql](https://github.com/knq/usql) tool -* v1 release + binary packages for Linux, OSX, Windows * Unit tests / code coverage / continuous builds for binary package releases * Move database introspection to separate package for reuse by other Go packages * Overhaul/standardize type parsing diff --git a/contrib/deps.sh b/contrib/deps.sh new file mode 100755 index 00000000..f74ce4ac --- /dev/null +++ b/contrib/deps.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# get/update all dependencies + +go get -tags oracle -u \ + github.com/denisenkom/go-mssqldb \ + github.com/go-sql-driver/mysql \ + gopkg.in/rana/ora.v3 \ + github.com/lib/pq \ + github.com/mattn/go-sqlite3 diff --git a/contrib/dist.sh b/contrib/dist.sh deleted file mode 100755 index 65874d5a..00000000 --- a/contrib/dist.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -goxc -v -pv=0.9.0 -build-tags=oracle -main-dirs-exclude=out,examples -tasks-=go-test -arch="amd64" -os="linux" -d=./out/ diff --git a/contrib/ora.sh b/contrib/ora.sh deleted file mode 100755 index 8b12a8e2..00000000 --- a/contrib/ora.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# connects to the docker instance -# see: https://github.com/wscherphof/oracle-12c - -HOST=$(docker port orcl 1521) - -USER=$1 -PASS=$2 - -if [ -z "$USER" ]; then - USER=system -fi - -if [[ "$PASS" == "" && $USER == "system" ]]; then - PASS=manager -elif [[ "$PASS" == "" ]]; then - PASS=$USER -fi - -sqlplus $USER/$PASS@$HOST/orcl diff --git a/contrib/orcli.sh b/contrib/orcli.sh new file mode 100755 index 00000000..60598df3 --- /dev/null +++ b/contrib/orcli.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +# connects to oracle docker instance using sqlplus cli tool + +HOST=$(docker port orcl 1521) + +USER=$1 +PASS=$2 + +SVC=xe.oracle.docker + +if [ -z "$USER" ]; then + USER=system +fi + +if [[ "$PASS" == "" && ( $USER == "system" || $USER == "sys" ) ]]; then + PASS=oracle +elif [[ "$PASS" == "" ]]; then + PASS=$USER +fi + +set -x + +sqlplus $USER/$PASS@$HOST/$SVC diff --git a/contrib/orcreate.sh b/contrib/orcreate.sh index 953a4cac..64fd54f3 100755 --- a/contrib/orcreate.sh +++ b/contrib/orcreate.sh @@ -1,14 +1,14 @@ #!/bin/bash -USER="system" -PASS="oracle" -SVC="xe.oracle.docker" +USER=system +PASS=oracle +SVC=xe.oracle.docker HOST=$(docker port orcl 1521) NAME=$1 if [ -z "$NAME" ]; then - echo "need name" + echo "usage: $0 " exit 1 fi diff --git a/contrib/orstart.sh b/contrib/orstart.sh index d5b00d42..d3a2a2dd 100755 --- a/contrib/orstart.sh +++ b/contrib/orstart.sh @@ -1,11 +1,31 @@ #!/bin/bash -#docker run --privileged -dP --name orcl oracle-12c +DNAME=orcl -docker run -d \ +set -x + +# update to latest +docker pull sath89/oracle-12c + +docker stop $DNAME +docker rm $DNAME + +# run instance +docker run \ + -d \ -p 8080:8080 \ -p 1521:1521 \ -v /media/src/opt/oracle:/u01/app/oracle \ -e DBCA_TOTAL_MEMORY=1024 \ - --name orcl \ + --name $DNAME \ sath89/oracle-12c + +# create booktest database +if [ "$1" == "--create=yes" ]; then + echo "sleeping" + + sleep 15 + + SRC=$(realpath $(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )) + $SRC/orcreate.sh booktest booktest +fi diff --git a/examples/booktest/.gitignore b/examples/booktest/.gitignore new file mode 100644 index 00000000..85f75a09 --- /dev/null +++ b/examples/booktest/.gitignore @@ -0,0 +1,5 @@ +/mssql/mssql +/mysql/mysql +/postgres/postgres +/oracle/oracle +/sqlite3/sqlite3 diff --git a/examples/booktest/README.md b/examples/booktest/README.md new file mode 100644 index 00000000..7ce3cf36 --- /dev/null +++ b/examples/booktest/README.md @@ -0,0 +1,47 @@ +# About booktest examples + +This directory contains the `xo` "booktest" examples which are used not only as +examples, but also in order to compare the generated code for the various +database loaders. + +Each subdirectory contains a single, almost identical example for each +supported database loader, demonstrating how to write and use a schema for +each database, and the resulting, generated "model" code (contained in each +subdirectory's `models/` folder). + +## Available Examples + +* [Microsoft SQL Server](mssql/) +* [MySQL](mysql/) +* [Oracle](oracle/) +* [PostgreSQL](postgres/) +* [SQLite3](sqlite3/) + +## About booktest + +Each `booktest` example tries to showcase all the generated types and funcs for +each of the above supported databases, and the feature set that they/`xo` +supports. + +The `booktest` example schemas try to show a standard "author / book" starter +schema, wherein there are multiple books per author. Additionally, each +database might have schema definitions for things like stored functions / +procedures. + +These examples are meant to show how to hit the ground running with `xo`, and +are not meant to be an exhaustive demonstration of each database's schema +support. + +### Running gen.sh + +Each example has a `gen.sh` that looks in the root repository path for a built +`xo` executable. If it is not present, then it looks on `$PATH` for `xo`. The +`gen.sh` script uses that version of `xo` for generating the `models/` +subdirectory. + +#### Command line options for gen.sh + +`gen.sh` will pass any options to `xo`, as well as the resulting, built +`booktest` executable. At the moment, the most useful command line option is +passing `-v`, which will enable verbose output both for `xo` and the built +executable. diff --git a/examples/mssql/gen.sh b/examples/booktest/mssql/gen.sh similarity index 94% rename from examples/mssql/gen.sh rename to examples/booktest/mssql/gen.sh index 006bb9c7..2906c59e 100755 --- a/examples/mssql/gen.sh +++ b/examples/booktest/mssql/gen.sh @@ -15,8 +15,8 @@ EXTRA=$1 SRC=$(realpath $(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )) XOBIN=$(which xo) -if [ -e $SRC/../../xo ]; then - XOBIN=$SRC/../../xo +if [ -e $SRC/../../../xo ]; then + XOBIN=$SRC/../../../xo fi DEST=$SRC/models @@ -29,7 +29,7 @@ rm -f $SRC/mssql mssql -u $SAUSER -p $SAPASS -s $DBHOST -q "drop database $DBNAME;" -$SRC/../../contrib/mscreate.sh $DBNAME +$SRC/../../../contrib/mscreate.sh $DBNAME SQLFILE=$(mktemp /tmp/mssql.XXXXXX.sql) cat > $SQLFILE << ENDSQL diff --git a/examples/mssql/booktest.go b/examples/booktest/mssql/main.go similarity index 95% rename from examples/mssql/booktest.go rename to examples/booktest/mssql/main.go index a1eb6095..3c3a522d 100644 --- a/examples/mssql/booktest.go +++ b/examples/booktest/mssql/main.go @@ -9,7 +9,7 @@ import ( _ "github.com/denisenkom/go-mssqldb" "github.com/knq/dburl" - "github.com/knq/xo/examples/mssql/models" + "github.com/knq/xo/examples/booktest/mssql/models" ) var flagVerbose = flag.Bool("v", false, "verbose") @@ -21,7 +21,7 @@ func main() { flag.Parse() if *flagVerbose { models.XOLog = func(s string, p ...interface{}) { - fmt.Printf("> SQL: %s -- %v\n", s, p) + fmt.Printf("-------------------------------------\nQUERY: %s\n VAL: %v\n", s, p) } } diff --git a/examples/mssql/models/author.xo.go b/examples/booktest/mssql/models/author.xo.go similarity index 96% rename from examples/mssql/models/author.xo.go rename to examples/booktest/mssql/models/author.xo.go index 50bfef32..b856cc87 100644 --- a/examples/mssql/models/author.xo.go +++ b/examples/booktest/mssql/models/author.xo.go @@ -3,7 +3,9 @@ package models // GENERATED BY XO. DO NOT EDIT. -import "errors" +import ( + "errors" +) // Author represents a row from 'booktest.authors'. type Author struct { @@ -33,7 +35,7 @@ func (a *Author) Insert(db XODB) error { return errors.New("insert failed: already exists") } - // sql query + // sql insert query, primary key provided by identity const sqlstr = `INSERT INTO booktest.authors (` + `name` + `) VALUES (` + @@ -126,7 +128,7 @@ func (a *Author) Delete(db XODB) error { // AuthorByAuthorID retrieves a row from 'booktest.authors' as a Author. // -// Generated from index 'PK__authors__86516BCFA436688C'. +// Generated from index 'PK__authors__86516BCFBA4179D0'. func AuthorByAuthorID(db XODB, authorID int) (*Author, error) { var err error diff --git a/examples/mssql/models/authorbookresult.xo.go b/examples/booktest/mssql/models/authorbookresult.xo.go similarity index 100% rename from examples/mssql/models/authorbookresult.xo.go rename to examples/booktest/mssql/models/authorbookresult.xo.go diff --git a/examples/mssql/models/book.xo.go b/examples/booktest/mssql/models/book.xo.go similarity index 95% rename from examples/mssql/models/book.xo.go rename to examples/booktest/mssql/models/book.xo.go index d4027a1b..1c1487e6 100644 --- a/examples/mssql/models/book.xo.go +++ b/examples/booktest/mssql/models/book.xo.go @@ -41,7 +41,7 @@ func (b *Book) Insert(db XODB) error { return errors.New("insert failed: already exists") } - // sql query + // sql insert query, primary key provided by identity const sqlstr = `INSERT INTO booktest.books (` + `author_id, isbn, title, year, available, tags` + `) VALUES (` + @@ -134,14 +134,14 @@ func (b *Book) Delete(db XODB) error { // Author returns the Author associated with the Book's AuthorID (author_id). // -// Generated from foreign key 'FK__books__author_id__3A81B327'. +// Generated from foreign key 'FK__books__author_id__4D94879B'. func (b *Book) Author(db XODB) (*Author, error) { return AuthorByAuthorID(db, b.AuthorID) } // BookByBookID retrieves a row from 'booktest.books' as a Book. // -// Generated from index 'PK__books__490D1AE194BD6A2C'. +// Generated from index 'PK__books__490D1AE192C1980E'. func BookByBookID(db XODB, bookID int) (*Book, error) { var err error @@ -167,7 +167,7 @@ func BookByBookID(db XODB, bookID int) (*Book, error) { // BookByIsbn retrieves a row from 'booktest.books' as a Book. // -// Generated from index 'UQ__books__99F9D0A40420D486'. +// Generated from index 'UQ__books__99F9D0A4861C1DA3'. func BookByIsbn(db XODB, isbn string) (*Book, error) { var err error diff --git a/examples/mssql/models/xo_db.xo.go b/examples/booktest/mssql/models/xo_db.xo.go similarity index 100% rename from examples/mssql/models/xo_db.xo.go rename to examples/booktest/mssql/models/xo_db.xo.go diff --git a/examples/mysql/gen.sh b/examples/booktest/mysql/gen.sh similarity index 96% rename from examples/mysql/gen.sh rename to examples/booktest/mysql/gen.sh index cd3b9626..4f207411 100755 --- a/examples/mysql/gen.sh +++ b/examples/booktest/mysql/gen.sh @@ -12,8 +12,8 @@ EXTRA=$1 SRC=$(realpath $(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )) XOBIN=$(which xo) -if [ -e $SRC/../../xo ]; then - XOBIN=$SRC/../../xo +if [ -e $SRC/../../../xo ]; then + XOBIN=$SRC/../../../xo fi DEST=$SRC/models diff --git a/examples/mysql/booktest.go b/examples/booktest/mysql/main.go similarity index 96% rename from examples/mysql/booktest.go rename to examples/booktest/mysql/main.go index 41d12465..a10fcf17 100644 --- a/examples/mysql/booktest.go +++ b/examples/booktest/mysql/main.go @@ -9,7 +9,7 @@ import ( _ "github.com/go-sql-driver/mysql" "github.com/knq/dburl" - "github.com/knq/xo/examples/mysql/models" + "github.com/knq/xo/examples/booktest/mysql/models" ) var flagVerbose = flag.Bool("v", false, "verbose") @@ -21,7 +21,7 @@ func main() { flag.Parse() if *flagVerbose { models.XOLog = func(s string, p ...interface{}) { - fmt.Printf("> SQL: %s -- %v\n", s, p) + fmt.Printf("-------------------------------------\nQUERY: %s\n VAL: %v\n", s, p) } } diff --git a/examples/mysql/models/author.xo.go b/examples/booktest/mysql/models/author.xo.go similarity index 97% rename from examples/mysql/models/author.xo.go rename to examples/booktest/mysql/models/author.xo.go index ce9f1fef..d3cb5c6c 100644 --- a/examples/mysql/models/author.xo.go +++ b/examples/booktest/mysql/models/author.xo.go @@ -3,7 +3,9 @@ package models // GENERATED BY XO. DO NOT EDIT. -import "errors" +import ( + "errors" +) // Author represents a row from 'booktest.authors'. type Author struct { @@ -33,7 +35,7 @@ func (a *Author) Insert(db XODB) error { return errors.New("insert failed: already exists") } - // sql query + // sql insert query, primary key provided by autoincrement const sqlstr = `INSERT INTO booktest.authors (` + `name` + `) VALUES (` + diff --git a/examples/mysql/models/authorbookresult.xo.go b/examples/booktest/mysql/models/authorbookresult.xo.go similarity index 100% rename from examples/mysql/models/authorbookresult.xo.go rename to examples/booktest/mysql/models/authorbookresult.xo.go diff --git a/examples/mysql/models/book.xo.go b/examples/booktest/mysql/models/book.xo.go similarity index 99% rename from examples/mysql/models/book.xo.go rename to examples/booktest/mysql/models/book.xo.go index ca4c75cd..98e62227 100644 --- a/examples/mysql/models/book.xo.go +++ b/examples/booktest/mysql/models/book.xo.go @@ -42,7 +42,7 @@ func (b *Book) Insert(db XODB) error { return errors.New("insert failed: already exists") } - // sql query + // sql insert query, primary key provided by autoincrement const sqlstr = `INSERT INTO booktest.books (` + `author_id, isbn, book_type, title, year, available, tags` + `) VALUES (` + diff --git a/examples/mysql/models/booktype.xo.go b/examples/booktest/mysql/models/booktype.xo.go similarity index 100% rename from examples/mysql/models/booktype.xo.go rename to examples/booktest/mysql/models/booktype.xo.go diff --git a/examples/mysql/models/sp_sayhello.xo.go b/examples/booktest/mysql/models/sp_sayhello.xo.go similarity index 100% rename from examples/mysql/models/sp_sayhello.xo.go rename to examples/booktest/mysql/models/sp_sayhello.xo.go diff --git a/examples/mysql/models/xo_db.xo.go b/examples/booktest/mysql/models/xo_db.xo.go similarity index 100% rename from examples/mysql/models/xo_db.xo.go rename to examples/booktest/mysql/models/xo_db.xo.go diff --git a/examples/oracle/gen.sh b/examples/booktest/oracle/gen.sh similarity index 90% rename from examples/oracle/gen.sh rename to examples/booktest/oracle/gen.sh index 129629d6..01501af1 100755 --- a/examples/oracle/gen.sh +++ b/examples/booktest/oracle/gen.sh @@ -1,5 +1,8 @@ #!/bin/bash +# NOTE: please use xo/contrib/orcreate.sh to create a booktest user and database first +# also, consider using xo/contrib/orstart.sh to start your docker instance + DBUSER=booktest DBPASS=booktest DBHOST=$(docker port orcl 1521) @@ -13,8 +16,8 @@ EXTRA=$1 SRC=$(realpath $(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )) XOBIN=$(which xo) -if [ -e $SRC/../../xo ]; then - XOBIN=$SRC/../../xo +if [ -e $SRC/../../../xo ]; then + XOBIN=$SRC/../../../xo fi DEST=$SRC/models diff --git a/examples/oracle/booktest.go b/examples/booktest/oracle/main.go similarity index 96% rename from examples/oracle/booktest.go rename to examples/booktest/oracle/main.go index 2953a73d..67b59c72 100644 --- a/examples/oracle/booktest.go +++ b/examples/booktest/oracle/main.go @@ -9,7 +9,7 @@ import ( _ "gopkg.in/rana/ora.v3" "github.com/knq/dburl" - "github.com/knq/xo/examples/oracle/models" + "github.com/knq/xo/examples/booktest/oracle/models" ) var flagVerbose = flag.Bool("v", false, "verbose") @@ -23,7 +23,7 @@ func main() { flag.Parse() if *flagVerbose { models.XOLog = func(s string, p ...interface{}) { - fmt.Printf("> SQL: %s -- %v\n", s, p) + fmt.Printf("-------------------------------------\nQUERY: %s\n VAL: %v\n", s, p) } } diff --git a/examples/oracle/models/author.xo.go b/examples/booktest/oracle/models/author.xo.go similarity index 98% rename from examples/oracle/models/author.xo.go rename to examples/booktest/oracle/models/author.xo.go index 3a5e1c7b..063b2aa4 100644 --- a/examples/oracle/models/author.xo.go +++ b/examples/booktest/oracle/models/author.xo.go @@ -3,7 +3,9 @@ package models // GENERATED BY XO. DO NOT EDIT. -import "errors" +import ( + "errors" +) // Author represents a row from 'booktest.authors'. type Author struct { @@ -165,7 +167,7 @@ func AuthorsByName(db XODB, name string) ([]*Author, error) { // AuthorByAuthorID retrieves a row from 'booktest.authors' as a Author. // -// Generated from index 'sys_c0010039'. +// Generated from index 'sys_c0010192'. func AuthorByAuthorID(db XODB, authorID float64) (*Author, error) { var err error diff --git a/examples/oracle/models/authorbookresult.xo.go b/examples/booktest/oracle/models/authorbookresult.xo.go similarity index 100% rename from examples/oracle/models/authorbookresult.xo.go rename to examples/booktest/oracle/models/authorbookresult.xo.go diff --git a/examples/oracle/models/book.xo.go b/examples/booktest/oracle/models/book.xo.go similarity index 97% rename from examples/oracle/models/book.xo.go rename to examples/booktest/oracle/models/book.xo.go index db80a69f..02dc8644 100644 --- a/examples/oracle/models/book.xo.go +++ b/examples/booktest/oracle/models/book.xo.go @@ -134,7 +134,7 @@ func (b *Book) Delete(db XODB) error { // Author returns the Author associated with the Book's AuthorID (author_id). // -// Generated from foreign key 'sys_c0010049'. +// Generated from foreign key 'sys_c0010202'. func (b *Book) Author(db XODB) (*Author, error) { return AuthorByAuthorID(db, b.AuthorID) } @@ -180,7 +180,7 @@ func BooksByTitleYear(db XODB, title string, year float64) ([]*Book, error) { // BookByBookID retrieves a row from 'booktest.books' as a Book. // -// Generated from index 'sys_c0010047'. +// Generated from index 'sys_c0010200'. func BookByBookID(db XODB, bookID float64) (*Book, error) { var err error @@ -206,7 +206,7 @@ func BookByBookID(db XODB, bookID float64) (*Book, error) { // BookByIsbn retrieves a row from 'booktest.books' as a Book. // -// Generated from index 'sys_c0010048'. +// Generated from index 'sys_c0010201'. func BookByIsbn(db XODB, isbn string) (*Book, error) { var err error diff --git a/examples/oracle/models/xo_db.xo.go b/examples/booktest/oracle/models/xo_db.xo.go similarity index 100% rename from examples/oracle/models/xo_db.xo.go rename to examples/booktest/oracle/models/xo_db.xo.go diff --git a/examples/postgres/gen.sh b/examples/booktest/postgres/gen.sh similarity index 97% rename from examples/postgres/gen.sh rename to examples/booktest/postgres/gen.sh index c9313304..18a24b33 100755 --- a/examples/postgres/gen.sh +++ b/examples/booktest/postgres/gen.sh @@ -12,8 +12,8 @@ EXTRA=$1 SRC=$(realpath $(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )) XOBIN=$(which xo) -if [ -e $SRC/../../xo ]; then - XOBIN=$SRC/../../xo +if [ -e $SRC/../../../xo ]; then + XOBIN=$SRC/../../../xo fi DEST=$SRC/models diff --git a/examples/postgres/booktest.go b/examples/booktest/postgres/main.go similarity index 96% rename from examples/postgres/booktest.go rename to examples/booktest/postgres/main.go index f7010016..b0754853 100644 --- a/examples/postgres/booktest.go +++ b/examples/booktest/postgres/main.go @@ -9,7 +9,7 @@ import ( _ "github.com/lib/pq" "github.com/knq/dburl" - "github.com/knq/xo/examples/postgres/models" + "github.com/knq/xo/examples/booktest/postgres/models" ) var flagVerbose = flag.Bool("v", false, "verbose") @@ -21,7 +21,7 @@ func main() { flag.Parse() if *flagVerbose { models.XOLog = func(s string, p ...interface{}) { - fmt.Printf("> SQL: %s -- %v\n", s, p) + fmt.Printf("-------------------------------------\nQUERY: %s\n VAL: %v\n", s, p) } } diff --git a/examples/postgres/models/author.xo.go b/examples/booktest/postgres/models/author.xo.go similarity index 98% rename from examples/postgres/models/author.xo.go rename to examples/booktest/postgres/models/author.xo.go index 73749274..6ee9f1bd 100644 --- a/examples/postgres/models/author.xo.go +++ b/examples/booktest/postgres/models/author.xo.go @@ -3,7 +3,9 @@ package models // GENERATED BY XO. DO NOT EDIT. -import "errors" +import ( + "errors" +) // Author represents a row from 'public.authors'. type Author struct { @@ -33,7 +35,7 @@ func (a *Author) Insert(db XODB) error { return errors.New("insert failed: already exists") } - // sql query + // sql insert query, primary key provided by sequence const sqlstr = `INSERT INTO public.authors (` + `name` + `) VALUES (` + diff --git a/examples/postgres/models/authorbookresult.xo.go b/examples/booktest/postgres/models/authorbookresult.xo.go similarity index 100% rename from examples/postgres/models/authorbookresult.xo.go rename to examples/booktest/postgres/models/authorbookresult.xo.go diff --git a/examples/postgres/models/book.xo.go b/examples/booktest/postgres/models/book.xo.go similarity index 99% rename from examples/postgres/models/book.xo.go rename to examples/booktest/postgres/models/book.xo.go index 698de126..92bea824 100644 --- a/examples/postgres/models/book.xo.go +++ b/examples/booktest/postgres/models/book.xo.go @@ -42,7 +42,7 @@ func (b *Book) Insert(db XODB) error { return errors.New("insert failed: already exists") } - // sql query + // sql insert query, primary key provided by sequence const sqlstr = `INSERT INTO public.books (` + `author_id, isbn, booktype, title, year, available, tags` + `) VALUES (` + diff --git a/examples/postgres/models/booktype.xo.go b/examples/booktest/postgres/models/booktype.xo.go similarity index 100% rename from examples/postgres/models/booktype.xo.go rename to examples/booktest/postgres/models/booktype.xo.go diff --git a/examples/postgres/models/sp_sayhello.xo.go b/examples/booktest/postgres/models/sp_sayhello.xo.go similarity index 100% rename from examples/postgres/models/sp_sayhello.xo.go rename to examples/booktest/postgres/models/sp_sayhello.xo.go diff --git a/examples/postgres/models/xo_db.xo.go b/examples/booktest/postgres/models/xo_db.xo.go similarity index 100% rename from examples/postgres/models/xo_db.xo.go rename to examples/booktest/postgres/models/xo_db.xo.go diff --git a/examples/sqlite3/gen.sh b/examples/booktest/sqlite3/gen.sh similarity index 96% rename from examples/sqlite3/gen.sh rename to examples/booktest/sqlite3/gen.sh index e70fa7f0..b482b3af 100755 --- a/examples/sqlite3/gen.sh +++ b/examples/booktest/sqlite3/gen.sh @@ -9,8 +9,8 @@ SRC=$(realpath $(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )) DB=file:$SRC/$DBNAME XOBIN=$(which xo) -if [ -e $SRC/../../xo ]; then - XOBIN=$SRC/../../xo +if [ -e $SRC/../../../xo ]; then + XOBIN=$SRC/../../../xo fi DEST=$SRC/models diff --git a/examples/sqlite3/booktest.go b/examples/booktest/sqlite3/main.go similarity index 95% rename from examples/sqlite3/booktest.go rename to examples/booktest/sqlite3/main.go index 5d63fdfc..44fcca4f 100644 --- a/examples/sqlite3/booktest.go +++ b/examples/booktest/sqlite3/main.go @@ -9,7 +9,7 @@ import ( _ "github.com/mattn/go-sqlite3" "github.com/knq/dburl" - "github.com/knq/xo/examples/sqlite3/models" + "github.com/knq/xo/examples/booktest/sqlite3/models" ) var flagVerbose = flag.Bool("v", false, "verbose") @@ -21,7 +21,7 @@ func main() { flag.Parse() if *flagVerbose { models.XOLog = func(s string, p ...interface{}) { - fmt.Printf("> SQL: %s -- %v\n", s, p) + fmt.Printf("-------------------------------------\nQUERY: %s\n VAL: %v\n", s, p) } } diff --git a/examples/sqlite3/models/author.xo.go b/examples/booktest/sqlite3/models/author.xo.go similarity index 100% rename from examples/sqlite3/models/author.xo.go rename to examples/booktest/sqlite3/models/author.xo.go diff --git a/examples/sqlite3/models/authorbookresult.xo.go b/examples/booktest/sqlite3/models/authorbookresult.xo.go similarity index 100% rename from examples/sqlite3/models/authorbookresult.xo.go rename to examples/booktest/sqlite3/models/authorbookresult.xo.go diff --git a/examples/sqlite3/models/book.xo.go b/examples/booktest/sqlite3/models/book.xo.go similarity index 100% rename from examples/sqlite3/models/book.xo.go rename to examples/booktest/sqlite3/models/book.xo.go diff --git a/examples/sqlite3/models/xo_db.xo.go b/examples/booktest/sqlite3/models/xo_db.xo.go similarity index 100% rename from examples/sqlite3/models/xo_db.xo.go rename to examples/booktest/sqlite3/models/xo_db.xo.go diff --git a/examples/pgcatalog/pgcatalog/pgcatalog.xo.go b/examples/pgcatalog/pgcatalog/pgcatalog.xo.go index 67b4149a..0e1f3265 100644 --- a/examples/pgcatalog/pgcatalog/pgcatalog.xo.go +++ b/examples/pgcatalog/pgcatalog/pgcatalog.xo.go @@ -62,7 +62,7 @@ func ASCIIToUTF8(db XODB, v0 int, v1 int, v2 pgtypes.Cstring, v3 pgtypes.Interna } // Abbrev calls the stored procedure 'pg_catalog.abbrev(cidr, inet) text' on db. -func Abbrev(db XODB, v0 pgtypes.Cidr, v1 pgtypes.Inet) (string, error) { +func Abbrev(db XODB, v0 pgtypes.Cidr, v1 string) (string, error) { var err error // sql query @@ -3968,18 +3968,18 @@ func Brinvacuumcleanup(db XODB, v0 pgtypes.Internal, v1 pgtypes.Internal) (pgtyp } // Broadcast calls the stored procedure 'pg_catalog.broadcast(inet) inet' on db. -func Broadcast(db XODB, v0 pgtypes.Inet) (pgtypes.Inet, error) { +func Broadcast(db XODB, v0 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.broadcast($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -5986,7 +5986,7 @@ func Cidout(db XODB, v0 pgtypes.Cid) (pgtypes.Cstring, error) { } // Cidr calls the stored procedure 'pg_catalog.cidr(inet) cidr' on db. -func Cidr(db XODB, v0 pgtypes.Inet) (pgtypes.Cidr, error) { +func Cidr(db XODB, v0 string) (pgtypes.Cidr, error) { var err error // sql query @@ -9431,7 +9431,7 @@ func Factorial(db XODB, v0 int64) (float64, error) { } // Family calls the stored procedure 'pg_catalog.family(inet) integer' on db. -func Family(db XODB, v0 pgtypes.Inet) (int, error) { +func Family(db XODB, v0 string) (int, error) { var err error // sql query @@ -13093,7 +13093,7 @@ func Hashgettuple(db XODB, v0 pgtypes.Internal, v1 pgtypes.Internal) (bool, erro } // Hashinet calls the stored procedure 'pg_catalog.hashinet(inet) integer' on db. -func Hashinet(db XODB, v0 pgtypes.Inet) (int, error) { +func Hashinet(db XODB, v0 string) (int, error) { var err error // sql query @@ -13402,7 +13402,7 @@ func Height(db XODB, v0 pgtypes.Box) (float64, error) { } // Host calls the stored procedure 'pg_catalog.host(inet) text' on db. -func Host(db XODB, v0 pgtypes.Inet) (string, error) { +func Host(db XODB, v0 string) (string, error) { var err error // sql query @@ -13420,18 +13420,18 @@ func Host(db XODB, v0 pgtypes.Inet) (string, error) { } // Hostmask calls the stored procedure 'pg_catalog.hostmask(inet) inet' on db. -func Hostmask(db XODB, v0 pgtypes.Inet) (pgtypes.Inet, error) { +func Hostmask(db XODB, v0 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.hostmask($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -13582,18 +13582,18 @@ func Icregexnesel(db XODB, v0 pgtypes.Internal, v1 pgtypes.Oid, v2 pgtypes.Inter } // InetClientAddr calls the stored procedure 'pg_catalog.inet_client_addr() inet' on db. -func InetClientAddr(db XODB) (pgtypes.Inet, error) { +func InetClientAddr(db XODB) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inet_client_addr()` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr) err = db.QueryRow(sqlstr).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -13636,7 +13636,7 @@ func InetGistCompress(db XODB, v0 pgtypes.Internal) (pgtypes.Internal, error) { } // InetGistConsistent calls the stored procedure 'pg_catalog.inet_gist_consistent(internal, inet, integer, oid, internal) boolean' on db. -func InetGistConsistent(db XODB, v0 pgtypes.Internal, v1 pgtypes.Inet, v2 int, v3 pgtypes.Oid, v4 pgtypes.Internal) (bool, error) { +func InetGistConsistent(db XODB, v0 pgtypes.Internal, v1 string, v2 int, v3 pgtypes.Oid, v4 pgtypes.Internal) (bool, error) { var err error // sql query @@ -13726,7 +13726,7 @@ func InetGistPicksplit(db XODB, v0 pgtypes.Internal, v1 pgtypes.Internal) (pgtyp } // InetGistSame calls the stored procedure 'pg_catalog.inet_gist_same(inet, inet, internal) internal' on db. -func InetGistSame(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet, v2 pgtypes.Internal) (pgtypes.Internal, error) { +func InetGistSame(db XODB, v0 string, v1 string, v2 pgtypes.Internal) (pgtypes.Internal, error) { var err error // sql query @@ -13762,25 +13762,25 @@ func InetGistUnion(db XODB, v0 pgtypes.Internal, v1 pgtypes.Internal) (pgtypes.I } // InetIn calls the stored procedure 'pg_catalog.inet_in(cstring) inet' on db. -func InetIn(db XODB, v0 pgtypes.Cstring) (pgtypes.Inet, error) { +func InetIn(db XODB, v0 pgtypes.Cstring) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inet_in($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // InetMerge calls the stored procedure 'pg_catalog.inet_merge(inet, inet) cidr' on db. -func InetMerge(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (pgtypes.Cidr, error) { +func InetMerge(db XODB, v0 string, v1 string) (pgtypes.Cidr, error) { var err error // sql query @@ -13798,7 +13798,7 @@ func InetMerge(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (pgtypes.Cidr, error) } // InetOut calls the stored procedure 'pg_catalog.inet_out(inet) cstring' on db. -func InetOut(db XODB, v0 pgtypes.Inet) (pgtypes.Cstring, error) { +func InetOut(db XODB, v0 string) (pgtypes.Cstring, error) { var err error // sql query @@ -13816,25 +13816,25 @@ func InetOut(db XODB, v0 pgtypes.Inet) (pgtypes.Cstring, error) { } // InetRecv calls the stored procedure 'pg_catalog.inet_recv(internal) inet' on db. -func InetRecv(db XODB, v0 pgtypes.Internal) (pgtypes.Inet, error) { +func InetRecv(db XODB, v0 pgtypes.Internal) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inet_recv($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // InetSameFamily calls the stored procedure 'pg_catalog.inet_same_family(inet, inet) boolean' on db. -func InetSameFamily(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func InetSameFamily(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -13852,7 +13852,7 @@ func InetSameFamily(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // InetSend calls the stored procedure 'pg_catalog.inet_send(inet) bytea' on db. -func InetSend(db XODB, v0 pgtypes.Inet) ([]byte, error) { +func InetSend(db XODB, v0 string) ([]byte, error) { var err error // sql query @@ -13870,18 +13870,18 @@ func InetSend(db XODB, v0 pgtypes.Inet) ([]byte, error) { } // InetServerAddr calls the stored procedure 'pg_catalog.inet_server_addr() inet' on db. -func InetServerAddr(db XODB) (pgtypes.Inet, error) { +func InetServerAddr(db XODB) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inet_server_addr()` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr) err = db.QueryRow(sqlstr).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -13906,25 +13906,25 @@ func InetServerPort(db XODB) (int, error) { } // Inetand calls the stored procedure 'pg_catalog.inetand(inet, inet) inet' on db. -func Inetand(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (pgtypes.Inet, error) { +func Inetand(db XODB, v0 string, v1 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inetand($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // Inetmi calls the stored procedure 'pg_catalog.inetmi(inet, inet) bigint' on db. -func Inetmi(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (int64, error) { +func Inetmi(db XODB, v0 string, v1 string) (int64, error) { var err error // sql query @@ -13942,72 +13942,72 @@ func Inetmi(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (int64, error) { } // InetmiInt8 calls the stored procedure 'pg_catalog.inetmi_int8(inet, bigint) inet' on db. -func InetmiInt8(db XODB, v0 pgtypes.Inet, v1 int64) (pgtypes.Inet, error) { +func InetmiInt8(db XODB, v0 string, v1 int64) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inetmi_int8($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // Inetnot calls the stored procedure 'pg_catalog.inetnot(inet) inet' on db. -func Inetnot(db XODB, v0 pgtypes.Inet) (pgtypes.Inet, error) { +func Inetnot(db XODB, v0 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inetnot($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // Inetor calls the stored procedure 'pg_catalog.inetor(inet, inet) inet' on db. -func Inetor(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (pgtypes.Inet, error) { +func Inetor(db XODB, v0 string, v1 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inetor($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // Inetpl calls the stored procedure 'pg_catalog.inetpl(inet, bigint) inet' on db. -func Inetpl(db XODB, v0 pgtypes.Inet, v1 int64) (pgtypes.Inet, error) { +func Inetpl(db XODB, v0 string, v1 int64) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.inetpl($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -17020,18 +17020,18 @@ func Int8pl(db XODB, v0 int64, v1 int64) (int64, error) { } // Int8plInet calls the stored procedure 'pg_catalog.int8pl_inet(bigint, inet) inet' on db. -func Int8plInet(db XODB, v0 int64, v1 pgtypes.Inet) (pgtypes.Inet, error) { +func Int8plInet(db XODB, v0 int64, v1 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.int8pl_inet($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -21407,7 +21407,7 @@ func Makeaclitem(db XODB, v0 pgtypes.Oid, v1 pgtypes.Oid, v2 string, v3 bool) (p } // Masklen calls the stored procedure 'pg_catalog.masklen(inet) integer' on db. -func Masklen(db XODB, v0 pgtypes.Inet) (int, error) { +func Masklen(db XODB, v0 string) (int, error) { var err error // sql query @@ -21425,7 +21425,7 @@ func Masklen(db XODB, v0 pgtypes.Inet) (int, error) { } // Max calls the stored procedure 'pg_catalog.max(bigint, smallint, integer, text, oid, tid, real, double precision, abstime, money, inet, character, date, time without time zone, timestamp without time zone, timestamp with time zone, interval, time with time zone, numeric, anyarray, anyenum) anyenum' on db. -func Max(db XODB, v0 int64, v1 int16, v2 int, v3 string, v4 pgtypes.Oid, v5 pgtypes.Tid, v6 float32, v7 float64, v8 pgtypes.Abstime, v9 string, v10 pgtypes.Inet, v11 string, v12 *time.Time, v13 *time.Time, v14 *time.Time, v15 *time.Time, v16 *time.Duration, v17 *time.Time, v18 float64, v19 pgtypes.Anyarray, v20 pgtypes.Anyenum) (pgtypes.Anyenum, error) { +func Max(db XODB, v0 int64, v1 int16, v2 int, v3 string, v4 pgtypes.Oid, v5 pgtypes.Tid, v6 float32, v7 float64, v8 pgtypes.Abstime, v9 string, v10 string, v11 string, v12 *time.Time, v13 *time.Time, v14 *time.Time, v15 *time.Time, v16 *time.Duration, v17 *time.Time, v18 float64, v19 pgtypes.Anyarray, v20 pgtypes.Anyenum) (pgtypes.Anyenum, error) { var err error // sql query @@ -21669,7 +21669,7 @@ func MicToWin866(db XODB, v0 int, v1 int, v2 pgtypes.Cstring, v3 pgtypes.Interna } // Min calls the stored procedure 'pg_catalog.min(bigint, smallint, integer, text, oid, tid, real, double precision, abstime, money, inet, character, date, time without time zone, timestamp without time zone, timestamp with time zone, interval, time with time zone, numeric, anyarray, anyenum) anyenum' on db. -func Min(db XODB, v0 int64, v1 int16, v2 int, v3 string, v4 pgtypes.Oid, v5 pgtypes.Tid, v6 float32, v7 float64, v8 pgtypes.Abstime, v9 string, v10 pgtypes.Inet, v11 string, v12 *time.Time, v13 *time.Time, v14 *time.Time, v15 *time.Time, v16 *time.Duration, v17 *time.Time, v18 float64, v19 pgtypes.Anyarray, v20 pgtypes.Anyenum) (pgtypes.Anyenum, error) { +func Min(db XODB, v0 int64, v1 int16, v2 int, v3 string, v4 pgtypes.Oid, v5 pgtypes.Tid, v6 float32, v7 float64, v8 pgtypes.Abstime, v9 string, v10 string, v11 string, v12 *time.Time, v13 *time.Time, v14 *time.Time, v15 *time.Time, v16 *time.Duration, v17 *time.Time, v18 float64, v19 pgtypes.Anyarray, v20 pgtypes.Anyenum) (pgtypes.Anyenum, error) { var err error // sql query @@ -22191,25 +22191,25 @@ func Neqsel(db XODB, v0 pgtypes.Internal, v1 pgtypes.Oid, v2 pgtypes.Internal, v } // Netmask calls the stored procedure 'pg_catalog.netmask(inet) inet' on db. -func Netmask(db XODB, v0 pgtypes.Inet) (pgtypes.Inet, error) { +func Netmask(db XODB, v0 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.netmask($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // Network calls the stored procedure 'pg_catalog.network(inet) cidr' on db. -func Network(db XODB, v0 pgtypes.Inet) (pgtypes.Cidr, error) { +func Network(db XODB, v0 string) (pgtypes.Cidr, error) { var err error // sql query @@ -22227,7 +22227,7 @@ func Network(db XODB, v0 pgtypes.Inet) (pgtypes.Cidr, error) { } // NetworkCmp calls the stored procedure 'pg_catalog.network_cmp(inet, inet) integer' on db. -func NetworkCmp(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (int, error) { +func NetworkCmp(db XODB, v0 string, v1 string) (int, error) { var err error // sql query @@ -22245,7 +22245,7 @@ func NetworkCmp(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (int, error) { } // NetworkEq calls the stored procedure 'pg_catalog.network_eq(inet, inet) boolean' on db. -func NetworkEq(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkEq(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22263,7 +22263,7 @@ func NetworkEq(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkGe calls the stored procedure 'pg_catalog.network_ge(inet, inet) boolean' on db. -func NetworkGe(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkGe(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22281,7 +22281,7 @@ func NetworkGe(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkGt calls the stored procedure 'pg_catalog.network_gt(inet, inet) boolean' on db. -func NetworkGt(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkGt(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22299,25 +22299,25 @@ func NetworkGt(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkLarger calls the stored procedure 'pg_catalog.network_larger(inet, inet) inet' on db. -func NetworkLarger(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (pgtypes.Inet, error) { +func NetworkLarger(db XODB, v0 string, v1 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.network_larger($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // NetworkLe calls the stored procedure 'pg_catalog.network_le(inet, inet) boolean' on db. -func NetworkLe(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkLe(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22335,7 +22335,7 @@ func NetworkLe(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkLt calls the stored procedure 'pg_catalog.network_lt(inet, inet) boolean' on db. -func NetworkLt(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkLt(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22353,7 +22353,7 @@ func NetworkLt(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkNe calls the stored procedure 'pg_catalog.network_ne(inet, inet) boolean' on db. -func NetworkNe(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkNe(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22371,7 +22371,7 @@ func NetworkNe(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkOverlap calls the stored procedure 'pg_catalog.network_overlap(inet, inet) boolean' on db. -func NetworkOverlap(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkOverlap(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22389,25 +22389,25 @@ func NetworkOverlap(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkSmaller calls the stored procedure 'pg_catalog.network_smaller(inet, inet) inet' on db. -func NetworkSmaller(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (pgtypes.Inet, error) { +func NetworkSmaller(db XODB, v0 string, v1 string) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.network_smaller($1, $2)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0, v1) err = db.QueryRow(sqlstr, v0, v1).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil } // NetworkSub calls the stored procedure 'pg_catalog.network_sub(inet, inet) boolean' on db. -func NetworkSub(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkSub(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22425,7 +22425,7 @@ func NetworkSub(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkSubeq calls the stored procedure 'pg_catalog.network_subeq(inet, inet) boolean' on db. -func NetworkSubeq(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkSubeq(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22443,7 +22443,7 @@ func NetworkSubeq(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkSup calls the stored procedure 'pg_catalog.network_sup(inet, inet) boolean' on db. -func NetworkSup(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkSup(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -22461,7 +22461,7 @@ func NetworkSup(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { } // NetworkSupeq calls the stored procedure 'pg_catalog.network_supeq(inet, inet) boolean' on db. -func NetworkSupeq(db XODB, v0 pgtypes.Inet, v1 pgtypes.Inet) (bool, error) { +func NetworkSupeq(db XODB, v0 string, v1 string) (bool, error) { var err error // sql query @@ -27334,18 +27334,18 @@ func PgStatGetBackendActivityStart(db XODB, v0 int) (*time.Time, error) { } // PgStatGetBackendClientAddr calls the stored procedure 'pg_catalog.pg_stat_get_backend_client_addr(integer) inet' on db. -func PgStatGetBackendClientAddr(db XODB, v0 int) (pgtypes.Inet, error) { +func PgStatGetBackendClientAddr(db XODB, v0 int) (string, error) { var err error // sql query const sqlstr = `SELECT pg_catalog.pg_stat_get_backend_client_addr($1)` // run query - var ret pgtypes.Inet + var ret string XOLog(sqlstr, v0) err = db.QueryRow(sqlstr, v0).Scan(&ret) if err != nil { - return pgtypes.Inet{}, err + return "", err } return ret, nil @@ -33013,7 +33013,7 @@ func SetConfig(db XODB, v0 string, v1 string, v2 bool) (string, error) { } // SetMasklen calls the stored procedure 'pg_catalog.set_masklen(cidr, integer, inet, integer) cidr' on db. -func SetMasklen(db XODB, v0 pgtypes.Cidr, v1 int, v2 pgtypes.Inet, v3 int) (pgtypes.Cidr, error) { +func SetMasklen(db XODB, v0 pgtypes.Cidr, v1 int, v2 string, v3 int) (pgtypes.Cidr, error) { var err error // sql query @@ -34205,7 +34205,7 @@ func Tan(db XODB, v0 float64) (float64, error) { } // Text calls the stored procedure 'pg_catalog.text(boolean, "char", name, xml, inet, character) text' on db. -func Text(db XODB, v0 bool, v1 uint8, v2 pgtypes.Name, v3 pgtypes.XML, v4 pgtypes.Inet, v5 string) (string, error) { +func Text(db XODB, v0 bool, v1 uint8, v2 pgtypes.Name, v3 pgtypes.XML, v4 string, v5 string) (string, error) { var err error // sql query diff --git a/models/column.xo.go b/models/column.xo.go index ef247c6c..92281675 100644 --- a/models/column.xo.go +++ b/models/column.xo.go @@ -3,7 +3,9 @@ package models // GENERATED BY XO. DO NOT EDIT. -import "database/sql" +import ( + "database/sql" +) // Column represents column info. type Column struct { diff --git a/models/msidentity.xo.go b/models/msidentity.xo.go index b1395386..ceff2a67 100644 --- a/models/msidentity.xo.go +++ b/models/msidentity.xo.go @@ -1,4 +1,4 @@ -// Package models contains the types for schema 'dbo'. +// Package models contains the types for schema 'xodb'. package models // GENERATED BY XO. DO NOT EDIT. diff --git a/models/sqcolumn.xo.go b/models/sqcolumn.xo.go index 1ddb7959..5f8fe3c0 100644 --- a/models/sqcolumn.xo.go +++ b/models/sqcolumn.xo.go @@ -3,7 +3,9 @@ package models // GENERATED BY XO. DO NOT EDIT. -import "database/sql" +import ( + "database/sql" +) // SqColumn represents a row from '[custom sq_column]'. type SqColumn struct { diff --git a/templates/tpls.go b/templates/templates.go similarity index 97% rename from templates/tpls.go rename to templates/templates.go index ab3961de..9221ff9f 100644 --- a/templates/tpls.go +++ b/templates/templates.go @@ -98,7 +98,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _mssqlForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" +var _mssqlForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" func mssqlForeignkeyGoTplBytes() ([]byte, error) { return bindataRead( @@ -118,7 +118,7 @@ func mssqlForeignkeyGoTpl() (*asset, error) { return a, nil } -var _mssqlIndexGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" +var _mssqlIndexGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" func mssqlIndexGoTplBytes() ([]byte, error) { return bindataRead( @@ -138,7 +138,7 @@ func mssqlIndexGoTpl() (*asset, error) { return a, nil } -var _mssqlQueryGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" +var _mssqlQueryGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" func mssqlQueryGoTplBytes() ([]byte, error) { return bindataRead( @@ -158,7 +158,7 @@ func mssqlQueryGoTpl() (*asset, error) { return a, nil } -var _mssqlQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" +var _mssqlQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" func mssqlQuerytypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -178,7 +178,7 @@ func mssqlQuerytypeGoTpl() (*asset, error) { return a, nil } -var _mssqlTypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x57\x4d\x6f\xdb\x38\x10\x3d\x4b\xbf\x62\x2a\x14\x88\xb5\xeb\x4a\xd8\x6b\x00\x1f\xba\x8d\x8a\x0d\x36\x4d\x82\xd8\xd9\xed\x2d\xa6\xcc\x71\xc3\x8d\x44\x3a\x24\xe5\xc6\x10\xf4\xdf\x17\xfc\x90\x23\x7f\x34\x95\x9a\xf6\x10\x29\x12\x87\x8f\x4f\x33\xf3\x1e\xe9\xba\x7e\x07\x6f\xd5\xbd\x90\x1a\x4e\x27\x30\xb2\xff\x71\x52\x22\x24\x97\xe6\x1a\xa1\x94\x11\x44\x12\x55\x04\x91\x7a\x2c\x94\x36\x8f\x34\x8f\x20\xfa\x7c\x75\x21\xbe\x44\x31\xbc\x6b\x9a\xd0\xa2\x68\x92\x17\xe8\x50\x16\xf7\x58\x12\x48\xa6\xfe\x3e\x33\x23\xee\x6a\x50\x9f\xe7\xb0\x25\x24\x1f\x44\x59\x22\xd7\xf6\x5d\x9a\x42\x5d\x3f\xbf\xf2\x51\x58\x28\xec\x0e\x5b\x66\x4d\x03\x12\x57\x12\x15\x72\xad\x80\x80\x14\x5f\x61\x29\x45\x09\x27\x75\xdd\x72\x69\x9a\x93\xc4\x21\x70\x6a\xc0\xf4\x66\x85\x3b\x08\x4a\xcb\x6a\xa1\xa1\xb6\x41\x92\xf0\x2f\x08\xc9\x47\x86\x05\x55\x26\x3c\xe8\x86\xd6\x35\x48\xb4\x00\xc9\xcc\x5c\x9b\x06\xe6\xff\x29\xc1\x4f\x23\xc7\xb8\x30\x7f\x55\xc9\x7d\x7c\x34\x87\xed\xc7\xec\x0d\x75\x19\xb5\x49\xb8\x96\xac\x24\x72\xf3\x37\x6e\xcc\xdb\x30\x48\x53\x78\x12\xb0\xb4\x54\xc2\xe0\x0e\x9f\x98\xd2\x6a\x0c\x77\x14\x0b\xd4\x48\x21\x17\xa2\x08\xeb\xba\x85\x69\x42\xf3\x70\x08\x94\xa6\x90\xd9\xa9\x40\x51\xa3\x2c\x19\x47\x65\xc2\xf4\xfd\x6e\x1e\x1c\x3e\x30\x6e\x47\x28\xd1\x24\x27\x0a\x93\x70\x59\xf1\x05\x8c\x4c\x42\x5d\x8b\x34\x0d\xfc\xd6\x99\x17\x7b\xf4\x51\x6c\x09\x41\x1d\x06\x12\x75\x25\x39\x74\xa7\x24\x9e\xbe\x61\x99\xa6\x70\xe6\x3f\x61\x25\xc5\x9a\x51\xc3\x87\x2f\x85\x2c\x89\x66\x82\x1f\xe3\x76\x4f\x14\xe4\x88\x1c\xda\x6f\xb7\x55\x1e\xc8\xd3\x2f\xfa\x3d\xa2\x7e\x09\xcf\xf4\x9c\x2b\x94\x1a\x98\xbd\xa9\x03\x62\x5a\x0c\x65\xe1\x00\x47\x34\x87\xcf\x57\x67\x7f\xc6\x80\x52\x0a\x69\xc8\xac\x89\x34\x0f\xee\x85\x2b\x3f\x5b\x02\x29\x24\x12\xba\x71\xd5\x19\x43\x4e\x58\x11\x06\x6c\x79\x34\xb9\x06\xa5\xfd\x26\x8b\xa2\x92\x4b\xfc\x3a\x8a\x1c\x79\x58\x12\x56\x20\x3d\xdd\x85\x54\x51\x1c\x06\xcf\xad\xe3\x54\xfa\x89\xf0\x8a\x14\xd7\x0f\x60\x15\x90\xa6\xa0\x1e\x0b\x9f\x02\x78\xac\x50\x6e\xc6\xb0\x72\x3d\x06\x0f\xb8\x81\xb2\x52\x1a\x72\x6c\xab\x49\xc3\x60\x21\xb8\xd2\xe0\xbc\x02\x26\x30\x3f\xbf\x9c\x66\x37\x33\x38\xbf\x9c\x5d\x41\x57\x9a\x30\x9a\xc3\xef\x61\x10\xcc\xeb\x1a\x16\xa2\x30\xa6\xa3\x3a\xea\xf3\x83\x31\xfc\xf3\xfe\xe2\x36\x9b\xee\x45\xaf\x49\x71\x2c\x78\xee\x72\x27\x2b\xee\xb8\x86\x81\x75\xa9\x91\x63\x33\x36\xeb\x5b\x4d\xed\x2e\xb6\x4d\x66\x1c\x06\x77\x63\x5b\x88\x09\xd0\x3c\xc9\x9e\x70\x31\x60\x2a\x5b\xda\xa9\x6f\x26\xc0\x59\xb1\x57\x0f\x9b\x67\x9b\x4d\xd4\x2e\xf9\xc8\x17\x68\x1d\xe6\xb0\x94\x13\xd0\xb2\x42\x2b\x6f\xe3\x7c\xbd\xea\xd0\xe6\x1f\xf2\x0d\x30\x8a\x5c\x33\xbd\xf9\x49\xb5\xe8\x78\x4a\xdb\xca\x03\x8a\xf3\xc2\xec\x57\x55\xeb\x08\x6e\x6c\x54\xad\x5c\x01\x4f\x07\x56\xf0\x38\x5c\xaf\x92\x4a\xd4\x92\xe1\x1a\x81\xd1\x30\x60\x74\xbb\xbe\x44\x95\x5c\x10\xa5\x9d\xea\xcf\xe9\x68\x48\x8f\x74\x6b\x4b\x38\xfd\x66\xcf\x18\x7f\x39\xa4\x0e\x13\xd8\x1b\xf0\x7b\xd6\x88\xd1\xf8\xfb\x5d\xe7\x36\x95\xad\x47\x72\x56\x78\x47\xbc\x5d\x51\xa2\x11\x2a\x7b\x3b\x74\xc4\xe1\xfb\x87\x03\xec\xed\x88\x54\xa0\xe2\x27\xfa\xc0\x11\xdf\x0c\xb1\x44\xc7\x7e\x6b\x89\x06\x13\xb8\xf0\xa0\xde\x12\xdb\xf5\xdc\x7e\xf0\x4d\xef\x6d\xb7\xa4\x7e\x2b\x95\x44\x3e\x98\xfd\x4b\x48\x07\xcc\x04\xef\x2c\x67\xf4\xed\x65\xb0\x2f\xdb\xdb\xeb\xb3\xf7\xb3\x6c\x57\xb1\xd3\x6c\x06\x87\xa2\xb5\x00\xdb\xde\x8e\xc6\x10\xbd\x20\x40\xf8\xf7\xaf\xec\xc6\xc2\xfa\xe9\x3b\xb1\x1f\x44\xe1\x3a\xe9\xad\x0b\x58\x88\x8a\xeb\x17\x65\xfd\x93\xe5\x3c\x86\x1e\x9d\xfe\xc3\x96\xfd\x8a\x05\x3b\x92\x75\xb2\x98\x92\x35\x82\x22\xeb\x23\x92\x18\x7e\x48\x30\x60\x47\x04\xb1\xdf\x7b\xdb\x93\x57\xa7\xf7\x76\x02\xb6\xd2\xf2\x2d\x76\x2c\x66\x7b\x20\x89\x77\x0e\x67\xbe\xef\x0f\xbf\xe6\xc7\x8f\x5e\xbf\x5e\xe2\xc6\xa5\x5e\x27\xdd\x2e\xc2\x0b\x6a\x3c\xcb\x2e\xb2\x59\x06\x1f\x6f\xae\x3e\xed\x4a\xb2\xa7\x9c\xfe\xe8\x21\x94\x57\xb6\x7d\x8f\xe9\xbd\x77\xa2\xf6\x4c\x1c\x1c\xcf\x9f\xdf\x36\xf6\x36\x8b\xce\x4f\x9c\xf0\xff\x00\x00\x00\xff\xff\x7c\x99\x14\x99\x63\x0e\x00\x00" +var _mssqlTypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x4d\x6f\xdb\x38\x10\x3d\x4b\xbf\x62\x2a\x14\x88\xb5\xeb\x4a\xd8\x6b\x00\x1f\xba\x8d\x8a\x0d\x36\x4d\x82\xd8\xd9\xed\x2d\xa6\xcc\x71\xc3\x8d\x44\x3a\x24\xe5\xc6\x10\xf4\xdf\x17\xfc\x90\x23\x7f\x34\x95\x9a\xf6\x10\x29\x12\x87\x8f\x4f\x33\xf3\x1e\xe9\xba\x7e\x07\x6f\xd5\xbd\x90\x1a\x4e\x27\x30\xb2\xff\x71\x52\x22\x24\x97\xe6\x1a\xa1\x94\x11\x44\x12\x55\x04\x91\x7a\x2c\x94\x36\x8f\x34\x8f\x20\xfa\x7c\x75\x21\xbe\x44\x31\xbc\x6b\x9a\xd0\xa2\x68\x92\x17\xe8\x50\x16\xf7\x58\x12\x48\xa6\xfe\x3e\x33\x23\xee\x6a\x50\x9f\xe7\xb0\x25\x24\x1f\x44\x59\x22\xd7\xf6\x5d\x9a\x42\x5d\x3f\xbf\xf2\x51\x58\x28\xec\x0e\x5b\x66\x4d\x03\x12\x57\x12\x15\x72\xad\x80\x80\x14\x5f\x61\x29\x45\x09\x27\x75\xdd\x72\x69\x9a\x93\xc4\x21\x70\x6a\xc0\xf4\x66\x85\x3b\x08\x4a\xcb\x6a\xa1\xa1\xb6\x41\x92\xf0\x2f\x08\xc9\x47\x86\x05\x55\x26\x3c\xe8\x86\xd6\x35\x48\xb4\x00\xc9\xcc\x5c\x9b\x06\xe6\xff\x29\xc1\x4f\x23\xc7\xb8\x30\x7f\x55\xc9\x7d\x7c\x34\x87\xed\xc7\xec\x0d\x75\x19\xb5\x49\xb8\x96\xac\x24\x72\xf3\x37\x6e\xcc\xdb\x30\x48\x53\x78\x12\xb0\xb4\x54\xc2\xe0\x0e\x9f\x98\xd2\x6a\x0c\x77\x14\x0b\xd4\x48\x21\x17\xa2\x08\xeb\xba\x85\x69\x42\xf3\x70\x08\x94\xa6\x90\xd9\xa9\x40\x51\xa3\x2c\x19\x47\x65\xc2\xf4\xfd\x6e\x1e\x1c\x3e\x30\x6e\x47\x28\xd1\x24\x27\x0a\x93\x70\x59\xf1\x05\x8c\x4c\x42\x5d\x8b\x34\x0d\xfc\xd6\x99\x17\x7b\xf4\x51\x6c\x09\x41\x1d\x06\x12\x75\x25\x39\x74\xa7\x24\x9e\xbe\x61\x99\xa6\x70\xe6\x3f\x61\x25\xc5\x9a\x51\xc3\x87\x2f\x85\x2c\x89\x66\x82\x1f\xe3\x76\x4f\x14\xe4\x88\x1c\xda\x6f\xb7\x55\x1e\xc8\xd3\x2f\xfa\x3d\xa2\x7e\x09\xcf\xf4\x9c\x2b\x94\x1a\x98\xbd\xa9\x03\x62\x5a\x0c\x65\xe1\x00\x47\x34\x87\xcf\x57\x67\x7f\xc6\x80\x52\x0a\x69\xc8\xac\x89\x34\x0f\xee\x85\x2b\x3f\x5b\x02\x29\x24\x12\xba\x71\xd5\x19\x43\x4e\x58\x11\x06\x6c\x79\x34\xb9\x06\xa5\xfd\x26\x8b\xa2\x92\x4b\xfc\x3a\x8a\x1c\x79\x58\x12\x56\x20\x3d\xdd\x85\x54\x51\x1c\x06\xcf\xad\xe3\x54\xfa\x89\xf0\x8a\x14\xd7\x0f\x60\x15\x90\xa6\xa0\x1e\x0b\x9f\x02\x78\xac\x50\x6e\xc6\xb0\x72\x3d\x06\x0f\xb8\x81\xb2\x52\x1a\x72\x6c\xab\x49\xc3\x60\x21\xb8\xd2\xe0\xbc\x02\x26\x30\x3f\xbf\x9c\x66\x37\x33\x38\xbf\x9c\x5d\x41\x57\x9a\x30\x9a\xc3\xef\x61\x10\xcc\xeb\x1a\x16\xa2\x30\xa6\xa3\x3a\xea\xf3\x83\x31\xfc\xf3\xfe\xe2\x36\x9b\xee\x45\xaf\x49\x71\x2c\x78\xee\x72\x27\x2b\xee\xb8\x86\x81\x75\xa9\x91\x63\x33\x36\xeb\x5b\x4d\xed\x2e\xb6\x4d\x66\x1c\x06\x77\x63\x5b\x88\x09\xd0\x3c\xc9\x9e\x70\x31\x60\x2a\x5b\xda\xa9\x6f\x26\xc0\x59\xb1\x57\x0f\x9b\x67\x9b\x4d\xd4\x2e\xf9\xc8\x17\x68\x1d\xe6\xb0\x94\x13\xd0\xb2\x42\x2b\x6f\xe3\x7c\xbd\xea\xd0\xe6\x1f\xf2\x0d\x30\x8a\x5c\x33\xbd\xf9\x49\xb5\xe8\x78\x4a\xdb\xca\x03\x8a\xf3\xc2\xec\x57\x55\xeb\x08\x6e\x6c\x54\xad\x5c\x01\x4f\x07\x56\xf0\x38\x5c\xaf\x92\x4a\xd4\x92\xe1\x1a\x81\xd1\x30\x60\x74\xbb\xbe\x44\x95\x5c\x10\xa5\x9d\xea\xcf\xe9\x68\x48\x8f\x74\x6b\x4b\x38\xfd\x66\xcf\x18\x7f\x39\xa4\x0e\x13\xd8\x1b\xf0\x7b\xd6\x88\xd1\xf8\xfb\x5d\xe7\x36\x95\xad\x47\x72\x56\x78\x47\xbc\x5d\x51\xa2\x11\x2a\x7b\x3b\x74\xc4\xe1\xfb\x87\x03\xec\xed\x88\x54\xa0\xe2\x27\xfa\xc0\x11\xdf\x0c\xb1\x44\xc7\x7e\x6b\x89\x06\x13\xb8\xf0\xa0\xde\x12\xdb\xf5\xdc\x7e\xf0\x4d\xef\x6d\xb7\xa4\x7e\x2b\x95\x44\x3e\x98\xfd\x4b\x48\x07\xcc\x04\xef\x2c\x67\xf4\xed\x65\xb0\x2f\xdb\xdb\xeb\xb3\xf7\xb3\x6c\x57\xb1\xd3\x6c\x06\x87\xa2\xb5\x00\xdb\xde\x8e\xc6\x10\xbd\x20\x40\xf8\xf7\xaf\xec\xc6\xc2\xfa\xe9\x3b\xb1\x1f\x44\xe1\x3a\xe9\xad\x0b\x58\x88\x8a\xeb\x17\x65\xfd\x93\xe5\x3c\x86\x1e\x9d\xfe\xc3\x96\xfd\x8a\x05\x3b\x92\x75\xb2\x98\x92\x35\x82\x22\xeb\x23\x92\x18\x7e\x48\x30\x60\x47\x04\xb1\xdf\x7b\xdb\x93\x57\xa7\xf7\x76\x02\xb6\xd2\xf2\x2d\x76\x2c\x66\x7b\x20\x89\x77\x0e\x67\xbe\xef\x0f\xbf\xe6\xc7\x8f\x5e\xbf\x5e\xe2\xc6\xa5\x5e\x27\xdd\x2e\xc2\x0b\x6a\x3c\xcb\x2e\xb2\x59\x06\x1f\x6f\xae\x3e\xed\x4a\xb2\xa7\x9c\xfe\xe8\x21\x94\x57\xb6\x7d\x8f\xe9\xbd\x77\xa2\xf6\x4c\x1c\x1c\xcf\x9f\xdf\x36\xf6\x36\x8b\xce\x4f\x9c\xf0\xff\x00\x00\x00\xff\xff\x7c\x99\x14\x99\x63\x0e\x00\x00" func mssqlTypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -198,7 +198,7 @@ func mssqlTypeGoTpl() (*asset, error) { return a, nil } -var _mysqlEnumGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x55\xc1\x6a\xdc\x30\x10\x3d\x5b\x5f\x31\x15\x85\x58\x21\xf1\xd2\x4b\x0f\x81\x3d\x95\x1e\x9b\x43\xd3\xe6\x52\x7a\xd0\x7a\x47\x59\x11\x5b\x6e\x24\x79\x93\x60\xf4\xef\x65\x24\x99\x95\xd3\x4d\x4b\x0a\x7b\x59\xc4\x68\xfc\xe6\xcd\x7b\x4f\xec\x34\x5d\xc2\x7b\xff\xfc\x0b\xe1\x6a\x0d\xcd\xb5\xec\x11\x2e\x43\x60\xb1\xec\x76\x83\xf5\x54\xaf\xe3\xc9\xd0\x65\xea\xe5\x68\xc6\xfe\x56\x76\x1c\xb8\xc7\x27\xcf\x81\x6f\x46\xc5\x81\x0f\xf7\x1c\xb8\xb3\x2d\x17\x07\x14\x8b\x7b\xb4\x0e\x09\xda\xc5\x21\x5f\x53\xe1\xd3\x60\x9c\x4f\x55\xea\x5d\xad\x60\x9a\x32\x7c\x08\xa0\x1d\xf8\x1d\xc2\xd9\x34\x41\xf3\xd9\x8c\x7d\xfc\x89\xf4\x42\x38\x03\x1a\x0f\xb1\x55\xd9\xa1\x07\xd7\xee\xb0\x97\xa9\xf9\x26\x9d\xa9\xad\x61\xb1\xa5\x84\x1d\xb5\xf1\x1f\x3e\x32\xd6\xd2\x70\xa8\x23\x43\x2b\xcd\x1d\x42\x73\x2b\xbb\x11\x1d\x84\xc0\xaa\xc4\x45\xab\x17\xe4\x43\xa0\x01\x99\x44\x81\x3a\x4d\x80\x9d\xfb\xb3\x58\xb4\xa2\xd9\xbe\xdc\xea\x56\x76\x71\xa9\x38\x37\x6e\x55\x7c\xdd\xb0\xea\x34\x0c\xd6\xe5\x94\x7a\xe6\x11\xbd\x98\x89\x08\x96\xdb\xc9\x16\xc1\xc8\x99\x1b\x6f\xb5\xb9\x03\x8b\x7e\xb4\x26\xed\xe0\x52\x69\x1f\x3f\x1a\x54\xac\x2d\x16\x50\xa3\x69\x81\x26\xe4\x1c\x85\x50\xde\x8b\x8c\x59\x8b\x19\x69\x62\xd5\x5e\x5a\xc8\xc9\xca\x55\xc6\x2a\xf7\xa8\x7d\xbb\x83\x25\xd0\x2b\xc6\xb5\xd2\xe1\x69\xac\xbb\x62\x55\x35\x53\x5b\x03\x3f\x66\x20\x2f\x75\xab\x02\x63\x55\xd2\x6b\x5e\x89\x85\xa8\xe5\x17\x69\xdd\x4e\x76\xdf\xf0\xc9\x43\x9f\xce\x6e\x19\x7d\xe3\x07\xa0\x67\xf5\x6f\x0d\x0b\xac\x5a\x40\xfd\xe3\xe7\xe6\xd9\xe3\x05\xa0\xb5\x83\x15\xa4\x68\x66\x90\x2e\x16\x40\xcd\xac\xbf\xb8\x00\xa3\x67\x72\xdf\x4d\x5f\xd0\x1b\xcd\x51\x82\xf1\xcd\xbd\x4a\xf0\x7c\xc1\x70\x01\x58\xd3\x47\x99\x8c\x48\x2c\x89\x64\x76\x38\x39\x1e\x7b\x44\xf5\x57\x87\x8f\xcb\x4f\x16\x9d\x2f\xa8\xac\x4f\x93\x05\x76\x38\xb1\x6a\x8b\x4a\x8e\x9d\xa7\xe1\xb3\xdd\xb4\x97\x6b\xae\xf1\xb1\xe6\xda\xec\x65\xa7\xb7\xa5\x7c\x5c\x2c\xc2\x71\xd0\x3e\x2d\xe2\xa4\xd7\x4e\x69\xcc\xaf\xec\xa1\x5b\x6d\xad\xde\xa3\x4d\x22\x58\x4a\x07\x5a\x25\x5b\x04\x45\xea\xbd\xe5\xc5\x45\x04\xca\x49\x89\x78\x24\x2d\x47\x63\x52\xa6\xe4\xa6\x95\xe6\x05\xd1\xad\xf4\x72\x23\x1d\xae\xdc\x43\xd7\xd0\xbd\x79\x33\xd7\x65\x70\x08\xa3\x76\xb6\x3d\x80\x4c\xa1\xc8\xcc\x66\x54\x17\x30\xdc\xd3\x1f\x8a\xb3\x6d\x93\xa3\x2f\x58\xa5\x15\xbc\x1b\xee\xa9\x05\x00\xfe\xcb\x91\xc5\xfa\xcb\xfc\x6e\x46\x25\x48\x83\xdf\x01\x00\x00\xff\xff\x33\x36\x2f\x65\x36\x07\x00\x00" +var _mysqlEnumGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xc1\x6a\xdc\x30\x10\x3d\x5b\x5f\x31\x15\x85\x58\x21\xf1\xd2\x4b\x0f\x81\x3d\x95\x1e\x9b\x43\xd3\xe6\x52\x7a\xd0\x7a\x47\x59\x11\x5b\x6e\x24\x79\x93\x60\xf4\xef\x65\x24\x99\x95\xd3\x4d\x4b\x0a\x7b\x59\xc4\x68\xfc\xe6\xcd\x7b\x4f\xec\x34\x5d\xc2\x7b\xff\xfc\x0b\xe1\x6a\x0d\xcd\xb5\xec\x11\x2e\x43\x60\xb1\xec\x76\x83\xf5\x54\xaf\xe3\xc9\xd0\x65\xea\xe5\x68\xc6\xfe\x56\x76\x1c\xb8\xc7\x27\xcf\x81\x6f\x46\xc5\x81\x0f\xf7\x1c\xb8\xb3\x2d\x17\x07\x14\x8b\x7b\xb4\x0e\x09\xda\xc5\x21\x5f\x53\xe1\xd3\x60\x9c\x4f\x55\xea\x5d\xad\x60\x9a\x32\x7c\x08\xa0\x1d\xf8\x1d\xc2\xd9\x34\x41\xf3\xd9\x8c\x7d\xfc\x89\xf4\x42\x38\x03\x1a\x0f\xb1\x55\xd9\xa1\x07\xd7\xee\xb0\x97\xa9\xf9\x26\x9d\xa9\xad\x61\xb1\xa5\x84\x1d\xb5\xf1\x1f\x3e\x32\xd6\xd2\x70\xa8\x23\x43\x2b\xcd\x1d\x42\x73\x2b\xbb\x11\x1d\x84\xc0\xaa\xc4\x45\xab\x17\xe4\x43\xa0\x01\x99\x44\x81\x3a\x4d\x80\x9d\xfb\xb3\x58\xb4\xa2\xd9\xbe\xdc\xea\x56\x76\x71\xa9\x38\x37\x6e\x55\x7c\xdd\xb0\xea\x34\x0c\xd6\xe5\x94\x7a\xe6\x11\xbd\x98\x89\x08\x96\xdb\xc9\x16\xc1\xc8\x99\x1b\x6f\xb5\xb9\x03\x8b\x7e\xb4\x26\xed\xe0\x52\x69\x1f\x3f\x1a\x54\xac\x2d\x16\x50\xa3\x69\x81\x26\xe4\x1c\x85\x50\xde\x8b\x8c\x59\x8b\x19\x69\x62\xd5\x5e\x5a\xc8\xc9\xca\x55\xc6\x2a\xf7\xa8\x7d\xbb\x83\x25\xd0\x2b\xc6\xb5\xd2\xe1\x69\xac\xbb\x62\x55\x35\x53\x5b\x03\x3f\x66\x20\x2f\x75\xab\x02\x63\x55\xd2\x6b\x5e\x89\x85\xa8\xe5\x17\x69\xdd\x4e\x76\xdf\xf0\xc9\x43\x9f\xce\x6e\x19\x7d\xe3\x07\xa0\x67\xf5\x6f\x0d\x0b\xac\x5a\x40\xfd\xe3\xe7\xe6\xd9\xe3\x05\xa0\xb5\x83\x15\xa4\x68\x66\x90\x2e\x16\x40\xcd\xac\xbf\xb8\x00\xa3\x67\x72\xdf\x4d\x5f\xd0\x1b\xcd\x51\x82\xf1\xcd\xbd\x4a\xf0\x7c\xc1\x70\x01\x58\xd3\x47\x99\x8c\x48\x2c\x89\x64\x76\x38\x39\x1e\x7b\x44\xf5\x57\x87\x8f\xcb\x4f\x16\x9d\x2f\xa8\xac\x4f\x93\x05\x76\x38\xb1\x6a\x8b\x4a\x8e\x9d\xa7\xe1\xb3\xdd\xb4\x97\x6b\xae\xf1\xb1\xe6\xda\xec\x65\xa7\xb7\xa5\x7c\x5c\x2c\xc2\x71\xd0\x3e\x2d\xe2\xa4\xd7\x4e\x69\xcc\xaf\xec\xa1\x5b\x6d\xad\xde\xa3\x4d\x22\x58\x4a\x07\x5a\x25\x5b\x04\x45\xea\xbd\xe5\xc5\x45\x04\xca\x49\x89\x78\x24\x2d\x47\x63\x52\xa6\xe4\xa6\x95\xe6\x05\xd1\xad\xf4\x72\x23\x1d\xae\xdc\x43\xd7\xd0\xbd\x79\x33\xd7\x65\x70\x08\xa3\x76\xb6\x3d\x80\x4c\xa1\xc8\xcc\x66\x54\x17\x30\xdc\xd3\x1f\x8a\xb3\x6d\x93\xa3\x2f\x58\xa5\x15\xbc\x1b\xee\xa9\x05\x00\xfe\xcb\x91\xc5\xfa\xcb\xfc\x6e\x46\x25\x48\x83\xdf\x01\x00\x00\xff\xff\x33\x36\x2f\x65\x36\x07\x00\x00" func mysqlEnumGoTplBytes() ([]byte, error) { return bindataRead( @@ -218,7 +218,7 @@ func mysqlEnumGoTpl() (*asset, error) { return a, nil } -var _mysqlForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" +var _mysqlForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" func mysqlForeignkeyGoTplBytes() ([]byte, error) { return bindataRead( @@ -238,7 +238,7 @@ func mysqlForeignkeyGoTpl() (*asset, error) { return a, nil } -var _mysqlIndexGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" +var _mysqlIndexGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" func mysqlIndexGoTplBytes() ([]byte, error) { return bindataRead( @@ -258,7 +258,7 @@ func mysqlIndexGoTpl() (*asset, error) { return a, nil } -var _mysqlProcGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x91\x41\x6f\x13\x31\x10\x85\xcf\xf6\xaf\x18\x22\x44\x77\xa5\x76\x73\x47\xca\x05\xc8\xad\x6a\x4b\x53\xa1\xde\xa8\xeb\x9d\x4d\x2d\x39\x76\x3a\xf6\x06\x2a\xcb\xff\x1d\x8d\xd7\x6d\x36\x08\x90\x38\xc4\xd1\x7a\xe7\xbd\xef\xcd\xdb\x94\x2e\xe0\xbd\xf3\xf1\x9b\x37\x3d\x7c\x5c\x41\xe3\x10\xba\x1b\xf2\xba\xbb\xc5\x38\x92\xbb\x7b\xd9\x23\x2c\x0e\xde\xf4\x8b\x16\x2e\x72\x96\x45\xb0\x27\xaf\xcb\x74\xd0\x4f\xb8\x53\xd0\x6d\xea\x7f\x51\xf2\x71\xa5\x76\x78\x14\x98\x01\xfe\xe8\x1b\xc9\x6c\xb7\x48\x8b\x32\xb8\x5c\x42\x4a\xd0\xb1\x12\x72\x06\xad\xac\x0d\x10\x9f\x10\x42\xf4\x84\x3d\x30\x14\xfb\x91\x10\xce\x52\xaa\x19\x72\x6e\x58\xc3\xc6\x37\x8a\xd4\x2e\x40\xce\x2d\xbc\x5e\xcd\x59\x39\x9f\x81\x77\xd0\x3f\x76\x72\x18\x9d\x9e\xa3\x9a\xfe\x11\xee\xaf\xbf\x7c\x4a\x09\xb6\x7e\xcf\x36\xd6\x84\x08\x5d\x75\x8c\x34\xe2\x74\xb0\x37\xf3\xcc\x70\xec\x2c\xe7\x94\x80\x30\x32\xa3\xf2\xba\x0a\x3c\x67\x08\x3a\x9e\x41\x22\x4f\x2d\x24\x29\x0e\x8a\x00\xa9\xfc\x3c\x49\x29\x96\x4b\x08\xcf\x16\x9e\x47\xa4\x17\x29\xb4\x77\x21\xf2\x45\x88\x04\x2b\x78\xd8\xac\x2f\xd7\x9f\xef\xe0\xb7\x7d\xb5\xb7\x07\x65\xc3\x5b\xc2\x9c\xdb\x87\xc9\x8a\x46\x57\xad\x6a\xed\xb3\x9c\x13\x9b\x30\xc2\x5f\x13\x4b\x71\x7f\x7d\xe9\xb7\xcd\x14\xe0\x5f\x7d\x0c\xca\x86\x52\x88\x14\xbc\xcd\x8a\x8b\xfd\xca\xe0\x5b\xff\xe3\x7f\xe4\xdd\x46\x2b\xd7\x7c\x20\x8c\xad\x14\x66\x28\xd5\xbc\x5b\x81\x33\x96\xcb\x12\x54\xe2\x4d\x81\x9d\xb1\x27\x99\xaf\x8c\x7d\x2b\x1a\x89\xa4\xc8\x52\xbe\x0a\x08\xe3\x39\x9b\x94\x1a\x70\x62\x9d\x2e\xd7\x4a\xf1\xbd\xe8\xa6\xec\xeb\x9f\xa8\x8f\x6f\xaa\x0b\xbb\x16\x83\xf2\x0d\x65\x9e\x3f\xc8\x5f\x01\x00\x00\xff\xff\x42\xa9\x24\xb4\x3a\x03\x00\x00" +var _mysqlProcGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x13\x31\x10\x85\xcf\xf6\xaf\x18\x22\x44\x77\xa5\x76\x73\x47\xca\x05\xc8\xad\x6a\x4b\x53\xa1\xde\xa8\xeb\x9d\x4d\x2d\x39\x76\x3a\xf6\x06\x2a\xcb\xff\x1d\x8d\xd7\x6d\x36\x08\x90\x38\xc4\xd1\x7a\xe7\xbd\xef\xcd\xdb\x94\x2e\xe0\xbd\xf3\xf1\x9b\x37\x3d\x7c\x5c\x41\xe3\x10\xba\x1b\xf2\xba\xbb\xc5\x38\x92\xbb\x7b\xd9\x23\x2c\x0e\xde\xf4\x8b\x16\x2e\x72\x96\x45\xb0\x27\xaf\xcb\x74\xd0\x4f\xb8\x53\xd0\x6d\xea\x7f\x51\xf2\x71\xa5\x76\x78\x14\x98\x01\xfe\xe8\x1b\xc9\x6c\xb7\x48\x8b\x32\xb8\x5c\x42\x4a\xd0\xb1\x12\x72\x06\xad\xac\x0d\x10\x9f\x10\x42\xf4\x84\x3d\x30\x14\xfb\x91\x10\xce\x52\xaa\x19\x72\x6e\x58\xc3\xc6\x37\x8a\xd4\x2e\x40\xce\x2d\xbc\x5e\xcd\x59\x39\x9f\x81\x77\xd0\x3f\x76\x72\x18\x9d\x9e\xa3\x9a\xfe\x11\xee\xaf\xbf\x7c\x4a\x09\xb6\x7e\xcf\x36\xd6\x84\x08\x5d\x75\x8c\x34\xe2\x74\xb0\x37\xf3\xcc\x70\xec\x2c\xe7\x94\x80\x30\x32\xa3\xf2\xba\x0a\x3c\x67\x08\x3a\x9e\x41\x22\x4f\x2d\x24\x29\x0e\x8a\x00\xa9\xfc\x3c\x49\x29\x96\x4b\x08\xcf\x16\x9e\x47\xa4\x17\x29\xb4\x77\x21\xf2\x45\x88\x04\x2b\x78\xd8\xac\x2f\xd7\x9f\xef\xe0\xb7\x7d\xb5\xb7\x07\x65\xc3\x5b\xc2\x9c\xdb\x87\xc9\x8a\x46\x57\xad\x6a\xed\xb3\x9c\x13\x9b\x30\xc2\x5f\x13\x4b\x71\x7f\x7d\xe9\xb7\xcd\x14\xe0\x5f\x7d\x0c\xca\x86\x52\x88\x14\xbc\xcd\x8a\x8b\xfd\xca\xe0\x5b\xff\xe3\x7f\xe4\xdd\x46\x2b\xd7\x7c\x20\x8c\xad\x14\x66\x28\xd5\xbc\x5b\x81\x33\x96\xcb\x12\x54\xe2\x4d\x81\x9d\xb1\x27\x99\xaf\x8c\x7d\x2b\x1a\x89\xa4\xc8\x52\xbe\x0a\x08\xe3\x39\x9b\x94\x1a\x70\x62\x9d\x2e\xd7\x4a\xf1\xbd\xe8\xa6\xec\xeb\x9f\xa8\x8f\x6f\xaa\x0b\xbb\x16\x83\xf2\x0d\x65\x9e\x3f\xc8\x5f\x01\x00\x00\xff\xff\x42\xa9\x24\xb4\x3a\x03\x00\x00" func mysqlProcGoTplBytes() ([]byte, error) { return bindataRead( @@ -278,7 +278,7 @@ func mysqlProcGoTpl() (*asset, error) { return a, nil } -var _mysqlQueryGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" +var _mysqlQueryGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" func mysqlQueryGoTplBytes() ([]byte, error) { return bindataRead( @@ -298,7 +298,7 @@ func mysqlQueryGoTpl() (*asset, error) { return a, nil } -var _mysqlQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" +var _mysqlQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" func mysqlQuerytypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -318,7 +318,7 @@ func mysqlQuerytypeGoTpl() (*asset, error) { return a, nil } -var _mysqlTypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x57\x5d\x6f\xdb\x36\x14\x7d\x96\x7e\xc5\xad\x30\x20\xd6\xe6\x4a\xef\x01\x8c\xa1\x6b\x54\x2c\x58\x9a\x04\xb1\xb3\xf5\x2d\xa6\xcc\xeb\x86\x8b\x44\x3a\x24\xe5\xc6\x10\xf4\xdf\x07\x7e\x48\x95\x3f\x9a\x5a\x49\xf6\x10\x29\x12\x2f\x0f\x8f\xee\xbd\xe7\x90\xae\xeb\xf7\xf0\x8b\xba\x17\x52\xc3\xe9\x04\x46\xf6\x3f\x4e\x4a\x84\xe4\xd2\x5c\x23\x94\x32\x82\x48\xa2\x8a\x20\x52\x8f\x85\xd2\xe6\x91\xe6\x11\x44\x5f\xae\x2e\xc4\xd7\x28\x86\xf7\x4d\x13\x5a\x14\x4d\xf2\x02\x1d\xca\xe2\x1e\x4b\x02\xc9\xd4\xdf\x67\x66\xc4\x5d\x0d\xea\xf7\x39\x6c\x09\xc9\x47\x51\x96\xc8\xb5\x7d\x97\xa6\x50\xd7\xdf\x5f\xf9\x28\x2c\x14\xf6\x87\x2d\xb3\xa6\x01\x89\x2b\x89\x0a\xb9\x56\x40\x40\x8a\x6f\xb0\x94\xa2\x84\x93\xba\x6e\xb9\x34\xcd\x49\xe2\x10\x38\x35\x60\x7a\xb3\xc2\x2d\x04\xa5\x65\xb5\xd0\x50\xdb\x20\x49\xf8\x57\x84\xe4\x13\xc3\x82\x2a\x13\x1e\xf4\x43\xeb\x1a\x24\x5a\x80\x64\x66\xae\x4d\x03\xf3\x7f\x95\xe0\xa7\x91\x63\x5c\x98\xbf\xaa\xe4\x3e\x3e\x9a\x43\xf7\x31\x3b\x43\x7d\x46\x6d\x12\xae\x25\x2b\x89\xdc\xfc\x85\x1b\xf3\x36\x0c\xd2\x14\x9e\x04\x2c\x2d\x95\x30\xb8\xc3\x27\xa6\xb4\x1a\xc3\x1d\xc5\x02\x35\x52\xc8\x85\x28\xc2\xba\x6e\x61\x9a\xd0\x3c\xec\x03\xa5\x29\x64\x76\x2a\x50\xd4\x28\x4b\xc6\x51\x99\x30\x7d\xbf\x9d\x07\x87\x0f\x8c\xdb\x11\x4a\x34\xc9\x89\xc2\x24\x5c\x56\x7c\x01\x23\x93\x50\xd7\x22\x4d\x03\xbf\xf6\xe6\xc5\x1e\x7d\x14\x5b\x42\x50\x87\x81\x44\x5d\x49\x0e\xfd\x29\x89\xa7\x6f\x58\xa6\x29\x9c\xf9\x4f\x58\x49\xb1\x66\xd4\xf0\xe1\x4b\x21\x4b\xa2\x99\xe0\x87\xb8\xdd\x13\x05\x39\x22\x87\xf6\xdb\x6d\x95\x07\xf2\xf4\x8b\xfe\x8c\xa8\x5f\xc2\x33\x3d\xe7\x0a\xa5\x06\x66\x6f\x6a\x8f\x98\x16\x43\x59\x38\xc0\x11\xcd\xe1\xcb\xd5\xd9\x1f\x31\xa0\x94\x42\x1a\x32\x6b\x22\xcd\x83\x7b\xe1\xca\xcf\x96\x40\x0a\x89\x84\x6e\x5c\x75\xc6\x90\x13\x56\x84\x01\x5b\x1e\x4c\xae\x41\x69\xbf\xc9\xa2\xa8\xe4\x12\xbf\x8d\x22\x47\x1e\x96\x84\x15\x48\x4f\xb7\x21\x55\x14\x87\x41\x13\x76\xbd\xe3\x64\xfa\x99\xf0\x8a\x14\xd7\x0f\x60\x25\x90\xa6\xa0\x1e\x0b\x9f\x03\x78\xac\x50\x6e\xc6\xb0\x72\x4d\x06\x0f\xb8\x81\xb2\x52\x1a\x72\x6c\xcb\x49\xc3\x60\x21\xb8\xd2\xe0\xcc\x02\x26\x30\x3f\xbf\x9c\x66\x37\x33\x38\xbf\x9c\x5d\x41\x5f\x9b\x30\x9a\xc3\x6f\x61\x10\xcc\xeb\x1a\x16\xa2\x30\xae\xa3\x7a\xf2\xf3\x83\x31\xfc\xfd\xe1\xe2\x36\x9b\xee\x44\xaf\x49\x71\x28\x78\xee\x92\x27\x2b\xee\xb8\x86\x81\xb5\xa9\x91\x63\x33\x36\xeb\x5b\x51\x6d\x2f\xd6\x65\x33\x0e\x83\xbb\xb1\xad\xc4\x04\x68\x9e\x64\x4f\xb8\x18\x30\x95\x2d\xed\xd4\x77\x13\xe0\xac\xd8\x29\x88\x4d\xb4\xcd\x26\x6a\x97\x7d\xe4\x0b\xb4\x16\xb3\x5f\xcb\x09\x68\x59\xa1\xd5\xb7\xb1\xbe\xa3\xea\xd0\xe6\x1f\xf2\x0d\x90\x4a\x0b\xc6\x17\x12\x8d\x8b\xbe\x51\x41\x7a\xce\xd2\x36\xf4\x80\x0a\x3d\x33\xfb\x55\x25\x3b\x80\x1b\x1b\x6d\x2b\x57\xc5\xd3\x81\x65\x3c\x0c\x77\x54\x5d\x25\x6a\xc9\x70\x8d\xc0\x68\x18\x30\xda\xad\x2f\x51\x25\x17\x44\x69\xa7\xfd\x73\x3a\x1a\xd2\x28\xfd\x02\x13\x4e\x7f\xd8\x38\xc6\x65\xf6\xa9\xc3\x04\x76\x06\xfc\xce\x35\x62\x34\xfe\x79\xeb\xb9\xad\xa5\x73\x4a\xce\x0a\xef\x8b\xb7\x2b\x4a\x34\x42\x65\x6f\xfb\xbe\x38\x7c\x17\x71\x80\x47\xfb\x22\x15\xa8\xf8\x89\xde\xf3\xc5\x77\x43\x8c\xd1\xb1\xef\x8c\xd1\x60\x02\x17\x1e\xd4\x1b\x63\xbb\x9e\xdb\x15\x7e\xe8\xc0\xed\xc6\x74\xdc\x4a\x25\x91\x0f\x66\x17\x13\xd2\x01\x33\xc1\x7b\xcb\x19\x91\x7b\x19\xec\xca\xf6\xf6\xfa\xec\xc3\x2c\xdb\x56\xec\x34\x9b\xc1\xbe\x68\x2d\x40\xd7\xdb\xd1\x18\xa2\x67\x04\x08\xff\xfc\x99\xdd\x58\x58\x3f\x7d\x2b\xf6\xa3\x28\x5c\x27\xfd\xfe\xd6\x3a\x1d\xc3\x11\x2d\xfc\x62\x43\x7e\xc5\x82\x3d\x2d\xba\x7e\x9f\x92\x35\x82\x22\xeb\x03\xbd\x3e\xfc\x0c\x60\xc0\x0e\x74\xfa\x6e\x53\x75\x07\xab\x5e\x53\x6d\x05\x74\x9a\xf1\xbd\x73\x28\xa6\x3b\x6f\xc4\x5b\x67\x2f\xdf\xd0\xfb\x5f\xf3\xf2\x93\xd5\xff\xaf\x5d\x63\x3f\xaf\xd3\x64\x1f\xe1\x19\x99\x9d\x65\x17\xd9\x2c\x83\x4f\x37\x57\x9f\xb7\xb5\xf6\x76\x3a\x79\x65\xd7\x1f\x31\xfd\xe8\x1d\xa6\x3d\xf1\x06\x87\xd3\xe7\xb7\x83\x9d\x4d\xa0\xf7\x03\x26\xfc\x2f\x00\x00\xff\xff\xa1\xe7\xf4\x01\x41\x0e\x00\x00" +var _mysqlTypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5d\x6f\xdb\x36\x14\x7d\x96\x7e\xc5\xad\x30\x20\xd6\xe6\x4a\xef\x01\x8c\xa1\x6b\x54\x2c\x58\x9a\x04\xb1\xb3\xf5\x2d\xa6\xcc\xeb\x86\x8b\x44\x3a\x24\xe5\xc6\x10\xf4\xdf\x07\x7e\x48\x95\x3f\x9a\x5a\x49\xf6\x10\x29\x12\x2f\x0f\x8f\xee\xbd\xe7\x90\xae\xeb\xf7\xf0\x8b\xba\x17\x52\xc3\xe9\x04\x46\xf6\x3f\x4e\x4a\x84\xe4\xd2\x5c\x23\x94\x32\x82\x48\xa2\x8a\x20\x52\x8f\x85\xd2\xe6\x91\xe6\x11\x44\x5f\xae\x2e\xc4\xd7\x28\x86\xf7\x4d\x13\x5a\x14\x4d\xf2\x02\x1d\xca\xe2\x1e\x4b\x02\xc9\xd4\xdf\x67\x66\xc4\x5d\x0d\xea\xf7\x39\x6c\x09\xc9\x47\x51\x96\xc8\xb5\x7d\x97\xa6\x50\xd7\xdf\x5f\xf9\x28\x2c\x14\xf6\x87\x2d\xb3\xa6\x01\x89\x2b\x89\x0a\xb9\x56\x40\x40\x8a\x6f\xb0\x94\xa2\x84\x93\xba\x6e\xb9\x34\xcd\x49\xe2\x10\x38\x35\x60\x7a\xb3\xc2\x2d\x04\xa5\x65\xb5\xd0\x50\xdb\x20\x49\xf8\x57\x84\xe4\x13\xc3\x82\x2a\x13\x1e\xf4\x43\xeb\x1a\x24\x5a\x80\x64\x66\xae\x4d\x03\xf3\x7f\x95\xe0\xa7\x91\x63\x5c\x98\xbf\xaa\xe4\x3e\x3e\x9a\x43\xf7\x31\x3b\x43\x7d\x46\x6d\x12\xae\x25\x2b\x89\xdc\xfc\x85\x1b\xf3\x36\x0c\xd2\x14\x9e\x04\x2c\x2d\x95\x30\xb8\xc3\x27\xa6\xb4\x1a\xc3\x1d\xc5\x02\x35\x52\xc8\x85\x28\xc2\xba\x6e\x61\x9a\xd0\x3c\xec\x03\xa5\x29\x64\x76\x2a\x50\xd4\x28\x4b\xc6\x51\x99\x30\x7d\xbf\x9d\x07\x87\x0f\x8c\xdb\x11\x4a\x34\xc9\x89\xc2\x24\x5c\x56\x7c\x01\x23\x93\x50\xd7\x22\x4d\x03\xbf\xf6\xe6\xc5\x1e\x7d\x14\x5b\x42\x50\x87\x81\x44\x5d\x49\x0e\xfd\x29\x89\xa7\x6f\x58\xa6\x29\x9c\xf9\x4f\x58\x49\xb1\x66\xd4\xf0\xe1\x4b\x21\x4b\xa2\x99\xe0\x87\xb8\xdd\x13\x05\x39\x22\x87\xf6\xdb\x6d\x95\x07\xf2\xf4\x8b\xfe\x8c\xa8\x5f\xc2\x33\x3d\xe7\x0a\xa5\x06\x66\x6f\x6a\x8f\x98\x16\x43\x59\x38\xc0\x11\xcd\xe1\xcb\xd5\xd9\x1f\x31\xa0\x94\x42\x1a\x32\x6b\x22\xcd\x83\x7b\xe1\xca\xcf\x96\x40\x0a\x89\x84\x6e\x5c\x75\xc6\x90\x13\x56\x84\x01\x5b\x1e\x4c\xae\x41\x69\xbf\xc9\xa2\xa8\xe4\x12\xbf\x8d\x22\x47\x1e\x96\x84\x15\x48\x4f\xb7\x21\x55\x14\x87\x41\x13\x76\xbd\xe3\x64\xfa\x99\xf0\x8a\x14\xd7\x0f\x60\x25\x90\xa6\xa0\x1e\x0b\x9f\x03\x78\xac\x50\x6e\xc6\xb0\x72\x4d\x06\x0f\xb8\x81\xb2\x52\x1a\x72\x6c\xcb\x49\xc3\x60\x21\xb8\xd2\xe0\xcc\x02\x26\x30\x3f\xbf\x9c\x66\x37\x33\x38\xbf\x9c\x5d\x41\x5f\x9b\x30\x9a\xc3\x6f\x61\x10\xcc\xeb\x1a\x16\xa2\x30\xae\xa3\x7a\xf2\xf3\x83\x31\xfc\xfd\xe1\xe2\x36\x9b\xee\x44\xaf\x49\x71\x28\x78\xee\x92\x27\x2b\xee\xb8\x86\x81\xb5\xa9\x91\x63\x33\x36\xeb\x5b\x51\x6d\x2f\xd6\x65\x33\x0e\x83\xbb\xb1\xad\xc4\x04\x68\x9e\x64\x4f\xb8\x18\x30\x95\x2d\xed\xd4\x77\x13\xe0\xac\xd8\x29\x88\x4d\xb4\xcd\x26\x6a\x97\x7d\xe4\x0b\xb4\x16\xb3\x5f\xcb\x09\x68\x59\xa1\xd5\xb7\xb1\xbe\xa3\xea\xd0\xe6\x1f\xf2\x0d\x90\x4a\x0b\xc6\x17\x12\x8d\x8b\xbe\x51\x41\x7a\xce\xd2\x36\xf4\x80\x0a\x3d\x33\xfb\x55\x25\x3b\x80\x1b\x1b\x6d\x2b\x57\xc5\xd3\x81\x65\x3c\x0c\x77\x54\x5d\x25\x6a\xc9\x70\x8d\xc0\x68\x18\x30\xda\xad\x2f\x51\x25\x17\x44\x69\xa7\xfd\x73\x3a\x1a\xd2\x28\xfd\x02\x13\x4e\x7f\xd8\x38\xc6\x65\xf6\xa9\xc3\x04\x76\x06\xfc\xce\x35\x62\x34\xfe\x79\xeb\xb9\xad\xa5\x73\x4a\xce\x0a\xef\x8b\xb7\x2b\x4a\x34\x42\x65\x6f\xfb\xbe\x38\x7c\x17\x71\x80\x47\xfb\x22\x15\xa8\xf8\x89\xde\xf3\xc5\x77\x43\x8c\xd1\xb1\xef\x8c\xd1\x60\x02\x17\x1e\xd4\x1b\x63\xbb\x9e\xdb\x15\x7e\xe8\xc0\xed\xc6\x74\xdc\x4a\x25\x91\x0f\x66\x17\x13\xd2\x01\x33\xc1\x7b\xcb\x19\x91\x7b\x19\xec\xca\xf6\xf6\xfa\xec\xc3\x2c\xdb\x56\xec\x34\x9b\xc1\xbe\x68\x2d\x40\xd7\xdb\xd1\x18\xa2\x67\x04\x08\xff\xfc\x99\xdd\x58\x58\x3f\x7d\x2b\xf6\xa3\x28\x5c\x27\xfd\xfe\xd6\x3a\x1d\xc3\x11\x2d\xfc\x62\x43\x7e\xc5\x82\x3d\x2d\xba\x7e\x9f\x92\x35\x82\x22\xeb\x03\xbd\x3e\xfc\x0c\x60\xc0\x0e\x74\xfa\x6e\x53\x75\x07\xab\x5e\x53\x6d\x05\x74\x9a\xf1\xbd\x73\x28\xa6\x3b\x6f\xc4\x5b\x67\x2f\xdf\xd0\xfb\x5f\xf3\xf2\x93\xd5\xff\xaf\x5d\x63\x3f\xaf\xd3\x64\x1f\xe1\x19\x99\x9d\x65\x17\xd9\x2c\x83\x4f\x37\x57\x9f\xb7\xb5\xf6\x76\x3a\x79\x65\xd7\x1f\x31\xfd\xe8\x1d\xa6\x3d\xf1\x06\x87\xd3\xe7\xb7\x83\x9d\x4d\xa0\xf7\x03\x26\xfc\x2f\x00\x00\xff\xff\xa1\xe7\xf4\x01\x41\x0e\x00\x00" func mysqlTypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func mysqlTypeGoTpl() (*asset, error) { return a, nil } -var _oracleForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" +var _oracleForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" func oracleForeignkeyGoTplBytes() ([]byte, error) { return bindataRead( @@ -358,7 +358,7 @@ func oracleForeignkeyGoTpl() (*asset, error) { return a, nil } -var _oracleIndexGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" +var _oracleIndexGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" func oracleIndexGoTplBytes() ([]byte, error) { return bindataRead( @@ -378,7 +378,7 @@ func oracleIndexGoTpl() (*asset, error) { return a, nil } -var _oracleQueryGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" +var _oracleQueryGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" func oracleQueryGoTplBytes() ([]byte, error) { return bindataRead( @@ -398,7 +398,7 @@ func oracleQueryGoTpl() (*asset, error) { return a, nil } -var _oracleQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" +var _oracleQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" func oracleQuerytypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -418,7 +418,7 @@ func oracleQuerytypeGoTpl() (*asset, error) { return a, nil } -var _oracleTypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x56\x51\x73\xe2\x36\x10\x7e\xb6\x7f\xc5\x9e\xa7\x33\xc1\x29\x67\x4f\x5f\x99\xe1\xe1\x7a\xf1\xb5\x4c\x53\x72\x03\xa4\xbd\xb7\x20\xd0\x72\x51\x63\x4b\x44\x92\xb9\x30\x1e\xff\xf7\x8e\x24\xdb\xb1\x81\xe6\x4c\x93\x7b\xc0\x46\xd2\xee\xa7\x6f\x57\xfb\xad\x5c\x14\xef\xe1\x27\x75\x2f\xa4\x86\xd1\x18\x06\xf6\x1f\x27\x19\x42\x34\x35\xcf\x00\xa5\x0c\x20\x90\xa8\x02\x08\xd4\x63\xaa\xb4\x19\xd2\x55\x00\xc1\x97\x9b\x6b\xf1\x35\x08\xe1\x7d\x59\xfa\x16\x45\x93\x55\x8a\x0e\x65\x7d\x8f\x19\x81\x68\x5e\xbd\x17\x66\xc5\x3d\x0d\xea\xb3\x0f\xdb\x40\xf4\x51\x64\x19\x72\x6d\xe7\xe2\x18\x8a\xe2\x79\xaa\xb2\xc2\x54\x61\x7b\xd9\x32\x2b\x4b\x90\xb8\x95\xa8\x90\x6b\x05\x04\xa4\xf8\x06\x1b\x29\x32\xb8\x28\x8a\x9a\x4b\x59\x5e\x44\x0e\x81\x53\x03\xa6\xf7\x5b\xec\x20\x28\x2d\xf3\xb5\x86\xc2\x1a\x49\xc2\xbf\x22\x44\x9f\x18\xa6\x54\x19\x73\xaf\x6d\x5a\x14\x20\xd1\x02\x44\x0b\xf3\x2c\x4b\x58\xfe\xa3\x04\x1f\x05\x8e\x71\x6a\x7e\x79\xc6\x2b\xfb\x60\x09\x4d\x30\x07\x4b\x6d\x46\x75\x12\x3e\x4b\x96\x11\xb9\xff\x03\xf7\x66\xd6\xf7\xe2\x18\x9e\x04\x6c\x2c\x15\xdf\xbb\xc3\x27\xa6\xb4\x1a\xc2\x1d\xc5\x14\x35\x52\x58\x09\x91\xfa\x45\x51\xc3\x94\xbe\x19\x1c\x03\xc5\x31\x24\xd6\x15\x28\x6a\x94\x19\xe3\xa8\x8c\x99\xbe\xef\xe6\xc1\xe1\x03\xe3\x76\x85\x12\x4d\x56\x44\x61\xe4\x6f\x72\xbe\x86\x81\x49\xa8\x2b\x91\xb2\x84\xcb\x96\x5f\x58\xa1\x0f\x42\x4b\x08\x0a\xdf\x93\xa8\x73\xc9\xa1\xed\x12\x55\xf4\x0d\xcb\x38\x86\xab\x2a\x84\xad\x14\x3b\x46\x0d\x1f\xbe\x11\x32\x23\x9a\x09\x7e\x8a\xdb\x3d\x51\xb0\x42\xe4\x50\xc7\x6e\x4f\xf9\x4c\x9e\xd5\xa6\xdf\x23\x5a\x6d\x51\x31\x9d\x70\x85\x52\x03\xb3\x2f\x75\x44\x4c\x8b\x73\x59\x38\xc0\x01\x5d\xc1\x97\x9b\xab\x5f\x43\x40\x29\x85\x34\x64\x76\x44\x9a\x81\x9b\x70\xc7\xcf\x36\x40\x52\x89\x84\xee\xdd\xe9\x0c\x61\x45\x58\xea\x7b\x6c\x73\x32\xb9\x06\xa5\x8e\xc9\xa2\xa8\x68\x8a\xdf\x06\x81\x23\x0f\x1b\xc2\x52\xa4\xa3\x2e\xa4\x0a\x42\xdf\xab\xaa\x4d\x3d\xa6\xf0\x98\xa3\xdc\xfb\xde\x5a\x70\xa5\xc1\x89\x1d\xc6\xb0\x9c\x4c\xe7\xc9\x6c\x01\x93\xe9\xe2\x06\xda\xda\x82\xc1\x12\x7e\xf6\x3d\x6f\x59\x14\xb0\x16\xa9\xe9\x1a\xaa\x91\x4f\xab\x10\xeb\xf8\x2b\xeb\x10\xfe\xfa\x70\x7d\x9b\xcc\x0f\xdc\x77\x24\xed\xe7\x3d\x4b\x16\xb7\xb3\xe9\x64\xfa\x1b\x3c\xef\xdb\x71\xf8\x28\x52\xc3\x2e\xbe\x4c\x89\xd2\x2e\xe5\x13\x7a\x19\xbb\x00\x46\xdb\x87\xa5\x8b\x58\xe6\xbc\x8e\xd8\xb6\xb2\x81\x8b\x78\x68\x60\xad\xf0\xba\x01\x55\x19\x3f\xc1\x6c\x08\x9c\xa5\xa1\xa9\x28\x35\xb4\xa7\x38\x1a\x03\x5d\x45\xc9\x13\xae\x5f\x8d\xc9\x36\x16\xf1\xdd\xd8\x8c\x0f\xce\xb8\x39\x3b\x89\x5a\x32\xdc\x21\x30\xea\x7b\x8c\x36\x24\x24\xaa\xe8\xba\x95\x83\x41\x5f\x40\x85\x1a\xb6\x8e\x13\x3c\xe0\x1e\x08\xa7\xae\x62\x90\xaf\xd1\xb6\xc5\xe7\xfa\x33\x05\x7e\xcc\x1f\xc6\x70\xb0\x50\x35\xcd\x01\xa3\xe1\x01\x42\x5d\xc1\x63\xd0\x32\x47\xbf\x91\x26\x67\x69\x25\xc4\xdb\x2d\x25\x1a\x21\xb7\xaf\x63\x21\x9e\xdf\xb6\x1c\x60\x6f\x21\x52\x81\x8a\x5f\xe8\x23\x21\xbe\x3b\x47\x89\x8e\x7d\xa3\x44\x83\x09\x5c\x54\xa0\x2d\x25\x9a\xfd\x5c\x1b\xfa\x4f\xc9\xd7\x9d\xb0\xdf\x4e\x19\x91\x0f\xa6\x6d\x0a\xe9\x80\x99\xe0\xfd\x84\x7f\xfb\xf9\xea\xc3\x22\xe9\x6a\x7e\x9e\x2c\xe0\x58\xf6\x16\xa0\x29\xeb\x60\x08\xc1\x0b\x12\x86\xbf\x7f\x4f\x66\xc9\x77\xd4\x3b\x86\x91\x33\x58\x8b\x9c\xeb\x17\x1b\xc3\x9b\xcb\xb9\x47\x7d\x87\xbe\x77\xe7\x74\xf6\x16\x5a\xef\xb7\x61\x4b\xa8\x4e\x16\x73\xb2\x43\x50\x64\x77\x42\x12\xe7\xdf\x4d\x06\xec\x84\x20\x0e\x6b\xaf\xb9\xf0\x5b\xb5\xd7\x31\x68\xa4\x55\x95\xd8\x29\x9b\xe6\x1e\x0c\x3b\xdf\x04\x55\xdd\x1f\x47\xf3\xff\x6f\xfc\x1f\x2f\x71\xd3\xa5\x5e\x27\xdd\x36\xc2\x0b\x6a\xbc\x4a\xae\x93\x45\x02\x9f\x66\x37\x7f\x76\x25\xd9\x53\x4e\xbf\xf4\x10\xca\x2b\xcb\xbe\x87\x7b\xef\xfb\xa7\xfe\x14\xf3\x4e\xe7\xef\xf4\x65\xd1\xfa\xb2\xf6\xff\x0d\x00\x00\xff\xff\x6f\xe8\x48\x82\xda\x0c\x00\x00" +var _oracleTypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x51\x73\xe2\x36\x10\x7e\xb6\x7f\xc5\x9e\xa7\x33\xc1\x29\x67\x4f\x5f\x99\xe1\xe1\x7a\xf1\xb5\x4c\x53\x72\x03\xa4\xbd\xb7\x20\xd0\x72\x51\x63\x4b\x44\x92\xb9\x30\x1e\xff\xf7\x8e\x24\xdb\xb1\x81\xe6\x4c\x93\x7b\xc0\x46\xd2\xee\xa7\x6f\x57\xfb\xad\x5c\x14\xef\xe1\x27\x75\x2f\xa4\x86\xd1\x18\x06\xf6\x1f\x27\x19\x42\x34\x35\xcf\x00\xa5\x0c\x20\x90\xa8\x02\x08\xd4\x63\xaa\xb4\x19\xd2\x55\x00\xc1\x97\x9b\x6b\xf1\x35\x08\xe1\x7d\x59\xfa\x16\x45\x93\x55\x8a\x0e\x65\x7d\x8f\x19\x81\x68\x5e\xbd\x17\x66\xc5\x3d\x0d\xea\xb3\x0f\xdb\x40\xf4\x51\x64\x19\x72\x6d\xe7\xe2\x18\x8a\xe2\x79\xaa\xb2\xc2\x54\x61\x7b\xd9\x32\x2b\x4b\x90\xb8\x95\xa8\x90\x6b\x05\x04\xa4\xf8\x06\x1b\x29\x32\xb8\x28\x8a\x9a\x4b\x59\x5e\x44\x0e\x81\x53\x03\xa6\xf7\x5b\xec\x20\x28\x2d\xf3\xb5\x86\xc2\x1a\x49\xc2\xbf\x22\x44\x9f\x18\xa6\x54\x19\x73\xaf\x6d\x5a\x14\x20\xd1\x02\x44\x0b\xf3\x2c\x4b\x58\xfe\xa3\x04\x1f\x05\x8e\x71\x6a\x7e\x79\xc6\x2b\xfb\x60\x09\x4d\x30\x07\x4b\x6d\x46\x75\x12\x3e\x4b\x96\x11\xb9\xff\x03\xf7\x66\xd6\xf7\xe2\x18\x9e\x04\x6c\x2c\x15\xdf\xbb\xc3\x27\xa6\xb4\x1a\xc2\x1d\xc5\x14\x35\x52\x58\x09\x91\xfa\x45\x51\xc3\x94\xbe\x19\x1c\x03\xc5\x31\x24\xd6\x15\x28\x6a\x94\x19\xe3\xa8\x8c\x99\xbe\xef\xe6\xc1\xe1\x03\xe3\x76\x85\x12\x4d\x56\x44\x61\xe4\x6f\x72\xbe\x86\x81\x49\xa8\x2b\x91\xb2\x84\xcb\x96\x5f\x58\xa1\x0f\x42\x4b\x08\x0a\xdf\x93\xa8\x73\xc9\xa1\xed\x12\x55\xf4\x0d\xcb\x38\x86\xab\x2a\x84\xad\x14\x3b\x46\x0d\x1f\xbe\x11\x32\x23\x9a\x09\x7e\x8a\xdb\x3d\x51\xb0\x42\xe4\x50\xc7\x6e\x4f\xf9\x4c\x9e\xd5\xa6\xdf\x23\x5a\x6d\x51\x31\x9d\x70\x85\x52\x03\xb3\x2f\x75\x44\x4c\x8b\x73\x59\x38\xc0\x01\x5d\xc1\x97\x9b\xab\x5f\x43\x40\x29\x85\x34\x64\x76\x44\x9a\x81\x9b\x70\xc7\xcf\x36\x40\x52\x89\x84\xee\xdd\xe9\x0c\x61\x45\x58\xea\x7b\x6c\x73\x32\xb9\x06\xa5\x8e\xc9\xa2\xa8\x68\x8a\xdf\x06\x81\x23\x0f\x1b\xc2\x52\xa4\xa3\x2e\xa4\x0a\x42\xdf\xab\xaa\x4d\x3d\xa6\xf0\x98\xa3\xdc\xfb\xde\x5a\x70\xa5\xc1\x89\x1d\xc6\xb0\x9c\x4c\xe7\xc9\x6c\x01\x93\xe9\xe2\x06\xda\xda\x82\xc1\x12\x7e\xf6\x3d\x6f\x59\x14\xb0\x16\xa9\xe9\x1a\xaa\x91\x4f\xab\x10\xeb\xf8\x2b\xeb\x10\xfe\xfa\x70\x7d\x9b\xcc\x0f\xdc\x77\x24\xed\xe7\x3d\x4b\x16\xb7\xb3\xe9\x64\xfa\x1b\x3c\xef\xdb\x71\xf8\x28\x52\xc3\x2e\xbe\x4c\x89\xd2\x2e\xe5\x13\x7a\x19\xbb\x00\x46\xdb\x87\xa5\x8b\x58\xe6\xbc\x8e\xd8\xb6\xb2\x81\x8b\x78\x68\x60\xad\xf0\xba\x01\x55\x19\x3f\xc1\x6c\x08\x9c\xa5\xa1\xa9\x28\x35\xb4\xa7\x38\x1a\x03\x5d\x45\xc9\x13\xae\x5f\x8d\xc9\x36\x16\xf1\xdd\xd8\x8c\x0f\xce\xb8\x39\x3b\x89\x5a\x32\xdc\x21\x30\xea\x7b\x8c\x36\x24\x24\xaa\xe8\xba\x95\x83\x41\x5f\x40\x85\x1a\xb6\x8e\x13\x3c\xe0\x1e\x08\xa7\xae\x62\x90\xaf\xd1\xb6\xc5\xe7\xfa\x33\x05\x7e\xcc\x1f\xc6\x70\xb0\x50\x35\xcd\x01\xa3\xe1\x01\x42\x5d\xc1\x63\xd0\x32\x47\xbf\x91\x26\x67\x69\x25\xc4\xdb\x2d\x25\x1a\x21\xb7\xaf\x63\x21\x9e\xdf\xb6\x1c\x60\x6f\x21\x52\x81\x8a\x5f\xe8\x23\x21\xbe\x3b\x47\x89\x8e\x7d\xa3\x44\x83\x09\x5c\x54\xa0\x2d\x25\x9a\xfd\x5c\x1b\xfa\x4f\xc9\xd7\x9d\xb0\xdf\x4e\x19\x91\x0f\xa6\x6d\x0a\xe9\x80\x99\xe0\xfd\x84\x7f\xfb\xf9\xea\xc3\x22\xe9\x6a\x7e\x9e\x2c\xe0\x58\xf6\x16\xa0\x29\xeb\x60\x08\xc1\x0b\x12\x86\xbf\x7f\x4f\x66\xc9\x77\xd4\x3b\x86\x91\x33\x58\x8b\x9c\xeb\x17\x1b\xc3\x9b\xcb\xb9\x47\x7d\x87\xbe\x77\xe7\x74\xf6\x16\x5a\xef\xb7\x61\x4b\xa8\x4e\x16\x73\xb2\x43\x50\x64\x77\x42\x12\xe7\xdf\x4d\x06\xec\x84\x20\x0e\x6b\xaf\xb9\xf0\x5b\xb5\xd7\x31\x68\xa4\x55\x95\xd8\x29\x9b\xe6\x1e\x0c\x3b\xdf\x04\x55\xdd\x1f\x47\xf3\xff\x6f\xfc\x1f\x2f\x71\xd3\xa5\x5e\x27\xdd\x36\xc2\x0b\x6a\xbc\x4a\xae\x93\x45\x02\x9f\x66\x37\x7f\x76\x25\xd9\x53\x4e\xbf\xf4\x10\xca\x2b\xcb\xbe\x87\x7b\xef\xfb\xa7\xfe\x14\xf3\x4e\xe7\xef\xf4\x65\xd1\xfa\xb2\xf6\xff\x0d\x00\x00\xff\xff\x6f\xe8\x48\x82\xda\x0c\x00\x00" func oracleTypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -438,7 +438,7 @@ func oracleTypeGoTpl() (*asset, error) { return a, nil } -var _postgresEnumGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x55\xc1\x6a\xdc\x30\x10\x3d\x5b\x5f\x31\x15\x85\x58\x21\xf1\xd2\x4b\x0f\x81\x3d\x95\x1e\x9b\x43\xd3\xe6\x52\x7a\xd0\x7a\x47\x59\x11\x5b\x6e\x24\x79\x93\x60\xf4\xef\x65\x24\x99\x95\xd3\x4d\x4b\x0a\x7b\x59\xc4\x68\xfc\xe6\xcd\x7b\x4f\xec\x34\x5d\xc2\x7b\xff\xfc\x0b\xe1\x6a\x0d\xcd\xb5\xec\x11\x2e\x43\x60\xb1\xec\x76\x83\xf5\x54\xaf\xe3\xc9\xd0\x65\xea\xe5\x68\xc6\xfe\x56\x76\x1c\xb8\xc7\x27\xcf\x81\x6f\x46\xc5\x81\x0f\xf7\x1c\xb8\xb3\x2d\x17\x07\x14\x8b\x7b\xb4\x0e\x09\xda\xc5\x21\x5f\x53\xe1\xd3\x60\x9c\x4f\x55\xea\x5d\xad\x60\x9a\x32\x7c\x08\xa0\x1d\xf8\x1d\xc2\xd9\x34\x41\xf3\xd9\x8c\x7d\xfc\x89\xf4\x42\x38\x03\x1a\x0f\xb1\x55\xd9\xa1\x07\xd7\xee\xb0\x97\xa9\xf9\x26\x9d\xa9\xad\x61\xb1\xa5\x84\x1d\xb5\xf1\x1f\x3e\x32\xd6\xd2\x70\xa8\x23\x43\x2b\xcd\x1d\x42\x73\x2b\xbb\x11\x1d\x84\xc0\xaa\xc4\x45\xab\x17\xe4\x43\xa0\x01\x99\x44\x81\x3a\x4d\x80\x9d\xfb\xb3\x58\xb4\xa2\xd9\xbe\xdc\xea\x56\x76\x71\xa9\x38\x37\x6e\x55\x7c\xdd\xb0\xea\x34\x0c\xd6\xe5\x94\x7a\xe6\x11\xbd\x98\x89\x08\x96\xdb\xc9\x16\xc1\xc8\x99\x1b\x6f\xb5\xb9\x03\x8b\x7e\xb4\x26\xed\xe0\x52\x69\x1f\x3f\x1a\x54\xac\x2d\x16\x50\xa3\x69\x81\x26\xe4\x1c\x85\x50\xde\x8b\x8c\x59\x8b\x19\x69\x62\xd5\x5e\x5a\xc8\xc9\xca\x55\xc6\x2a\xf7\xa8\x7d\xbb\x83\x25\xd0\x2b\xc6\xb5\xd2\xe1\x69\xac\xbb\x62\x55\x35\x53\x5b\x03\x3f\x66\x20\x2f\x75\xab\x02\x63\x55\xd2\x6b\x5e\x89\x85\xa8\xe5\x17\x69\xdd\x4e\x76\xdf\xf0\xc9\x43\x9f\xce\x6e\x19\x7d\xe3\x07\xa0\x67\xf5\x6f\x0d\x0b\xac\x5a\x40\xfd\xe3\xe7\xe6\xd9\xe3\x05\xa0\xb5\x83\x15\xa4\x68\x66\x90\x2e\x16\x40\xcd\xac\xbf\xb8\x00\xa3\x67\x72\xdf\x4d\x5f\xd0\x1b\xcd\x51\x82\xf1\xcd\xbd\x4a\xf0\x7c\xc1\x70\x01\x58\xd3\x47\x99\x8c\x48\x2c\x89\x64\x76\x38\x39\x1e\x7b\x44\xf5\x57\x87\x8f\xcb\x4f\x16\x9d\x2f\xa8\xac\x4f\x93\x05\x76\x38\xb1\x6a\x8b\x4a\x8e\x9d\xa7\xe1\xb3\xdd\xb4\x97\x6b\xae\xf1\xb1\xe6\xda\xec\x65\xa7\xb7\xa5\x7c\x5c\x2c\xc2\x71\xd0\x3e\x2d\xe2\xa4\xd7\x4e\x69\xcc\xaf\xec\xa1\x5b\x6d\xad\xde\xa3\x4d\x22\x58\x4a\x07\x5a\x25\x5b\x04\x45\xea\xbd\xe5\xc5\x45\x04\xca\x49\x89\x78\x24\x2d\x47\x63\x52\xa6\xe4\xa6\x95\xe6\x05\xd1\xad\xf4\x72\x23\x1d\xae\xdc\x43\xd7\xd0\xbd\x79\x33\xd7\x65\x70\x08\xa3\x76\xb6\x3d\x80\x4c\xa1\xc8\xcc\x66\x54\x17\x30\xdc\xd3\x1f\x8a\xb3\x6d\x93\xa3\x2f\x58\xa5\x15\xbc\x1b\xee\xa9\x05\x00\xfe\xcb\x91\xc5\xfa\xcb\xfc\x6e\x46\x25\x48\x83\xdf\x01\x00\x00\xff\xff\x33\x36\x2f\x65\x36\x07\x00\x00" +var _postgresEnumGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xc1\x6a\xdc\x30\x10\x3d\x5b\x5f\x31\x15\x85\x58\x21\xf1\xd2\x4b\x0f\x81\x3d\x95\x1e\x9b\x43\xd3\xe6\x52\x7a\xd0\x7a\x47\x59\x11\x5b\x6e\x24\x79\x93\x60\xf4\xef\x65\x24\x99\x95\xd3\x4d\x4b\x0a\x7b\x59\xc4\x68\xfc\xe6\xcd\x7b\x4f\xec\x34\x5d\xc2\x7b\xff\xfc\x0b\xe1\x6a\x0d\xcd\xb5\xec\x11\x2e\x43\x60\xb1\xec\x76\x83\xf5\x54\xaf\xe3\xc9\xd0\x65\xea\xe5\x68\xc6\xfe\x56\x76\x1c\xb8\xc7\x27\xcf\x81\x6f\x46\xc5\x81\x0f\xf7\x1c\xb8\xb3\x2d\x17\x07\x14\x8b\x7b\xb4\x0e\x09\xda\xc5\x21\x5f\x53\xe1\xd3\x60\x9c\x4f\x55\xea\x5d\xad\x60\x9a\x32\x7c\x08\xa0\x1d\xf8\x1d\xc2\xd9\x34\x41\xf3\xd9\x8c\x7d\xfc\x89\xf4\x42\x38\x03\x1a\x0f\xb1\x55\xd9\xa1\x07\xd7\xee\xb0\x97\xa9\xf9\x26\x9d\xa9\xad\x61\xb1\xa5\x84\x1d\xb5\xf1\x1f\x3e\x32\xd6\xd2\x70\xa8\x23\x43\x2b\xcd\x1d\x42\x73\x2b\xbb\x11\x1d\x84\xc0\xaa\xc4\x45\xab\x17\xe4\x43\xa0\x01\x99\x44\x81\x3a\x4d\x80\x9d\xfb\xb3\x58\xb4\xa2\xd9\xbe\xdc\xea\x56\x76\x71\xa9\x38\x37\x6e\x55\x7c\xdd\xb0\xea\x34\x0c\xd6\xe5\x94\x7a\xe6\x11\xbd\x98\x89\x08\x96\xdb\xc9\x16\xc1\xc8\x99\x1b\x6f\xb5\xb9\x03\x8b\x7e\xb4\x26\xed\xe0\x52\x69\x1f\x3f\x1a\x54\xac\x2d\x16\x50\xa3\x69\x81\x26\xe4\x1c\x85\x50\xde\x8b\x8c\x59\x8b\x19\x69\x62\xd5\x5e\x5a\xc8\xc9\xca\x55\xc6\x2a\xf7\xa8\x7d\xbb\x83\x25\xd0\x2b\xc6\xb5\xd2\xe1\x69\xac\xbb\x62\x55\x35\x53\x5b\x03\x3f\x66\x20\x2f\x75\xab\x02\x63\x55\xd2\x6b\x5e\x89\x85\xa8\xe5\x17\x69\xdd\x4e\x76\xdf\xf0\xc9\x43\x9f\xce\x6e\x19\x7d\xe3\x07\xa0\x67\xf5\x6f\x0d\x0b\xac\x5a\x40\xfd\xe3\xe7\xe6\xd9\xe3\x05\xa0\xb5\x83\x15\xa4\x68\x66\x90\x2e\x16\x40\xcd\xac\xbf\xb8\x00\xa3\x67\x72\xdf\x4d\x5f\xd0\x1b\xcd\x51\x82\xf1\xcd\xbd\x4a\xf0\x7c\xc1\x70\x01\x58\xd3\x47\x99\x8c\x48\x2c\x89\x64\x76\x38\x39\x1e\x7b\x44\xf5\x57\x87\x8f\xcb\x4f\x16\x9d\x2f\xa8\xac\x4f\x93\x05\x76\x38\xb1\x6a\x8b\x4a\x8e\x9d\xa7\xe1\xb3\xdd\xb4\x97\x6b\xae\xf1\xb1\xe6\xda\xec\x65\xa7\xb7\xa5\x7c\x5c\x2c\xc2\x71\xd0\x3e\x2d\xe2\xa4\xd7\x4e\x69\xcc\xaf\xec\xa1\x5b\x6d\xad\xde\xa3\x4d\x22\x58\x4a\x07\x5a\x25\x5b\x04\x45\xea\xbd\xe5\xc5\x45\x04\xca\x49\x89\x78\x24\x2d\x47\x63\x52\xa6\xe4\xa6\x95\xe6\x05\xd1\xad\xf4\x72\x23\x1d\xae\xdc\x43\xd7\xd0\xbd\x79\x33\xd7\x65\x70\x08\xa3\x76\xb6\x3d\x80\x4c\xa1\xc8\xcc\x66\x54\x17\x30\xdc\xd3\x1f\x8a\xb3\x6d\x93\xa3\x2f\x58\xa5\x15\xbc\x1b\xee\xa9\x05\x00\xfe\xcb\x91\xc5\xfa\xcb\xfc\x6e\x46\x25\x48\x83\xdf\x01\x00\x00\xff\xff\x33\x36\x2f\x65\x36\x07\x00\x00" func postgresEnumGoTplBytes() ([]byte, error) { return bindataRead( @@ -458,7 +458,7 @@ func postgresEnumGoTpl() (*asset, error) { return a, nil } -var _postgresForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" +var _postgresForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" func postgresForeignkeyGoTplBytes() ([]byte, error) { return bindataRead( @@ -478,7 +478,7 @@ func postgresForeignkeyGoTpl() (*asset, error) { return a, nil } -var _postgresIndexGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" +var _postgresIndexGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" func postgresIndexGoTplBytes() ([]byte, error) { return bindataRead( @@ -498,7 +498,7 @@ func postgresIndexGoTpl() (*asset, error) { return a, nil } -var _postgresProcGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x91\x41\x6f\x13\x31\x10\x85\xcf\xf6\xaf\x18\x22\x44\x77\xa5\x76\x73\x47\xca\x05\xc8\xad\x6a\x4b\x53\xa1\xde\xa8\xeb\x9d\x4d\x2d\x39\x76\x3a\xf6\x06\x2a\xcb\xff\x1d\x8d\xd7\x6d\x36\x08\x90\x38\xc4\xd1\x7a\xe7\xbd\xef\xcd\xdb\x94\x2e\xe0\xbd\xf3\xf1\x9b\x37\x3d\x7c\x5c\x41\xe3\x10\xba\x1b\xf2\xba\xbb\xc5\x38\x92\xbb\x7b\xd9\x23\x2c\x0e\xde\xf4\x8b\x16\x2e\x72\x96\x45\xb0\x27\xaf\xcb\x74\xd0\x4f\xb8\x53\xd0\x6d\xea\x7f\x51\xf2\x71\xa5\x76\x78\x14\x98\x01\xfe\xe8\x1b\xc9\x6c\xb7\x48\x8b\x32\xb8\x5c\x42\x4a\xd0\xb1\x12\x72\x06\xad\xac\x0d\x10\x9f\x10\x42\xf4\x84\x3d\x30\x14\xfb\x91\x10\xce\x52\xaa\x19\x72\x6e\x58\xc3\xc6\x37\x8a\xd4\x2e\x40\xce\x2d\xbc\x5e\xcd\x59\x39\x9f\x81\x77\xd0\x3f\x76\x72\x18\x9d\x9e\xa3\x9a\xfe\x11\xee\xaf\xbf\x7c\x4a\x09\xb6\x7e\xcf\x36\xd6\x84\x08\x5d\x75\x8c\x34\xe2\x74\xb0\x37\xf3\xcc\x70\xec\x2c\xe7\x94\x80\x30\x32\xa3\xf2\xba\x0a\x3c\x67\x08\x3a\x9e\x41\x22\x4f\x2d\x24\x29\x0e\x8a\x00\xa9\xfc\x3c\x49\x29\x96\x4b\x08\xcf\x16\x9e\x47\xa4\x17\x29\xb4\x77\x21\xf2\x45\x88\x04\x2b\x78\xd8\xac\x2f\xd7\x9f\xef\xe0\xb7\x7d\xb5\xb7\x07\x65\xc3\x5b\xc2\x9c\xdb\x87\xc9\x8a\x46\x57\xad\x6a\xed\xb3\x9c\x13\x9b\x30\xc2\x5f\x13\x4b\x71\x7f\x7d\xe9\xb7\xcd\x14\xe0\x5f\x7d\x0c\xca\x86\x52\x88\x14\xbc\xcd\x8a\x8b\xfd\xca\xe0\x5b\xff\xe3\x7f\xe4\xdd\x46\x2b\xd7\x7c\x20\x8c\xad\x14\x66\x28\xd5\xbc\x5b\x81\x33\x96\xcb\x12\x54\xe2\x4d\x81\x9d\xb1\x27\x99\xaf\x8c\x7d\x2b\x1a\x89\xa4\xc8\x52\xbe\x0a\x08\xe3\x39\x9b\x94\x1a\x70\x62\x9d\x2e\xd7\x4a\xf1\xbd\xe8\xa6\xec\xeb\x9f\xa8\x8f\x6f\xaa\x0b\xbb\x16\x83\xf2\x0d\x65\x9e\x3f\xc8\x5f\x01\x00\x00\xff\xff\x42\xa9\x24\xb4\x3a\x03\x00\x00" +var _postgresProcGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x13\x31\x10\x85\xcf\xf6\xaf\x18\x22\x44\x77\xa5\x76\x73\x47\xca\x05\xc8\xad\x6a\x4b\x53\xa1\xde\xa8\xeb\x9d\x4d\x2d\x39\x76\x3a\xf6\x06\x2a\xcb\xff\x1d\x8d\xd7\x6d\x36\x08\x90\x38\xc4\xd1\x7a\xe7\xbd\xef\xcd\xdb\x94\x2e\xe0\xbd\xf3\xf1\x9b\x37\x3d\x7c\x5c\x41\xe3\x10\xba\x1b\xf2\xba\xbb\xc5\x38\x92\xbb\x7b\xd9\x23\x2c\x0e\xde\xf4\x8b\x16\x2e\x72\x96\x45\xb0\x27\xaf\xcb\x74\xd0\x4f\xb8\x53\xd0\x6d\xea\x7f\x51\xf2\x71\xa5\x76\x78\x14\x98\x01\xfe\xe8\x1b\xc9\x6c\xb7\x48\x8b\x32\xb8\x5c\x42\x4a\xd0\xb1\x12\x72\x06\xad\xac\x0d\x10\x9f\x10\x42\xf4\x84\x3d\x30\x14\xfb\x91\x10\xce\x52\xaa\x19\x72\x6e\x58\xc3\xc6\x37\x8a\xd4\x2e\x40\xce\x2d\xbc\x5e\xcd\x59\x39\x9f\x81\x77\xd0\x3f\x76\x72\x18\x9d\x9e\xa3\x9a\xfe\x11\xee\xaf\xbf\x7c\x4a\x09\xb6\x7e\xcf\x36\xd6\x84\x08\x5d\x75\x8c\x34\xe2\x74\xb0\x37\xf3\xcc\x70\xec\x2c\xe7\x94\x80\x30\x32\xa3\xf2\xba\x0a\x3c\x67\x08\x3a\x9e\x41\x22\x4f\x2d\x24\x29\x0e\x8a\x00\xa9\xfc\x3c\x49\x29\x96\x4b\x08\xcf\x16\x9e\x47\xa4\x17\x29\xb4\x77\x21\xf2\x45\x88\x04\x2b\x78\xd8\xac\x2f\xd7\x9f\xef\xe0\xb7\x7d\xb5\xb7\x07\x65\xc3\x5b\xc2\x9c\xdb\x87\xc9\x8a\x46\x57\xad\x6a\xed\xb3\x9c\x13\x9b\x30\xc2\x5f\x13\x4b\x71\x7f\x7d\xe9\xb7\xcd\x14\xe0\x5f\x7d\x0c\xca\x86\x52\x88\x14\xbc\xcd\x8a\x8b\xfd\xca\xe0\x5b\xff\xe3\x7f\xe4\xdd\x46\x2b\xd7\x7c\x20\x8c\xad\x14\x66\x28\xd5\xbc\x5b\x81\x33\x96\xcb\x12\x54\xe2\x4d\x81\x9d\xb1\x27\x99\xaf\x8c\x7d\x2b\x1a\x89\xa4\xc8\x52\xbe\x0a\x08\xe3\x39\x9b\x94\x1a\x70\x62\x9d\x2e\xd7\x4a\xf1\xbd\xe8\xa6\xec\xeb\x9f\xa8\x8f\x6f\xaa\x0b\xbb\x16\x83\xf2\x0d\x65\x9e\x3f\xc8\x5f\x01\x00\x00\xff\xff\x42\xa9\x24\xb4\x3a\x03\x00\x00" func postgresProcGoTplBytes() ([]byte, error) { return bindataRead( @@ -518,7 +518,7 @@ func postgresProcGoTpl() (*asset, error) { return a, nil } -var _postgresQueryGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" +var _postgresQueryGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" func postgresQueryGoTplBytes() ([]byte, error) { return bindataRead( @@ -538,7 +538,7 @@ func postgresQueryGoTpl() (*asset, error) { return a, nil } -var _postgresQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" +var _postgresQuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" func postgresQuerytypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -558,7 +558,7 @@ func postgresQuerytypeGoTpl() (*asset, error) { return a, nil } -var _postgresTypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x57\x41\x73\xa3\x46\x13\x3d\xc3\xaf\xe8\xa5\xb6\x3e\x4b\xdf\x6a\xa1\x72\xc8\x21\xae\xd2\x61\x63\xe1\xc4\x15\xad\xe4\x95\x70\xe2\x9b\x35\x88\x96\x4d\x0c\x33\xf2\xcc\x60\x5b\x45\xf1\xdf\x53\x33\x03\x18\x6c\xd6\x96\x64\x6d\x2a\x07\x4b\x16\xf4\xbc\x79\x74\xf7\x7b\x3d\xe4\xf9\x67\xf8\x28\x6e\x18\x97\x70\x3c\x84\x9e\xfe\x8f\x92\x14\xc1\x9d\xa8\x4f\x07\x39\x77\xc0\xe1\x28\x1c\x70\xc4\x5d\x22\xa4\xfa\x19\x85\x0e\x38\x97\xd3\x31\xbb\x76\xfa\xf0\xb9\x28\x6c\x8d\x22\x49\x98\xa0\x41\x59\xde\x60\x4a\xc0\x9d\x97\xdf\x81\xba\x63\x3e\x15\xea\xd3\x9a\x78\x05\xee\x09\x4b\x53\xa4\x52\x5f\xf3\x3c\xc8\xf3\xa7\x4b\x65\x14\x26\x02\x9b\xb7\x35\xb3\xa2\x00\x8e\x6b\x8e\x02\xa9\x14\x40\x80\xb3\x07\x58\x71\x96\xc2\x51\x9e\x57\x5c\x8a\xe2\xc8\x35\x08\x34\x52\x60\x72\xb3\xc6\x16\x82\x90\x3c\x5b\x4a\xc8\x75\x10\x27\xf4\x1a\xc1\x3d\x8d\x31\x89\x84\x0a\xb7\x9a\xa1\x79\x0e\x1c\x35\x80\x1b\xa8\xcf\xa2\x80\xc5\xdf\x82\xd1\x63\xc7\x30\x4e\xd4\x5f\x96\xd2\x32\xde\x59\x40\xfd\x30\xcf\x6e\x35\x19\x55\x49\x38\xe7\x71\x4a\xf8\xe6\x0f\xdc\xa8\xab\xb6\xe5\x79\xf0\xc8\x60\xa5\xa9\xd8\xd6\x15\x3e\xc6\x42\x8a\x01\x5c\x45\x98\xa0\xc4\x08\x42\xc6\x12\x3b\xcf\x2b\x98\xc2\x56\x3f\x5e\x02\x79\x1e\xf8\x7a\x29\x44\x28\x91\xa7\x31\x45\xa1\xc2\xe4\x4d\x3b\x0f\x06\x1f\x62\xaa\xef\x44\x44\x92\x90\x08\x74\xed\x55\x46\x97\xd0\x53\x09\x35\x2d\x52\x14\xf0\xff\xc6\xba\x7e\x89\xde\xeb\x6b\x42\x90\xdb\x16\x47\x99\x71\x0a\xcd\x25\x6e\x49\x5f\xb1\xf4\x3c\x18\x95\x8f\xb0\xe6\xec\x3e\x8e\x14\x1f\xba\x62\x3c\x25\x32\x66\xb4\x8b\xdb\x0d\x11\x10\x22\x52\xa8\x9e\x5d\x57\x79\x47\x9e\xe5\xa6\x6f\x11\x2d\xb7\x28\x99\x9e\x51\x81\x5c\x42\xac\xbf\xc4\x0b\x62\x92\xed\xca\xc2\x00\xf6\xa2\x10\x2e\xa7\xa3\x5f\xfb\x80\x9c\x33\xae\xc8\xdc\x13\xae\x7e\x98\x0b\xa6\xfc\xf1\x0a\x48\xc2\x91\x44\x1b\x53\x9d\x01\x84\x24\x4e\x6c\x2b\x5e\x75\x26\x57\xa1\x54\xcf\xa4\x51\x84\x3b\xc1\x87\x9e\x63\xc8\xc3\x8a\xc4\x09\x46\xc7\x6d\x48\xe1\xf4\x6d\xeb\xa9\x75\x8c\x4a\xbf\x12\x9a\x91\xe4\xfc\x56\x0b\xc0\xf3\x40\xdc\x25\x65\x06\xe0\x2e\x43\xbe\x19\xc0\xda\xb4\x18\xdc\xe2\x06\xd2\x4c\x48\x08\xb1\x2a\x66\x64\x5b\x4b\x46\x85\x04\x63\x15\x30\x84\xc5\xd9\x64\xee\xcf\x02\x38\x9b\x04\x53\x68\x2a\x13\x7a\x0b\xf8\x64\x5b\xd6\x22\xcf\x61\xc9\x12\xe5\x39\xa2\x21\xbe\xf2\x66\x1f\xfe\xfc\x32\xbe\xf0\xe7\xcf\xa2\xef\x49\xd2\x15\xbc\x30\xa9\xe3\x19\x35\x5c\x6d\x4b\x9b\x54\xcf\xb0\x19\xa8\xfd\xb5\xa4\xda\x9b\xd5\xb9\xec\xdb\x96\x2a\xc2\x10\xa2\xd0\xfd\xa6\xd6\xcf\xd8\xc3\xd6\x6b\xdd\xf9\x92\xd0\xde\xff\x5a\xb5\x51\xc5\x7f\x12\x64\xdd\x07\xba\x88\x6a\xa7\x0f\x43\xa0\x71\xf2\xac\x74\xaa\x24\x4a\xd9\xca\xf4\xb6\xaa\x41\x95\x7b\x08\x37\x20\xf0\x2e\x43\xba\xc4\x03\xd5\xa1\x83\xfd\x0e\x85\x79\x6d\xf5\xcc\x0f\x2e\x66\x93\xb3\xc9\x6f\xf0\xb4\x6f\x6b\xc1\x09\x4b\x54\xfc\x7b\x2a\xda\x9d\xfb\x3d\x4b\xdc\x05\x76\xf0\x9a\x1b\x37\x37\x35\x47\x69\x54\x6a\xca\xd9\xa9\xf9\x21\x48\x9e\xa1\x5d\x9b\x19\x8d\x93\xd2\xba\x2e\xd6\x11\x91\x08\x99\xfe\x7a\x69\x5d\xbb\x1b\xbd\x01\xdc\xda\xba\x22\x86\x82\x1e\xc9\x17\xd6\xf5\x61\x17\xef\x32\xec\x6b\xef\x52\x98\x40\x59\x09\x5a\x7a\x57\xb5\x9f\x31\xee\xef\x9a\x64\x35\x3b\xb6\xdb\x29\x25\xfc\x56\x0d\x1a\xc6\x0d\x70\xcc\x68\x63\x3b\xa5\xc6\xb2\x19\x9f\x8b\xec\xe2\x7c\xf4\x25\xf0\xdb\xfa\x9a\xfb\xc1\xde\x1a\x1b\x42\x0f\xf6\xd3\xd7\x5f\xbf\xfb\x33\xff\x75\x6d\xc1\x10\x3e\x9a\x80\x25\xcb\xa8\x7c\x15\xf6\xc0\x32\x1c\xc0\x76\x9a\xb9\x1a\x40\x2d\x57\xff\x11\x97\x3f\x7c\xc3\x86\x24\x8d\x90\xe6\xe4\x1e\x41\x90\xfb\x0e\x11\xed\x3e\xff\x15\x58\x87\x84\x9e\x77\x6b\x7d\xa8\x6a\x74\x6b\x2b\xa0\x16\x63\xd9\x94\x5d\x31\xf5\x59\xa3\x5f\x5b\x82\x1e\x20\x6b\xe4\xea\xb8\x25\x80\x50\xc8\xcc\x25\xd5\xe7\x0d\x9e\xae\xed\x79\x6a\xc1\x64\x1a\xf8\xc7\x70\xce\x84\xbc\xe6\x38\xff\x36\x86\x5f\xdc\x9f\x3f\x01\xa3\xc9\x66\x1b\xbb\xf8\x4f\x9e\x74\xde\x90\xef\xbf\x79\x56\x81\xe9\x04\x4e\xa6\x93\xd3\xf1\xd9\x49\xa0\x53\xf9\x7d\xa1\xf6\x61\x34\x85\xd2\x5a\xde\x72\x93\xb6\x79\xb4\x02\xd7\x1c\x57\xf1\x63\x3b\xdc\xf1\x2f\x4f\xc6\x17\x23\x7f\xe4\x1c\xf4\x18\xb5\x9f\x6e\xb7\x1a\x93\x07\x18\x8e\xe6\x65\xa0\x9c\x19\x2f\x75\xbd\xff\xfb\xc5\x8f\x1f\x8f\xea\x21\xde\x37\xf6\x9a\x08\xaf\x48\x61\xe4\x8f\xfd\xc0\x87\xd3\xd9\xf4\x6b\x5b\x0a\x5b\x0e\x96\x9f\xb6\x68\xa2\x77\x0e\x80\x03\x9c\xb9\xea\x66\xaa\x5e\xfc\xac\xee\xfc\x75\xf7\x52\xe3\x3d\xde\xfe\x27\x00\x00\xff\xff\x00\x48\xec\x1e\x48\x11\x00\x00" +var _postgresTypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x41\x73\xa3\x46\x13\x3d\xc3\xaf\xe8\xa5\xb6\x3e\x4b\xdf\x6a\xa1\x72\xc8\x21\xae\xd2\x61\x63\xe1\xc4\x15\xad\xe4\x95\x70\xe2\x9b\x35\x88\x96\x4d\x0c\x33\xf2\xcc\x60\x5b\x45\xf1\xdf\x53\x33\x03\x18\x6c\xd6\x96\x64\x6d\x2a\x07\x4b\x16\xf4\xbc\x79\x74\xf7\x7b\x3d\xe4\xf9\x67\xf8\x28\x6e\x18\x97\x70\x3c\x84\x9e\xfe\x8f\x92\x14\xc1\x9d\xa8\x4f\x07\x39\x77\xc0\xe1\x28\x1c\x70\xc4\x5d\x22\xa4\xfa\x19\x85\x0e\x38\x97\xd3\x31\xbb\x76\xfa\xf0\xb9\x28\x6c\x8d\x22\x49\x98\xa0\x41\x59\xde\x60\x4a\xc0\x9d\x97\xdf\x81\xba\x63\x3e\x15\xea\xd3\x9a\x78\x05\xee\x09\x4b\x53\xa4\x52\x5f\xf3\x3c\xc8\xf3\xa7\x4b\x65\x14\x26\x02\x9b\xb7\x35\xb3\xa2\x00\x8e\x6b\x8e\x02\xa9\x14\x40\x80\xb3\x07\x58\x71\x96\xc2\x51\x9e\x57\x5c\x8a\xe2\xc8\x35\x08\x34\x52\x60\x72\xb3\xc6\x16\x82\x90\x3c\x5b\x4a\xc8\x75\x10\x27\xf4\x1a\xc1\x3d\x8d\x31\x89\x84\x0a\xb7\x9a\xa1\x79\x0e\x1c\x35\x80\x1b\xa8\xcf\xa2\x80\xc5\xdf\x82\xd1\x63\xc7\x30\x4e\xd4\x5f\x96\xd2\x32\xde\x59\x40\xfd\x30\xcf\x6e\x35\x19\x55\x49\x38\xe7\x71\x4a\xf8\xe6\x0f\xdc\xa8\xab\xb6\xe5\x79\xf0\xc8\x60\xa5\xa9\xd8\xd6\x15\x3e\xc6\x42\x8a\x01\x5c\x45\x98\xa0\xc4\x08\x42\xc6\x12\x3b\xcf\x2b\x98\xc2\x56\x3f\x5e\x02\x79\x1e\xf8\x7a\x29\x44\x28\x91\xa7\x31\x45\xa1\xc2\xe4\x4d\x3b\x0f\x06\x1f\x62\xaa\xef\x44\x44\x92\x90\x08\x74\xed\x55\x46\x97\xd0\x53\x09\x35\x2d\x52\x14\xf0\xff\xc6\xba\x7e\x89\xde\xeb\x6b\x42\x90\xdb\x16\x47\x99\x71\x0a\xcd\x25\x6e\x49\x5f\xb1\xf4\x3c\x18\x95\x8f\xb0\xe6\xec\x3e\x8e\x14\x1f\xba\x62\x3c\x25\x32\x66\xb4\x8b\xdb\x0d\x11\x10\x22\x52\xa8\x9e\x5d\x57\x79\x47\x9e\xe5\xa6\x6f\x11\x2d\xb7\x28\x99\x9e\x51\x81\x5c\x42\xac\xbf\xc4\x0b\x62\x92\xed\xca\xc2\x00\xf6\xa2\x10\x2e\xa7\xa3\x5f\xfb\x80\x9c\x33\xae\xc8\xdc\x13\xae\x7e\x98\x0b\xa6\xfc\xf1\x0a\x48\xc2\x91\x44\x1b\x53\x9d\x01\x84\x24\x4e\x6c\x2b\x5e\x75\x26\x57\xa1\x54\xcf\xa4\x51\x84\x3b\xc1\x87\x9e\x63\xc8\xc3\x8a\xc4\x09\x46\xc7\x6d\x48\xe1\xf4\x6d\xeb\xa9\x75\x8c\x4a\xbf\x12\x9a\x91\xe4\xfc\x56\x0b\xc0\xf3\x40\xdc\x25\x65\x06\xe0\x2e\x43\xbe\x19\xc0\xda\xb4\x18\xdc\xe2\x06\xd2\x4c\x48\x08\xb1\x2a\x66\x64\x5b\x4b\x46\x85\x04\x63\x15\x30\x84\xc5\xd9\x64\xee\xcf\x02\x38\x9b\x04\x53\x68\x2a\x13\x7a\x0b\xf8\x64\x5b\xd6\x22\xcf\x61\xc9\x12\xe5\x39\xa2\x21\xbe\xf2\x66\x1f\xfe\xfc\x32\xbe\xf0\xe7\xcf\xa2\xef\x49\xd2\x15\xbc\x30\xa9\xe3\x19\x35\x5c\x6d\x4b\x9b\x54\xcf\xb0\x19\xa8\xfd\xb5\xa4\xda\x9b\xd5\xb9\xec\xdb\x96\x2a\xc2\x10\xa2\xd0\xfd\xa6\xd6\xcf\xd8\xc3\xd6\x6b\xdd\xf9\x92\xd0\xde\xff\x5a\xb5\x51\xc5\x7f\x12\x64\xdd\x07\xba\x88\x6a\xa7\x0f\x43\xa0\x71\xf2\xac\x74\xaa\x24\x4a\xd9\xca\xf4\xb6\xaa\x41\x95\x7b\x08\x37\x20\xf0\x2e\x43\xba\xc4\x03\xd5\xa1\x83\xfd\x0e\x85\x79\x6d\xf5\xcc\x0f\x2e\x66\x93\xb3\xc9\x6f\xf0\xb4\x6f\x6b\xc1\x09\x4b\x54\xfc\x7b\x2a\xda\x9d\xfb\x3d\x4b\xdc\x05\x76\xf0\x9a\x1b\x37\x37\x35\x47\x69\x54\x6a\xca\xd9\xa9\xf9\x21\x48\x9e\xa1\x5d\x9b\x19\x8d\x93\xd2\xba\x2e\xd6\x11\x91\x08\x99\xfe\x7a\x69\x5d\xbb\x1b\xbd\x01\xdc\xda\xba\x22\x86\x82\x1e\xc9\x17\xd6\xf5\x61\x17\xef\x32\xec\x6b\xef\x52\x98\x40\x59\x09\x5a\x7a\x57\xb5\x9f\x31\xee\xef\x9a\x64\x35\x3b\xb6\xdb\x29\x25\xfc\x56\x0d\x1a\xc6\x0d\x70\xcc\x68\x63\x3b\xa5\xc6\xb2\x19\x9f\x8b\xec\xe2\x7c\xf4\x25\xf0\xdb\xfa\x9a\xfb\xc1\xde\x1a\x1b\x42\x0f\xf6\xd3\xd7\x5f\xbf\xfb\x33\xff\x75\x6d\xc1\x10\x3e\x9a\x80\x25\xcb\xa8\x7c\x15\xf6\xc0\x32\x1c\xc0\x76\x9a\xb9\x1a\x40\x2d\x57\xff\x11\x97\x3f\x7c\xc3\x86\x24\x8d\x90\xe6\xe4\x1e\x41\x90\xfb\x0e\x11\xed\x3e\xff\x15\x58\x87\x84\x9e\x77\x6b\x7d\xa8\x6a\x74\x6b\x2b\xa0\x16\x63\xd9\x94\x5d\x31\xf5\x59\xa3\x5f\x5b\x82\x1e\x20\x6b\xe4\xea\xb8\x25\x80\x50\xc8\xcc\x25\xd5\xe7\x0d\x9e\xae\xed\x79\x6a\xc1\x64\x1a\xf8\xc7\x70\xce\x84\xbc\xe6\x38\xff\x36\x86\x5f\xdc\x9f\x3f\x01\xa3\xc9\x66\x1b\xbb\xf8\x4f\x9e\x74\xde\x90\xef\xbf\x79\x56\x81\xe9\x04\x4e\xa6\x93\xd3\xf1\xd9\x49\xa0\x53\xf9\x7d\xa1\xf6\x61\x34\x85\xd2\x5a\xde\x72\x93\xb6\x79\xb4\x02\xd7\x1c\x57\xf1\x63\x3b\xdc\xf1\x2f\x4f\xc6\x17\x23\x7f\xe4\x1c\xf4\x18\xb5\x9f\x6e\xb7\x1a\x93\x07\x18\x8e\xe6\x65\xa0\x9c\x19\x2f\x75\xbd\xff\xfb\xc5\x8f\x1f\x8f\xea\x21\xde\x37\xf6\x9a\x08\xaf\x48\x61\xe4\x8f\xfd\xc0\x87\xd3\xd9\xf4\x6b\x5b\x0a\x5b\x0e\x96\x9f\xb6\x68\xa2\x77\x0e\x80\x03\x9c\xb9\xea\x66\xaa\x5e\xfc\xac\xee\xfc\x75\xf7\x52\xe3\x3d\xde\xfe\x27\x00\x00\xff\xff\x00\x48\xec\x1e\x48\x11\x00\x00" func postgresTypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -578,7 +578,7 @@ func postgresTypeGoTpl() (*asset, error) { return a, nil } -var _sqlite3ForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" +var _sqlite3ForeignkeyGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc4\x30\x10\x85\xcf\xe6\x57\xbc\x83\xb0\xc9\xb2\xdb\xde\x05\x2f\xab\xe8\x41\x50\x10\x0f\x5e\xbb\xed\xd4\x16\xb7\x89\x4c\x52\xb5\x84\xfc\x77\x49\xda\xed\xd6\x65\x0f\x81\xe1\x9b\x37\x99\xf7\xc6\xfb\x2d\xae\x6d\x63\xd8\xe1\xe6\x16\x32\x55\xba\xe8\x08\xd9\xdb\xf0\x45\xd9\x73\xd1\x91\xc2\x36\x04\x91\xe7\xf0\x1e\x09\x20\x04\x30\xb9\x9e\xb5\x85\x6b\x28\xf1\x57\xaa\xe7\x81\xd8\x2f\xac\x35\x65\x5b\x38\xaa\xf0\xd3\xba\x66\xd6\x2d\x45\x2b\x9b\xd0\x43\x4b\x87\x6a\x1e\x94\x27\x74\x67\x0e\xf1\xf5\x9d\x9e\x9a\x2a\x13\x79\x1e\x9d\x3c\x92\x26\x4e\x9f\xd7\x6c\x3a\xd4\x86\xa9\xfd\xd0\xf8\xa4\x01\xab\x34\x3f\x82\x27\x1a\x16\xe5\x71\x6b\x26\xea\x5e\x97\x69\xd1\x94\x3c\x04\xac\xcf\xcd\xa9\x65\x5c\x59\xed\xf1\xfe\x72\xbf\x53\x90\xeb\x0b\x69\x37\x20\x66\xc3\x0a\x5e\x5c\x8d\x87\xb9\x74\x93\xdd\x30\xc1\x7f\x81\x65\xb5\xdf\x44\x75\x69\xf4\x37\xfd\xba\xa3\xa5\xf1\x04\x27\x79\x74\x24\x82\x10\x7f\x01\x00\x00\xff\xff\xea\x89\x96\x81\xb0\x01\x00\x00" func sqlite3ForeignkeyGoTplBytes() ([]byte, error) { return bindataRead( @@ -598,7 +598,7 @@ func sqlite3ForeignkeyGoTpl() (*asset, error) { return a, nil } -var _sqlite3IndexGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" +var _sqlite3IndexGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdd\x4e\x1b\x3d\x10\xbd\xb6\x9f\x62\x3e\xeb\x13\x6c\xda\xb0\xb9\x47\xca\x45\x0b\xa1\xad\x4a\xa1\x05\xaa\x22\x21\xd4\x38\xbb\xb3\xb0\xd2\xc6\xce\xda\x5e\x20\xb2\xfc\xee\xd5\xd8\xbb\x94\x9f\x08\x41\x6f\x1c\xdb\xe3\x99\x73\xe6\x9c\xc9\x7a\xbf\x03\xff\xdb\x6b\x6d\x1c\xec\x4e\x21\x8b\x3b\x25\x97\x08\xf9\xd9\x7a\x85\xf9\x11\x6d\x05\x1a\x23\x40\xd8\xb6\xb1\x8e\x36\xe5\x42\x80\x68\x05\x08\x83\x56\x80\x38\x3f\x3e\xd4\x57\x02\xf2\x83\x1a\x9b\xd2\x8e\x60\x27\x04\x1e\xcb\x3a\xb9\x68\x30\x95\x2d\xae\x71\x29\x21\x3f\xed\x7f\x63\xed\x33\x0a\xa7\x95\x60\x52\xe2\x64\x02\xde\x43\x7e\xd0\xa9\x22\x62\x87\x00\x06\x9d\xa9\xf1\x06\x2d\x48\x30\xfa\x16\x2a\xa3\x97\xb0\xed\xfd\x00\x10\xc2\x36\x48\x0a\x52\xe2\x5f\xd6\x21\xe4\x7c\x32\xa1\x82\x9f\x50\xa1\x91\x0e\xcb\x94\x5a\xab\x12\xef\x62\x81\xfc\x0b\x6d\xd3\xda\xe7\x6c\xe7\xbc\xea\x54\xf1\x94\x44\x56\x2e\xe0\xfc\x78\xff\xa3\xf7\x70\xa5\x57\xd2\xc8\x65\x53\x5b\x37\xf4\x0c\xce\x74\x98\x96\x10\x46\x90\x79\x0f\x75\x05\x4a\xbb\x7b\x04\xfb\x53\xd5\x6d\x0c\x5f\x5c\x7a\x0f\xa8\x4a\x08\xe1\xdd\x53\xc2\x63\x40\x63\xb4\x19\x81\xe7\xec\x46\x1a\x3a\xa5\x1b\xce\xd9\x64\x02\xb6\x6d\xa0\xed\xd0\xac\x39\x2b\xb4\xb2\x0e\x92\x23\x30\x85\xf9\xe9\xec\x70\xb6\x77\x06\x73\x78\xcf\x19\x9b\x7b\x0f\x85\x6e\xc8\x46\xdb\x03\xf4\x3c\x43\x18\x9e\x1c\x9c\x1c\x7f\x83\x87\x1a\x0e\x81\x5f\x9f\x67\x27\x33\x78\x50\x21\x22\xde\x77\x2a\xe0\xc3\xd1\x3e\x08\x08\x61\x9e\x48\x99\x4e\x0d\xa4\xe2\x20\x64\x89\xd4\x4b\x42\x55\xb2\xb1\x51\xa9\x38\x26\x75\xb5\x41\x25\xce\x88\x5b\x9a\xcb\x10\x68\x86\x9e\x6a\xe5\xe9\x49\xca\x8e\xd7\xdf\x4d\xbd\x94\x66\xfd\x15\xd7\x31\x9d\xfd\xc6\xbb\xda\x3a\xbb\x1b\x21\xc7\xb1\x1e\xa9\x4e\x33\xc6\x02\xe7\x8c\xb4\x9d\x42\xb9\xc8\x7f\x10\xf9\x13\x7d\xfb\x16\xe2\xf9\x69\x21\x15\xd9\x5c\x51\x74\x83\xd0\xd9\xca\xd4\xca\x81\xd8\x12\x7d\x17\xa3\xd8\x2f\xab\xab\x68\xea\x7f\x53\x50\x75\x43\x36\x33\x83\xae\x33\x8a\x8e\xd1\xfd\x44\xae\xbf\xdc\x7a\x28\xc2\x98\xde\x44\xc5\x30\xb1\xe0\xac\x8d\x29\xa4\xce\xd0\xc7\x9b\xd4\x7f\x1d\x1b\x56\x62\x85\x06\xda\x7c\xaf\xd1\x16\xb3\x51\xb2\xbd\xd1\xb2\x04\x83\xb6\x6b\x9c\x25\xbe\x96\x58\x5c\x5c\x3e\x1b\x69\x1f\x38\xab\x34\xa5\x1f\xe1\x9d\xcb\xe2\x68\xbf\xc6\xdb\x97\xcd\x7d\xe6\xee\x23\x7b\xa3\x84\xf1\x0f\x53\x48\xc5\x59\x6f\x75\xfb\xcf\xa6\x6d\xd0\xe9\xb9\x50\x09\x94\x84\x98\x82\x5c\xad\x50\x95\x99\x41\x3b\x7e\xec\xe1\xe8\x91\xbd\x31\x7e\x6f\x6a\xfc\x24\xf0\xc0\xf9\x9f\x00\x00\x00\xff\xff\xc3\x4f\x76\x7d\x93\x05\x00\x00" func sqlite3IndexGoTplBytes() ([]byte, error) { return bindataRead( @@ -618,7 +618,7 @@ func sqlite3IndexGoTpl() (*asset, error) { return a, nil } -var _sqlite3QueryGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" +var _sqlite3QueryGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5f\x6b\xdb\x3e\x14\x7d\xb6\x3e\xc5\xfd\x89\x50\xec\xdf\x5c\xe7\xbd\xe0\x97\x75\x0c\x06\xa3\xd9\xbf\x87\x42\x29\x4c\x8d\xe5\x4c\xa0\x48\xb1\x24\x77\x0d\x42\xdf\x7d\x5c\xc9\x76\xec\xa6\x65\xa3\x6f\xca\xf1\xfd\x73\xce\x3d\xf7\xc6\xfb\x4b\x58\xd9\x5f\xda\x38\xb8\xaa\x21\x8f\x2f\xc5\xf6\x1c\xaa\x1f\xc7\x03\xaf\x6e\xf0\x49\xb9\x31\x14\xa8\xed\xa4\x75\xf8\x68\x1e\x28\xd0\x8e\x02\x35\xdc\x52\xa0\xb7\x9b\xcf\x7a\x47\xa1\xfa\xda\x73\x73\xfc\xc2\x0c\xdb\xdb\x02\x2e\x43\x20\xb1\x76\x87\xe8\xb5\xde\xef\xb9\x72\x16\x7b\xa4\xb8\x09\x19\x03\x45\x0b\xd5\x00\x46\x6c\xbd\x06\xef\x4f\xd0\x10\xc5\xa5\xe5\xf3\xcf\x91\x5f\x08\x60\x7a\x65\x81\xc1\xb6\xb7\x4e\xef\x21\xf6\x2c\xc1\x70\xd7\x1b\x25\xd4\x0e\x0c\xb7\xbd\x74\x16\x98\x8d\x59\x27\x69\x21\x54\xa9\xae\x6a\xb0\x45\xdb\xab\xed\xa2\x6e\xde\x3c\xc0\xed\xe6\xc3\x7b\xef\xc1\x30\xb5\xe3\x0b\x95\x10\x42\xb9\x88\x1e\x6b\x43\x08\xde\x0f\x35\x0b\xc8\xbd\x47\x75\x4a\x3b\xa8\x36\x4a\x1e\x37\x0a\x03\xee\xee\xa7\x90\xff\x9f\x73\x2a\x81\x1b\xa3\x4d\x01\x9e\x64\x8f\xcc\xe0\xaf\x84\x10\x92\xad\xd7\x60\x3b\x99\x24\x92\x2c\x95\xae\x3e\x29\xc7\xcd\x41\x4b\xe6\x30\xfd\x91\x19\xac\x8d\xa3\x0a\x61\xab\x95\x75\x53\x2b\x48\x26\x42\x0d\x93\xa2\x95\x28\x61\x25\x4f\xce\x24\xf2\xa2\x85\x95\xc0\x84\x77\x53\x6e\x42\x73\xa1\x1a\xfe\xf4\xdc\xd7\x95\x28\x30\x38\xb9\xf2\x4a\xc4\x7c\x2a\xb3\x0e\x28\x02\xc1\xcb\x10\x7e\x7a\x8f\x54\xd2\x63\xb0\x24\x2a\x36\xbd\x1a\x15\xc7\x6d\xcb\x93\x8c\xd7\x5c\x99\x0d\x7c\x39\x99\x85\x5d\x73\x32\x83\x57\xd3\x26\x9e\x7c\x4a\x0e\x20\xb1\x74\x25\x33\x9b\xc7\x42\x24\x43\x83\x6a\x68\x1e\x12\x8f\x6f\xfa\xf7\x5f\x08\xbe\xcc\xa3\xa8\xbe\x6f\x99\xc2\x75\x69\x05\x97\x0d\x9e\xa1\x1d\x3a\x7d\x44\xc0\x42\x7e\x30\x42\x39\xa0\x17\x74\xa0\x53\x44\xd6\x99\x68\xe3\x8e\xfc\x57\x83\x12\x12\xb7\x26\x4b\xbb\x8f\x3f\xe3\x32\x91\x0c\x27\x39\x80\x17\x73\x35\x25\xc6\x9c\x6e\x0b\xd5\x74\x31\x05\x37\x62\x54\xf4\x36\x39\xff\xc8\x2b\x6b\x78\xcb\x0d\x74\xd5\xb5\xd4\x96\xe7\x45\xb2\x5c\x6a\xd6\x8c\x77\x8b\xcc\xe3\x7f\xc7\xdd\xfd\xd9\xad\xf8\x40\xb2\x56\x63\xfa\x0d\x7f\x72\x79\xbc\x99\x6c\x61\xd7\x55\x7d\xe6\x98\xc7\x69\xc4\x53\xda\x32\x45\xb2\xc1\xbf\xee\xcd\xf3\x7f\x41\xe8\xb9\xd2\x68\x41\x54\x52\x03\x3b\x1c\xb8\x6a\x72\xc3\x6d\xb9\xb4\xa3\x58\x38\x15\xbf\x4f\xfe\xa4\x83\x08\x84\xfc\x09\x00\x00\xff\xff\xb6\xe2\x6b\x23\xb5\x05\x00\x00" func sqlite3QueryGoTplBytes() ([]byte, error) { return bindataRead( @@ -638,7 +638,7 @@ func sqlite3QueryGoTpl() (*asset, error) { return a, nil } -var _sqlite3QuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" +var _sqlite3QuerytypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x0e\x82\x30\x10\x86\x67\x79\x8a\x7f\x30\x41\x07\xca\x6e\xe2\x64\xe2\xe8\x22\x2f\x50\xe1\x50\x92\xb6\x90\xb6\xc4\x98\xcb\xbd\xbb\x29\xa0\xe2\xd0\x6b\x72\xff\xd7\xaf\x3f\x73\x81\x6d\xd4\x37\x43\x38\x1c\xb1\x0b\xf5\x83\xac\x86\xba\x2e\x77\x95\x92\x79\x5e\xb4\xa5\x3d\x0a\x91\x2c\xbd\xe9\x5a\xa8\x53\x6f\x2d\xb9\x38\xed\xca\x12\xcc\xbf\xd5\x42\x91\x09\xb4\x8e\x93\x03\x22\xf0\x34\x78\x0a\xe4\x62\x80\x86\xef\x9f\x68\x7d\x6f\x91\x33\x7f\xba\x88\xe4\x6a\x36\xb8\x26\xc9\xe2\x6b\xa0\x3f\x43\x88\x7e\xac\x23\x78\x82\xbc\x76\x77\x82\x3a\x77\x64\x9a\x90\xf0\xcd\x1a\x65\x86\xa7\x49\xa0\xaa\x34\x45\xf0\x6d\x6b\xd2\x19\xad\x5b\xd8\xf5\x97\x92\x65\xef\x00\x00\x00\xff\xff\x5b\x7f\x83\xf0\x1d\x01\x00\x00" func sqlite3QuerytypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -658,7 +658,7 @@ func sqlite3QuerytypeGoTpl() (*asset, error) { return a, nil } -var _sqlite3TypeGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x57\x5d\x6f\xdb\x36\x14\x7d\x96\x7e\xc5\xad\x30\x20\xd6\xe6\x4a\xef\x01\x8c\xa1\x6b\x54\x2c\x58\x9a\x04\xb1\xb3\xf5\x2d\xa6\xcc\xeb\x86\x8b\x44\x3a\x24\xe5\xc6\x10\xf4\xdf\x07\x7e\x48\x95\x3f\x9a\x5a\x49\xf6\x10\x29\x12\x2f\x0f\x8f\xee\xbd\xe7\x90\xae\xeb\xf7\xf0\x8b\xba\x17\x52\xc3\xe9\x04\x46\xf6\x3f\x4e\x4a\x84\xe4\xd2\x5c\x23\x94\x32\x82\x48\xa2\x8a\x20\x52\x8f\x85\xd2\xe6\x91\xe6\x11\x44\x5f\xae\x2e\xc4\xd7\x28\x86\xf7\x4d\x13\x5a\x14\x4d\xf2\x02\x1d\xca\xe2\x1e\x4b\x02\xc9\xd4\xdf\x67\x66\xc4\x5d\x0d\xea\xf7\x39\x6c\x09\xc9\x47\x51\x96\xc8\xb5\x7d\x97\xa6\x50\xd7\xdf\x5f\xf9\x28\x2c\x14\xf6\x87\x2d\xb3\xa6\x01\x89\x2b\x89\x0a\xb9\x56\x40\x40\x8a\x6f\xb0\x94\xa2\x84\x93\xba\x6e\xb9\x34\xcd\x49\xe2\x10\x38\x35\x60\x7a\xb3\xc2\x2d\x04\xa5\x65\xb5\xd0\x50\xdb\x20\x49\xf8\x57\x84\xe4\x13\xc3\x82\x2a\x13\x1e\xf4\x43\xeb\x1a\x24\x5a\x80\x64\x66\xae\x4d\x03\xf3\x7f\x95\xe0\xa7\x91\x63\x5c\x98\xbf\xaa\xe4\x3e\x3e\x9a\x43\xf7\x31\x3b\x43\x7d\x46\x6d\x12\xae\x25\x2b\x89\xdc\xfc\x85\x1b\xf3\x36\x0c\xd2\x14\x9e\x04\x2c\x2d\x95\x30\xb8\xc3\x27\xa6\xb4\x1a\xc3\x1d\xc5\x02\x35\x52\xc8\x85\x28\xc2\xba\x6e\x61\x9a\xd0\x3c\xec\x03\xa5\x29\x64\x76\x2a\x50\xd4\x28\x4b\xc6\x51\x99\x30\x7d\xbf\x9d\x07\x87\x0f\x8c\xdb\x11\x4a\x34\xc9\x89\xc2\x24\x5c\x56\x7c\x01\x23\x93\x50\xd7\x22\x4d\x03\xbf\xf6\xe6\xc5\x1e\x7d\x14\x5b\x42\x50\x87\x81\x44\x5d\x49\x0e\xfd\x29\x89\xa7\x6f\x58\xa6\x29\x9c\xf9\x4f\x58\x49\xb1\x66\xd4\xf0\xe1\x4b\x21\x4b\xa2\x99\xe0\x87\xb8\xdd\x13\x05\x39\x22\x87\xf6\xdb\x6d\x95\x07\xf2\xf4\x8b\xfe\x8c\xa8\x5f\xc2\x33\x3d\xe7\x0a\xa5\x06\x66\x6f\x6a\x8f\x98\x16\x43\x59\x38\xc0\x11\xcd\xe1\xcb\xd5\xd9\x1f\x31\xa0\x94\x42\x1a\x32\x6b\x22\xcd\x83\x7b\xe1\xca\xcf\x96\x40\x0a\x89\x84\x6e\x5c\x75\xc6\x90\x13\x56\x84\x01\x5b\x1e\x4c\xae\x41\x69\xbf\xc9\xa2\xa8\xe4\x12\xbf\x8d\x22\x47\x1e\x96\x84\x15\x48\x4f\xb7\x21\x55\x14\x87\x41\x13\x76\xbd\xe3\x64\xfa\x99\xf0\x8a\x14\xd7\x0f\x60\x25\x90\xa6\xa0\x1e\x0b\x9f\x03\x78\xac\x50\x6e\xc6\xb0\x72\x4d\x06\x0f\xb8\x81\xb2\x52\x1a\x72\x6c\xcb\x49\xc3\x60\x21\xb8\xd2\xe0\xcc\x02\x26\x30\x3f\xbf\x9c\x66\x37\x33\x38\xbf\x9c\x5d\x41\x5f\x9b\x30\x9a\xc3\x6f\x61\x10\xcc\xeb\x1a\x16\xa2\x30\xae\xa3\x7a\xf2\xf3\x83\x31\xfc\xfd\xe1\xe2\x36\x9b\xee\x44\xaf\x49\x71\x28\x78\xee\x92\x27\x2b\xee\xb8\x86\x81\xb5\xa9\x91\x63\x33\x36\xeb\x5b\x51\x6d\x2f\xd6\x65\x33\x0e\x83\xbb\xb1\xad\xc4\x04\x68\x9e\x64\x4f\xb8\x18\x30\x95\x2d\xed\xd4\x77\x13\xe0\xac\xd8\x29\x88\x4d\xb4\xcd\x26\x6a\x97\x7d\xe4\x0b\xb4\x16\xb3\x5f\xcb\x09\x68\x59\xa1\xd5\xb7\xb1\xbe\xa3\xea\xd0\xe6\x1f\xf2\x0d\x90\x4a\x0b\xc6\x17\x12\x8d\x8b\xbe\x51\x41\x7a\xce\xd2\x36\xf4\x80\x0a\x3d\x33\xfb\x55\x25\x3b\x80\x1b\x1b\x6d\x2b\x57\xc5\xd3\x81\x65\x3c\x0c\x77\x54\x5d\x25\x6a\xc9\x70\x8d\xc0\x68\x18\x30\xda\xad\x2f\x51\x25\x17\x44\x69\xa7\xfd\x73\x3a\x1a\xd2\x28\xfd\x02\x13\x4e\x7f\xd8\x38\xc6\x65\xf6\xa9\xc3\x04\x76\x06\xfc\xce\x35\x62\x34\xfe\x79\xeb\xb9\xad\xa5\x73\x4a\xce\x0a\xef\x8b\xb7\x2b\x4a\x34\x42\x65\x6f\xfb\xbe\x38\x7c\x17\x71\x80\x47\xfb\x22\x15\xa8\xf8\x89\xde\xf3\xc5\x77\x43\x8c\xd1\xb1\xef\x8c\xd1\x60\x02\x17\x1e\xd4\x1b\x63\xbb\x9e\xdb\x15\x7e\xe8\xc0\xed\xc6\x74\xdc\x4a\x25\x91\x0f\x66\x17\x13\xd2\x01\x33\xc1\x7b\xcb\x19\x91\x7b\x19\xec\xca\xf6\xf6\xfa\xec\xc3\x2c\xdb\x56\xec\x34\x9b\xc1\xbe\x68\x2d\x40\xd7\xdb\xd1\x18\xa2\x67\x04\x08\xff\xfc\x99\xdd\x58\x58\x3f\x7d\x2b\xf6\xa3\x28\x5c\x27\xfd\xfe\xd6\x3a\x1d\xc3\x11\x2d\xfc\x62\x43\x7e\xc5\x82\x3d\x2d\xba\x7e\x9f\x92\x35\x82\x22\xeb\x03\xbd\x3e\xfc\x0c\x60\xc0\x0e\x74\xfa\x6e\x53\x75\x07\xab\x5e\x53\x6d\x05\x74\x9a\xf1\xbd\x73\x28\xa6\x3b\x6f\xc4\x5b\x67\x2f\xdf\xd0\xfb\x5f\xf3\xf2\x93\xd5\xff\xaf\x5d\x63\x3f\xaf\xd3\x64\x1f\xe1\x19\x99\x9d\x65\x17\xd9\x2c\x83\x4f\x37\x57\x9f\xb7\xb5\xf6\x76\x3a\x79\x65\xd7\x1f\x31\xfd\xe8\x1d\xa6\x3d\xf1\x06\x87\xd3\xe7\xb7\x83\x9d\x4d\xa0\xf7\x03\x26\xfc\x2f\x00\x00\xff\xff\xa1\xe7\xf4\x01\x41\x0e\x00\x00" +var _sqlite3TypeGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5d\x6f\xdb\x36\x14\x7d\x96\x7e\xc5\xad\x30\x20\xd6\xe6\x4a\xef\x01\x8c\xa1\x6b\x54\x2c\x58\x9a\x04\xb1\xb3\xf5\x2d\xa6\xcc\xeb\x86\x8b\x44\x3a\x24\xe5\xc6\x10\xf4\xdf\x07\x7e\x48\x95\x3f\x9a\x5a\x49\xf6\x10\x29\x12\x2f\x0f\x8f\xee\xbd\xe7\x90\xae\xeb\xf7\xf0\x8b\xba\x17\x52\xc3\xe9\x04\x46\xf6\x3f\x4e\x4a\x84\xe4\xd2\x5c\x23\x94\x32\x82\x48\xa2\x8a\x20\x52\x8f\x85\xd2\xe6\x91\xe6\x11\x44\x5f\xae\x2e\xc4\xd7\x28\x86\xf7\x4d\x13\x5a\x14\x4d\xf2\x02\x1d\xca\xe2\x1e\x4b\x02\xc9\xd4\xdf\x67\x66\xc4\x5d\x0d\xea\xf7\x39\x6c\x09\xc9\x47\x51\x96\xc8\xb5\x7d\x97\xa6\x50\xd7\xdf\x5f\xf9\x28\x2c\x14\xf6\x87\x2d\xb3\xa6\x01\x89\x2b\x89\x0a\xb9\x56\x40\x40\x8a\x6f\xb0\x94\xa2\x84\x93\xba\x6e\xb9\x34\xcd\x49\xe2\x10\x38\x35\x60\x7a\xb3\xc2\x2d\x04\xa5\x65\xb5\xd0\x50\xdb\x20\x49\xf8\x57\x84\xe4\x13\xc3\x82\x2a\x13\x1e\xf4\x43\xeb\x1a\x24\x5a\x80\x64\x66\xae\x4d\x03\xf3\x7f\x95\xe0\xa7\x91\x63\x5c\x98\xbf\xaa\xe4\x3e\x3e\x9a\x43\xf7\x31\x3b\x43\x7d\x46\x6d\x12\xae\x25\x2b\x89\xdc\xfc\x85\x1b\xf3\x36\x0c\xd2\x14\x9e\x04\x2c\x2d\x95\x30\xb8\xc3\x27\xa6\xb4\x1a\xc3\x1d\xc5\x02\x35\x52\xc8\x85\x28\xc2\xba\x6e\x61\x9a\xd0\x3c\xec\x03\xa5\x29\x64\x76\x2a\x50\xd4\x28\x4b\xc6\x51\x99\x30\x7d\xbf\x9d\x07\x87\x0f\x8c\xdb\x11\x4a\x34\xc9\x89\xc2\x24\x5c\x56\x7c\x01\x23\x93\x50\xd7\x22\x4d\x03\xbf\xf6\xe6\xc5\x1e\x7d\x14\x5b\x42\x50\x87\x81\x44\x5d\x49\x0e\xfd\x29\x89\xa7\x6f\x58\xa6\x29\x9c\xf9\x4f\x58\x49\xb1\x66\xd4\xf0\xe1\x4b\x21\x4b\xa2\x99\xe0\x87\xb8\xdd\x13\x05\x39\x22\x87\xf6\xdb\x6d\x95\x07\xf2\xf4\x8b\xfe\x8c\xa8\x5f\xc2\x33\x3d\xe7\x0a\xa5\x06\x66\x6f\x6a\x8f\x98\x16\x43\x59\x38\xc0\x11\xcd\xe1\xcb\xd5\xd9\x1f\x31\xa0\x94\x42\x1a\x32\x6b\x22\xcd\x83\x7b\xe1\xca\xcf\x96\x40\x0a\x89\x84\x6e\x5c\x75\xc6\x90\x13\x56\x84\x01\x5b\x1e\x4c\xae\x41\x69\xbf\xc9\xa2\xa8\xe4\x12\xbf\x8d\x22\x47\x1e\x96\x84\x15\x48\x4f\xb7\x21\x55\x14\x87\x41\x13\x76\xbd\xe3\x64\xfa\x99\xf0\x8a\x14\xd7\x0f\x60\x25\x90\xa6\xa0\x1e\x0b\x9f\x03\x78\xac\x50\x6e\xc6\xb0\x72\x4d\x06\x0f\xb8\x81\xb2\x52\x1a\x72\x6c\xcb\x49\xc3\x60\x21\xb8\xd2\xe0\xcc\x02\x26\x30\x3f\xbf\x9c\x66\x37\x33\x38\xbf\x9c\x5d\x41\x5f\x9b\x30\x9a\xc3\x6f\x61\x10\xcc\xeb\x1a\x16\xa2\x30\xae\xa3\x7a\xf2\xf3\x83\x31\xfc\xfd\xe1\xe2\x36\x9b\xee\x44\xaf\x49\x71\x28\x78\xee\x92\x27\x2b\xee\xb8\x86\x81\xb5\xa9\x91\x63\x33\x36\xeb\x5b\x51\x6d\x2f\xd6\x65\x33\x0e\x83\xbb\xb1\xad\xc4\x04\x68\x9e\x64\x4f\xb8\x18\x30\x95\x2d\xed\xd4\x77\x13\xe0\xac\xd8\x29\x88\x4d\xb4\xcd\x26\x6a\x97\x7d\xe4\x0b\xb4\x16\xb3\x5f\xcb\x09\x68\x59\xa1\xd5\xb7\xb1\xbe\xa3\xea\xd0\xe6\x1f\xf2\x0d\x90\x4a\x0b\xc6\x17\x12\x8d\x8b\xbe\x51\x41\x7a\xce\xd2\x36\xf4\x80\x0a\x3d\x33\xfb\x55\x25\x3b\x80\x1b\x1b\x6d\x2b\x57\xc5\xd3\x81\x65\x3c\x0c\x77\x54\x5d\x25\x6a\xc9\x70\x8d\xc0\x68\x18\x30\xda\xad\x2f\x51\x25\x17\x44\x69\xa7\xfd\x73\x3a\x1a\xd2\x28\xfd\x02\x13\x4e\x7f\xd8\x38\xc6\x65\xf6\xa9\xc3\x04\x76\x06\xfc\xce\x35\x62\x34\xfe\x79\xeb\xb9\xad\xa5\x73\x4a\xce\x0a\xef\x8b\xb7\x2b\x4a\x34\x42\x65\x6f\xfb\xbe\x38\x7c\x17\x71\x80\x47\xfb\x22\x15\xa8\xf8\x89\xde\xf3\xc5\x77\x43\x8c\xd1\xb1\xef\x8c\xd1\x60\x02\x17\x1e\xd4\x1b\x63\xbb\x9e\xdb\x15\x7e\xe8\xc0\xed\xc6\x74\xdc\x4a\x25\x91\x0f\x66\x17\x13\xd2\x01\x33\xc1\x7b\xcb\x19\x91\x7b\x19\xec\xca\xf6\xf6\xfa\xec\xc3\x2c\xdb\x56\xec\x34\x9b\xc1\xbe\x68\x2d\x40\xd7\xdb\xd1\x18\xa2\x67\x04\x08\xff\xfc\x99\xdd\x58\x58\x3f\x7d\x2b\xf6\xa3\x28\x5c\x27\xfd\xfe\xd6\x3a\x1d\xc3\x11\x2d\xfc\x62\x43\x7e\xc5\x82\x3d\x2d\xba\x7e\x9f\x92\x35\x82\x22\xeb\x03\xbd\x3e\xfc\x0c\x60\xc0\x0e\x74\xfa\x6e\x53\x75\x07\xab\x5e\x53\x6d\x05\x74\x9a\xf1\xbd\x73\x28\xa6\x3b\x6f\xc4\x5b\x67\x2f\xdf\xd0\xfb\x5f\xf3\xf2\x93\xd5\xff\xaf\x5d\x63\x3f\xaf\xd3\x64\x1f\xe1\x19\x99\x9d\x65\x17\xd9\x2c\x83\x4f\x37\x57\x9f\xb7\xb5\xf6\x76\x3a\x79\x65\xd7\x1f\x31\xfd\xe8\x1d\xa6\x3d\xf1\x06\x87\xd3\xe7\xb7\x83\x9d\x4d\xa0\xf7\x03\x26\xfc\x2f\x00\x00\xff\xff\xa1\xe7\xf4\x01\x41\x0e\x00\x00" func sqlite3TypeGoTplBytes() ([]byte, error) { return bindataRead( @@ -678,7 +678,7 @@ func sqlite3TypeGoTpl() (*asset, error) { return a, nil } -var _xo_dbGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x94\xdf\x6f\x9b\x48\x10\xc7\x9f\xcd\x5f\x31\x41\x77\x2a\xa4\x14\x2e\xf7\x18\xc9\x0f\xd7\x6b\x5f\x4e\xf7\xd3\xa9\x4e\x27\x19\x9f\xbc\x86\xc1\x5e\x05\x76\xc9\xce\x82\x63\x59\xfe\xdf\xab\xd9\x05\x17\xd2\xa6\x2f\x89\x59\xe6\x3b\x3f\x3e\xdf\x61\xb3\x0c\xfe\xfb\xeb\xc3\x7b\x90\x04\xf6\x80\x50\xe8\xa6\xd1\x0a\xa4\xb2\x68\x2a\x51\x20\x54\xda\x40\x29\xac\xd8\x09\x42\xd0\x2d\x1a\x61\xa5\x56\x1c\x2c\x2c\x14\x42\xc1\x0e\xa1\x23\x2c\xe1\x28\xed\x21\xc8\x32\xb0\xa7\x16\x09\x2a\xa3\x1b\xa0\xe2\x80\x8d\x80\x37\xe7\xf3\xf8\x33\x7d\xf0\xff\x2f\x97\x37\x69\x90\x65\x1c\xff\xe9\x20\x09\xe8\xa0\xbb\xba\x84\xa3\x36\x8f\x2e\xd1\xb5\x64\x46\x4f\x75\xfa\xe1\x3d\x08\x55\xce\xcf\x3e\x3d\xa7\x01\x97\x1a\xba\xbf\xf6\x7b\x0e\x16\x1f\x9f\xb1\x88\xc8\x1a\xa9\xf6\x09\xa4\x69\x7a\x7d\x79\xbe\xc4\x10\xb1\x78\x85\xd4\xd5\x36\x01\x34\x46\x9b\x38\x58\xfc\xd3\xa1\x39\xbd\x2e\xb9\x75\x1a\x7d\xa4\x17\x8a\x95\x3e\xbe\x2a\x1a\x35\xc1\x25\x08\x1c\xe3\xdf\xf5\x1e\x5a\xa3\x7b\x59\xa2\x47\x5d\xeb\x3d\x54\x9d\x2a\x3c\xbe\xdd\x09\xf6\xa8\x18\x2f\x96\xf0\xd4\xa1\x91\x48\x69\xd0\x0b\x33\x48\x97\x2e\xf6\xd5\x72\x67\xf0\x75\x1e\x0a\xa1\x14\x9a\x7f\x45\xdd\xa1\xf9\xae\xa9\xde\x27\x67\xa3\x6c\xda\x1a\x1b\x54\x16\x76\xda\x1e\x58\xc2\xa9\x66\xb8\x87\xbc\xce\x07\x7a\xaa\xb3\xd2\xc8\x1e\x4d\x3a\xd6\x19\x33\xd3\x60\xca\x8b\x36\xa6\xee\x4c\xb2\x05\x8b\x59\x9a\x01\xd5\x83\x1b\xf1\xa1\x96\x05\xf2\x00\x02\xc8\xfd\xd4\x15\xf8\xe1\xaf\x35\x26\x71\xeb\x8d\x7f\xe7\x12\x3c\x75\xda\xe2\x47\x2a\x44\x8b\x2b\xdc\xe3\xf3\x88\xc1\xb8\x07\xab\xa1\x11\xb6\x38\x00\xba\x88\x12\x8a\x83\x30\xa2\xb0\x68\x08\xa4\xe2\x72\x2e\x93\x67\xff\x55\xaa\xa5\xcf\xd2\xa6\x7f\x74\x64\x7f\xd5\x4d\x2b\x6b\x8c\xb6\xd1\xfa\xff\x3c\xdf\x44\xeb\x3c\xdf\x9c\x7f\xbe\xc4\xb7\x71\x9e\x87\xdb\xf8\x6a\x08\x90\xb0\x92\x2a\x39\x18\x3f\xe5\x39\xf7\x64\x32\x52\x1a\xb8\xdd\x88\x88\xe0\x76\x72\x1c\xbb\x84\x11\x99\x02\x66\xfe\xbb\xbd\x64\xbc\xbb\xae\x4a\x40\x3f\xc2\xfd\x12\xc8\x14\x69\xb4\xde\xec\x4e\x16\xe3\x60\x21\x2b\xb8\xd1\x8f\x1c\xb2\x30\x68\x3b\xa3\xbc\x86\xd2\x3f\xf1\x18\x85\x52\xf5\xa2\x96\xe5\xb4\x83\x30\x0e\x16\x97\x20\x58\x64\x19\x23\x52\x7b\xf4\x34\x06\x6e\xe4\x1a\x2e\xa8\x87\x56\x18\x62\x2f\xc9\x1a\xae\xfa\x12\x59\xba\xc2\xb6\x16\x05\xfe\x52\xd7\x3e\xf9\xb0\xc3\xd1\xae\xab\xe2\x04\xb6\x3f\xdc\x85\xcc\xca\xc9\x97\x57\x8b\x07\x11\xc7\x26\xb0\xcd\xf3\x2d\xff\xdd\x26\xf0\xee\x2e\xf6\x2d\x19\x6c\x74\x8f\xb0\x33\xbc\x75\x13\xf5\xfa\xee\xbe\x46\xc5\xba\xf8\xdd\xdd\xc6\xc7\xee\x84\xac\x41\x56\xa0\x55\x7d\x02\xad\xd0\xc1\x18\xa3\x60\xb9\x84\x9f\x1c\x96\x5b\x22\x58\x4e\x09\x44\xe3\x5a\x9d\x2f\xf1\x17\x6c\x4a\xd6\x57\x30\x6e\x76\x7f\x63\x31\x0a\x83\xa2\x64\x14\x85\x23\x51\x50\xcf\x70\x57\xee\x30\x1a\x27\x9b\x9d\xc4\x3c\x38\x97\x72\x37\x8b\x13\x99\x94\x5f\x47\xde\x31\x3e\xbc\x59\x72\x49\xd7\x61\xd5\xd8\xf4\x6f\x23\x95\xad\xa2\x10\x9f\xa5\x95\x6a\x7f\x73\x0f\x3f\xf6\xb9\x0a\x5d\x82\x78\x66\xae\xef\xf2\xeb\xa9\x5c\x41\xc6\x38\x19\xc8\x7f\x7a\xee\x3b\x7c\xb1\xad\xaf\x7c\xe9\xdf\xd9\xd7\xd9\xba\x3a\x5d\x14\x43\x34\xcd\x33\xde\xa3\x3c\x54\xcf\x53\x37\xe2\xf1\x0b\xed\xc4\x7b\x43\x0c\x87\xab\xc8\x04\x88\x83\x8c\x5b\x42\x22\x87\xa2\x5f\xcb\x0d\x2c\x61\x1b\x6e\xe1\xed\xb7\xb6\x66\xfe\x3c\x6c\xcf\x36\xcf\x87\x25\x4a\x58\xc9\x07\xa1\x7f\x86\xb7\x7c\xc0\xc4\x46\x2a\xe1\x39\x9c\x64\xfe\x4d\x4b\x15\xf5\x09\x84\x49\xc8\xb1\xe1\x25\x4c\x26\xdc\xbe\x75\x59\xcd\xae\xc0\xeb\x9d\x35\xdc\x56\xb3\x97\x41\xf0\x39\x00\x00\xff\xff\x7a\x63\xe4\xe0\x85\x07\x00\x00" +var _xo_dbGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x94\xdf\x6f\x9b\x48\x10\xc7\x9f\xcd\x5f\x31\x41\x77\x2a\xa4\x14\x2e\xf7\x18\xc9\x0f\xd7\x6b\x5f\x4e\xf7\xd3\xa9\x4e\x27\x19\x9f\xbc\x86\xc1\x5e\x05\x76\xc9\xce\x82\x63\x59\xfe\xdf\xab\xd9\x05\x17\xd2\xa6\x2f\x89\x59\xe6\x3b\x3f\x3e\xdf\x61\xb3\x0c\xfe\xfb\xeb\xc3\x7b\x90\x04\xf6\x80\x50\xe8\xa6\xd1\x0a\xa4\xb2\x68\x2a\x51\x20\x54\xda\x40\x29\xac\xd8\x09\x42\xd0\x2d\x1a\x61\xa5\x56\x1c\x2c\x2c\x14\x42\xc1\x0e\xa1\x23\x2c\xe1\x28\xed\x21\xc8\x32\xb0\xa7\x16\x09\x2a\xa3\x1b\xa0\xe2\x80\x8d\x80\x37\xe7\xf3\xf8\x33\x7d\xf0\xff\x2f\x97\x37\x69\x90\x65\x1c\xff\xe9\x20\x09\xe8\xa0\xbb\xba\x84\xa3\x36\x8f\x2e\xd1\xb5\x64\x46\x4f\x75\xfa\xe1\x3d\x08\x55\xce\xcf\x3e\x3d\xa7\x01\x97\x1a\xba\xbf\xf6\x7b\x0e\x16\x1f\x9f\xb1\x88\xc8\x1a\xa9\xf6\x09\xa4\x69\x7a\x7d\x79\xbe\xc4\x10\xb1\x78\x85\xd4\xd5\x36\x01\x34\x46\x9b\x38\x58\xfc\xd3\xa1\x39\xbd\x2e\xb9\x75\x1a\x7d\xa4\x17\x8a\x95\x3e\xbe\x2a\x1a\x35\xc1\x25\x08\x1c\xe3\xdf\xf5\x1e\x5a\xa3\x7b\x59\xa2\x47\x5d\xeb\x3d\x54\x9d\x2a\x3c\xbe\xdd\x09\xf6\xa8\x18\x2f\x96\xf0\xd4\xa1\x91\x48\x69\xd0\x0b\x33\x48\x97\x2e\xf6\xd5\x72\x67\xf0\x75\x1e\x0a\xa1\x14\x9a\x7f\x45\xdd\xa1\xf9\xae\xa9\xde\x27\x67\xa3\x6c\xda\x1a\x1b\x54\x16\x76\xda\x1e\x58\xc2\xa9\x66\xb8\x87\xbc\xce\x07\x7a\xaa\xb3\xd2\xc8\x1e\x4d\x3a\xd6\x19\x33\xd3\x60\xca\x8b\x36\xa6\xee\x4c\xb2\x05\x8b\x59\x9a\x01\xd5\x83\x1b\xf1\xa1\x96\x05\xf2\x00\x02\xc8\xfd\xd4\x15\xf8\xe1\xaf\x35\x26\x71\xeb\x8d\x7f\xe7\x12\x3c\x75\xda\xe2\x47\x2a\x44\x8b\x2b\xdc\xe3\xf3\x88\xc1\xb8\x07\xab\xa1\x11\xb6\x38\x00\xba\x88\x12\x8a\x83\x30\xa2\xb0\x68\x08\xa4\xe2\x72\x2e\x93\x67\xff\x55\xaa\xa5\xcf\xd2\xa6\x7f\x74\x64\x7f\xd5\x4d\x2b\x6b\x8c\xb6\xd1\xfa\xff\x3c\xdf\x44\xeb\x3c\xdf\x9c\x7f\xbe\xc4\xb7\x71\x9e\x87\xdb\xf8\x6a\x08\x90\xb0\x92\x2a\x39\x18\x3f\xe5\x39\xf7\x64\x32\x52\x1a\xb8\xdd\x88\x88\xe0\x76\x72\x1c\xbb\x84\x11\x99\x02\x66\xfe\xbb\xbd\x64\xbc\xbb\xae\x4a\x40\x3f\xc2\xfd\x12\xc8\x14\x69\xb4\xde\xec\x4e\x16\xe3\x60\x21\x2b\xb8\xd1\x8f\x1c\xb2\x30\x68\x3b\xa3\xbc\x86\xd2\x3f\xf1\x18\x85\x52\xf5\xa2\x96\xe5\xb4\x83\x30\x0e\x16\x97\x20\x58\x64\x19\x23\x52\x7b\xf4\x34\x06\x6e\xe4\x1a\x2e\xa8\x87\x56\x18\x62\x2f\xc9\x1a\xae\xfa\x12\x59\xba\xc2\xb6\x16\x05\xfe\x52\xd7\x3e\xf9\xb0\xc3\xd1\xae\xab\xe2\x04\xb6\x3f\xdc\x85\xcc\xca\xc9\x97\x57\x8b\x07\x11\xc7\x26\xb0\xcd\xf3\x2d\xff\xdd\x26\xf0\xee\x2e\xf6\x2d\x19\x6c\x74\x8f\xb0\x33\xbc\x75\x13\xf5\xfa\xee\xbe\x46\xc5\xba\xf8\xdd\xdd\xc6\xc7\xee\x84\xac\x41\x56\xa0\x55\x7d\x02\xad\xd0\xc1\x18\xa3\x60\xb9\x84\x9f\x1c\x96\x5b\x22\x58\x4e\x09\x44\xe3\x5a\x9d\x2f\xf1\x17\x6c\x4a\xd6\x57\x30\x6e\x76\x7f\x63\x31\x0a\x83\xa2\x64\x14\x85\x23\x51\x50\xcf\x70\x57\xee\x30\x1a\x27\x9b\x9d\xc4\x3c\x38\x97\x72\x37\x8b\x13\x99\x94\x5f\x47\xde\x31\x3e\xbc\x59\x72\x49\xd7\x61\xd5\xd8\xf4\x6f\x23\x95\xad\xa2\x10\x9f\xa5\x95\x6a\x7f\x73\x0f\x3f\xf6\xb9\x0a\x5d\x82\x78\x66\xae\xef\xf2\xeb\xa9\x5c\x41\xc6\x38\x19\xc8\x7f\x7a\xee\x3b\x7c\xb1\xad\xaf\x7c\xe9\xdf\xd9\xd7\xd9\xba\x3a\x5d\x14\x43\x34\xcd\x33\xde\xa3\x3c\x54\xcf\x53\x37\xe2\xf1\x0b\xed\xc4\x7b\x43\x0c\x87\xab\xc8\x04\x88\x83\x8c\x5b\x42\x22\x87\xa2\x5f\xcb\x0d\x2c\x61\x1b\x6e\xe1\xed\xb7\xb6\x66\xfe\x3c\x6c\xcf\x36\xcf\x87\x25\x4a\x58\xc9\x07\xa1\x7f\x86\xb7\x7c\xc0\xc4\x46\x2a\xe1\x39\x9c\x64\xfe\x4d\x4b\x15\xf5\x09\x84\x49\xc8\xb1\xe1\x25\x4c\x26\xdc\xbe\x75\x59\xcd\xae\xc0\xeb\x9d\x35\xdc\x56\xb3\x97\x41\xf0\x39\x00\x00\xff\xff\x7a\x63\xe4\xe0\x85\x07\x00\x00" func xo_dbGoTplBytes() ([]byte, error) { return bindataRead( @@ -698,7 +698,7 @@ func xo_dbGoTpl() (*asset, error) { return a, nil } -var _xo_packageGoTpl = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\xcc\xb1\x4e\xc4\x30\x10\x04\xd0\x9a\xfd\x8a\x51\x9a\x83\xc6\xfe\x06\x50\x22\x44\x73\x41\x90\x02\x4a\xe3\xec\xe5\x2c\x88\x1d\x76\x57\x27\x50\x94\x7f\x47\x3e\x74\x0d\xa2\x9a\x37\xbb\xd2\x78\x8f\xc7\x10\xdf\xc3\xc4\x58\x57\xb8\x8b\xb7\x0d\xb1\x64\x0b\x29\x2b\xec\xc8\xb0\xef\x85\x15\x87\x22\xd0\x78\xe4\x39\x60\xb7\xae\x17\xba\xe7\xdf\xdc\xb6\x9d\xa3\xe5\xdf\x31\x22\xef\x71\xdf\xed\xbb\xa7\xdb\xa1\x6b\x71\xf7\x8a\x97\xde\xa1\xed\xb1\xef\x07\x74\xed\xc3\xe0\x88\xd2\xbc\x14\x31\x5c\xd3\x55\x33\x06\x0b\x6f\x41\xd9\xeb\xe7\x47\xf3\xa7\xfb\x51\xd2\x89\xa5\x9e\x39\xc7\x32\xa6\x3c\xf9\xa8\xa7\x73\x17\x29\xa2\x55\x87\xd9\x6a\x08\x4f\xfc\xb5\x54\xa9\x49\xca\xd3\xf9\x67\x69\xe6\x86\x6e\x88\x7e\x02\x00\x00\xff\xff\x90\x2e\x6c\x37\xfb\x00\x00\x00" +var _xo_packageGoTpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x4e\xc4\x30\x10\x04\xd0\x9a\xfd\x8a\x51\x9a\x83\xc6\xfe\x06\x50\x22\x44\x73\x41\x90\x02\x4a\xe3\xec\xe5\x2c\x88\x1d\x76\x57\x27\x50\x94\x7f\x47\x3e\x74\x0d\xa2\x9a\x37\xbb\xd2\x78\x8f\xc7\x10\xdf\xc3\xc4\x58\x57\xb8\x8b\xb7\x0d\xb1\x64\x0b\x29\x2b\xec\xc8\xb0\xef\x85\x15\x87\x22\xd0\x78\xe4\x39\x60\xb7\xae\x17\xba\xe7\xdf\xdc\xb6\x9d\xa3\xe5\xdf\x31\x22\xef\x71\xdf\xed\xbb\xa7\xdb\xa1\x6b\x71\xf7\x8a\x97\xde\xa1\xed\xb1\xef\x07\x74\xed\xc3\xe0\x88\xd2\xbc\x14\x31\x5c\xd3\x55\x33\x06\x0b\x6f\x41\xd9\xeb\xe7\x47\xf3\xa7\xfb\x51\xd2\x89\xa5\x9e\x39\xc7\x32\xa6\x3c\xf9\xa8\xa7\x73\x17\x29\xa2\x55\x87\xd9\x6a\x08\x4f\xfc\xb5\x54\xa9\x49\xca\xd3\xf9\x67\x69\xe6\x86\x6e\x88\x7e\x02\x00\x00\xff\xff\x90\x2e\x6c\x37\xfb\x00\x00\x00" func xo_packageGoTplBytes() ([]byte, error) { return bindataRead( diff --git a/tpl.sh b/tpl.sh index f306ff29..594041ff 100755 --- a/tpl.sh +++ b/tpl.sh @@ -3,7 +3,7 @@ go-bindata \ -pkg templates \ -prefix templates/ \ - -o templates/tpls.go \ + -o templates/templates.go \ -ignore .go$ \ -ignore .swp$ \ -nometadata \