]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Add tests for Oracle tablespace specification in table definitions
authorMiguel Grillo <miguel_grillo_orellana@hotmail.com>
Mon, 21 Oct 2024 23:02:56 +0000 (01:02 +0200)
committerMiguel Grillo <miguel_grillo_orellana@hotmail.com>
Mon, 21 Oct 2024 23:02:56 +0000 (01:02 +0200)
commit641f9cd46af4dc4364c1f4b150e808cdab3002e2
treeb354d73f76f84c1f06e0883f1b44cdd7f98edcc3
parentc2ab89afa01da639006e3875ff8357ebb4659346
Add tests for Oracle tablespace specification in table definitions

This commit adds new tests to verify the correct handling of tablespace names in Oracle table definitions. The tests ensure that tablespace names are recognized correctly regardless of their case (uppercase, lowercase, mixed case).

Tests added:
- : Verifies that tablespace names are correctly included in the CREATE TABLE statement for different cases:
  - Uppercase tablespace name
  - Lowercase tablespace name
  - Mixed case tablespace name

These tests ensure that the  argument is handled correctly and that the generated SQL statements include the specified tablespace names as expected.
test/dialect/oracle/test_compiler.py