8000 Fix a spurious Postgres error by mrigger · Pull Request #287 · sqlancer/sqlancer · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions src/sqlancer/postgres/gen/PostgresTableGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ private void generateInherits() {
errors.add("cannot inherit from temporary relation");
errors.add("cannot inherit from partitioned table");
errors.add("has a collation conflict");
errors.add("inherits conflicting default values");
}
}

Expand Down
0