@@ -82,6 +82,12 @@ class ModelCriteria extends BaseModelCriteria
82
82
*/
83
83
protected $ isKeepQuery = true ;
84
84
85
+ // this is for the select method
86
+ /**
87
+ * @var string|array|null
88
+ */
89
+ protected $ select ;
90
+
85
91
/**
86
92
* Used to memorize whether we added self-select columns before.
87
93
*
@@ -466,50 +472,42 @@ public function select($columnArray)
466
472
if (empty ($ columnArray )) {
467
473
throw new PropelException ('You must ask for at least one column ' );
468
474
}
469
- $ this ->isSelfSelected = true ;
470
- if ($ this ->formatter === null ) {
471
- $ this ->setFormatter (SimpleArrayFormatter::class);
472
- }
473
475
474
476
if ($ columnArray === '* ' ) {
475
- $ columnArray = [];
476
- foreach ($ this ->getTableMap ()->getColumns () as $ columnMap ) {
477
- $ columnArray [] = $ this ->modelName . '. ' . $ columnMap ->getPhpName ();
478
- }
477
+ $ columnArray = $ this ->resolveSelectAll ();
479
478
}
480
479
if (!is_array ($ columnArray )) {
481
480
$ columnArray = [$ columnArray ];
482
481
}
482
+ $ this ->select = $ columnArray ;
483
+ $ this ->isSelfSelected = true ;
483
484
484
- $ this ->selectColumns = [];
485
+ return $ this ;
486
+ }
485
487
486
- foreach ($ columnArray as $ columnName ) {
487
- if (array_key_exists ($ columnName , $ this ->asColumns )) {
488
- continue ;
489
- }
490
- [$ columnMap , $ realColumnName ] = $ this ->getColumnFromName ($ columnName );
491
- if ($ realColumnName === null ) {
492
- throw new PropelException ("Cannot find selected column ' $ columnName' " );
493
- }
494
- // always put quotes around the columnName to be safe, we strip them in the formatter
495
- $ this ->addAsColumn ('" ' . $ columnName . '" ' , $ realColumnName );
488
+ /**
489
+ * @return string[]
490
+ */
491
+ protected function resolveSelectAll (): array
492
+ {
493
+ $ columnArray = [];
494
+ foreach ($ this ->getTableMap ()->getColumns () as $ columnMap ) {
495
+ $ columnArray [] = $ this ->modelName . '. ' . $ columnMap ->getPhpName ();
496
496
}
497
497
498
- return $ this ;
498
+ return $ columnArray ;
499
499
}
500
500
501
501
/**
502
502
* Retrieves the columns defined by a previous call to select().
503
503
*
504
- * @deprecated Not needed anymore, selected columns are part of {@link Criteria::$asColumns}
505
- *
506
504
* @see select()
507
505
*
508
506
* @return array|string A list of column names (e.g. array('Title', 'Category.Name', 'c.Content')) or a single column name (e.g. 'Name')
509
507
*/
510
508
public function getSelect ()
511
509
{
512
- return array_values ( $ this ->asColumns ) ;
510
+ return $ this ->select ;
513
511
}
514
512
515
513
/**
@@ -976,6 +974,7 @@ public function clear()
976
974
$ this ->with = [];
977
975
$ this ->primaryCriteria = null ;
978
976
$ this ->formatter = null ;
977
+ $ this ->select = null ;
979
978
980
979
return $ this ;
981
980
}
@@ -1637,6 +1636,8 @@ public function count(?ConnectionInterface $con = null)
1637
1636
*/
1638
1637
public function doCount (?ConnectionInterface $ con = null )
1639
1638
{
1639
+ $ this ->configureSelectColumns ();
1640
+
1640
1641
// check that the columns of the main class are already added (if this is the primary ModelCriteria)
1641
1642
if (!$ this ->hasSelectClause () && !$ this ->getPrimaryCriteria ()) {
1642
1643
$ this ->addSelfSelectColumns ();
@@ -2203,19 +2204,56 @@ public function getModelJoinByTableName($tableName)
2203
2204
*/
2204
2205
public function doSelect (?ConnectionInterface $ con = null )
2205
2206
{
2207
+ $ this ->configureSelectColumns ();
2208
+
2206
2209
$ this ->addSelfSelectColumns ();
2207
2210
2208
2211
return parent ::doSelect ($ con );
2209
2212
}
2210
2213
2211
2214
/**
2212
- * @deprecated This method was used to add columns from {@link select()} during query generation, but that is handled
2213
- * right away now.
2215
+ * {@inheritDoc}
2216
+ *
2217
+ * @see \Propel\Runtime\ActiveQuery\Criteria::createSelectSql()
2218
+ *
2219
+ * @param array $params Parameters that are to be replaced in prepared statement.
2220
+ *
2221
+ * @return string
2222
+ */
2223
+ public function createSelectSql (&$ params )
2224
+ {
2225
+ $ this ->configureSelectColumns ();
2226
+
2227
+ return parent ::createSelectSql ($ params );
2228
+ }
2229
+
2230
+ /**
2231
+ * @throws \Propel\Runtime\Exception\PropelException
2214
2232
*
2215
2233
* @return void
2216
2234
*/
2217
2235
public function configureSelectColumns ()
2218
2236
{
2237
+ if (!$ this ->select ) {
2238
+ return ;
2239
+ }
2240
+
2241
+ if ($ this ->formatter === null ) {
2242
+ $ this ->setFormatter (SimpleArrayFormatter::class);
2243
+ }
2244
+ $ this ->selectColumns = [];
2245
+
2246
+ foreach ($ this ->select as $ columnName ) {
2247
+ if (array_key_exists ($ columnName , $ this ->asColumns )) {
2248
+ continue ;
2249
+ }
2250
+ [$ columnMap , $ realColumnName ] = $ this ->getColumnFromName ($ columnName );
2251
+ if ($ realColumnName === null ) {
2252
+ throw new PropelException ("Cannot find selected column ' $ columnName' " );
2253
+ }
2254
+ // always put quotes around the columnName to be safe, we strip them in the formatter
2255
+ $ this ->addAsColumn ('" ' . $ columnName . '" ' , $ realColumnName );
2256
+ }
2219
2257
}
2220
2258
2221
2259
/**
0 commit comments