Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -2788,7 +2788,7 @@ public static void upgradeTable(PhoenixConnection conn, String srcTable)
conn.commit();
} else {
throw new RuntimeException(
"Error: problem occured during upgrade. " + "Table is not upgraded successfully");
"Error: problem occurred during upgrade. " + "Table is not upgraded successfully");
}
if (table.getType() == PTableType.VIEW) {
LOGGER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ private String writeXML() {
// Writing to console
jaxbMarshaller.marshal(data, System.out);
} catch (JAXBException e) {
// some exception occured
// some exception occurred
e.printStackTrace();
}
return data.toString();
Expand Down