You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vendor/adodb/adodb-php/drivers/adodb-pdo_pgsql.inc.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ class ADODB_pdo_pgsql extends ADODB_pdo {
60
60
var $_genIDSQL = "SELECT NEXTVAL('%s')";
61
61
var $_genSeqSQL = "CREATE SEQUENCE %s START %s";
62
62
var $_dropSeqSQL = "DROP SEQUENCE %s";
63
-
var $metaDefaultsSQL = "SELECT d.adnum as num, d.adsrc as def from pg_attrdef d, pg_class c where d.adrelid=c.oid and c.relname='%s' order by d.adnum";
63
+
var $metaDefaultsSQL = "SELECT d.adnum as num, pg_get_expr(d.adbin, d.adrelid) as def from pg_attrdef d, pg_class c where d.adrelid=c.oid and c.relname='%s' order by d.adnum";
0 commit comments