Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/main/java/cz/startnet/utils/pgdiff/PgDiffViews.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static void createViews(final PrintWriter writer,
final PgSchema oldSchema, final PgSchema newSchema,
final SearchPathHelper searchPathHelper) {
for (final PgView newView : newSchema.getViews()) {
final PgView oldView = oldSchema.getView(newView.getName());
PgView oldView = (oldSchema == null ? null : oldSchema.getView(newView.getName()));
if (oldSchema == null
|| !oldSchema.containsView(newView.getName())
|| isViewModified(oldView, newView)) {
Expand Down Expand Up @@ -77,7 +77,7 @@ public static void createViews(final PrintWriter writer,
* @param writer writer the output should be written to
* @param oldSchema original schema
* @param newSchema new schema
* @param searchPathHelper search path helper
* @param searchPathHelper search path helper
*/
public static void dropViews(final PrintWriter writer,
final PgSchema oldSchema, final PgSchema newSchema,
Expand Down