diff options
Diffstat (limited to 'src/pl/tcl/modules/pltcl_loadmod.in')
-rw-r--r-- | src/pl/tcl/modules/pltcl_loadmod.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/tcl/modules/pltcl_loadmod.in b/src/pl/tcl/modules/pltcl_loadmod.in index c26e2a229e3..645c6bbd9cf 100644 --- a/src/pl/tcl/modules/pltcl_loadmod.in +++ b/src/pl/tcl/modules/pltcl_loadmod.in @@ -84,7 +84,7 @@ proc __PLTcl_loadmod_check_table {conn tabname expnames exptypes} { set found 0 pg_select $conn "select C.relname, A.attname, A.attnum, T.typname \ - from pg_catalog.pg_class C, pg_catalog.pg_attribute A, pg_catalog.pg_type T \ + from pg_catalog.pg_class C, pg_catalog.pg_attribute A, pg_catalog.pg_type T \ where C.relname = '$tabname' \ and A.attrelid = C.oid \ and A.attnum > 0 \ @@ -449,7 +449,7 @@ proc __PLTcl_loadmod_load_modules {conn} { set srctext [string range $srctext 4000 end] pg_result [ \ - pg_exec $conn "insert into pltcl_modules values ( \ + pg_exec $conn "insert into pltcl_modules values ( \ '$xname', $i, '$xpart')" \ ] -clear incr i |