mirror of
https://github.com/postgres/postgres.git
synced 2025-06-17 17:02:08 +03:00
Indent jdbc case labels using pgjindent.
This commit is contained in:
@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException;
|
||||
/*
|
||||
* This class provides information about the database as a whole.
|
||||
*
|
||||
* $Id: DatabaseMetaData.java,v 1.39 2001/11/19 22:33:38 momjian Exp $
|
||||
* $Id: DatabaseMetaData.java,v 1.40 2001/11/19 23:16:45 momjian Exp $
|
||||
*
|
||||
* <p>Many of the methods here return lists of information in ResultSets. You
|
||||
* can use the normal ResultSet methods such as getString and getInt to
|
||||
@ -1731,20 +1731,20 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
String relKind;
|
||||
switch (r.getBytes(3)[0])
|
||||
{
|
||||
case (byte) 'r':
|
||||
relKind = "TABLE";
|
||||
break;
|
||||
case (byte) 'i':
|
||||
relKind = "INDEX";
|
||||
break;
|
||||
case (byte) 'S':
|
||||
relKind = "SEQUENCE";
|
||||
break;
|
||||
case (byte) 'v':
|
||||
relKind = "VIEW";
|
||||
break;
|
||||
default:
|
||||
relKind = null;
|
||||
case (byte) 'r':
|
||||
relKind = "TABLE";
|
||||
break;
|
||||
case (byte) 'i':
|
||||
relKind = "INDEX";
|
||||
break;
|
||||
case (byte) 'S':
|
||||
relKind = "SEQUENCE";
|
||||
break;
|
||||
case (byte) 'v':
|
||||
relKind = "VIEW";
|
||||
break;
|
||||
default:
|
||||
relKind = null;
|
||||
}
|
||||
|
||||
tuple[0] = null; // Catalog name
|
||||
@ -2012,17 +2012,17 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
|
||||
tuple[7] = null; // Buffer length
|
||||
// Decimal digits = scale
|
||||
// From the source (see e.g. backend/utils/adt/numeric.c,
|
||||
// From the source (see e.g. backend/utils/adt/numeric.c,
|
||||
// function numeric()) the scale and precision can be calculated
|
||||
// from the typmod value.
|
||||
if (typname.equals("numeric") || typname.equals("decimal"))
|
||||
{
|
||||
int attypmod = r.getInt(8);
|
||||
tuple[8] =
|
||||
Integer.toString((attypmod - VARHDRSZ) & 0xffff).getBytes();
|
||||
if (typname.equals("numeric") || typname.equals("decimal"))
|
||||
{
|
||||
int attypmod = r.getInt(8);
|
||||
tuple[8] =
|
||||
Integer.toString((attypmod - VARHDRSZ) & 0xffff).getBytes();
|
||||
}
|
||||
else
|
||||
tuple[8] = "0".getBytes();
|
||||
tuple[8] = "0".getBytes();
|
||||
|
||||
tuple[9] = "10".getBytes(); // Num Prec Radix - assume decimal
|
||||
tuple[10] = Integer.toString(nullFlag.equals("f") ?
|
||||
@ -2262,7 +2262,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
"a.attnum as KEY_SEQ," +
|
||||
"ic.relname as PK_NAME " +
|
||||
" FROM pg_class bc, pg_class ic, pg_index i, pg_attribute a" +
|
||||
" WHERE bc.relkind = 'r' " + // -- not indices
|
||||
" WHERE bc.relkind = 'r' " + // -- not indices
|
||||
" and upper(bc.relname) = upper('" + table + "')" +
|
||||
" and i.indrelid = bc.oid" +
|
||||
" and i.indexrelid = ic.oid" +
|
||||
@ -2274,115 +2274,135 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
|
||||
private java.sql.ResultSet getImportedExportedKeys(String catalog, String schema, String primaryTable, String foreignTable) throws SQLException
|
||||
{
|
||||
Field f[]=new Field[14];
|
||||
Field f[] = new Field[14];
|
||||
|
||||
f[0]=new Field(connection, "PKTABLE_CAT", iVarcharOid, 32);
|
||||
f[1]=new Field(connection, "PKTABLE_SCHEM", iVarcharOid, 32);
|
||||
f[2]=new Field(connection, "PKTABLE_NAME", iVarcharOid, 32);
|
||||
f[3]=new Field(connection, "PKCOLUMN_NAME", iVarcharOid, 32);
|
||||
f[4]=new Field(connection, "FKTABLE_CAT", iVarcharOid, 32);
|
||||
f[5]=new Field(connection, "FKTABLE_SCHEM", iVarcharOid, 32);
|
||||
f[6]=new Field(connection, "FKTABLE_NAME", iVarcharOid, 32);
|
||||
f[7]=new Field(connection, "FKCOLUMN_NAME", iVarcharOid, 32);
|
||||
f[8]=new Field(connection, "KEY_SEQ", iInt2Oid, 2);
|
||||
f[9]=new Field(connection, "UPDATE_RULE", iInt2Oid, 2);
|
||||
f[10]=new Field(connection, "DELETE_RULE", iInt2Oid, 2);
|
||||
f[11]=new Field(connection, "FK_NAME", iVarcharOid, 32);
|
||||
f[12]=new Field(connection, "PK_NAME", iVarcharOid, 32);
|
||||
f[13]=new Field(connection, "DEFERRABILITY", iInt2Oid, 2);
|
||||
f[0] = new Field(connection, "PKTABLE_CAT", iVarcharOid, 32);
|
||||
f[1] = new Field(connection, "PKTABLE_SCHEM", iVarcharOid, 32);
|
||||
f[2] = new Field(connection, "PKTABLE_NAME", iVarcharOid, 32);
|
||||
f[3] = new Field(connection, "PKCOLUMN_NAME", iVarcharOid, 32);
|
||||
f[4] = new Field(connection, "FKTABLE_CAT", iVarcharOid, 32);
|
||||
f[5] = new Field(connection, "FKTABLE_SCHEM", iVarcharOid, 32);
|
||||
f[6] = new Field(connection, "FKTABLE_NAME", iVarcharOid, 32);
|
||||
f[7] = new Field(connection, "FKCOLUMN_NAME", iVarcharOid, 32);
|
||||
f[8] = new Field(connection, "KEY_SEQ", iInt2Oid, 2);
|
||||
f[9] = new Field(connection, "UPDATE_RULE", iInt2Oid, 2);
|
||||
f[10] = new Field(connection, "DELETE_RULE", iInt2Oid, 2);
|
||||
f[11] = new Field(connection, "FK_NAME", iVarcharOid, 32);
|
||||
f[12] = new Field(connection, "PK_NAME", iVarcharOid, 32);
|
||||
f[13] = new Field(connection, "DEFERRABILITY", iInt2Oid, 2);
|
||||
|
||||
java.sql.ResultSet rs = connection.ExecSQL("SELECT c.relname,c2.relname,"
|
||||
+ "t.tgconstrname,ic.relname,"
|
||||
+ "t.tgdeferrable,t.tginitdeferred,"
|
||||
+ "t.tgnargs,t.tgargs,p.proname "
|
||||
+ "FROM pg_trigger t,pg_class c,pg_class c2,"
|
||||
+ "pg_class ic,pg_proc p, pg_index i "
|
||||
+ "WHERE t.tgrelid=c.oid AND t.tgconstrrelid=c2.oid "
|
||||
+ "AND t.tgfoid=p.oid AND tgisconstraint "
|
||||
+ ((primaryTable!=null) ? "AND c2.relname='"+primaryTable+"' " : "")
|
||||
+ ((foreignTable!=null) ? "AND c.relname='"+foreignTable+"' " : "")
|
||||
+ "AND i.indrelid=c.oid "
|
||||
+ "AND i.indexrelid=ic.oid AND i.indisprimary "
|
||||
+ "ORDER BY c.relname,c2.relname"
|
||||
);
|
||||
+ "t.tgconstrname,ic.relname,"
|
||||
+ "t.tgdeferrable,t.tginitdeferred,"
|
||||
+ "t.tgnargs,t.tgargs,p.proname "
|
||||
+ "FROM pg_trigger t,pg_class c,pg_class c2,"
|
||||
+ "pg_class ic,pg_proc p, pg_index i "
|
||||
+ "WHERE t.tgrelid=c.oid AND t.tgconstrrelid=c2.oid "
|
||||
+ "AND t.tgfoid=p.oid AND tgisconstraint "
|
||||
+ ((primaryTable != null) ? "AND c2.relname='" + primaryTable + "' " : "")
|
||||
+ ((foreignTable != null) ? "AND c.relname='" + foreignTable + "' " : "")
|
||||
+ "AND i.indrelid=c.oid "
|
||||
+ "AND i.indexrelid=ic.oid AND i.indisprimary "
|
||||
+ "ORDER BY c.relname,c2.relname"
|
||||
);
|
||||
Vector tuples = new Vector();
|
||||
short seq=0;
|
||||
if (rs.next()) {
|
||||
boolean hasMore;
|
||||
do {
|
||||
byte tuple[][]=new byte[14][0];
|
||||
for (int k = 0;k < 14;k++)
|
||||
tuple[k] = null;
|
||||
short seq = 0;
|
||||
if (rs.next())
|
||||
{
|
||||
boolean hasMore;
|
||||
do
|
||||
{
|
||||
byte tuple[][] = new byte[14][0];
|
||||
for (int k = 0;k < 14;k++)
|
||||
tuple[k] = null;
|
||||
|
||||
String fKeyName=rs.getString(3);
|
||||
boolean foundRule=false;
|
||||
do {
|
||||
String proname=rs.getString(9);
|
||||
if (proname!=null && proname.startsWith("RI_FKey_")) {
|
||||
int col=-1;
|
||||
if (proname.endsWith("_upd")) col=9; // UPDATE_RULE
|
||||
else if (proname.endsWith("_del")) col=10; // DELETE_RULE
|
||||
if (col>-1) {
|
||||
String rule=proname.substring(8, proname.length()-4);
|
||||
int action=importedKeyNoAction;
|
||||
if ("cascade".equals(rule)) action=importedKeyCascade;
|
||||
else if ("setnull".equals(rule)) action=importedKeySetNull;
|
||||
else if ("setdefault".equals(rule)) action=importedKeySetDefault;
|
||||
tuple[col]=Integer.toString(action).getBytes();
|
||||
foundRule=true;
|
||||
String fKeyName = rs.getString(3);
|
||||
boolean foundRule = false;
|
||||
do
|
||||
{
|
||||
String proname = rs.getString(9);
|
||||
if (proname != null && proname.startsWith("RI_FKey_"))
|
||||
{
|
||||
int col = -1;
|
||||
if (proname.endsWith("_upd"))
|
||||
col = 9; // UPDATE_RULE
|
||||
else if (proname.endsWith("_del"))
|
||||
col = 10; // DELETE_RULE
|
||||
if (col > -1)
|
||||
{
|
||||
String rule = proname.substring(8, proname.length() - 4);
|
||||
int action = importedKeyNoAction;
|
||||
if ("cascade".equals(rule))
|
||||
action = importedKeyCascade;
|
||||
else if ("setnull".equals(rule))
|
||||
action = importedKeySetNull;
|
||||
else if ("setdefault".equals(rule))
|
||||
action = importedKeySetDefault;
|
||||
tuple[col] = Integer.toString(action).getBytes();
|
||||
foundRule = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
} while ((hasMore=rs.next()) && fKeyName.equals(rs.getString(3)));
|
||||
while ((hasMore = rs.next()) && fKeyName.equals(rs.getString(3)));
|
||||
|
||||
if (foundRule) {
|
||||
tuple[2]=rs.getBytes(2); //PKTABLE_NAME
|
||||
tuple[6]=rs.getBytes(1); //FKTABLE_NAME
|
||||
if (foundRule)
|
||||
{
|
||||
tuple[2] = rs.getBytes(2); //PKTABLE_NAME
|
||||
tuple[6] = rs.getBytes(1); //FKTABLE_NAME
|
||||
|
||||
// Parse the tgargs data
|
||||
StringBuffer fkeyColumns=new StringBuffer();
|
||||
StringBuffer pkeyColumns=new StringBuffer();
|
||||
int numColumns=(rs.getInt(7) >> 1) - 2;
|
||||
String s=rs.getString(8);
|
||||
int pos=s.lastIndexOf("\\000");
|
||||
for(int c=0;c<numColumns;c++) {
|
||||
if (pos>-1) {
|
||||
int pos2=s.lastIndexOf("\\000", pos-1);
|
||||
if (pos2>-1) {
|
||||
if (fkeyColumns.length()>0) fkeyColumns.insert(0, ',');
|
||||
fkeyColumns.insert(0, s.substring(pos2+4, pos)); //FKCOLUMN_NAME
|
||||
pos=s.lastIndexOf("\\000", pos2-1);
|
||||
if (pos>-1) {
|
||||
if (pkeyColumns.length()>0) pkeyColumns.insert(0, ',');
|
||||
pkeyColumns.insert(0, s.substring(pos+4, pos2)); //PKCOLUMN_NAME
|
||||
// Parse the tgargs data
|
||||
StringBuffer fkeyColumns = new StringBuffer();
|
||||
StringBuffer pkeyColumns = new StringBuffer();
|
||||
int numColumns = (rs.getInt(7) >> 1) - 2;
|
||||
String s = rs.getString(8);
|
||||
int pos = s.lastIndexOf("\\000");
|
||||
for (int c = 0;c < numColumns;c++)
|
||||
{
|
||||
if (pos > -1)
|
||||
{
|
||||
int pos2 = s.lastIndexOf("\\000", pos - 1);
|
||||
if (pos2 > -1)
|
||||
{
|
||||
if (fkeyColumns.length() > 0)
|
||||
fkeyColumns.insert(0, ',');
|
||||
fkeyColumns.insert(0, s.substring(pos2 + 4, pos)); //FKCOLUMN_NAME
|
||||
pos = s.lastIndexOf("\\000", pos2 - 1);
|
||||
if (pos > -1)
|
||||
{
|
||||
if (pkeyColumns.length() > 0)
|
||||
pkeyColumns.insert(0, ',');
|
||||
pkeyColumns.insert(0, s.substring(pos + 4, pos2)); //PKCOLUMN_NAME
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
tuple[7] = fkeyColumns.toString().getBytes(); //FKCOLUMN_NAME
|
||||
tuple[3] = pkeyColumns.toString().getBytes(); //PKCOLUMN_NAME
|
||||
|
||||
tuple[8] = Integer.toString(seq++).getBytes(); //KEY_SEQ
|
||||
tuple[11] = fKeyName.getBytes(); //FK_NAME
|
||||
tuple[12] = rs.getBytes(4); //PK_NAME
|
||||
|
||||
// DEFERRABILITY
|
||||
int deferrability = importedKeyNotDeferrable;
|
||||
boolean deferrable = rs.getBoolean(5);
|
||||
boolean initiallyDeferred = rs.getBoolean(6);
|
||||
if (deferrable)
|
||||
{
|
||||
if (initiallyDeferred)
|
||||
deferrability = importedKeyInitiallyDeferred;
|
||||
else
|
||||
deferrability = importedKeyInitiallyImmediate;
|
||||
}
|
||||
tuple[13] = Integer.toString(deferrability).getBytes();
|
||||
|
||||
tuples.addElement(tuple);
|
||||
}
|
||||
}
|
||||
tuple[7]=fkeyColumns.toString().getBytes(); //FKCOLUMN_NAME
|
||||
tuple[3]=pkeyColumns.toString().getBytes(); //PKCOLUMN_NAME
|
||||
while (hasMore);
|
||||
}
|
||||
|
||||
tuple[8]=Integer.toString(seq++).getBytes(); //KEY_SEQ
|
||||
tuple[11]=fKeyName.getBytes(); //FK_NAME
|
||||
tuple[12]=rs.getBytes(4); //PK_NAME
|
||||
|
||||
// DEFERRABILITY
|
||||
int deferrability=importedKeyNotDeferrable;
|
||||
boolean deferrable=rs.getBoolean(5);
|
||||
boolean initiallyDeferred=rs.getBoolean(6);
|
||||
if (deferrable) {
|
||||
if (initiallyDeferred)
|
||||
deferrability=importedKeyInitiallyDeferred;
|
||||
else
|
||||
deferrability=importedKeyInitiallyImmediate;
|
||||
}
|
||||
tuple[13]=Integer.toString(deferrability).getBytes();
|
||||
|
||||
tuples.addElement(tuple);
|
||||
}
|
||||
} while (hasMore);
|
||||
}
|
||||
|
||||
return new ResultSet(connection, f, tuples, "OK", 1);
|
||||
return new ResultSet(connection, f, tuples, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -2496,7 +2516,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
*/
|
||||
public java.sql.ResultSet getExportedKeys(String catalog, String schema, String table) throws SQLException
|
||||
{
|
||||
return getImportedExportedKeys(catalog, schema, table, null);
|
||||
return getImportedExportedKeys(catalog, schema, table, null);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -2557,7 +2577,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
*/
|
||||
public java.sql.ResultSet getCrossReference(String primaryCatalog, String primarySchema, String primaryTable, String foreignCatalog, String foreignSchema, String foreignTable) throws SQLException
|
||||
{
|
||||
return getImportedExportedKeys(primaryCatalog, primarySchema, primaryTable, foreignTable);
|
||||
return getImportedExportedKeys(primaryCatalog, primarySchema, primaryTable, foreignTable);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user