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
{{ message }}
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
CREATE TABLE configuration (id NUMBER NOT NULL);
CREATE TABLESPACE my_table_space DATAFILE 'my_tablespace_file.dbf' SIZE 50M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL AUTOALLOCATE;
After:
CREATE TABLE configuration (id NUMBER NOT NULL);
CREATE TABLESPACE my_table_space DATAFILE 'my_tablespace_file.dbf' SIZE 50M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED EXTENT
MANAGEMENT LOCAL AUTOALLOCATE;
Expected:
CREATE TABLE configuration (
id NUMBER NOT NULL
);
CREATE TABLESPACE my_table_space
DATAFILE 'my_tablespace_file.dbf' SIZE 50M
AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED
EXTENT MANAGEMENT LOCAL AUTOALLOCATE;
I get the same results when using the standalone formatter.
If I use the default arbori that ships with SQLDeveloper, it formats properly (matches Expected above). This works both inside SQLDeveloper and with the standalone formatter.
Using trivadis_custom_format.arbori inside Oracle SQLDeveloper (Version 21.4.3.063 Build 063.0100)
Before:
After:
Expected:
I get the same results when using the standalone formatter.
If I use the default arbori that ships with SQLDeveloper, it formats properly (matches Expected above). This works both inside SQLDeveloper and with the standalone formatter.