Skip to content

Commit

Permalink
Add oid column for pg_description, pg_attribute, pg_type, pg_attrdef …
Browse files Browse the repository at this point in the history
…table of OpenGauss (#34073)

* Add oid column for pg_description, pg_attribute, pg_type, pg_attrdef table of OpenGauss

* Change default version from 12.3 to 9.2.4 of openGauss
  • Loading branch information
jiangML authored Dec 16, 2024
1 parent 2108a52 commit af7316a
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class OpenGaussProtocolDefaultVersionProvider implements DatabasePr

@Override
public String provide() {
return "12.3";
return "9.2.4";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@

name: pg_attrdef
columns:
oid:
caseSensitive: true
dataType: -5
generated: false
name: oid
primaryKey: false
unsigned: false
visible: true
adrelid:
caseSensitive: true
dataType: -5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@

name: pg_attribute
columns:
oid:
caseSensitive: true
dataType: -5
generated: false
name: oid
primaryKey: false
unsigned: false
visible: true
attrelid:
caseSensitive: true
dataType: -5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@

name: pg_description
columns:
oid:
caseSensitive: true
dataType: -5
generated: false
name: oid
primaryKey: false
unsigned: false
visible: true
objoid:
caseSensitive: true
dataType: -5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@

name: pg_type
columns:
oid:
caseSensitive: true
dataType: -5
generated: false
name: oid
primaryKey: false
unsigned: false
visible: true
typname:
caseSensitive: true
dataType: 12
Expand Down

0 comments on commit af7316a

Please sign in to comment.