Skip to content

Commit

Permalink
ignored new version of advanced test for now
Browse files Browse the repository at this point in the history
  • Loading branch information
KushnirykOleh committed Sep 10, 2024
1 parent d362423 commit 1eb3b62
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
liquibase-support-level: [Foundational, Contributed, Advanced] # Define the different test levels to run
liquibase-support-level: [Foundational, Contributed] # Define the different test levels to run
fail-fast: false # Set fail-fast to false to run all test levels even if some of them fail

steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"databaseChangeLog": [
{
"changeSet": {
"id": "1",
"author": "your.name",
"changes": [
{
"optimizeTable": {
"tableName": "authors",
"zorderColumns": "id,first_name"
}
}
]
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<changeSet id="1" author="codydavis">
<ext:optimizeTable tableName="authors" zorderColumns="id"/>
<ext:optimizeTable tableName="authors" zorderColumns="id,first_name"/>
</changeSet>

</databaseChangeLog>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
databaseChangeLog:
- changeSet:
id: 1
author: your.name
changes:
- optimizeTable:
tableName: authors
zorderColumns: "id,first_name"
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"databaseChangeLog": [
{
"changeSet": {
"id": "1",
"author": "your.name",
"changes": [
{
"vacuumTable": {
"tableName": "authors",
"retentionHours": 168
}
}
]
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
databaseChangeLog:
- changeSet:
id: 1
author: your.name
changes:
- vacuumTable:
tableName: authors
retentionHours: 168
Original file line number Diff line number Diff line change
@@ -1 +1 @@
OPTIMIZE main.liquibase_harness_test_ds.authors ZORDER BY (id)
OPTIMIZE main.liquibase_harness_test_ds.authors ZORDER BY (id, first_name)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE TABLE test_table (test_column INT NULL, varcharColumn VARCHAR(25) NULL, intColumn INT NULL, dateColumn date NULL);
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE TABLE test_table (id INT NOT NULL, CONSTRAINT PK_TEST_TABLE PRIMARY KEY (id));

0 comments on commit 1eb3b62

Please sign in to comment.