-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add property flags * Update post initial design review * Add more tests * Fix tests * Remove .LCK * Fix
- Loading branch information
Showing
22 changed files
with
195 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
distribution/lib/Standard/Database/0.0.0-dev/src/.LCKFeature.enso~
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
distribution/lib/Standard/Database/0.0.0-dev/src/Dialect_Flag.enso
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from Standard.Base import all | ||
|
||
## PRIVATE | ||
type Dialect_Flag | ||
## PRIVATE | ||
Supports_Negative_Decimal_Places | ||
## PRIVATE | ||
Supports_Float_Decimal_Places | ||
## PRIVATE | ||
Use_Builtin_Bankers | ||
## PRIVATE | ||
Primary_Key_Allows_Nulls | ||
## PRIVATE | ||
Specifies if the Database distinguishes a separate `NaN` value for | ||
floating point columns. Some databases will not be able to distinguish | ||
NaN from NULL. | ||
Supports_Separate_NaN | ||
## PRIVATE | ||
Specifies if the Database backend supports WITH clauses in nested queries. | ||
Supports_Nested_With_Clause | ||
## PRIVATE | ||
Specifies if the backend supports case-sensitive column names. If `False`, the backend will | ||
match column names in a case insensitive way, so that "Foo" and "foo" will refer to the | ||
same column. | ||
Supports_Case_Sensitive_Columns |
22 changes: 0 additions & 22 deletions
22
distribution/lib/Standard/Database/0.0.0-dev/src/Dialect_Flags.enso
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.