Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove ON DELETE CASCADE #623

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
4a5d863
Build test
Dec 3, 2024
116a6c4
fix checkstyle
Dec 3, 2024
59b28b1
fix checkstyle
Dec 3, 2024
6eb29c3
see if the test error is due to schema change
Dec 4, 2024
612b0b3
check tests
Dec 4, 2024
f232642
check tests
Dec 4, 2024
a1fd485
checkstyle
Dec 4, 2024
5e2824c
test
Dec 4, 2024
20d3853
test
Dec 4, 2024
12bf322
test
Dec 4, 2024
7808048
test
Dec 4, 2024
720b7e3
test
Dec 4, 2024
14c8ea4
test
Dec 4, 2024
b9ee9fd
test
Dec 4, 2024
6a3b2bc
test hopefully last
Dec 4, 2024
725faa3
test
Dec 4, 2024
79fa3e1
checkstyle
Dec 4, 2024
588bbda
already exists
Dec 4, 2024
bc407d0
checkstyle
Dec 4, 2024
89dabd1
test
Dec 4, 2024
91a425d
move test
Dec 4, 2024
8275c09
fix moved test
Dec 4, 2024
fd0085f
fix test final
Dec 4, 2024
5efabf5
minor changes
Dec 4, 2024
9a9e372
minor changes
Dec 4, 2024
60f2522
minor changes
Dec 4, 2024
6d5c382
minor changes
Dec 4, 2024
fdb9a14
minor changes
Dec 4, 2024
c75b3ad
minor changes
Dec 4, 2024
ae6f57f
comment out catch
Dec 4, 2024
d5c33c2
comment out catch
Dec 4, 2024
eb95f84
comment out catch
Dec 4, 2024
231aa96
final supposed structure
Dec 4, 2024
94ccd3d
check if table still exists after db deletion
Dec 7, 2024
9c137dc
check if table still exists after db deletion
Dec 7, 2024
41d021a
check if table exist and db exists after db delete was blocked
Dec 7, 2024
7ee77fe
check if table exist and db exists after db delete was blocked
Dec 7, 2024
839599c
check if table exist and db exists after db delete was blocked
Dec 7, 2024
ef7db85
checkstyle: check if table exist and db exists after db delete was bl…
Dec 7, 2024
bfc6da8
print: check if table exist and db exists after db delete was blocked
Dec 7, 2024
81d3fc4
check reproduceable: check if table exist and db exists after db dele…
Dec 7, 2024
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
Prev Previous commit
Next Next commit
print: check if table exist and db exists after db delete was blocked
  • Loading branch information
Giorgio Trettenero committed Dec 7, 2024
commit bfc6da8a97026b33962cb5ddcd0f9e9b1b18b036
Original file line number Diff line number Diff line change
@@ -219,6 +219,8 @@ public void testDeleteDbNoCascades() {
polarisDBService.delete(requestContext, DB1_QUALIFIED_NAME);

Assert.assertTrue(polarisTableService.exists(requestContext, qualifiedName));
System.out.println("testDeleteDbNoCascades Table: ");
System.out.println(polarisTableService.get(requestContext, qualifiedName));
Assert.assertTrue(polarisDBService.exists(requestContext, DB1_QUALIFIED_NAME));

}