Skip to content

Commit 9c92e34

Browse files
feldera-botmihaibudiu
authored andcommitted
[ci] apply automatic fixes
Signed-off-by: feldera-bot <feldera-bot@feldera.com>
1 parent 173e096 commit 9c92e34

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

crates/feldera-types/src/program_schema.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,8 +952,14 @@ impl ColumnType {
952952
pub fn is_integral_type(&self) -> bool {
953953
matches!(
954954
&self.typ,
955-
SqlType::TinyInt | SqlType::SmallInt | SqlType::Int | SqlType::BigInt |
956-
SqlType::UTinyInt | SqlType::USmallInt | SqlType::UInt | SqlType::UBigInt
955+
SqlType::TinyInt
956+
| SqlType::SmallInt
957+
| SqlType::Int
958+
| SqlType::BigInt
959+
| SqlType::UTinyInt
960+
| SqlType::USmallInt
961+
| SqlType::UInt
962+
| SqlType::UBigInt
957963
)
958964
}
959965

openapi.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7074,6 +7074,34 @@
70747074
"BigInt"
70757075
]
70767076
},
7077+
{
7078+
"type": "string",
7079+
"description": "SQL `TINYINT UNSIGNED` type.",
7080+
"enum": [
7081+
"UTinyInt"
7082+
]
7083+
},
7084+
{
7085+
"type": "string",
7086+
"description": "SQL `SMALLINT UNSIGNED` type.",
7087+
"enum": [
7088+
"USmallInt"
7089+
]
7090+
},
7091+
{
7092+
"type": "string",
7093+
"description": "SQL `UNSIGNED`, `INTEGER UNSIGNED`, `INT UNSIGNED` type.",
7094+
"enum": [
7095+
"UInt"
7096+
]
7097+
},
7098+
{
7099+
"type": "string",
7100+
"description": "SQL `BIGINT UNSIGNED` type.",
7101+
"enum": [
7102+
"UBigInt"
7103+
]
7104+
},
70777105
{
70787106
"type": "string",
70797107
"description": "SQL `REAL` or `FLOAT4` or `FLOAT32` type.",

0 commit comments

Comments
 (0)