Skip to content
This repository was archived by the owner on May 2, 2023. It is now read-only.

Added missing DATE type to Oracle #28

Merged
merged 1 commit into from
Apr 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sqeleton/databases/oracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class Dialect(BaseDialect, Mixin_Schema, Mixin_OptimizerHints):
"NCHAR": Text,
"NVARCHAR2": Text,
"VARCHAR2": Text,
"DATE": Timestamp,
}
ROUNDS_ON_PREC_LOSS = True
PLACEHOLDER_TABLE = "DUAL"
Expand Down