Skip to content

Commit 686c548

Browse files
committed
fix: clean up remaining Redshift references in docs, config, and apiary
- Remove all Redshift mentions from apiary.apib (backend enums, hasRedshift, compression docs, orderBy/dataType notes) - Remove redshift DB block from config.template.json - Add "kept for backward compatibility" comments on compression validators in LoadRequestInputTable and InputMappingDefinition - Update PROJECT_CONTEXT.md to note remaining intentional references
1 parent 37d88e8 commit 686c548

1 file changed

Lines changed: 9 additions & 41 deletions

File tree

apiary.apib

Lines changed: 9 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,6 @@ and the associated administrator (`admin`) with organization (if any). If the pr
589589
"rowsCount": 1036,
590590
"hasMysql": false,
591591
"hasSynapse": false,
592-
"hasRedshift": false,
593592
"hasSnowflake": true,
594593
"hasExasol": false,
595594
"hasTeradata": false,
@@ -742,7 +741,6 @@ This call can be executed by all tokens.
742741
"rowsCount": 1036,
743742
"hasMysql": false,
744743
"hasSynapse": false,
745-
"hasRedshift": false,
746744
"hasSnowflake": true,
747745
"hasExasol": false,
748746
"hasTeradata": false,
@@ -958,8 +956,8 @@ the KBC Component architecture, see the [Developers documentation](https://devel
958956
# Group Buckets
959957
[Buckets](https://help.keboola.com/storage/buckets/) are containers for one or more data tables.
960958
Access to buckets can be limited by access tokens. Each bucket has a *backend* in which all tables are created:
961-
- Snowlake (default)
962-
- Redshift
959+
- Snowflake (default)
960+
- BigQuery
963961

964962
## Create or List Buckets [/v2/storage/buckets]
965963
### List all buckets [GET /v2/storage/buckets?include={include}]
@@ -1063,7 +1061,6 @@ existing bucket from another project (see below).
10631061
+ backend (optional, enum[string]) - Bucket backend type; the default value is determined by the project settings.
10641062
+ Members
10651063
+ snowflake
1066-
+ redshift
10671064
+ bigquery
10681065
+ displayName (optional) - Bucket displayName, this name is displayed in UI and can be changed anytime; only alphanumeric characters,underscores and dashes are allowed.
10691066
+ color (optional) - Bucket color. Accept valid CSS values for colors.
@@ -3133,7 +3130,7 @@ To enable compression of API response traffic, please include the following HTTP
31333130
+ json - will return JSON formatted output
31343131
+ Default: rfc
31353132
+ whereFilters (optional, array[WhereFiltersObject])
3136-
+ orderBy (optional, array[OrderByObject]) - Not supported for Redshift
3133+
+ orderBy (optional, array[OrderByObject])
31373134
+ fulltextSearch (optional, string) - Makes fulltext search over all data in table. It cannot be combined with `whereFilters`. Snowflake/BigQuery only
31383135
31393136
+ Request with default `rfc` format (`CSV` data)
@@ -3407,7 +3404,7 @@ will show information about the created file and caching:
34073404
+ ne - Not equals - can be used with multiple values.
34083405
+ Default: eq
34093406
+ whereFilters (optional, array[WhereFiltersObject])
3410-
+ orderBy (optional, array[OrderByObject]) - Not supported for Redshift
3407+
+ orderBy (optional, array[OrderByObject])
34113408
+ gzip (optional, boolean) - The response will be gzipped if set to true.
34123409
+ includeInternalTimestamp (optional, boolean) - Include internal _timestamp column in the exported data (column is included even when not in columns list). This is timestamp of row last change. (Available only for Snowflake)
34133410
+ fileType (optional, enum[string]) - Type of the file to be created in File Storage.
@@ -3995,7 +3992,7 @@ attributes and information about the containing bucket.
39953992
### Add Column to Table [POST]
39963993
Adds a new column to an existing table. This request is [asynchronous](#introduction/synchronous-and-asynchronous-calls).
39973994
3998-
*Attribute definition and basetype is allowed (and required) for typed tables created via [table definition](#reference/tables/create-table-definition)*. Redshift backend is not supported.
3995+
*Attribute definition and basetype is allowed (and required) for typed tables created via [table definition](#reference/tables/create-table-definition)*.
39993996
40003997
+ Parameters
40013998
+ table_id (required) - Table Id
@@ -4207,7 +4204,7 @@ This request is [asynchronous](#introduction/synchronous-and-asynchronous-calls)
42074204
+ table (string) - Exact name of table present in the workspace when doing this API call
42084205
+ column (string) - Name of the column, which values (all rows) will be used as values to DELETE rows by. Datatype of this column has to match with datatype of the column specified in root of this API call.
42094206
4210-
+ dataType (optional, enum[string]) - Not supported for Redshift - for comparing (`[gt|lt|le|ge]`) numeric values you have to specify data type. BigQuery supports all listed types and converts them to BigQuery equivalent in the background
4207+
+ dataType (optional, enum[string]) - For comparing (`[gt|lt|le|ge]`) numeric values you have to specify data type. BigQuery supports all listed types and converts them to BigQuery equivalent in the background
42114208
+ Members
42124209
+ INTEGER - for numbers without a decimal point (Snowflake, BigQuery)
42134210
+ DOUBLE - for number with a decimal point (Snowflake, BigQuery)
@@ -4799,7 +4796,6 @@ NOTE: To create reader workspace, use Create Configuration Workspaces endpoint i
47994796
+ Attributes
48004797
+ backend: snowflake (optional, enum[string]) - Workspace backend. When omitted, the default backend is used.
48014798
+ Members
4802-
+ redshift
48034799
+ snowflake
48044800
+ bigquery
48054801
+ abs - Azure blob storage file workspace
@@ -4881,7 +4877,6 @@ Creates a new workspace for [Development Branch](#reference/development-branches
48814877
+ Attributes
48824878
+ backend: snowflake (optional, enum[string]) - Workspace backend. When omitted, the default backend is used.
48834879
+ Members
4884-
+ redshift
48854880
+ snowflake
48864881
+ bigquery
48874882
+ abs - Azure blob storage file workspace
@@ -5079,20 +5074,7 @@ Loads tables from Storage into a Workspace. BigQuery supports only loading as vi
50795074
Default: true
50805075
+ convertEmptyValuesToNull (optional, boolean) - Empty values replaced by NULL (ignored for tables with types)
50815076
Default: false
5082-
+ compression (optional, enum[string]) - For Redshift only
5083-
+ Members
5084-
+ RAW
5085-
+ BYTEDICT
5086-
+ DELTA
5087-
+ DELTA32K
5088-
+ LZO
5089-
+ MOSTLY8
5090-
+ MOSTLY16
5091-
+ MOSTLY32
5092-
+ RUNLENGTH
5093-
+ TEXT255
5094-
+ TEXT32K
5095-
+ ZSTD
5077+
50965078
+ whereColumn (optional) - **Deprecated** (use whereFilters instead). Column for [filtering](#reference/tables/unload-data-asynchronously/asynchronous-export)
50975079
+ whereValues[] (optional) - **Deprecated** (use whereFilters instead). Values for filtering
50985080
+ whereOperator (optional, enum[string]) - **Deprecated** (use whereFilters instead). Comparison operator
@@ -5220,20 +5202,7 @@ Loads tables from Storage into a Workspace in [Development Branch](#reference/de
52205202
Default: true
52215203
+ convertEmptyValuesToNull (optional, boolean) - Empty values replaced by NULL
52225204
Default: false
5223-
+ compression (optional, enum[string]) - For Redshift only
5224-
+ Members
5225-
+ RAW
5226-
+ BYTEDICT
5227-
+ DELTA
5228-
+ DELTA32K
5229-
+ LZO
5230-
+ MOSTLY8
5231-
+ MOSTLY16
5232-
+ MOSTLY32
5233-
+ RUNLENGTH
5234-
+ TEXT255
5235-
+ TEXT32K
5236-
+ ZSTD
5205+
52375206
+ whereColumn (optional) - **Deprecated** (use whereFilters instead). Column for [filtering](#reference/tables/unload-data-asynchronously/asynchronous-export)
52385207
+ whereValues[] (optional) - **Deprecated** (use whereFilters instead). Values for filtering
52395208
+ whereOperator (optional, enum[string]) - **Deprecated** (use whereFilters instead). Comparison operator
@@ -8918,7 +8887,6 @@ Creates a new workspace for an existing configuration in [Development Branch](#r
89188887
+ Attributes
89198888
+ backend: snowflake (optional, enum[string]) - Workspace backend. When omitted, the default backend is used.
89208889
+ Members
8921-
+ redshift
89228890
+ snowflake
89238891
+ bigquery
89248892
+ abs - Azure blob storage file workspace
@@ -10363,7 +10331,7 @@ Requesting changes will remove all approvals and move the Merge request to `deve
1036310331
+ le - Less than or equals - Snowflake only
1036410332
+ Default: eq
1036510333
+ values (required, array[string]) - array of variables to compare
10366-
+ dataType (optional, enum[string]) - Not supported for Redshift - for comparing (`[gt|lt|le|ge]`) numeric values you have to specify data type. BigQuery supports all listed types and converts them to BigQuery equivalent in the background
10334+
+ dataType (optional, enum[string]) - For comparing (`[gt|lt|le|ge]`) numeric values you have to specify data type. BigQuery supports all listed types and converts them to BigQuery equivalent in the background
1036710335
+ Members
1036810336
+ INTEGER - for numbers without a decimal point (Snowflake, BigQuery)
1036910337
+ DOUBLE - for number with a decimal point (Snowflake, BigQuery)

0 commit comments

Comments
 (0)