Skip to content

Commit 7d515cc

Browse files
committed
collection_dao_queries.properties: rename a property to fix a typo in name.
Correction for commit 1c96b38. No functional changes.
1 parent 13014b2 commit 7d515cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/ru/mystamps/web/dao/impl/JdbcCollectionDaoImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class JdbcCollectionDaoImpl implements JdbcCollectionDao {
3535

3636
private final NamedParameterJdbcTemplate jdbcTemplate;
3737

38-
@Value("${collection.ind_last_created}")
38+
@Value("${collection.find_last_created}")
3939
private String findLastCreatedCollectionsSql;
4040

4141
@Value("${collection.count_collections_of_users}")

src/main/resources/sql/collection_dao_queries.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
collection.ind_last_created = \
21
SELECT c.id AS collection_id \
2+
collection.find_last_created = \
33
, c.slug AS collection_slug \
44
, u.name AS owner_name \
55
FROM collections_series cs \

0 commit comments

Comments
 (0)