[patch_done] BUG PostgreSQL SchemaName with Solution

Code patches written by our users to solve certain "problems" that were not solved, yet.

Moderators: gto, cipto_kh, EgonHugeist, mdaems

Post Reply
joaopagotto
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 15.06.2011, 17:27
Contact:

[patch_done] BUG PostgreSQL SchemaName with Solution

Post by joaopagotto »

A bug was found on the consultation of the postgres schemas that I could see the visible table schema, there were two identical table in different schemas

Even after setting:
- SET TO search_path public;
the problem remained.

Example:
(Schema, table) historic.test
(Schema, table) public.test

In a regular SQL.
- Select * from test
the component associated to the table and not in historic.test public.teste that this case is correct.

############################
SOLUTION TO THE PROBLEM
Zeos 6.1.5 version:
############################

FileName: ZDbcPostgreSqlMetadata.pas

Function:
TZPostgreSQLDatabaseMetadata.GetColumns function (Catalog: string;
SchemaPattern: string; TableNamePattern: string;
ColumnNamePattern: string): IZResultSet;

.....

SQL: = SQL + 'AND n.nspname LIKE''' + EscapeQuotes (SchemaPattern) +'''';

----------------------------
Replace with:
----------------------------

if SchemaPattern <>''then begin
SQL: = SQL + 'AND n.nspname LIKE''' + EscapeQuotes (SchemaPattern) +'''';
end else begin
SQL: = SQL + 'AND pg_table_is_visible (c.oid)';
end;

############################
SOLUTION TO THE PROBLEM
Zeos 7.0.0 version:
############################

FileName: ZDbcPostgreSqlMetadata.pas

Function:
TZPostgreSQLDatabaseMetadata.UncachedGetColumns function (const Catalog: string;
const SchemaPattern: string; const TableNamePattern: string;
const ColumnNamePattern: string): IZResultSet;

......

if SchemaPattern <>''then
begin
SQL: = SQL + 'AND n.nspname LIKE'
+ EscapeString (SchemaPattern);
end;

----------------------------
Replace with:
----------------------------

if SchemaPattern <>''then begin
SQL: = SQL + 'AND n.nspname LIKE''' + EscapeString (SchemaPattern) +'''';
end else begin
SQL: = SQL + 'AND pg_table_is_visible (c.oid)';
end;

Please fix this for future versions.
Force ZeosLib the project:)

[']s
User avatar
mdaems
Zeos Project Manager
Zeos Project Manager
Posts: 2766
Joined: 20.09.2005, 15:28
Location: Brussels, Belgium
Contact:

Post by mdaems »

Patch applied by seawolf on 11/8/2011, SVN rev. 906.

Mark
Image
Post Reply