Skip to content

Commit da17b1f

Browse files
authored
Merge pull request #877 from Kotlin/0.14-post-release
0.14 post release Part 2
2 parents 096a86a + 13404d2 commit da17b1f

File tree

14 files changed

+17
-517
lines changed

14 files changed

+17
-517
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ Here's a [compiler plugin demo project](https://github.com/koperagen/df-plugin-d
4646
## Setup
4747

4848
```kotlin
49-
implementation("org.jetbrains.kotlinx:dataframe:0.14.0")
49+
implementation("org.jetbrains.kotlinx:dataframe:0.14.1")
5050
```
5151

5252
Optional Gradle plugin for enhanced type safety and schema generation
5353
https://kotlin.github.io/dataframe/schemasgradle.html
5454
```kotlin
55-
id("org.jetbrains.kotlinx.dataframe") version "0.14.0"
55+
id("org.jetbrains.kotlinx.dataframe") version "0.14.1"
5656
```
5757

5858
Check out the [custom setup page](https://kotlin.github.io/dataframe/gettingstartedgradleadvanced.html) if you don't need some of the formats as dependencies,
@@ -77,7 +77,7 @@ df.filter { "stargazers_count"<Int>() > 50 }.print()
7777

7878
Requires Gradle plugin to work
7979
```kotlin
80-
id("org.jetbrains.kotlinx.dataframe") version "0.14.0"
80+
id("org.jetbrains.kotlinx.dataframe") version "0.14.1"
8181
```
8282

8383
Plugin generates extension properties API for provided sample of data. Column names and their types become discoverable in completion.
@@ -228,7 +228,7 @@ This table shows the mapping between main library component versions and minimum
228228
| 0.12.0 | 8 | 1.9.0 | 0.11.0-358 | 3.0.0 | 11.0.0 |
229229
| 0.12.1 | 8 | 1.9.0 | 0.11.0-358 | 3.0.0 | 11.0.0 |
230230
| 0.13.1 | 8 | 1.9.22 | 0.12.0-139 | 3.0.0 | 15.0.0 |
231-
| 0.14.0 | 8 | 2.0.20 | 0.12.0-139 | 3.0.0 | 17.0.0 |
231+
| 0.14.1 | 8 | 2.0.20 | 0.12.0-139 | 3.0.0 | 17.0.0 |
232232

233233
## Code of Conduct
234234

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/ColumnsSelectionDsl.kt

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
package org.jetbrains.kotlinx.dataframe.api
22

33
import org.jetbrains.kotlinx.dataframe.ColumnsSelector
4-
import org.jetbrains.kotlinx.dataframe.DataColumn
54
import org.jetbrains.kotlinx.dataframe.DataFrame
65
import org.jetbrains.kotlinx.dataframe.DataRow
6+
import org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.DslGrammar.ColumnGroupPartOfGrammar
7+
import org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.DslGrammar.ColumnSetPartOfGrammar
8+
import org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.DslGrammar.DefinitionsPartOfGrammar
9+
import org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.DslGrammar.PlainDslPartOfGrammar
710
import org.jetbrains.kotlinx.dataframe.columns.ColumnPath
811
import org.jetbrains.kotlinx.dataframe.columns.ColumnSet
912
import org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver
@@ -16,9 +19,6 @@ import org.jetbrains.kotlinx.dataframe.documentation.Indent
1619
import org.jetbrains.kotlinx.dataframe.documentation.LineBreak
1720
import org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns
1821
import org.jetbrains.kotlinx.dataframe.impl.DataFrameReceiver
19-
import org.jetbrains.kotlinx.dataframe.impl.columns.ColumnsList
20-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_LIST_DATACOLUMN_GET
21-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_LIST_DATACOLUMN_GET_REPLACE
2222
import kotlin.reflect.KProperty
2323

2424
/** [Columns Selection DSL][ColumnsSelectionDsl] */
@@ -380,22 +380,6 @@ public interface ColumnsSelectionDsl<out T> : // SingleColumn<DataRow<T>>
380380
public operator fun <C> ColumnsSelector<T, C>.invoke(): ColumnsResolver<C> =
381381
this@invoke(this@ColumnsSelectionDsl, this@ColumnsSelectionDsl)
382382

383-
/**
384-
* ## Deprecated: Columns by Index Range from List of Columns
385-
* Helper function to create a [ColumnSet] from a list of columns by specifying a range of indices.
386-
*
387-
* ### Deprecated
388-
*
389-
* Deprecated because it's too niche. Let us know if you have a good use for it!
390-
*/
391-
@Deprecated(
392-
message = COL_SELECT_DSL_LIST_DATACOLUMN_GET,
393-
replaceWith = ReplaceWith(COL_SELECT_DSL_LIST_DATACOLUMN_GET_REPLACE),
394-
level = DeprecationLevel.ERROR,
395-
)
396-
public operator fun <C> List<DataColumn<C>>.get(range: IntRange): ColumnSet<C> =
397-
ColumnsList(subList(range.first, range.last + 1))
398-
399383
// region select
400384
// NOTE: due to invoke conflicts these cannot be moved out of the interface
401385

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/all.kt

Lines changed: 0 additions & 134 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,6 @@ import org.jetbrains.kotlinx.dataframe.impl.columns.addPath
4545
import org.jetbrains.kotlinx.dataframe.impl.columns.onResolve
4646
import org.jetbrains.kotlinx.dataframe.impl.columns.transform
4747
import org.jetbrains.kotlinx.dataframe.impl.owner
48-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS
49-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_AFTER
50-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_AFTER_REPLACE
51-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_BEFORE
52-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_BEFORE_REPLACE
53-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_FROM
54-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_FROM_REPLACE
55-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_REPLACE
56-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_UP_TO
57-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_COLS_UP_TO_REPLACE
58-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_FROM
59-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_FROM_REPLACE
60-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_UP_TO
61-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_ALL_UP_TO_REPLACE
6248
import kotlin.reflect.KProperty
6349

6450
// region DataColumn
@@ -1187,126 +1173,6 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
11871173
public fun ColumnPath.allColsUpTo(column: KProperty<*>): ColumnSet<*> = columnGroup(this).allColsUpTo(column)
11881174

11891175
// endregion
1190-
1191-
// region deprecated
1192-
1193-
@Deprecated(
1194-
COL_SELECT_DSL_ALL_COLS,
1195-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_REPLACE),
1196-
level = DeprecationLevel.ERROR,
1197-
)
1198-
public fun SingleColumn<DataRow<*>>.all(): TransformableColumnSet<*> = allCols()
1199-
1200-
@Deprecated(
1201-
COL_SELECT_DSL_ALL_COLS,
1202-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_REPLACE),
1203-
level = DeprecationLevel.ERROR,
1204-
)
1205-
public fun String.all(): TransformableColumnSet<*> = allCols()
1206-
1207-
@Deprecated(
1208-
COL_SELECT_DSL_ALL_COLS_AFTER,
1209-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_AFTER_REPLACE),
1210-
level = DeprecationLevel.ERROR,
1211-
)
1212-
public fun SingleColumn<DataRow<*>>.allAfter(column: ColumnPath): ColumnSet<*> = allColsAfter(column)
1213-
1214-
@Deprecated(
1215-
COL_SELECT_DSL_ALL_COLS_AFTER,
1216-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_AFTER_REPLACE),
1217-
level = DeprecationLevel.ERROR,
1218-
)
1219-
public fun SingleColumn<DataRow<*>>.allAfter(column: String): ColumnSet<*> = allColsAfter(column)
1220-
1221-
@Deprecated(
1222-
COL_SELECT_DSL_ALL_COLS_AFTER,
1223-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_AFTER_REPLACE),
1224-
level = DeprecationLevel.ERROR,
1225-
)
1226-
public fun SingleColumn<DataRow<*>>.allAfter(column: AnyColumnReference): ColumnSet<*> = allColsAfter(column)
1227-
1228-
@Deprecated(
1229-
COL_SELECT_DSL_ALL_COLS_BEFORE,
1230-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_BEFORE_REPLACE),
1231-
level = DeprecationLevel.ERROR,
1232-
)
1233-
public fun SingleColumn<DataRow<*>>.allBefore(column: ColumnPath): ColumnSet<*> = allColsBefore(column)
1234-
1235-
@Deprecated(
1236-
COL_SELECT_DSL_ALL_COLS_BEFORE,
1237-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_BEFORE_REPLACE),
1238-
level = DeprecationLevel.ERROR,
1239-
)
1240-
public fun SingleColumn<DataRow<*>>.allBefore(column: String): ColumnSet<*> = allColsBefore(column)
1241-
1242-
@Deprecated(
1243-
COL_SELECT_DSL_ALL_COLS_BEFORE,
1244-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_BEFORE_REPLACE),
1245-
level = DeprecationLevel.ERROR,
1246-
)
1247-
public fun SingleColumn<DataRow<*>>.allBefore(column: AnyColumnReference): ColumnSet<*> = allColsBefore(column)
1248-
1249-
@Deprecated(COL_SELECT_DSL_ALL_FROM, ReplaceWith(COL_SELECT_DSL_ALL_FROM_REPLACE), level = DeprecationLevel.ERROR)
1250-
public fun ColumnsSelectionDsl<*>.allSince(column: ColumnPath): ColumnSet<*> = allFrom(column)
1251-
1252-
@Deprecated(COL_SELECT_DSL_ALL_FROM, ReplaceWith(COL_SELECT_DSL_ALL_FROM_REPLACE), level = DeprecationLevel.ERROR)
1253-
public fun ColumnsSelectionDsl<*>.allSince(column: String): ColumnSet<*> = allFrom(column)
1254-
1255-
@Deprecated(COL_SELECT_DSL_ALL_FROM, ReplaceWith(COL_SELECT_DSL_ALL_FROM_REPLACE), level = DeprecationLevel.ERROR)
1256-
public fun ColumnsSelectionDsl<*>.allSince(column: AnyColumnReference): ColumnSet<*> = allFrom(column)
1257-
1258-
@Deprecated(
1259-
COL_SELECT_DSL_ALL_COLS_FROM,
1260-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_FROM_REPLACE),
1261-
level = DeprecationLevel.ERROR,
1262-
)
1263-
public fun SingleColumn<DataRow<*>>.allSince(column: ColumnPath): ColumnSet<*> = allColsFrom(column)
1264-
1265-
@Deprecated(
1266-
COL_SELECT_DSL_ALL_COLS_FROM,
1267-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_FROM_REPLACE),
1268-
level = DeprecationLevel.ERROR,
1269-
)
1270-
public fun SingleColumn<DataRow<*>>.allSince(column: String): ColumnSet<*> = allColsFrom(column)
1271-
1272-
@Deprecated(
1273-
COL_SELECT_DSL_ALL_COLS_FROM,
1274-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_FROM_REPLACE),
1275-
level = DeprecationLevel.ERROR,
1276-
)
1277-
public fun SingleColumn<DataRow<*>>.allSince(column: AnyColumnReference): ColumnSet<*> = allColsFrom(column)
1278-
1279-
@Deprecated(COL_SELECT_DSL_ALL_UP_TO, ReplaceWith(COL_SELECT_DSL_ALL_UP_TO_REPLACE), level = DeprecationLevel.ERROR)
1280-
public fun ColumnsSelectionDsl<*>.allUntil(column: ColumnPath): ColumnSet<*> = allUpTo(column)
1281-
1282-
@Deprecated(COL_SELECT_DSL_ALL_UP_TO, ReplaceWith(COL_SELECT_DSL_ALL_UP_TO_REPLACE), level = DeprecationLevel.ERROR)
1283-
public fun ColumnsSelectionDsl<*>.allUntil(column: String): ColumnSet<*> = allUpTo(column)
1284-
1285-
@Deprecated(COL_SELECT_DSL_ALL_UP_TO, ReplaceWith(COL_SELECT_DSL_ALL_UP_TO_REPLACE), level = DeprecationLevel.ERROR)
1286-
public fun ColumnsSelectionDsl<*>.allUntil(column: AnyColumnReference): ColumnSet<*> = allUpTo(column)
1287-
1288-
@Deprecated(
1289-
COL_SELECT_DSL_ALL_COLS_UP_TO,
1290-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_UP_TO_REPLACE),
1291-
level = DeprecationLevel.ERROR,
1292-
)
1293-
public fun SingleColumn<DataRow<*>>.allUntil(column: ColumnPath): ColumnSet<*> = allColsUpTo(column)
1294-
1295-
@Deprecated(
1296-
COL_SELECT_DSL_ALL_COLS_UP_TO,
1297-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_UP_TO_REPLACE),
1298-
level = DeprecationLevel.ERROR,
1299-
)
1300-
public fun SingleColumn<DataRow<*>>.allUntil(column: String): ColumnSet<*> = allColsUpTo(column)
1301-
1302-
@Deprecated(
1303-
COL_SELECT_DSL_ALL_COLS_UP_TO,
1304-
ReplaceWith(COL_SELECT_DSL_ALL_COLS_UP_TO_REPLACE),
1305-
level = DeprecationLevel.ERROR,
1306-
)
1307-
public fun SingleColumn<DataRow<*>>.allUntil(column: AnyColumnReference): ColumnSet<*> = allColsUpTo(column)
1308-
1309-
// endregion
13101176
}
13111177

13121178
/**

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/allExcept.kt

Lines changed: 0 additions & 113 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,6 @@ import org.jetbrains.kotlinx.dataframe.impl.columns.transformSingle
2424
import org.jetbrains.kotlinx.dataframe.util.ALL_COLS_EXCEPT
2525
import org.jetbrains.kotlinx.dataframe.util.ALL_COLS_REPLACE
2626
import org.jetbrains.kotlinx.dataframe.util.ALL_COLS_REPLACE_VARARG
27-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_EXCEPT
28-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_EXCEPT_REPLACE_RESOLVER
29-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_EXCEPT_REPLACE_SELECTOR
30-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_SINGLE_COL_EXCEPT
31-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHER
32-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHERS
33-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_RESOLVER
34-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_RESOLVERS
35-
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_SELECTOR
3627
import kotlin.reflect.KProperty
3728

3829
// region ColumnsSelectionDsl
@@ -1017,110 +1008,6 @@ public interface AllExceptColumnsSelectionDsl {
10171008
columnGroup(this).exceptExperimentalInternal(others.toColumnSet())
10181009

10191010
// endregion
1020-
1021-
// region deprecated
1022-
1023-
@Deprecated(
1024-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1025-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_SELECTOR),
1026-
level = DeprecationLevel.ERROR,
1027-
)
1028-
public infix fun <C> SingleColumn<DataRow<C>>.except(selector: ColumnsSelector<C, *>): ColumnSet<*> =
1029-
allColsExcept(selector)
1030-
1031-
@Deprecated(
1032-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1033-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_RESOLVER),
1034-
level = DeprecationLevel.ERROR,
1035-
)
1036-
public infix fun SingleColumn<DataRow<*>>.except(other: ColumnsResolver<*>): ColumnSet<*> = allColsExcept { other }
1037-
1038-
@Deprecated(
1039-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1040-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_RESOLVERS),
1041-
level = DeprecationLevel.ERROR,
1042-
)
1043-
public fun SingleColumn<DataRow<*>>.except(vararg others: ColumnsResolver<*>): ColumnSet<*> =
1044-
allColsExcept { others.toColumnSet() }
1045-
1046-
@Deprecated(
1047-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1048-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHER),
1049-
level = DeprecationLevel.ERROR,
1050-
)
1051-
public infix fun SingleColumn<DataRow<*>>.except(other: String): ColumnSet<*> = allColsExcept(other)
1052-
1053-
@Deprecated(
1054-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1055-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHERS),
1056-
level = DeprecationLevel.ERROR,
1057-
)
1058-
public fun SingleColumn<DataRow<*>>.except(vararg others: String): ColumnSet<*> = allColsExcept(*others)
1059-
1060-
@Deprecated(
1061-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1062-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHER),
1063-
level = DeprecationLevel.ERROR,
1064-
)
1065-
public infix fun SingleColumn<DataRow<*>>.except(other: KProperty<*>): ColumnSet<*> = allColsExcept(other)
1066-
1067-
@Deprecated(
1068-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1069-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHERS),
1070-
level = DeprecationLevel.ERROR,
1071-
)
1072-
public fun SingleColumn<DataRow<*>>.except(vararg others: KProperty<*>): ColumnSet<*> = allColsExcept(*others)
1073-
1074-
@Deprecated(
1075-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1076-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHER),
1077-
level = DeprecationLevel.ERROR,
1078-
)
1079-
public infix fun SingleColumn<DataRow<*>>.except(other: ColumnPath): ColumnSet<*> = allColsExcept(other)
1080-
1081-
@Deprecated(
1082-
message = COL_SELECT_DSL_SINGLE_COL_EXCEPT,
1083-
replaceWith = ReplaceWith(COL_SELECT_DSL_SINGLE_COL_EXCEPT_REPLACE_OTHERS),
1084-
level = DeprecationLevel.ERROR,
1085-
)
1086-
public fun SingleColumn<DataRow<*>>.except(vararg others: ColumnPath): ColumnSet<*> = allColsExcept(*others)
1087-
1088-
@Deprecated(
1089-
message = COL_SELECT_DSL_EXCEPT,
1090-
replaceWith = ReplaceWith(COL_SELECT_DSL_EXCEPT_REPLACE_SELECTOR),
1091-
level = DeprecationLevel.ERROR,
1092-
)
1093-
public fun <C> ColumnsSelectionDsl<C>.except(selector: ColumnsSelector<C, *>): ColumnSet<*> = allExcept(selector)
1094-
1095-
@Deprecated(
1096-
message = COL_SELECT_DSL_EXCEPT,
1097-
replaceWith = ReplaceWith(COL_SELECT_DSL_EXCEPT_REPLACE_RESOLVER),
1098-
level = DeprecationLevel.ERROR,
1099-
)
1100-
public fun ColumnsSelectionDsl<*>.except(vararg others: ColumnsResolver<*>): ColumnSet<*> = allExcept(*others)
1101-
1102-
@Deprecated(
1103-
message = COL_SELECT_DSL_EXCEPT,
1104-
replaceWith = ReplaceWith(COL_SELECT_DSL_EXCEPT_REPLACE_RESOLVER),
1105-
level = DeprecationLevel.ERROR,
1106-
)
1107-
public fun ColumnsSelectionDsl<*>.except(vararg others: String): ColumnSet<*> = allExcept(*others)
1108-
1109-
@Deprecated(
1110-
message = COL_SELECT_DSL_EXCEPT,
1111-
replaceWith = ReplaceWith(COL_SELECT_DSL_EXCEPT_REPLACE_RESOLVER),
1112-
level = DeprecationLevel.ERROR,
1113-
)
1114-
public fun ColumnsSelectionDsl<*>.except(vararg others: KProperty<*>): ColumnSet<*> = allExcept(*others)
1115-
1116-
@Deprecated(
1117-
message = COL_SELECT_DSL_EXCEPT,
1118-
replaceWith = ReplaceWith(COL_SELECT_DSL_EXCEPT_REPLACE_RESOLVER),
1119-
level = DeprecationLevel.ERROR,
1120-
)
1121-
public fun ColumnsSelectionDsl<*>.except(vararg others: ColumnPath): ColumnSet<*> = allExcept(*others)
1122-
1123-
// endregion
11241011
}
11251012

11261013
/**

0 commit comments

Comments
 (0)