Skip to content

Commit

Permalink
Merge pull request #697 from liquibase/fix_develop_failures
Browse files Browse the repository at this point in the history
Fix develop failures
  • Loading branch information
PavloTytarchuk authored Dec 14, 2023
2 parents fdb84ea + d331577 commit 6a4cb1e
Show file tree
Hide file tree
Showing 7 changed files with 181 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"liquibase.structure.core.Column": [
{
"column": {
"defaultValue": "1\\!\\{liquibase.statement.DatabaseFunction\\}",
"defaultValue": "1\\!\\{java.lang.Integer\\}",
"name": "booleanColumn",
"nullable": true,
"type": {
"typeName": "BOOLEAN"
"typeName": "TINYINT"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"name": "boolean_col",
"nullable": false,
"type": {
"typeName": "BOOLEAN"
"typeName": "TINYINT"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "booleanColumn",
"nullable": true,
"type": {
"typeName": "BIT"
"typeName": "TINYINT"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"name": "boolean_col",
"nullable": false,
"type": {
"typeName": "BIT"
"typeName": "TINYINT"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@
"column": {
"name": "bool",
"type": {
"typeName": "BIT"
"typeName": "TINYINT"
}
}
},
{
"column": {
"name": "boolean",
"type": {
"typeName": "BIT"
"typeName": "TINYINT"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "booleanColumn",
"nullable": true,
"type": {
"typeName": "BIT"
"typeName": "TINYINT"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
{
"snapshot": {
"objects": {
"liquibase.structure.core.Table": [
{
"table": {
"name": "datatypes.numeric_test_table"
}
}
],
"liquibase.structure.core.Column": [
{
"column": {
"name": "bit",
"type": {
"typeName": "BIT"
}
}
},
{
"column": {
"name": "bit1",
"type": {
"columnSize": "1\\!\\{java.lang.Integer\\}",
"typeName": "BIT"
}
}
},
{
"column": {
"name": "bit64",
"type": {
"columnSize": "64\\!\\{java.lang.Integer\\}",
"typeName": "BIT"
}
}
},
{
"column": {
"name": "tinyint",
"type": {
"typeName": "TINYINT"
}
}
},
{
"column": {
"name": "tinyint.unsigned",
"type": {
"typeName": "TINYINT UNSIGNED"
}
}
},
{
"column": {
"name": "bool",
"type": {
"typeName": "TINYINT"
}
}
},
{
"column": {
"name": "boolean",
"type": {
"typeName": "TINYINT"
}
}
},
{
"column": {
"name": "smallint",
"type": {
"typeName": "SMALLINT"
}
}
},
{
"column": {
"name": "smallint.unsigned",
"type": {
"typeName": "SMALLINT UNSIGNED"
}
}
},
{
"column": {
"name": "mediumint",
"type": {
"typeName": "MEDIUMINT"
}
}
},
{
"column": {
"name": "mediumint.unsigned",
"type": {
"typeName": "MEDIUMINT UNSIGNED"
}
}
},
{
"column": {
"name": "int",
"type": {
"typeName": "INT"
}
}
},
{
"column": {
"name": "int.unsigned",
"type": {
"typeName": "INT UNSIGNED"
}
}
},
{
"column": {
"name": "bigint",
"type": {
"typeName": "BIGINT"
}
}
},
{
"column": {
"name": "bigint.unsigned",
"type": {
"typeName": "BIGINT UNSIGNED"
}
}
},
{
"column": {
"name": "decimal",
"type": {
"typeName": "DECIMAL"
}
}
},
{
"column": {
"name": "decimal.max",
"type": {
"columnSize": "65\\!\\{java.lang.Integer\\}",
"decimalDigits": "30\\!\\{java.lang.Integer\\}",
"typeName": "DECIMAL"
}
}
},
{
"column": {
"name": "float",
"type": {
"typeName": "FLOAT"
}
}
},
{
"column": {
"name": "float.10.10",
"type": {
"columnSize": "10\\!\\{java.lang.Integer\\}",
"decimalDigits": "10\\!\\{java.lang.Integer\\}",
"typeName": "FLOAT"
}
}
}
]
}
}
}

0 comments on commit 6a4cb1e

Please sign in to comment.