src/main/java/com/amazonaws/services/glue/catalog/HiveGlueCatalogSyncAgent.java [357:367]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		if (partitionEvent.getStatus()) {
			Table table = partitionEvent.getTable();

			if (table.getTableType().equals(EXTERNAL_TABLE_TYPE) && table.getSd().getLocation().startsWith("s3")) {
				String fqtn = getFqtn(table);

				if (fqtn != null && !fqtn.equals("")) {
					partitionEvent.getPartitionIterator().forEachRemaining(p -> {
						String partitionSpec = getPartitionSpec(table, p);

						if (p.getSd().getLocation().startsWith("s3")) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/glue/catalog/HiveGlueCatalogSyncAgent.java [394:404]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			if (partitionEvent.getStatus()) {
				Table table = partitionEvent.getTable();

				if (table.getTableType().equals(EXTERNAL_TABLE_TYPE) && table.getSd().getLocation().startsWith("s3")) {
					String fqtn = getFqtn(table);

					if (fqtn != null && !fqtn.equals("")) {
						partitionEvent.getPartitionIterator().forEachRemaining(p -> {
							String partitionSpec = getPartitionSpec(table, p);

							if (p.getSd().getLocation().startsWith("s3")) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



