Spring Projects Issues
Spring Projects Issues
**[Michael Reiche](https://jira.spring.io/secure/ViewProfile.jspa?name=mikereiche)** commented Hi [Eduard Dudar](https://jira.spring.io/secure/ViewProfile.jspa?name=edudar) - Your analysis appears to be correct. In 3.2 there is a test in org.springframework.data.couchbase.repository.N1qlCrudRepositoryIntegrationTests. shouldCustomCountWhenReturningLongAndUsingStringWithoutSpEL() that did not get carried forward.
**[Steffen Kreutz](https://jira.spring.io/secure/ViewProfile.jspa?name=brushmate)** commented I think a better approach would be to introduce a new interface (SystemCommandStreamHandler) so that the user can decide how the streams should be handled. The SystemComandTasklet...
**[Champomix](https://jira.spring.io/secure/ViewProfile.jspa?name=champomix)** commented Here an axample : ```java package dm.tasklet; /* * Copyright 2006-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); *...
**[Glenn Lingle](https://jira.spring.io/secure/ViewProfile.jspa?name=glingle05)** commented A comment about SystemCommandTasklet and reading from Process stderr/stdout. If used with processes which output more than a buffer-full (nebulous term - size varies), it will hang...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented "IF NOT EXISTS" is not supported by many (most?) of the platforms that people use. Which databases do you use? If you know it works for a...
**[Matthew T. Adams](https://jira.spring.io/secure/ViewProfile.jspa?name=matthewadams)** commented MySQL: http://dev.mysql.com/doc/refman/5.1/en/create-table.html MS SQL Server: (there may also be a system stored procedure that'll do this -- seems smarter to me to do it that way)...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented OK, that's a start. I don't understand the syntax for MS SQL, so someone is going to have to submit a patch or pull request and verify...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented Apparently the throttle limit is useful for sharing a thread pool with multiple jobs.
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** commented I said apparently in that last comment, but I'm not sure I can see any evidence for that. Why not just create a new thread pool (since...
**[Michael Minella](https://jira.spring.io/secure/ViewProfile.jspa?name=mminella)** commented For this type of functionality, we typically recommend using an ItemProcessor as a filter. Read in everything, and filter those items that are not to be updated...