Support for quoted identifiers.
This commit is contained in:
parent
7fc99ac997
commit
d9ffa86453
27 changed files with 268671 additions and 318 deletions
|
|
@ -38,7 +38,8 @@ func getTableInfos(db *sql.DB, dbName, schemaName string) ([]metadata.MetaData,
|
|||
query := `
|
||||
SELECT table_name
|
||||
FROM information_schema.tables
|
||||
where table_catalog = $1 and table_schema = $2 and table_type = 'BASE TABLE';`
|
||||
where table_catalog = $1 and table_schema = $2 and table_type = 'BASE TABLE';
|
||||
`
|
||||
|
||||
rows, err := db.Query(query, dbName, schemaName)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue