Skip to content

Commit

Permalink
consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
drothery-edb authored Jun 27, 2022
1 parent d402071 commit 71c4498
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ ALTER TABLE DEPT ADD CONSTRAINT DEPT_DNAME_UQ UNIQUE (DNAME);

When you then migrate this table and create it in EDB Postgres Advanced Server, all unquoted object names are converted to lowercase letters, so the table appears in EDB Postgres Advanced Server as follows:

```text
```sql
Table "edb.dept"
Column | Type | Modifiers
--------+-----------------------+-----------
Expand Down Expand Up @@ -658,7 +658,6 @@ Applications can then access the object using quoted uppercase names.

```sql
useoracase=# SELECT * FROM "DEPT";
__OUTPUT__
DEPTNO | DNAME | LOC
--------+------------+----------
10 | ACCOUNTING | NEW YORK
Expand Down

0 comments on commit 71c4498

Please sign in to comment.