diff --git a/.build.ps1 b/.build.ps1 index bcd506c49f874..18482c379410e 100644 --- a/.build.ps1 +++ b/.build.ps1 @@ -8,6 +8,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/.github/.licenserc.yaml b/.github/.licenserc.yaml new file mode 100644 index 0000000000000..a4063fae0ce0a --- /dev/null +++ b/.github/.licenserc.yaml @@ -0,0 +1,100 @@ +header: + license: + spdx-id: Apache-2.0 + copyright-owner: PingCAP, Inc. + paths-ignore: + - 'docs/' + - 'br/' + - '.gitignore' + - '.gitattributes' + - '.golangci.yml' + - '.licenserc.yaml' + - 'LICENSES/' + - '**/*.md' + - '**/*.json' + - '**/*.pem' + - '**/*.crt' + - '**/*.test' + - '**/*.result' + - '**/*.example' + - '.codecov.yml' + - 'circle.yml' + - 'errors.toml' + - 'Jenkinsfile' + - '.editorconfig' + - 'hooks/pre-commit' + - '**/go.mod' + - '**/go.sum' + - 'LICENSE' + - '.github/' + # The license checker think the following 68 files do not have valid header licenses, need to be discussed. + # Ignore them for now. + - 'cmd/explaintest/config.toml' + - 'cmd/importer/config.toml' + - 'cmd/portgenerator/portgenerator.go' + - 'ddl/ddl.go' + - 'ddl/ddl_api.go' + - 'ddl/mock.go' + - 'ddl/options.go' + - 'executor/aggfuncs/func_stddevpop_test.go' + - 'executor/aggfuncs/func_stddevsamp_test.go' + - 'executor/aggfuncs/func_varpop_test.go' + - 'executor/aggfuncs/func_varsamp_test.go' + - 'executor/index_lookup_merge_join_test.go' + - 'executor/pkg_test.go' + - 'expression/aggregation/base_func_test.go' + - 'expression/aggregation/util_test.go' + - 'expression/builtin.go' + - 'expression/builtin_info.go' + - 'expression/builtin_math.go' + - 'expression/builtin_miscellaneous.go' + - 'expression/builtin_miscellaneous_test.go' + - 'expression/builtin_string.go' + - 'expression/builtin_time.go' + - 'metrics/alertmanager/tidb.rules.yml' + - 'metrics/topsql.go' + - 'planner/core/cache_test.go' + - 'planner/core/logical_plans_test.go' + - 'planner/core/partition_prune.go' + - 'planner/core/partition_pruning_test.go' + - 'planner/core/rule_aggregation_push_down.go' + - 'planner/core/rule_max_min_eliminate.go' + - 'planner/core/rule_partition_processor.go' + - 'planner/core/rule_predicate_push_down.go' + - 'planner/core/telemetry.go' + - 'plugin/conn_ip_example/manifest.toml' + - 'server/conn.go' + - 'server/conn_stmt.go' + - 'server/packetio.go' + - 'server/server.go' + - 'server/util.go' + - 'session/bootstrap.go' + - 'session/session.go' + - 'session/tidb.go' + - 'store/driver/kv_test.go' + - 'store/mockstore/unistore/config/config-template.toml' + - 'store/mockstore/unistore/server/server.go' + - 'table/column.go' + - 'table/table.go' + - 'table/tables/tables.go' + - 'tests/globalkilltest/config.toml' + - 'tests/readonlytest/readonly_test.go' + - 'tools/check/check-timeout.go' + - 'tools/check/revive.toml' + - 'types/convert.go' + - 'types/etc.go' + - 'types/fuzzMarshalJSON.go' + - 'types/fuzzNewBitLiteral.go' + - 'types/fuzzNewHexLiteral.go' + - 'util/collate/collate_bench_test.go' + - 'util/format/format.go' + - 'util/logutil/slow_query_logger.go' + - 'util/mvmap/fnv.go' + - 'util/prefix_helper.go' + - 'util/resourcegrouptag/resource_group_tag.go' + - 'util/set/set_with_memory_usage_test.go' + - 'util/testkit/fake.go' + - 'util/testleak/leaktest.go' + - 'util/timeutil/time_test.go' + - 'util/topsql/reporter/mock/server.go' + comment: on-failure diff --git a/.github/workflows/license-checker.yml b/.github/workflows/license-checker.yml new file mode 100644 index 0000000000000..114783ae3000e --- /dev/null +++ b/.github/workflows/license-checker.yml @@ -0,0 +1,23 @@ +name: License checker + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + check-license: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Check License Header + uses: apache/skywalking-eyes@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + log: info + config: .github/.licenserc.yaml diff --git a/Dockerfile b/Dockerfile index a739919a752b3..154727f659357 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/Makefile b/Makefile index 9c417d86df9dd..840c282dd7eee 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/Makefile.common b/Makefile.common index 7547ec94d0eb8..a5bdc22f80c58 100644 --- a/Makefile.common +++ b/Makefile.common @@ -8,6 +8,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/bindinfo/bind_test.go b/bindinfo/bind_test.go index bd7ab2e848c76..94aca56b62a42 100644 --- a/bindinfo/bind_test.go +++ b/bindinfo/bind_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/bindinfo/cache.go b/bindinfo/cache.go index 46364affbd74d..2c224faac96e0 100644 --- a/bindinfo/cache.go +++ b/bindinfo/cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/bindinfo/handle.go b/bindinfo/handle.go index 1301f6e2556ac..ad0372fa74a9e 100644 --- a/bindinfo/handle.go +++ b/bindinfo/handle.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/bindinfo/session_handle.go b/bindinfo/session_handle.go index 6b54aa9118f77..2d9d1fe3caac8 100644 --- a/bindinfo/session_handle.go +++ b/bindinfo/session_handle.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/bindinfo/stat.go b/bindinfo/stat.go index aea98669002d1..f9c2e681ecb1e 100644 --- a/bindinfo/stat.go +++ b/bindinfo/stat.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/cmd/br/main_test.go b/br/cmd/br/main_test.go index 8b68380494380..c31fdbb8e51d5 100644 --- a/br/cmd/br/main_test.go +++ b/br/cmd/br/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/cmd/tidb-lightning-ctl/main.go b/br/cmd/tidb-lightning-ctl/main.go index 645c9888d60a0..7758621ac5bf3 100644 --- a/br/cmd/tidb-lightning-ctl/main.go +++ b/br/cmd/tidb-lightning-ctl/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/cmd/tidb-lightning-ctl/main_test.go b/br/cmd/tidb-lightning-ctl/main_test.go index e0351c20e9345..9847a62c53e79 100644 --- a/br/cmd/tidb-lightning-ctl/main_test.go +++ b/br/cmd/tidb-lightning-ctl/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/cmd/tidb-lightning/main.go b/br/cmd/tidb-lightning/main.go index d248bac7c26f1..0d44ab8cfe7d2 100644 --- a/br/cmd/tidb-lightning/main.go +++ b/br/cmd/tidb-lightning/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/cmd/tidb-lightning/main_test.go b/br/cmd/tidb-lightning/main_test.go index c77e38a88b440..309b9e24675b3 100644 --- a/br/cmd/tidb-lightning/main_test.go +++ b/br/cmd/tidb-lightning/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/compatibility/prepare_backup.sh b/br/compatibility/prepare_backup.sh index 56eab1949abcb..173d475531bac 100644 --- a/br/compatibility/prepare_backup.sh +++ b/br/compatibility/prepare_backup.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/pkg/cdclog/buffer.go b/br/pkg/cdclog/buffer.go index 84f36ae263eff..7cfe2ea638d94 100644 --- a/br/pkg/cdclog/buffer.go +++ b/br/pkg/cdclog/buffer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/cdclog/decoder.go b/br/pkg/cdclog/decoder.go index f8bdbdb6440b0..e524384fd92c6 100644 --- a/br/pkg/cdclog/decoder.go +++ b/br/pkg/cdclog/decoder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/cdclog/decoder_test.go b/br/pkg/cdclog/decoder_test.go index 150b9fc883c5e..5f7c8b6b22e73 100644 --- a/br/pkg/cdclog/decoder_test.go +++ b/br/pkg/cdclog/decoder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/cdclog/puller.go b/br/pkg/cdclog/puller.go index 6fe36f464a844..1c823c8de6c44 100644 --- a/br/pkg/cdclog/puller.go +++ b/br/pkg/cdclog/puller.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/kv/checksum.go b/br/pkg/kv/checksum.go index af033c5068171..dbfed41aa0edc 100644 --- a/br/pkg/kv/checksum.go +++ b/br/pkg/kv/checksum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/kv/checksum_test.go b/br/pkg/kv/checksum_test.go index c4bbcd7af1f5b..2bda54bebb0ad 100644 --- a/br/pkg/kv/checksum_test.go +++ b/br/pkg/kv/checksum_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/kv/kv.go b/br/pkg/kv/kv.go index de12914d8d84e..80bbdf92d5340 100644 --- a/br/pkg/kv/kv.go +++ b/br/pkg/kv/kv.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/kv/kv_test.go b/br/pkg/kv/kv_test.go index 4994c8b7bcb74..170a2baff99c8 100644 --- a/br/pkg/kv/kv_test.go +++ b/br/pkg/kv/kv_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/kv/session.go b/br/pkg/kv/session.go index 93ad7293d1bdb..ad08d520cd9fc 100644 --- a/br/pkg/kv/session.go +++ b/br/pkg/kv/session.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/kv/session_test.go b/br/pkg/kv/session_test.go index 34b2330799385..3d1fff80575a8 100644 --- a/br/pkg/kv/session_test.go +++ b/br/pkg/kv/session_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/backend.go b/br/pkg/lightning/backend/backend.go index 9f778e15afaec..0a775c4a2b015 100644 --- a/br/pkg/lightning/backend/backend.go +++ b/br/pkg/lightning/backend/backend.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/importer/importer.go b/br/pkg/lightning/backend/importer/importer.go index 6cfd85ca45a98..dc292bdb7e870 100644 --- a/br/pkg/lightning/backend/importer/importer.go +++ b/br/pkg/lightning/backend/importer/importer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/importer/importer_test.go b/br/pkg/lightning/backend/importer/importer_test.go index cc1f28b00bf5d..524a523d2e31d 100644 --- a/br/pkg/lightning/backend/importer/importer_test.go +++ b/br/pkg/lightning/backend/importer/importer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/kv/allocator.go b/br/pkg/lightning/backend/kv/allocator.go index 40dd503be4606..ff86f72524e60 100644 --- a/br/pkg/lightning/backend/kv/allocator.go +++ b/br/pkg/lightning/backend/kv/allocator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/kv/kv2sql.go b/br/pkg/lightning/backend/kv/kv2sql.go index f3f0e0b6f6246..9438094250af2 100644 --- a/br/pkg/lightning/backend/kv/kv2sql.go +++ b/br/pkg/lightning/backend/kv/kv2sql.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/kv/session.go b/br/pkg/lightning/backend/kv/session.go index 88c7fe7d044ed..59934b58cd9fb 100644 --- a/br/pkg/lightning/backend/kv/session.go +++ b/br/pkg/lightning/backend/kv/session.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/kv/session_test.go b/br/pkg/lightning/backend/kv/session_test.go index c8debcdf8793e..5bdde40ba187c 100644 --- a/br/pkg/lightning/backend/kv/session_test.go +++ b/br/pkg/lightning/backend/kv/session_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/kv/sql2kv.go b/br/pkg/lightning/backend/kv/sql2kv.go index b00dbadcce495..b061bf76ac381 100644 --- a/br/pkg/lightning/backend/kv/sql2kv.go +++ b/br/pkg/lightning/backend/kv/sql2kv.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/kv/sql2kv_test.go b/br/pkg/lightning/backend/kv/sql2kv_test.go index 2ecb23c1e43a9..289d8978afdce 100644 --- a/br/pkg/lightning/backend/kv/sql2kv_test.go +++ b/br/pkg/lightning/backend/kv/sql2kv_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/duplicate.go b/br/pkg/lightning/backend/local/duplicate.go index 81911a34ccb30..659ef0037a8b9 100644 --- a/br/pkg/lightning/backend/local/duplicate.go +++ b/br/pkg/lightning/backend/local/duplicate.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/iterator.go b/br/pkg/lightning/backend/local/iterator.go index a6bcd46e22baa..8cd8bc243ca8a 100644 --- a/br/pkg/lightning/backend/local/iterator.go +++ b/br/pkg/lightning/backend/local/iterator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/iterator_test.go b/br/pkg/lightning/backend/local/iterator_test.go index 095222ff44cf6..3c0077247971b 100644 --- a/br/pkg/lightning/backend/local/iterator_test.go +++ b/br/pkg/lightning/backend/local/iterator_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/key_adapter.go b/br/pkg/lightning/backend/local/key_adapter.go index 1eae5bfe1f8a3..0a1bb296aeec0 100644 --- a/br/pkg/lightning/backend/local/key_adapter.go +++ b/br/pkg/lightning/backend/local/key_adapter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/key_adapter_test.go b/br/pkg/lightning/backend/local/key_adapter_test.go index 12080ed9c343d..9892fef4f0e06 100644 --- a/br/pkg/lightning/backend/local/key_adapter_test.go +++ b/br/pkg/lightning/backend/local/key_adapter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/local.go b/br/pkg/lightning/backend/local/local.go index 36b4362cfe6af..129cdc9a5ab12 100644 --- a/br/pkg/lightning/backend/local/local.go +++ b/br/pkg/lightning/backend/local/local.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/local_freebsd.go b/br/pkg/lightning/backend/local/local_freebsd.go index c54f40a98b4a6..08fc827052210 100644 --- a/br/pkg/lightning/backend/local/local_freebsd.go +++ b/br/pkg/lightning/backend/local/local_freebsd.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/local_test.go b/br/pkg/lightning/backend/local/local_test.go index 97aae9db1c1ed..fd491d9680a51 100644 --- a/br/pkg/lightning/backend/local/local_test.go +++ b/br/pkg/lightning/backend/local/local_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/local_unix.go b/br/pkg/lightning/backend/local/local_unix.go index d0d7e8316a24a..d2383aca745c1 100644 --- a/br/pkg/lightning/backend/local/local_unix.go +++ b/br/pkg/lightning/backend/local/local_unix.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/local_unix_generic.go b/br/pkg/lightning/backend/local/local_unix_generic.go index 362b4c1f15f4c..2ea66ba4430cb 100644 --- a/br/pkg/lightning/backend/local/local_unix_generic.go +++ b/br/pkg/lightning/backend/local/local_unix_generic.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/local_windows.go b/br/pkg/lightning/backend/local/local_windows.go index a6e34aad8d5e8..cf0e158088cc0 100644 --- a/br/pkg/lightning/backend/local/local_windows.go +++ b/br/pkg/lightning/backend/local/local_windows.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/localhelper.go b/br/pkg/lightning/backend/local/localhelper.go index 34fa23a60321b..2d9dc5c48cbdd 100644 --- a/br/pkg/lightning/backend/local/localhelper.go +++ b/br/pkg/lightning/backend/local/localhelper.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/local/localhelper_test.go b/br/pkg/lightning/backend/local/localhelper_test.go index be6c5f013ddfc..11149a000fbe2 100644 --- a/br/pkg/lightning/backend/local/localhelper_test.go +++ b/br/pkg/lightning/backend/local/localhelper_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/noop/noop.go b/br/pkg/lightning/backend/noop/noop.go index 3636ec38c6968..37ca4fd8e77a2 100644 --- a/br/pkg/lightning/backend/noop/noop.go +++ b/br/pkg/lightning/backend/noop/noop.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/tidb/tidb.go b/br/pkg/lightning/backend/tidb/tidb.go index 22bfd6ac87c9d..b2259ffb5c8a3 100644 --- a/br/pkg/lightning/backend/tidb/tidb.go +++ b/br/pkg/lightning/backend/tidb/tidb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/backend/tidb/tidb_test.go b/br/pkg/lightning/backend/tidb/tidb_test.go index 40033ea7ae4eb..b9f1cc76b0b5b 100644 --- a/br/pkg/lightning/backend/tidb/tidb_test.go +++ b/br/pkg/lightning/backend/tidb/tidb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/checkpoints/checkpoints.go b/br/pkg/lightning/checkpoints/checkpoints.go index a52cb3cc3800e..83b389a89938e 100644 --- a/br/pkg/lightning/checkpoints/checkpoints.go +++ b/br/pkg/lightning/checkpoints/checkpoints.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/checkpoints/checkpointspb/file_checkpoints.proto b/br/pkg/lightning/checkpoints/checkpointspb/file_checkpoints.proto index 9f8708a1fa276..0888e1da56ef7 100644 --- a/br/pkg/lightning/checkpoints/checkpointspb/file_checkpoints.proto +++ b/br/pkg/lightning/checkpoints/checkpointspb/file_checkpoints.proto @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/checkpoints/glue_checkpoint.go b/br/pkg/lightning/checkpoints/glue_checkpoint.go index 78a1f0c501b6a..0785a6f1a76ca 100644 --- a/br/pkg/lightning/checkpoints/glue_checkpoint.go +++ b/br/pkg/lightning/checkpoints/glue_checkpoint.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/checkpoints/tidb.go b/br/pkg/lightning/checkpoints/tidb.go index f53cadd4288dc..b04fcda401bb5 100644 --- a/br/pkg/lightning/checkpoints/tidb.go +++ b/br/pkg/lightning/checkpoints/tidb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/conn.go b/br/pkg/lightning/common/conn.go index 2a6970800a608..0dc011e88b7fa 100644 --- a/br/pkg/lightning/common/conn.go +++ b/br/pkg/lightning/common/conn.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/once_error.go b/br/pkg/lightning/common/once_error.go index 14c05193ea12b..50e110842724b 100644 --- a/br/pkg/lightning/common/once_error.go +++ b/br/pkg/lightning/common/once_error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/once_error_test.go b/br/pkg/lightning/common/once_error_test.go index a4bd83300ccf4..3e4ae41121a11 100644 --- a/br/pkg/lightning/common/once_error_test.go +++ b/br/pkg/lightning/common/once_error_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/pause.go b/br/pkg/lightning/common/pause.go index 7c616e6ea5a92..4cbb3a39cae95 100644 --- a/br/pkg/lightning/common/pause.go +++ b/br/pkg/lightning/common/pause.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/pause_test.go b/br/pkg/lightning/common/pause_test.go index 53da312b01d49..34ee124b7026a 100644 --- a/br/pkg/lightning/common/pause_test.go +++ b/br/pkg/lightning/common/pause_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/security.go b/br/pkg/lightning/common/security.go index 367b40299e060..1b48213be0a6f 100644 --- a/br/pkg/lightning/common/security.go +++ b/br/pkg/lightning/common/security.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/security_test.go b/br/pkg/lightning/common/security_test.go index 8e37fa7fcc1d3..1eec0ef9f72ce 100644 --- a/br/pkg/lightning/common/security_test.go +++ b/br/pkg/lightning/common/security_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/storage.go b/br/pkg/lightning/common/storage.go index e038203195b9e..ae69018431719 100644 --- a/br/pkg/lightning/common/storage.go +++ b/br/pkg/lightning/common/storage.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/storage_test.go b/br/pkg/lightning/common/storage_test.go index 3ae1c08328f7a..db46269149a4c 100644 --- a/br/pkg/lightning/common/storage_test.go +++ b/br/pkg/lightning/common/storage_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/storage_unix.go b/br/pkg/lightning/common/storage_unix.go index e1eae76b9b837..ba22e92354ceb 100644 --- a/br/pkg/lightning/common/storage_unix.go +++ b/br/pkg/lightning/common/storage_unix.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/storage_windows.go b/br/pkg/lightning/common/storage_windows.go index a0d8d13fc0e54..21a2398ad66c3 100644 --- a/br/pkg/lightning/common/storage_windows.go +++ b/br/pkg/lightning/common/storage_windows.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/util.go b/br/pkg/lightning/common/util.go index e836f7b9e8fb2..786ffe6434f69 100644 --- a/br/pkg/lightning/common/util.go +++ b/br/pkg/lightning/common/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/common/util_test.go b/br/pkg/lightning/common/util_test.go index f754c9c7a59d4..04a1ceecf45b1 100644 --- a/br/pkg/lightning/common/util_test.go +++ b/br/pkg/lightning/common/util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/bytesize.go b/br/pkg/lightning/config/bytesize.go index d511c72c1db23..bc159d0825496 100644 --- a/br/pkg/lightning/config/bytesize.go +++ b/br/pkg/lightning/config/bytesize.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/bytesize_test.go b/br/pkg/lightning/config/bytesize_test.go index 80bbc6b5b1a09..5e8d07785561a 100644 --- a/br/pkg/lightning/config/bytesize_test.go +++ b/br/pkg/lightning/config/bytesize_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/config.go b/br/pkg/lightning/config/config.go index 394c73ce66908..4c2fbba4c1c55 100644 --- a/br/pkg/lightning/config/config.go +++ b/br/pkg/lightning/config/config.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/config_test.go b/br/pkg/lightning/config/config_test.go index 4d4f0e34cb272..b69db37f24767 100644 --- a/br/pkg/lightning/config/config_test.go +++ b/br/pkg/lightning/config/config_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/configlist.go b/br/pkg/lightning/config/configlist.go index 00ff6c79b2467..6a3753881419e 100644 --- a/br/pkg/lightning/config/configlist.go +++ b/br/pkg/lightning/config/configlist.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/configlist_test.go b/br/pkg/lightning/config/configlist_test.go index 0a458749f78db..48deed74817ab 100644 --- a/br/pkg/lightning/config/configlist_test.go +++ b/br/pkg/lightning/config/configlist_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/const.go b/br/pkg/lightning/config/const.go index 21289e70bdf95..78ad85c2944d7 100644 --- a/br/pkg/lightning/config/const.go +++ b/br/pkg/lightning/config/const.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/config/global.go b/br/pkg/lightning/config/global.go index b5189afe7cf69..7eb8e240c9dfe 100644 --- a/br/pkg/lightning/config/global.go +++ b/br/pkg/lightning/config/global.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/glue/glue.go b/br/pkg/lightning/glue/glue.go index 53fd94e4f2a38..e2e770226b4fd 100644 --- a/br/pkg/lightning/glue/glue.go +++ b/br/pkg/lightning/glue/glue.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/lightning.go b/br/pkg/lightning/lightning.go index 8031627fe7021..a25751e923f36 100644 --- a/br/pkg/lightning/lightning.go +++ b/br/pkg/lightning/lightning.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/lightning_test.go b/br/pkg/lightning/lightning_test.go index ba9ab7fe4a9bf..337adc96f9882 100644 --- a/br/pkg/lightning/lightning_test.go +++ b/br/pkg/lightning/lightning_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/log/log.go b/br/pkg/lightning/log/log.go index 4058f2513ce9b..e91ed3fb47a56 100644 --- a/br/pkg/lightning/log/log.go +++ b/br/pkg/lightning/log/log.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/log/log_test.go b/br/pkg/lightning/log/log_test.go index 1090ed6cfe720..8024b5fa50df9 100644 --- a/br/pkg/lightning/log/log_test.go +++ b/br/pkg/lightning/log/log_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/log/testlogger.go b/br/pkg/lightning/log/testlogger.go index 759a2d2a317ac..5fad50adc0d96 100644 --- a/br/pkg/lightning/log/testlogger.go +++ b/br/pkg/lightning/log/testlogger.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/manual/allocator.go b/br/pkg/lightning/manual/allocator.go index 91829e3f02d92..821eb750c5030 100644 --- a/br/pkg/lightning/manual/allocator.go +++ b/br/pkg/lightning/manual/allocator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/metric/metric.go b/br/pkg/lightning/metric/metric.go index ef611828e4621..a06c8355266cf 100644 --- a/br/pkg/lightning/metric/metric.go +++ b/br/pkg/lightning/metric/metric.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/metric/metric_test.go b/br/pkg/lightning/metric/metric_test.go index 8801c2e928ca8..18bc94e8517b2 100644 --- a/br/pkg/lightning/metric/metric_test.go +++ b/br/pkg/lightning/metric/metric_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/csv_parser.go b/br/pkg/lightning/mydump/csv_parser.go index 7cd400e3d5b6e..16e8676966f5e 100644 --- a/br/pkg/lightning/mydump/csv_parser.go +++ b/br/pkg/lightning/mydump/csv_parser.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/loader.go b/br/pkg/lightning/mydump/loader.go index 24af41ac7ad87..27bab8fa5cf7b 100644 --- a/br/pkg/lightning/mydump/loader.go +++ b/br/pkg/lightning/mydump/loader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/loader_test.go b/br/pkg/lightning/mydump/loader_test.go index ff39f438f23ce..76bc50eba2793 100644 --- a/br/pkg/lightning/mydump/loader_test.go +++ b/br/pkg/lightning/mydump/loader_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/parser.go b/br/pkg/lightning/mydump/parser.go index 81c050ae01635..3743d1c94b9c1 100644 --- a/br/pkg/lightning/mydump/parser.go +++ b/br/pkg/lightning/mydump/parser.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/parser.rl b/br/pkg/lightning/mydump/parser.rl index 1ad090dd5f2fe..25627dbf2e865 100644 --- a/br/pkg/lightning/mydump/parser.rl +++ b/br/pkg/lightning/mydump/parser.rl @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/parser_generated.go b/br/pkg/lightning/mydump/parser_generated.go index a53af0eb949dc..bc58a9d181e0d 100644 --- a/br/pkg/lightning/mydump/parser_generated.go +++ b/br/pkg/lightning/mydump/parser_generated.go @@ -11,6 +11,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/parser_test.go b/br/pkg/lightning/mydump/parser_test.go index 0f388ea7cc8ab..e73dc9c49e9b6 100644 --- a/br/pkg/lightning/mydump/parser_test.go +++ b/br/pkg/lightning/mydump/parser_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/reader.go b/br/pkg/lightning/mydump/reader.go index 801a5a59079ae..7db6bf2bf8ed5 100644 --- a/br/pkg/lightning/mydump/reader.go +++ b/br/pkg/lightning/mydump/reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/reader_test.go b/br/pkg/lightning/mydump/reader_test.go index 93bd153d1a064..0ff37ad666747 100644 --- a/br/pkg/lightning/mydump/reader_test.go +++ b/br/pkg/lightning/mydump/reader_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/region.go b/br/pkg/lightning/mydump/region.go index 9ec56cf2d97cb..07b7693a9a216 100644 --- a/br/pkg/lightning/mydump/region.go +++ b/br/pkg/lightning/mydump/region.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/mydump/region_test.go b/br/pkg/lightning/mydump/region_test.go index 4d35b465af75d..657781c92c996 100644 --- a/br/pkg/lightning/mydump/region_test.go +++ b/br/pkg/lightning/mydump/region_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/check_info.go b/br/pkg/lightning/restore/check_info.go index 33a8f6d933b9d..360b62b4c590a 100644 --- a/br/pkg/lightning/restore/check_info.go +++ b/br/pkg/lightning/restore/check_info.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/check_template.go b/br/pkg/lightning/restore/check_template.go index 4c5f4ff823952..03fb146e9ba1a 100644 --- a/br/pkg/lightning/restore/check_template.go +++ b/br/pkg/lightning/restore/check_template.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/checksum.go b/br/pkg/lightning/restore/checksum.go index 01a548cfe65c9..c634ee48729f5 100644 --- a/br/pkg/lightning/restore/checksum.go +++ b/br/pkg/lightning/restore/checksum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/restore.go b/br/pkg/lightning/restore/restore.go index bcb0a1d3f73e9..8462d64eeda4a 100644 --- a/br/pkg/lightning/restore/restore.go +++ b/br/pkg/lightning/restore/restore.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/restore_test.go b/br/pkg/lightning/restore/restore_test.go index c1eb7d42206ec..9fb10e77926d9 100644 --- a/br/pkg/lightning/restore/restore_test.go +++ b/br/pkg/lightning/restore/restore_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/table_restore.go b/br/pkg/lightning/restore/table_restore.go index 554583aff28a4..726856da51942 100644 --- a/br/pkg/lightning/restore/table_restore.go +++ b/br/pkg/lightning/restore/table_restore.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/tidb.go b/br/pkg/lightning/restore/tidb.go index 000aaba9d3ffe..44277e24433a1 100644 --- a/br/pkg/lightning/restore/tidb.go +++ b/br/pkg/lightning/restore/tidb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/restore/tidb_test.go b/br/pkg/lightning/restore/tidb_test.go index 2a2f746b8fc5e..03158ff6a1106 100644 --- a/br/pkg/lightning/restore/tidb_test.go +++ b/br/pkg/lightning/restore/tidb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/sigusr1_other.go b/br/pkg/lightning/sigusr1_other.go index 1bb579c31e46e..af962b4c8bfdf 100644 --- a/br/pkg/lightning/sigusr1_other.go +++ b/br/pkg/lightning/sigusr1_other.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/sigusr1_unix.go b/br/pkg/lightning/sigusr1_unix.go index 1770371072fc0..2280d0bd145ba 100644 --- a/br/pkg/lightning/sigusr1_unix.go +++ b/br/pkg/lightning/sigusr1_unix.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/tikv/tikv.go b/br/pkg/lightning/tikv/tikv.go index 5bca0f65535f6..967109aea7688 100644 --- a/br/pkg/lightning/tikv/tikv.go +++ b/br/pkg/lightning/tikv/tikv.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/verification/checksum.go b/br/pkg/lightning/verification/checksum.go index 343f93e40ebb3..0a44177f80fe4 100644 --- a/br/pkg/lightning/verification/checksum.go +++ b/br/pkg/lightning/verification/checksum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/verification/checksum_test.go b/br/pkg/lightning/verification/checksum_test.go index bf2d8b6be8371..fb9c714c7a736 100644 --- a/br/pkg/lightning/verification/checksum_test.go +++ b/br/pkg/lightning/verification/checksum_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/web/res.go b/br/pkg/lightning/web/res.go index 92a6a905ccafb..7e554c82dfcaf 100644 --- a/br/pkg/lightning/web/res.go +++ b/br/pkg/lightning/web/res.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/worker/worker.go b/br/pkg/lightning/worker/worker.go index 977c73f18fd9f..8690798269150 100644 --- a/br/pkg/lightning/worker/worker.go +++ b/br/pkg/lightning/worker/worker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/lightning/worker/worker_test.go b/br/pkg/lightning/worker/worker_test.go index 112b0e5d13220..11a09fd849569 100644 --- a/br/pkg/lightning/worker/worker_test.go +++ b/br/pkg/lightning/worker/worker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/membuf/buffer.go b/br/pkg/membuf/buffer.go index fce5991e14fef..172d99baec9aa 100644 --- a/br/pkg/membuf/buffer.go +++ b/br/pkg/membuf/buffer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/membuf/buffer_test.go b/br/pkg/membuf/buffer_test.go index ba6110d88fc6e..f6a6800b0df3e 100644 --- a/br/pkg/membuf/buffer_test.go +++ b/br/pkg/membuf/buffer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/mock/mockid/mockid.go b/br/pkg/mock/mockid/mockid.go index b015a940b0763..bd645e457d01a 100644 --- a/br/pkg/mock/mockid/mockid.go +++ b/br/pkg/mock/mockid/mockid.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/pkg/restore/ingester.go b/br/pkg/restore/ingester.go index a4535dc24fa87..22d5e389a63c6 100644 --- a/br/pkg/restore/ingester.go +++ b/br/pkg/restore/ingester.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/tests/_utils/check_cluster_version b/br/tests/_utils/check_cluster_version index e227c2a086f58..e13ec5fbe255b 100755 --- a/br/tests/_utils/check_cluster_version +++ b/br/tests/_utils/check_cluster_version @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/check_contains b/br/tests/_utils/check_contains index 00faf0f3f3d4e..13953c6347645 100755 --- a/br/tests/_utils/check_contains +++ b/br/tests/_utils/check_contains @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/check_not_contains b/br/tests/_utils/check_not_contains index f6cb40276f537..e56b42d20ef39 100755 --- a/br/tests/_utils/check_not_contains +++ b/br/tests/_utils/check_not_contains @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/generate_certs b/br/tests/_utils/generate_certs index bbfb7a39c5f49..789f42d269fcd 100755 --- a/br/tests/_utils/generate_certs +++ b/br/tests/_utils/generate_certs @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/read_result b/br/tests/_utils/read_result index e87a91ae22823..52974ee47cc73 100755 --- a/br/tests/_utils/read_result +++ b/br/tests/_utils/read_result @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_br b/br/tests/_utils/run_br index fe51d5de9016f..34487ee60fd62 100755 --- a/br/tests/_utils/run_br +++ b/br/tests/_utils/run_br @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_cdc b/br/tests/_utils/run_cdc index 7f4b93c4d1635..21e1e4261df91 100755 --- a/br/tests/_utils/run_cdc +++ b/br/tests/_utils/run_cdc @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_curl b/br/tests/_utils/run_curl index b7565ae7d7435..6023e0e44f336 100755 --- a/br/tests/_utils/run_curl +++ b/br/tests/_utils/run_curl @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_lightning b/br/tests/_utils/run_lightning index a5d05c29cb772..0804275ab2fab 100755 --- a/br/tests/_utils/run_lightning +++ b/br/tests/_utils/run_lightning @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_lightning_ctl b/br/tests/_utils/run_lightning_ctl index 171a27ebdefee..0d82f6cf7e293 100755 --- a/br/tests/_utils/run_lightning_ctl +++ b/br/tests/_utils/run_lightning_ctl @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_pd_ctl b/br/tests/_utils/run_pd_ctl index 67f263ea46e4f..5c8fecf4cab32 100755 --- a/br/tests/_utils/run_pd_ctl +++ b/br/tests/_utils/run_pd_ctl @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_services b/br/tests/_utils/run_services index 41b8f0b0812f5..ed16c6eb1ad55 100644 --- a/br/tests/_utils/run_services +++ b/br/tests/_utils/run_services @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_sql b/br/tests/_utils/run_sql index 80dfe9f93153f..39241157cade6 100755 --- a/br/tests/_utils/run_sql +++ b/br/tests/_utils/run_sql @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/_utils/run_sql_in_container b/br/tests/_utils/run_sql_in_container index d88ffa24208a6..165ea5b3044ef 100755 --- a/br/tests/_utils/run_sql_in_container +++ b/br/tests/_utils/run_sql_in_container @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_300_small_tables/run.sh b/br/tests/br_300_small_tables/run.sh index bdda6c3514a9c..a649e41240aa1 100644 --- a/br/tests/br_300_small_tables/run.sh +++ b/br/tests/br_300_small_tables/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_backup_empty/run.sh b/br/tests/br_backup_empty/run.sh index 0bee08a0e8d79..943acb9506c81 100644 --- a/br/tests/br_backup_empty/run.sh +++ b/br/tests/br_backup_empty/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_backup_version/run.sh b/br/tests/br_backup_version/run.sh index 1c9cb79e7986b..a5651f701fa4a 100644 --- a/br/tests/br_backup_version/run.sh +++ b/br/tests/br_backup_version/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_case_sensitive/run.sh b/br/tests/br_case_sensitive/run.sh index c598bc765e82f..a5c34992b05f4 100644 --- a/br/tests/br_case_sensitive/run.sh +++ b/br/tests/br_case_sensitive/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_clustered_index/run.sh b/br/tests/br_clustered_index/run.sh index 6f47ffc72a38f..c1fba6d05410f 100755 --- a/br/tests/br_clustered_index/run.sh +++ b/br/tests/br_clustered_index/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_db/run.sh b/br/tests/br_db/run.sh index f9ca98fd67304..14d3152145566 100755 --- a/br/tests/br_db/run.sh +++ b/br/tests/br_db/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_db_online/run.sh b/br/tests/br_db_online/run.sh index 17595edea9137..53dcc4f2c8bbc 100755 --- a/br/tests/br_db_online/run.sh +++ b/br/tests/br_db_online/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_db_online_newkv/run.sh b/br/tests/br_db_online_newkv/run.sh index c768aaa045d1b..1bae65a3fabb9 100755 --- a/br/tests/br_db_online_newkv/run.sh +++ b/br/tests/br_db_online_newkv/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_db_skip/run.sh b/br/tests/br_db_skip/run.sh index 20852c4da7cc6..58c39bb3291ab 100755 --- a/br/tests/br_db_skip/run.sh +++ b/br/tests/br_db_skip/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_debug_meta/run.sh b/br/tests/br_debug_meta/run.sh index 5274d8298c7da..44049aa7cf7c8 100644 --- a/br/tests/br_debug_meta/run.sh +++ b/br/tests/br_debug_meta/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_full/run.sh b/br/tests/br_full/run.sh index 0415e6f0874ec..4fab79686352e 100755 --- a/br/tests/br_full/run.sh +++ b/br/tests/br_full/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_full_ddl/run.sh b/br/tests/br_full_ddl/run.sh index a2c886d115ae2..ad27e091ef476 100755 --- a/br/tests/br_full_ddl/run.sh +++ b/br/tests/br_full_ddl/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_full_index/run.sh b/br/tests/br_full_index/run.sh index 9b0364f2cf74a..be43a423e6549 100755 --- a/br/tests/br_full_index/run.sh +++ b/br/tests/br_full_index/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_gcs/oauth.go b/br/tests/br_gcs/oauth.go index c9fdc80274b2e..04bdff7bbadf6 100644 --- a/br/tests/br_gcs/oauth.go +++ b/br/tests/br_gcs/oauth.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/tests/br_gcs/run.sh b/br/tests/br_gcs/run.sh index 9a1aa46f93219..a29cbafa8668c 100755 --- a/br/tests/br_gcs/run.sh +++ b/br/tests/br_gcs/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_history/run.sh b/br/tests/br_history/run.sh index 7021426c72b2a..161b01f8c8ba5 100755 --- a/br/tests/br_history/run.sh +++ b/br/tests/br_history/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_incompatible_tidb_config/run.sh b/br/tests/br_incompatible_tidb_config/run.sh index 0b9040e6b92d9..0034dd850249c 100755 --- a/br/tests/br_incompatible_tidb_config/run.sh +++ b/br/tests/br_incompatible_tidb_config/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_incremental/run.sh b/br/tests/br_incremental/run.sh index e76df13f819be..da24ba12b4a3d 100755 --- a/br/tests/br_incremental/run.sh +++ b/br/tests/br_incremental/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_incremental_ddl/run.sh b/br/tests/br_incremental_ddl/run.sh index e9317d7f3e29a..d6e27b4626091 100755 --- a/br/tests/br_incremental_ddl/run.sh +++ b/br/tests/br_incremental_ddl/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_incremental_index/run.sh b/br/tests/br_incremental_index/run.sh index 19380a7d461d6..21b5de3a47d0e 100755 --- a/br/tests/br_incremental_index/run.sh +++ b/br/tests/br_incremental_index/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_incremental_only_ddl/run.sh b/br/tests/br_incremental_only_ddl/run.sh index 645a402af5f02..623281894cd3b 100755 --- a/br/tests/br_incremental_only_ddl/run.sh +++ b/br/tests/br_incremental_only_ddl/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_incremental_same_table/run.sh b/br/tests/br_incremental_same_table/run.sh index d7850838c67bd..67b502ae819d1 100755 --- a/br/tests/br_incremental_same_table/run.sh +++ b/br/tests/br_incremental_same_table/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_insert_after_restore/run.sh b/br/tests/br_insert_after_restore/run.sh index d6c0632b41676..5d8aa947b43a4 100755 --- a/br/tests/br_insert_after_restore/run.sh +++ b/br/tests/br_insert_after_restore/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_key_locked/codec.go b/br/tests/br_key_locked/codec.go index a4a235b45fa1d..d53b92cb68613 100644 --- a/br/tests/br_key_locked/codec.go +++ b/br/tests/br_key_locked/codec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/tests/br_key_locked/locker.go b/br/tests/br_key_locked/locker.go index 9fdf884bd43f5..d74af4a2503d6 100644 --- a/br/tests/br_key_locked/locker.go +++ b/br/tests/br_key_locked/locker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/tests/br_key_locked/run.sh b/br/tests/br_key_locked/run.sh index f0608f14e7a9b..3ad4c5daaeb57 100755 --- a/br/tests/br_key_locked/run.sh +++ b/br/tests/br_key_locked/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_log_restore/run.sh b/br/tests/br_log_restore/run.sh index 1f7cc839d056f..3753e58267816 100755 --- a/br/tests/br_log_restore/run.sh +++ b/br/tests/br_log_restore/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_log_test/run.sh b/br/tests/br_log_test/run.sh index ba68253df0e9a..ec724df723ba1 100644 --- a/br/tests/br_log_test/run.sh +++ b/br/tests/br_log_test/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_move_backup/run.sh b/br/tests/br_move_backup/run.sh index c426a62e74a89..2a15476372588 100755 --- a/br/tests/br_move_backup/run.sh +++ b/br/tests/br_move_backup/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_other/run.sh b/br/tests/br_other/run.sh index 63756fa3d1ec3..5b6c5fad52f18 100644 --- a/br/tests/br_other/run.sh +++ b/br/tests/br_other/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_range/run.sh b/br/tests/br_range/run.sh index 2768845970946..4e3e3c211178b 100644 --- a/br/tests/br_range/run.sh +++ b/br/tests/br_range/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. @@ -36,4 +37,4 @@ run_sql "drop schema $DB;" echo "restore start..." run_br restore db --db $DB -s "local://$TEST_DIR/$DB" --pd $PD_ADDR -run_sql "drop schema $DB;" \ No newline at end of file +run_sql "drop schema $DB;" diff --git a/br/tests/br_rawkv/run.sh b/br/tests/br_rawkv/run.sh index 56cbc993a55e2..62c4c7509c01e 100644 --- a/br/tests/br_rawkv/run.sh +++ b/br/tests/br_rawkv/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_restore_TDE_enable/run.sh b/br/tests/br_restore_TDE_enable/run.sh index 0148792371540..793a390951a6e 100755 --- a/br/tests/br_restore_TDE_enable/run.sh +++ b/br/tests/br_restore_TDE_enable/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. @@ -148,4 +149,4 @@ done for i in $(seq $DB_COUNT); do run_sql "DROP DATABASE $DB${i};" -done \ No newline at end of file +done diff --git a/br/tests/br_s3/run.sh b/br/tests/br_s3/run.sh index b01280690d699..d0c20996db7ef 100755 --- a/br/tests/br_s3/run.sh +++ b/br/tests/br_s3/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_shuffle_leader/run.sh b/br/tests/br_shuffle_leader/run.sh index 156f9c39476fc..795fad93655b1 100755 --- a/br/tests/br_shuffle_leader/run.sh +++ b/br/tests/br_shuffle_leader/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_shuffle_region/run.sh b/br/tests/br_shuffle_region/run.sh index 42dc7132fa53c..aa475227526d5 100755 --- a/br/tests/br_shuffle_region/run.sh +++ b/br/tests/br_shuffle_region/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_single_table/run.sh b/br/tests/br_single_table/run.sh index 92c5f91fd699c..c113c672b80a1 100755 --- a/br/tests/br_single_table/run.sh +++ b/br/tests/br_single_table/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_skip_checksum/run.sh b/br/tests/br_skip_checksum/run.sh index 2e66f6765cb92..fc7e7c7ed3535 100755 --- a/br/tests/br_skip_checksum/run.sh +++ b/br/tests/br_skip_checksum/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_small_batch_size/run.sh b/br/tests/br_small_batch_size/run.sh index 82bb174055dfc..bb91a3f9ad3c3 100755 --- a/br/tests/br_small_batch_size/run.sh +++ b/br/tests/br_small_batch_size/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_split_region_fail/run.sh b/br/tests/br_split_region_fail/run.sh index 91cd4a9fb7b5c..be26823cd6810 100644 --- a/br/tests/br_split_region_fail/run.sh +++ b/br/tests/br_split_region_fail/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_table_filter/run.sh b/br/tests/br_table_filter/run.sh index f04b7b18605e0..272e1fce25c5c 100755 --- a/br/tests/br_table_filter/run.sh +++ b/br/tests/br_table_filter/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_table_partition/prepare.sh b/br/tests/br_table_partition/prepare.sh index 674da8b8806ae..3d09e735fdc2a 100755 --- a/br/tests/br_table_partition/prepare.sh +++ b/br/tests/br_table_partition/prepare.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_table_partition/run.sh b/br/tests/br_table_partition/run.sh index a89968aaf7b1e..87cd79a49c26c 100755 --- a/br/tests/br_table_partition/run.sh +++ b/br/tests/br_table_partition/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_tiflash/run.sh b/br/tests/br_tiflash/run.sh index 875a7eb44e9d1..2d8b0d6419256 100644 --- a/br/tests/br_tiflash/run.sh +++ b/br/tests/br_tiflash/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_views_and_sequences/run.sh b/br/tests/br_views_and_sequences/run.sh index b067bab069b57..1a033d98cb7c3 100755 --- a/br/tests/br_views_and_sequences/run.sh +++ b/br/tests/br_views_and_sequences/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/br_z_gc_safepoint/gc.go b/br/tests/br_z_gc_safepoint/gc.go index 8a134763ac590..479f38227ce27 100644 --- a/br/tests/br_z_gc_safepoint/gc.go +++ b/br/tests/br_z_gc_safepoint/gc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/tests/br_z_gc_safepoint/run.sh b/br/tests/br_z_gc_safepoint/run.sh index ef7ecc66c1fca..1eabe68dd0b1b 100755 --- a/br/tests/br_z_gc_safepoint/run.sh +++ b/br/tests/br_z_gc_safepoint/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/docker_compatible_gcs/prepare.sh b/br/tests/docker_compatible_gcs/prepare.sh index 4b0e7b6ac7865..18460904a8169 100755 --- a/br/tests/docker_compatible_gcs/prepare.sh +++ b/br/tests/docker_compatible_gcs/prepare.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/docker_compatible_gcs/run.sh b/br/tests/docker_compatible_gcs/run.sh index 4ba9db1052139..57d1b3ffc192a 100755 --- a/br/tests/docker_compatible_gcs/run.sh +++ b/br/tests/docker_compatible_gcs/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/docker_compatible_s3/prepare.sh b/br/tests/docker_compatible_s3/prepare.sh index 29bb4cda9d932..ff3955386614c 100755 --- a/br/tests/docker_compatible_s3/prepare.sh +++ b/br/tests/docker_compatible_s3/prepare.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/docker_compatible_s3/run.sh b/br/tests/docker_compatible_s3/run.sh index a174f11c1850c..17d29e98ebbf4 100755 --- a/br/tests/docker_compatible_s3/run.sh +++ b/br/tests/docker_compatible_s3/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/download_tools.sh b/br/tests/download_tools.sh index 737d4c7f3778c..30b1577781ac4 100755 --- a/br/tests/download_tools.sh +++ b/br/tests/download_tools.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_alter_random/run.sh b/br/tests/lightning_alter_random/run.sh index b2141ab40d4ca..c0c81e37ff110 100644 --- a/br/tests/lightning_alter_random/run.sh +++ b/br/tests/lightning_alter_random/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_auto_random_default/run.sh b/br/tests/lightning_auto_random_default/run.sh index 499cb27d5a704..432582bf72e24 100644 --- a/br/tests/lightning_auto_random_default/run.sh +++ b/br/tests/lightning_auto_random_default/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_black-white-list/run.sh b/br/tests/lightning_black-white-list/run.sh index 823b615b4e205..f58317a2f9984 100755 --- a/br/tests/lightning_black-white-list/run.sh +++ b/br/tests/lightning_black-white-list/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_character_sets/run.sh b/br/tests/lightning_character_sets/run.sh index 36f15a57dcb1f..6750ee08a4838 100755 --- a/br/tests/lightning_character_sets/run.sh +++ b/br/tests/lightning_character_sets/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint/run.sh b/br/tests/lightning_checkpoint/run.sh index bc608aba8853c..ed5f36a706912 100755 --- a/br/tests/lightning_checkpoint/run.sh +++ b/br/tests/lightning_checkpoint/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_chunks/run.sh b/br/tests/lightning_checkpoint_chunks/run.sh index 86b23d6249891..1bfd48da6e4c5 100755 --- a/br/tests/lightning_checkpoint_chunks/run.sh +++ b/br/tests/lightning_checkpoint_chunks/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_columns/run.sh b/br/tests/lightning_checkpoint_columns/run.sh index 11a4a1560d788..401c75cfb9f64 100755 --- a/br/tests/lightning_checkpoint_columns/run.sh +++ b/br/tests/lightning_checkpoint_columns/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_dirty_tableid/run.sh b/br/tests/lightning_checkpoint_dirty_tableid/run.sh index 32a71f73767f2..dfd320508d4e2 100755 --- a/br/tests/lightning_checkpoint_dirty_tableid/run.sh +++ b/br/tests/lightning_checkpoint_dirty_tableid/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_engines/run.sh b/br/tests/lightning_checkpoint_engines/run.sh index 680fb9ef634de..7a7bce45cb7ad 100755 --- a/br/tests/lightning_checkpoint_engines/run.sh +++ b/br/tests/lightning_checkpoint_engines/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_error_destroy/run.sh b/br/tests/lightning_checkpoint_error_destroy/run.sh index 4900f10f1d36d..8afc6a0fbd26b 100755 --- a/br/tests/lightning_checkpoint_error_destroy/run.sh +++ b/br/tests/lightning_checkpoint_error_destroy/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_parquet/run.sh b/br/tests/lightning_checkpoint_parquet/run.sh index d5ab1b8a40f6d..858d5335765a0 100755 --- a/br/tests/lightning_checkpoint_parquet/run.sh +++ b/br/tests/lightning_checkpoint_parquet/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_checkpoint_timestamp/run.sh b/br/tests/lightning_checkpoint_timestamp/run.sh index 507cbdedce1d9..9a68ecdc1c1df 100755 --- a/br/tests/lightning_checkpoint_timestamp/run.sh +++ b/br/tests/lightning_checkpoint_timestamp/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_common_handle/run.sh b/br/tests/lightning_common_handle/run.sh index 101689f5d8ed8..7e6f710319394 100644 --- a/br/tests/lightning_common_handle/run.sh +++ b/br/tests/lightning_common_handle/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_concurrent-restore/run.sh b/br/tests/lightning_concurrent-restore/run.sh index 1614d588d0803..79ff7ddfbe936 100644 --- a/br/tests/lightning_concurrent-restore/run.sh +++ b/br/tests/lightning_concurrent-restore/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_default-columns/run.sh b/br/tests/lightning_default-columns/run.sh index b3fcec565a570..37ac56fd1d08c 100755 --- a/br/tests/lightning_default-columns/run.sh +++ b/br/tests/lightning_default-columns/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_disk_quota/run.sh b/br/tests/lightning_disk_quota/run.sh index 7916292978ad2..c0b7a65fca39e 100644 --- a/br/tests/lightning_disk_quota/run.sh +++ b/br/tests/lightning_disk_quota/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_duplicate_detection/run.sh b/br/tests/lightning_duplicate_detection/run.sh index 091ac122ebb4e..d775586a5b369 100644 --- a/br/tests/lightning_duplicate_detection/run.sh +++ b/br/tests/lightning_duplicate_detection/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_error_summary/run.sh b/br/tests/lightning_error_summary/run.sh index 0b61e052e68cb..674268a54c6b2 100755 --- a/br/tests/lightning_error_summary/run.sh +++ b/br/tests/lightning_error_summary/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_examples/run.sh b/br/tests/lightning_examples/run.sh index c59e1742411f3..ce66e6a42b781 100755 --- a/br/tests/lightning_examples/run.sh +++ b/br/tests/lightning_examples/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_exotic_filenames/run.sh b/br/tests/lightning_exotic_filenames/run.sh index eb304b9842a1e..adae2137e88de 100755 --- a/br/tests/lightning_exotic_filenames/run.sh +++ b/br/tests/lightning_exotic_filenames/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_fail_fast/run.sh b/br/tests/lightning_fail_fast/run.sh index a1a6b85fc3091..8894bd0c5c8f4 100755 --- a/br/tests/lightning_fail_fast/run.sh +++ b/br/tests/lightning_fail_fast/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_file_routing/run.sh b/br/tests/lightning_file_routing/run.sh index aefd760e03381..36ed5611b51e2 100755 --- a/br/tests/lightning_file_routing/run.sh +++ b/br/tests/lightning_file_routing/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_gcs/run.sh b/br/tests/lightning_gcs/run.sh index d0859caac6b9f..894097b043d9b 100644 --- a/br/tests/lightning_gcs/run.sh +++ b/br/tests/lightning_gcs/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_generated_columns/run.sh b/br/tests/lightning_generated_columns/run.sh index 163e74fb6155e..b1632ac759241 100644 --- a/br/tests/lightning_generated_columns/run.sh +++ b/br/tests/lightning_generated_columns/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_incremental/run.sh b/br/tests/lightning_incremental/run.sh index bf8ccde576693..f04630055936a 100644 --- a/br/tests/lightning_incremental/run.sh +++ b/br/tests/lightning_incremental/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_issue_282/run.sh b/br/tests/lightning_issue_282/run.sh index 344a7a0fd90d3..87f67ee6ce07f 100644 --- a/br/tests/lightning_issue_282/run.sh +++ b/br/tests/lightning_issue_282/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_issue_410/run.sh b/br/tests/lightning_issue_410/run.sh index 97b96e5c3bbbb..b4f02b26814eb 100644 --- a/br/tests/lightning_issue_410/run.sh +++ b/br/tests/lightning_issue_410/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_issue_519/run.sh b/br/tests/lightning_issue_519/run.sh index 12268cd09a35d..c22154ff7d80d 100755 --- a/br/tests/lightning_issue_519/run.sh +++ b/br/tests/lightning_issue_519/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_local_backend/run.sh b/br/tests/lightning_local_backend/run.sh index bb909a6eb9904..6d0e7e9864145 100755 --- a/br/tests/lightning_local_backend/run.sh +++ b/br/tests/lightning_local_backend/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_new_collation/run.sh b/br/tests/lightning_new_collation/run.sh index 6c62f7dfe06ef..d4c49e3c61192 100644 --- a/br/tests/lightning_new_collation/run.sh +++ b/br/tests/lightning_new_collation/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_no_schema/run.sh b/br/tests/lightning_no_schema/run.sh index c100086bd33a3..e417c4c854a05 100644 --- a/br/tests/lightning_no_schema/run.sh +++ b/br/tests/lightning_no_schema/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_parquet/run.sh b/br/tests/lightning_parquet/run.sh index d0064f6c6012f..32d0633ab9e50 100755 --- a/br/tests/lightning_parquet/run.sh +++ b/br/tests/lightning_parquet/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_partitioned-table/run.sh b/br/tests/lightning_partitioned-table/run.sh index be207e2c95fa0..7b447f4e9753f 100755 --- a/br/tests/lightning_partitioned-table/run.sh +++ b/br/tests/lightning_partitioned-table/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_restore/run.sh b/br/tests/lightning_restore/run.sh index 02e4400d6b2eb..41542acd45f8b 100755 --- a/br/tests/lightning_restore/run.sh +++ b/br/tests/lightning_restore/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_s3/run.sh b/br/tests/lightning_s3/run.sh index edec1a5690218..6fed0af2b81da 100755 --- a/br/tests/lightning_s3/run.sh +++ b/br/tests/lightning_s3/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_shard_rowid/run.sh b/br/tests/lightning_shard_rowid/run.sh index 8e61c58c03267..f170c3d338b68 100644 --- a/br/tests/lightning_shard_rowid/run.sh +++ b/br/tests/lightning_shard_rowid/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_source_linkfile/run.sh b/br/tests/lightning_source_linkfile/run.sh index 83608d664d07e..c55266cc8a90f 100644 --- a/br/tests/lightning_source_linkfile/run.sh +++ b/br/tests/lightning_source_linkfile/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_sqlmode/run.sh b/br/tests/lightning_sqlmode/run.sh index 67643d5ce5942..e2829964009dc 100755 --- a/br/tests/lightning_sqlmode/run.sh +++ b/br/tests/lightning_sqlmode/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tidb_duplicate_data/run.sh b/br/tests/lightning_tidb_duplicate_data/run.sh index 4fe6961d58e2f..2c013827daa4b 100644 --- a/br/tests/lightning_tidb_duplicate_data/run.sh +++ b/br/tests/lightning_tidb_duplicate_data/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tidb_rowid/run.sh b/br/tests/lightning_tidb_rowid/run.sh index 395c219784938..e877f420cf43f 100755 --- a/br/tests/lightning_tidb_rowid/run.sh +++ b/br/tests/lightning_tidb_rowid/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tiflash/run.sh b/br/tests/lightning_tiflash/run.sh index 74d4d094e18a6..c7ac62a6db0db 100644 --- a/br/tests/lightning_tiflash/run.sh +++ b/br/tests/lightning_tiflash/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_too_many_columns/run.sh b/br/tests/lightning_too_many_columns/run.sh index 22a5f476abefb..2f8b8587f3ec3 100644 --- a/br/tests/lightning_too_many_columns/run.sh +++ b/br/tests/lightning_too_many_columns/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tool_135/run.sh b/br/tests/lightning_tool_135/run.sh index 3e7a527765912..4887f2a4c5a88 100755 --- a/br/tests/lightning_tool_135/run.sh +++ b/br/tests/lightning_tool_135/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tool_1420/run.sh b/br/tests/lightning_tool_1420/run.sh index f8ee83b12a4da..fd424f60ebc20 100755 --- a/br/tests/lightning_tool_1420/run.sh +++ b/br/tests/lightning_tool_1420/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tool_1472/run.sh b/br/tests/lightning_tool_1472/run.sh index 050948edd6a45..71efe4a079a56 100755 --- a/br/tests/lightning_tool_1472/run.sh +++ b/br/tests/lightning_tool_1472/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_tool_241/run.sh b/br/tests/lightning_tool_241/run.sh index 63fe4440121f8..159e92eb6a5c9 100755 --- a/br/tests/lightning_tool_241/run.sh +++ b/br/tests/lightning_tool_241/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_unused_config_keys/run.sh b/br/tests/lightning_unused_config_keys/run.sh index 0005f050772a0..0420cf457790f 100755 --- a/br/tests/lightning_unused_config_keys/run.sh +++ b/br/tests/lightning_unused_config_keys/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_various_types/run.sh b/br/tests/lightning_various_types/run.sh index 5e8dec1ba3391..d46b9fa068e63 100755 --- a/br/tests/lightning_various_types/run.sh +++ b/br/tests/lightning_various_types/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/lightning_view/run.sh b/br/tests/lightning_view/run.sh index 793e29a028195..868c170c901c6 100755 --- a/br/tests/lightning_view/run.sh +++ b/br/tests/lightning_view/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/run.sh b/br/tests/run.sh index be8c1b57e8642..140491caddc90 100755 --- a/br/tests/run.sh +++ b/br/tests/run.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tests/run_compatible.sh b/br/tests/run_compatible.sh index 9fcb2446cfe88..df0a98074938f 100755 --- a/br/tests/run_compatible.sh +++ b/br/tests/run_compatible.sh @@ -10,6 +10,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/tools/check-errdoc.sh b/br/tools/check-errdoc.sh index f3172ab84988d..ea79d73b32260 100755 --- a/br/tools/check-errdoc.sh +++ b/br/tools/check-errdoc.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/br/web/src/ChunksProgressPanel.tsx b/br/web/src/ChunksProgressPanel.tsx index 4100e3d5c4b10..bc784243d3f81 100644 --- a/br/web/src/ChunksProgressPanel.tsx +++ b/br/web/src/ChunksProgressPanel.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/DottedProgress.tsx b/br/web/src/DottedProgress.tsx index 1a129669cad9e..69f5a1c1a6ef0 100644 --- a/br/web/src/DottedProgress.tsx +++ b/br/web/src/DottedProgress.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/EnginesProgressPanel.tsx b/br/web/src/EnginesProgressPanel.tsx index 95095221d9588..712df13f264b3 100644 --- a/br/web/src/EnginesProgressPanel.tsx +++ b/br/web/src/EnginesProgressPanel.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/ErrorButton.tsx b/br/web/src/ErrorButton.tsx index 3f45d939662b1..6a272de92f4e0 100644 --- a/br/web/src/ErrorButton.tsx +++ b/br/web/src/ErrorButton.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/InfoButton.tsx b/br/web/src/InfoButton.tsx index 6722f09007435..a0762263f2fa7 100644 --- a/br/web/src/InfoButton.tsx +++ b/br/web/src/InfoButton.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/InfoPage.tsx b/br/web/src/InfoPage.tsx index 32ffdecddbd40..6d9ac98e5ba59 100644 --- a/br/web/src/InfoPage.tsx +++ b/br/web/src/InfoPage.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/MoveTaskButton.tsx b/br/web/src/MoveTaskButton.tsx index 4a3f038124ac7..33d34e68a23d9 100644 --- a/br/web/src/MoveTaskButton.tsx +++ b/br/web/src/MoveTaskButton.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/PauseButton.tsx b/br/web/src/PauseButton.tsx index d100d478d356d..c4bbb373830ef 100644 --- a/br/web/src/PauseButton.tsx +++ b/br/web/src/PauseButton.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/ProgressPage.tsx b/br/web/src/ProgressPage.tsx index 7ed60dbd35045..01d0f846850b0 100644 --- a/br/web/src/ProgressPage.tsx +++ b/br/web/src/ProgressPage.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/RefreshButton.tsx b/br/web/src/RefreshButton.tsx index 3e151f8a0bab8..234e0d2fd1c12 100644 --- a/br/web/src/RefreshButton.tsx +++ b/br/web/src/RefreshButton.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/TableProgressCard.tsx b/br/web/src/TableProgressCard.tsx index b7df82d9f4cee..16a846b0b5794 100644 --- a/br/web/src/TableProgressCard.tsx +++ b/br/web/src/TableProgressCard.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/TableProgressPage.tsx b/br/web/src/TableProgressPage.tsx index ad06a7b15f085..514cf99b792fe 100644 --- a/br/web/src/TableProgressPage.tsx +++ b/br/web/src/TableProgressPage.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/TaskButton.tsx b/br/web/src/TaskButton.tsx index 6b781a1028bd0..f717a385dcfda 100644 --- a/br/web/src/TaskButton.tsx +++ b/br/web/src/TaskButton.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/TitleBar.tsx b/br/web/src/TitleBar.tsx index a6687991d29c8..4c58c0d4d9c06 100644 --- a/br/web/src/TitleBar.tsx +++ b/br/web/src/TitleBar.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -92,4 +93,4 @@ class TitleBar extends React.Component { } } -export default withStyles(styles)(TitleBar); \ No newline at end of file +export default withStyles(styles)(TitleBar); diff --git a/br/web/src/TitleLink.tsx b/br/web/src/TitleLink.tsx index 8a2ee6792e61b..3fee8bc2e225b 100644 --- a/br/web/src/TitleLink.tsx +++ b/br/web/src/TitleLink.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/api.ts b/br/web/src/api.ts index 882ad44742799..b6f5315d65171 100644 --- a/br/web/src/api.ts +++ b/br/web/src/api.ts @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/index.tsx b/br/web/src/index.tsx index 53146a7c7b9a7..0f5bd6329b6ea 100644 --- a/br/web/src/index.tsx +++ b/br/web/src/index.tsx @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/br/web/src/json-bigint.d.ts b/br/web/src/json-bigint.d.ts index a240181285000..440930b81c4b6 100644 --- a/br/web/src/json-bigint.d.ts +++ b/br/web/src/json-bigint.d.ts @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/checkout-pr-branch.sh b/checkout-pr-branch.sh index ee0690b7e8e5c..79d1247a7aa33 100755 --- a/checkout-pr-branch.sh +++ b/checkout-pr-branch.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/cmd/benchdb/main.go b/cmd/benchdb/main.go index ee448cb7072c9..538e71e3877e3 100644 --- a/cmd/benchdb/main.go +++ b/cmd/benchdb/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/benchfilesort/main.go b/cmd/benchfilesort/main.go index e5b8204f189d0..5977e292bab7e 100644 --- a/cmd/benchfilesort/main.go +++ b/cmd/benchfilesort/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/benchkv/main.go b/cmd/benchkv/main.go index e8c3cd1b941a6..ec1fa06088cf1 100644 --- a/cmd/benchkv/main.go +++ b/cmd/benchkv/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/benchraw/main.go b/cmd/benchraw/main.go index 2f7af59228801..d32606fde79a9 100644 --- a/cmd/benchraw/main.go +++ b/cmd/benchraw/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/ddltest/column_test.go b/cmd/ddltest/column_test.go index f5488b56dcdf9..3bee4582d2148 100644 --- a/cmd/ddltest/column_test.go +++ b/cmd/ddltest/column_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/ddltest/ddl_test.go b/cmd/ddltest/ddl_test.go index 6192bc6cf402b..0022fc7ddc925 100644 --- a/cmd/ddltest/ddl_test.go +++ b/cmd/ddltest/ddl_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/ddltest/index_test.go b/cmd/ddltest/index_test.go index dcb2280f231e9..ef4dd6403f1a7 100644 --- a/cmd/ddltest/index_test.go +++ b/cmd/ddltest/index_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/ddltest/random.go b/cmd/ddltest/random.go index 3d465b7252a65..fc537558e4858 100644 --- a/cmd/ddltest/random.go +++ b/cmd/ddltest/random.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/explaintest/main.go b/cmd/explaintest/main.go index 9bf1ec121340c..9306bd1e23f7c 100644 --- a/cmd/explaintest/main.go +++ b/cmd/explaintest/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/explaintest/main_test.go b/cmd/explaintest/main_test.go index 9d899b2b5b82d..42ef72c475efd 100644 --- a/cmd/explaintest/main_test.go +++ b/cmd/explaintest/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/explaintest/run-tests.sh b/cmd/explaintest/run-tests.sh index 56cad85d32898..1d8061f90d0f0 100755 --- a/cmd/explaintest/run-tests.sh +++ b/cmd/explaintest/run-tests.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/cmd/importer/config.go b/cmd/importer/config.go index 81ada45abf0fb..4bbc94217ed2a 100644 --- a/cmd/importer/config.go +++ b/cmd/importer/config.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/data.go b/cmd/importer/data.go index e972f8ca000c8..b3b04a340a8c0 100644 --- a/cmd/importer/data.go +++ b/cmd/importer/data.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/db.go b/cmd/importer/db.go index 25f3ef2483aae..7e099311e5d97 100644 --- a/cmd/importer/db.go +++ b/cmd/importer/db.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/db_test.go b/cmd/importer/db_test.go index 01448274f11fe..1d1722a74de4b 100644 --- a/cmd/importer/db_test.go +++ b/cmd/importer/db_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/job.go b/cmd/importer/job.go index a2e03c888b53d..af52503747b6a 100644 --- a/cmd/importer/job.go +++ b/cmd/importer/job.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/main.go b/cmd/importer/main.go index c470448310cf9..b2b5f9ce4be63 100644 --- a/cmd/importer/main.go +++ b/cmd/importer/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/parser.go b/cmd/importer/parser.go index 64cbdfd4d5053..487339e02abf0 100644 --- a/cmd/importer/parser.go +++ b/cmd/importer/parser.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/rand.go b/cmd/importer/rand.go index c08c833626fd8..6bec832a22fb0 100644 --- a/cmd/importer/rand.go +++ b/cmd/importer/rand.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/importer/stats.go b/cmd/importer/stats.go index 08c52b61a775a..9248218fbd736 100644 --- a/cmd/importer/stats.go +++ b/cmd/importer/stats.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/cmd/pluginpkg/pluginpkg.go b/cmd/pluginpkg/pluginpkg.go index 7dfa12c491072..8390b10adbb10 100644 --- a/cmd/pluginpkg/pluginpkg.go +++ b/cmd/pluginpkg/pluginpkg.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/config/config.go b/config/config.go index d405981b3e826..90abd091501f0 100644 --- a/config/config.go +++ b/config/config.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/config/config_test.go b/config/config_test.go index c6c34ed2a7200..8b6f5f4635e96 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/config/config_util.go b/config/config_util.go index 54b7c89355394..aef615f6cf095 100644 --- a/config/config_util.go +++ b/config/config_util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/config/config_util_test.go b/config/config_util_test.go index e83c1e2046072..ff1526ff581da 100644 --- a/config/config_util_test.go +++ b/config/config_util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/attributes_sql_test.go b/ddl/attributes_sql_test.go index 74bc39de3b9fc..9d573160f9b0b 100644 --- a/ddl/attributes_sql_test.go +++ b/ddl/attributes_sql_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/backfilling.go b/ddl/backfilling.go index 75e0cb82b0ce5..a6665ec7017e4 100644 --- a/ddl/backfilling.go +++ b/ddl/backfilling.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/callback.go b/ddl/callback.go index 99ca403f08293..887a1b6e6eb02 100644 --- a/ddl/callback.go +++ b/ddl/callback.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/callback_test.go b/ddl/callback_test.go index dc06fbfdee680..ee4047b75a0c7 100644 --- a/ddl/callback_test.go +++ b/ddl/callback_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/column.go b/ddl/column.go index e903ca61c7d76..c8b7a4fd055e3 100644 --- a/ddl/column.go +++ b/ddl/column.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/column_change_test.go b/ddl/column_change_test.go index 6bd5a94f7235e..a9ece8079aeb2 100644 --- a/ddl/column_change_test.go +++ b/ddl/column_change_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/column_test.go b/ddl/column_test.go index 793c7bec45b2f..fcbd337520f91 100644 --- a/ddl/column_test.go +++ b/ddl/column_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/column_type_change_test.go b/ddl/column_type_change_test.go index 6d73e72f30f3e..a30c35507f6cb 100644 --- a/ddl/column_type_change_test.go +++ b/ddl/column_type_change_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/db_change_test.go b/ddl/db_change_test.go index ccbd5bd2e6be7..f208e9e5fa069 100644 --- a/ddl/db_change_test.go +++ b/ddl/db_change_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/db_integration_test.go b/ddl/db_integration_test.go index efa991c5db7b6..c66920a7b91da 100644 --- a/ddl/db_integration_test.go +++ b/ddl/db_integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/db_partition_test.go b/ddl/db_partition_test.go index 05e7d50ea9c3c..cfb9d6d443cee 100644 --- a/ddl/db_partition_test.go +++ b/ddl/db_partition_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/db_test.go b/ddl/db_test.go index e0dded9c3c70f..d6c8e72fc9d3f 100644 --- a/ddl/db_test.go +++ b/ddl/db_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl.go b/ddl/ddl.go index 043f58ca99b98..bad34f76e3cbb 100644 --- a/ddl/ddl.go +++ b/ddl/ddl.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl_algorithm.go b/ddl/ddl_algorithm.go index 901fc6a6384d2..8c58126d70496 100644 --- a/ddl/ddl_algorithm.go +++ b/ddl/ddl_algorithm.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl_algorithm_test.go b/ddl/ddl_algorithm_test.go index 0c312bd3bdce9..251a302bb1597 100644 --- a/ddl/ddl_algorithm_test.go +++ b/ddl/ddl_algorithm_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl_api.go b/ddl/ddl_api.go index 036ca26925c21..12be456304fdc 100644 --- a/ddl/ddl_api.go +++ b/ddl/ddl_api.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl_test.go b/ddl/ddl_test.go index 30db9e34d4645..6e4cd0c833fd6 100644 --- a/ddl/ddl_test.go +++ b/ddl/ddl_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl_worker.go b/ddl/ddl_worker.go index d01e4169800d8..cf4a2ba3a3588 100644 --- a/ddl/ddl_worker.go +++ b/ddl/ddl_worker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/ddl_worker_test.go b/ddl/ddl_worker_test.go index 5085e4194f0d1..e91c65cb95f52 100644 --- a/ddl/ddl_worker_test.go +++ b/ddl/ddl_worker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/delete_range.go b/ddl/delete_range.go index a9dfd7945b7d4..740f3c86c2f76 100644 --- a/ddl/delete_range.go +++ b/ddl/delete_range.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/error.go b/ddl/error.go index f9b036abe153f..1c2f37ce5751f 100644 --- a/ddl/error.go +++ b/ddl/error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/fail_test.go b/ddl/fail_test.go index c499a7b671423..0339bc78c8a84 100644 --- a/ddl/fail_test.go +++ b/ddl/fail_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/failtest/fail_db_test.go b/ddl/failtest/fail_db_test.go index b2ae168855365..d7d472b85791a 100644 --- a/ddl/failtest/fail_db_test.go +++ b/ddl/failtest/fail_db_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/foreign_key.go b/ddl/foreign_key.go index 6fc0ca92b13ab..e87841f972d22 100644 --- a/ddl/foreign_key.go +++ b/ddl/foreign_key.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/foreign_key_test.go b/ddl/foreign_key_test.go index 0bd6456a4df2d..22187544235eb 100644 --- a/ddl/foreign_key_test.go +++ b/ddl/foreign_key_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/generated_column.go b/ddl/generated_column.go index b794291feb71e..49c68832b4038 100644 --- a/ddl/generated_column.go +++ b/ddl/generated_column.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/index.go b/ddl/index.go index 836eeaeb08be9..4b3e3432a9dc9 100644 --- a/ddl/index.go +++ b/ddl/index.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/index_change_test.go b/ddl/index_change_test.go index 6a34599137c10..6b8ceab2ddb91 100644 --- a/ddl/index_change_test.go +++ b/ddl/index_change_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/label/attributes.go b/ddl/label/attributes.go index a503ba06051f4..69f344048bf93 100644 --- a/ddl/label/attributes.go +++ b/ddl/label/attributes.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/label/attributes_test.go b/ddl/label/attributes_test.go index 6e728610196f6..ede040bf628a4 100644 --- a/ddl/label/attributes_test.go +++ b/ddl/label/attributes_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/label/rule.go b/ddl/label/rule.go index 5e4ff8e914ef0..72bde06f194f6 100644 --- a/ddl/label/rule.go +++ b/ddl/label/rule.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/label/rule_test.go b/ddl/label/rule_test.go index 1db1845f7f55a..57cee23c5b716 100644 --- a/ddl/label/rule_test.go +++ b/ddl/label/rule_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/mock.go b/ddl/mock.go index 64345d84d9c1b..87370a8d8c400 100644 --- a/ddl/mock.go +++ b/ddl/mock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/options.go b/ddl/options.go index 9238a7c8542ff..3b5696cc3a9da 100644 --- a/ddl/options.go +++ b/ddl/options.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/options_test.go b/ddl/options_test.go index 22a451d622c71..b4b796cc6726f 100644 --- a/ddl/options_test.go +++ b/ddl/options_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/partition.go b/ddl/partition.go index 839f5a038f7ad..0a3556bcb09fb 100644 --- a/ddl/partition.go +++ b/ddl/partition.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/partition_test.go b/ddl/partition_test.go index 32078133547b6..be7a41d583bf7 100644 --- a/ddl/partition_test.go +++ b/ddl/partition_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/bundle.go b/ddl/placement/bundle.go index 34e0e074ecda0..f03ecca74a7c8 100644 --- a/ddl/placement/bundle.go +++ b/ddl/placement/bundle.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/bundle_test.go b/ddl/placement/bundle_test.go index 98b989a21ee75..016e99c675ec8 100644 --- a/ddl/placement/bundle_test.go +++ b/ddl/placement/bundle_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/common.go b/ddl/placement/common.go index bfe76428a7190..7b385daf508ae 100644 --- a/ddl/placement/common.go +++ b/ddl/placement/common.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/common_test.go b/ddl/placement/common_test.go index 87e6883da7e59..75c3285965dbd 100644 --- a/ddl/placement/common_test.go +++ b/ddl/placement/common_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/constraint.go b/ddl/placement/constraint.go index 9eae461ffe0f9..3263f104dd668 100644 --- a/ddl/placement/constraint.go +++ b/ddl/placement/constraint.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/constraint_test.go b/ddl/placement/constraint_test.go index 4c97cb9d58f41..1412bd6cffcc4 100644 --- a/ddl/placement/constraint_test.go +++ b/ddl/placement/constraint_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/constraints.go b/ddl/placement/constraints.go index d759bad89a701..30ab60b2fb7ac 100644 --- a/ddl/placement/constraints.go +++ b/ddl/placement/constraints.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/constraints_test.go b/ddl/placement/constraints_test.go index 678ab2ee997ed..ef15c878943c9 100644 --- a/ddl/placement/constraints_test.go +++ b/ddl/placement/constraints_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/errors.go b/ddl/placement/errors.go index 26b60621d0f44..50bf587d543fc 100644 --- a/ddl/placement/errors.go +++ b/ddl/placement/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/rule.go b/ddl/placement/rule.go index 55d81f287b13b..dff030a0b78cf 100644 --- a/ddl/placement/rule.go +++ b/ddl/placement/rule.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement/rule_test.go b/ddl/placement/rule_test.go index 85dd492f348e7..8e364b3ee7fac 100644 --- a/ddl/placement/rule_test.go +++ b/ddl/placement/rule_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/placement_sql_test.go b/ddl/placement_sql_test.go index c21baf32e9159..8fc2bb00cfa6d 100644 --- a/ddl/placement_sql_test.go +++ b/ddl/placement_sql_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/reorg.go b/ddl/reorg.go index 465546c74c842..67284add7fc52 100644 --- a/ddl/reorg.go +++ b/ddl/reorg.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/reorg_test.go b/ddl/reorg_test.go index 4c28540e7ad3b..737d2258da02c 100644 --- a/ddl/reorg_test.go +++ b/ddl/reorg_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/restart_test.go b/ddl/restart_test.go index 0eb0b26e781be..32dc2064bad65 100644 --- a/ddl/restart_test.go +++ b/ddl/restart_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build !race diff --git a/ddl/rollingback.go b/ddl/rollingback.go index a2a93a7eb0c7c..884ca8e1f21d4 100644 --- a/ddl/rollingback.go +++ b/ddl/rollingback.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/rollingback_test.go b/ddl/rollingback_test.go index 25c2d75dc6a30..5a7842c0cc713 100644 --- a/ddl/rollingback_test.go +++ b/ddl/rollingback_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/schema.go b/ddl/schema.go index 9fc43fd917af7..4bc6a4976a232 100644 --- a/ddl/schema.go +++ b/ddl/schema.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/schema_test.go b/ddl/schema_test.go index b4c8efee7b089..f290f39422f49 100644 --- a/ddl/schema_test.go +++ b/ddl/schema_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/sequence.go b/ddl/sequence.go index 40c3676286106..f8e28f1168996 100644 --- a/ddl/sequence.go +++ b/ddl/sequence.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/sequence_test.go b/ddl/sequence_test.go index f46da112888df..2f8a3ce5f342f 100644 --- a/ddl/sequence_test.go +++ b/ddl/sequence_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/serial_test.go b/ddl/serial_test.go index ff99d04b0afb9..dd76ba984d633 100644 --- a/ddl/serial_test.go +++ b/ddl/serial_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/session_pool.go b/ddl/session_pool.go index bda04248ec849..4e951490912a2 100644 --- a/ddl/session_pool.go +++ b/ddl/session_pool.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/split_region.go b/ddl/split_region.go index ec7d430cd77ff..ff022844f2749 100644 --- a/ddl/split_region.go +++ b/ddl/split_region.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/stat.go b/ddl/stat.go index 6f21b99f89a8e..a1db3678dc16b 100644 --- a/ddl/stat.go +++ b/ddl/stat.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/stat_test.go b/ddl/stat_test.go index 1ed3cbfe4c7fc..58cb113352805 100644 --- a/ddl/stat_test.go +++ b/ddl/stat_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/table.go b/ddl/table.go index 69cf441c10334..90ed661f62efb 100644 --- a/ddl/table.go +++ b/ddl/table.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/table_lock.go b/ddl/table_lock.go index 6309c8ca1aff7..135f2f98a42ad 100644 --- a/ddl/table_lock.go +++ b/ddl/table_lock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/table_split_test.go b/ddl/table_split_test.go index cf60b4ba3740c..3eb4314891fd8 100644 --- a/ddl/table_split_test.go +++ b/ddl/table_split_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/table_test.go b/ddl/table_test.go index 10927908f5289..107af86bd10ff 100644 --- a/ddl/table_test.go +++ b/ddl/table_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/testutil/testutil.go b/ddl/testutil/testutil.go index 08ec5953ec58e..584689e141377 100644 --- a/ddl/testutil/testutil.go +++ b/ddl/testutil/testutil.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/util/dead_table_lock_checker.go b/ddl/util/dead_table_lock_checker.go index 15b9f31663171..b444e7a819506 100644 --- a/ddl/util/dead_table_lock_checker.go +++ b/ddl/util/dead_table_lock_checker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/util/event.go b/ddl/util/event.go index 4003ab010db98..91910729e7c9c 100644 --- a/ddl/util/event.go +++ b/ddl/util/event.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/util/syncer.go b/ddl/util/syncer.go index fa655e6578e5d..5baccfffec06f 100644 --- a/ddl/util/syncer.go +++ b/ddl/util/syncer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/util/syncer_test.go b/ddl/util/syncer_test.go index cd3b13ea40fd1..b5c7f8c0f6e88 100644 --- a/ddl/util/syncer_test.go +++ b/ddl/util/syncer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/ddl/util/util.go b/ddl/util/util.go index 1ae4e1a7684b1..19b2bbe6294cb 100644 --- a/ddl/util/util.go +++ b/ddl/util/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/distsql.go b/distsql/distsql.go index 0b1b681aaeb77..b33ec01cb7a1b 100644 --- a/distsql/distsql.go +++ b/distsql/distsql.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/distsql_test.go b/distsql/distsql_test.go index 5d710d908e184..419ca03fdca35 100644 --- a/distsql/distsql_test.go +++ b/distsql/distsql_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/main_test.go b/distsql/main_test.go index 640a0198ac9f4..1aaddbe954620 100644 --- a/distsql/main_test.go +++ b/distsql/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/request_builder.go b/distsql/request_builder.go index 94f3debb325f4..414a70d4f56cb 100644 --- a/distsql/request_builder.go +++ b/distsql/request_builder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/request_builder_test.go b/distsql/request_builder_test.go index 2318c121ccade..f4997a3bf1688 100644 --- a/distsql/request_builder_test.go +++ b/distsql/request_builder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/select_result.go b/distsql/select_result.go index 68c9f0917f358..5c87a73f99c7c 100644 --- a/distsql/select_result.go +++ b/distsql/select_result.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/select_result_test.go b/distsql/select_result_test.go index d04110f942cd2..178d29bebeb22 100644 --- a/distsql/select_result_test.go +++ b/distsql/select_result_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/distsql/stream.go b/distsql/stream.go index bfac8e3276915..529427cad3f23 100644 --- a/distsql/stream.go +++ b/distsql/stream.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/db_test.go b/domain/db_test.go index f93d8d98aeafc..b91a43d94c20c 100644 --- a/domain/db_test.go +++ b/domain/db_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/domain.go b/domain/domain.go index f958c3347eacf..2cbb491ff0437 100644 --- a/domain/domain.go +++ b/domain/domain.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/domain_test.go b/domain/domain_test.go index bb291a5383ec6..081d70ec2c5b7 100644 --- a/domain/domain_test.go +++ b/domain/domain_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/domain_utils_test.go b/domain/domain_utils_test.go index 26baf750e45ed..2bba0507231d1 100644 --- a/domain/domain_utils_test.go +++ b/domain/domain_utils_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/domainctx.go b/domain/domainctx.go index ba31bce418455..e972b7a7c5b9d 100644 --- a/domain/domainctx.go +++ b/domain/domainctx.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/domainctx_test.go b/domain/domainctx_test.go index 305d6d0075ce9..16f1dc5301b8a 100644 --- a/domain/domainctx_test.go +++ b/domain/domainctx_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/infosync/info.go b/domain/infosync/info.go index 2d294f6276cb3..e6bd04cffd0b7 100644 --- a/domain/infosync/info.go +++ b/domain/infosync/info.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/infosync/info_test.go b/domain/infosync/info_test.go index aae2348e2ef4b..1c34ffd8b7b84 100644 --- a/domain/infosync/info_test.go +++ b/domain/infosync/info_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/main_test.go b/domain/main_test.go index 0df8b10d00ca1..cfc42129ccafd 100644 --- a/domain/main_test.go +++ b/domain/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/schema_checker.go b/domain/schema_checker.go index 2a60b55f31324..4ca32461f5ed0 100644 --- a/domain/schema_checker.go +++ b/domain/schema_checker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/schema_checker_test.go b/domain/schema_checker_test.go index 575bcd75a7a3f..bf75838e0886d 100644 --- a/domain/schema_checker_test.go +++ b/domain/schema_checker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/schema_validator.go b/domain/schema_validator.go index 32a8f66dd21a6..5859519681f71 100644 --- a/domain/schema_validator.go +++ b/domain/schema_validator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/schema_validator_test.go b/domain/schema_validator_test.go index f5499c4d973e9..4305ebbcd698f 100644 --- a/domain/schema_validator_test.go +++ b/domain/schema_validator_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/session_pool_test.go b/domain/session_pool_test.go index bd1efa6eabddf..5f3e97a07ed1e 100644 --- a/domain/session_pool_test.go +++ b/domain/session_pool_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/sysvar_cache.go b/domain/sysvar_cache.go index 44993c44a159d..d652a74e0756f 100644 --- a/domain/sysvar_cache.go +++ b/domain/sysvar_cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/topn_slow_query.go b/domain/topn_slow_query.go index 96b873bc0ba82..99107a9d71a22 100644 --- a/domain/topn_slow_query.go +++ b/domain/topn_slow_query.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/domain/topn_slow_query_test.go b/domain/topn_slow_query_test.go index 4587fd6ef9c4c..effbeddde34e5 100644 --- a/domain/topn_slow_query_test.go +++ b/domain/topn_slow_query_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/errno/errcode.go b/errno/errcode.go index 15b78afbe8d59..1b8f1f0bc4d55 100644 --- a/errno/errcode.go +++ b/errno/errcode.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/errno/errname.go b/errno/errname.go index be242bbcb14b7..df323a213220e 100644 --- a/errno/errname.go +++ b/errno/errname.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/errno/infoschema.go b/errno/infoschema.go index 60eb5358c83b6..e0a8b0f9984ec 100644 --- a/errno/infoschema.go +++ b/errno/infoschema.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/errno/infoschema_test.go b/errno/infoschema_test.go index 17d217b2e6c80..063cd39072031 100644 --- a/errno/infoschema_test.go +++ b/errno/infoschema_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/errno/main_test.go b/errno/main_test.go index f8becfac4d3f0..a38aae7f1cb39 100644 --- a/errno/main_test.go +++ b/errno/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/adapter.go b/executor/adapter.go index f31e77e8b0003..008bba051dda1 100644 --- a/executor/adapter.go +++ b/executor/adapter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/adapter_test.go b/executor/adapter_test.go index bf33a3bf4f1be..ebc7fc60246d0 100644 --- a/executor/adapter_test.go +++ b/executor/adapter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/admin.go b/executor/admin.go index f667b88cebf9b..8cd35c98c942f 100644 --- a/executor/admin.go +++ b/executor/admin.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/admin_plugins.go b/executor/admin_plugins.go index 440c1c0852306..c81de0ea24682 100644 --- a/executor/admin_plugins.go +++ b/executor/admin_plugins.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/admin_telemetry.go b/executor/admin_telemetry.go index f1d6371c9fe7f..c3469c1eb7491 100644 --- a/executor/admin_telemetry.go +++ b/executor/admin_telemetry.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/admin_test.go b/executor/admin_test.go index b3962e848b809..1ed5edbbf974f 100644 --- a/executor/admin_test.go +++ b/executor/admin_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/aggfunc_test.go b/executor/aggfuncs/aggfunc_test.go index 997f27a343444..a5cfa6d9af198 100644 --- a/executor/aggfuncs/aggfunc_test.go +++ b/executor/aggfuncs/aggfunc_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/aggfuncs.go b/executor/aggfuncs/aggfuncs.go index e608d910ba821..3de0e80841715 100644 --- a/executor/aggfuncs/aggfuncs.go +++ b/executor/aggfuncs/aggfuncs.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/builder.go b/executor/aggfuncs/builder.go index 4627d0ae2f12e..7c9589b63bfb5 100644 --- a/executor/aggfuncs/builder.go +++ b/executor/aggfuncs/builder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/export_test.go b/executor/aggfuncs/export_test.go index fc7c7937bbd35..35a4cdd15c420 100644 --- a/executor/aggfuncs/export_test.go +++ b/executor/aggfuncs/export_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_avg.go b/executor/aggfuncs/func_avg.go index a62565ab43fa6..fc76ce49f86cd 100644 --- a/executor/aggfuncs/func_avg.go +++ b/executor/aggfuncs/func_avg.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_avg_test.go b/executor/aggfuncs/func_avg_test.go index 114a6c5259f2d..dbe1ea66fa7f7 100644 --- a/executor/aggfuncs/func_avg_test.go +++ b/executor/aggfuncs/func_avg_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_bitfuncs.go b/executor/aggfuncs/func_bitfuncs.go index 00aee7af2e364..429e4593175aa 100644 --- a/executor/aggfuncs/func_bitfuncs.go +++ b/executor/aggfuncs/func_bitfuncs.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_bitfuncs_test.go b/executor/aggfuncs/func_bitfuncs_test.go index 8b49a4eccda8b..48f0786cbddbd 100644 --- a/executor/aggfuncs/func_bitfuncs_test.go +++ b/executor/aggfuncs/func_bitfuncs_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_count.go b/executor/aggfuncs/func_count.go index 8b0c4f558744b..139527fc2cb28 100644 --- a/executor/aggfuncs/func_count.go +++ b/executor/aggfuncs/func_count.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_count_distinct.go b/executor/aggfuncs/func_count_distinct.go index 21c9e54115f7d..db32ce134c364 100644 --- a/executor/aggfuncs/func_count_distinct.go +++ b/executor/aggfuncs/func_count_distinct.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_count_test.go b/executor/aggfuncs/func_count_test.go index f45b0a71b290d..4cec706f9f2fc 100644 --- a/executor/aggfuncs/func_count_test.go +++ b/executor/aggfuncs/func_count_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_cume_dist.go b/executor/aggfuncs/func_cume_dist.go index 39d7c30221826..2e0d171af579f 100644 --- a/executor/aggfuncs/func_cume_dist.go +++ b/executor/aggfuncs/func_cume_dist.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_cume_dist_test.go b/executor/aggfuncs/func_cume_dist_test.go index b236f531f2f1f..d5a6c5dc2df85 100644 --- a/executor/aggfuncs/func_cume_dist_test.go +++ b/executor/aggfuncs/func_cume_dist_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_first_row.go b/executor/aggfuncs/func_first_row.go index 99c3dbade1439..c2c33bb0862e4 100644 --- a/executor/aggfuncs/func_first_row.go +++ b/executor/aggfuncs/func_first_row.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_first_row_test.go b/executor/aggfuncs/func_first_row_test.go index 03dc2e5da6729..e96065df68dd6 100644 --- a/executor/aggfuncs/func_first_row_test.go +++ b/executor/aggfuncs/func_first_row_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_group_concat.go b/executor/aggfuncs/func_group_concat.go index f2ca28061a866..87dd948ee003a 100644 --- a/executor/aggfuncs/func_group_concat.go +++ b/executor/aggfuncs/func_group_concat.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_group_concat_test.go b/executor/aggfuncs/func_group_concat_test.go index 8d03ffe29fac7..9b67a6267e23e 100644 --- a/executor/aggfuncs/func_group_concat_test.go +++ b/executor/aggfuncs/func_group_concat_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_json_arrayagg.go b/executor/aggfuncs/func_json_arrayagg.go index 61500afc04ad9..9d7bbfdce47be 100644 --- a/executor/aggfuncs/func_json_arrayagg.go +++ b/executor/aggfuncs/func_json_arrayagg.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_json_arrayagg_test.go b/executor/aggfuncs/func_json_arrayagg_test.go index aa88e0f636499..f530036639828 100644 --- a/executor/aggfuncs/func_json_arrayagg_test.go +++ b/executor/aggfuncs/func_json_arrayagg_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_json_objectagg.go b/executor/aggfuncs/func_json_objectagg.go index c2bf3bf985231..269813131d37c 100644 --- a/executor/aggfuncs/func_json_objectagg.go +++ b/executor/aggfuncs/func_json_objectagg.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_json_objectagg_test.go b/executor/aggfuncs/func_json_objectagg_test.go index 76b4fc8b98477..c5d9ff1b7a991 100644 --- a/executor/aggfuncs/func_json_objectagg_test.go +++ b/executor/aggfuncs/func_json_objectagg_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_lead_lag.go b/executor/aggfuncs/func_lead_lag.go index 59d4ec1052693..7bd9061e68193 100644 --- a/executor/aggfuncs/func_lead_lag.go +++ b/executor/aggfuncs/func_lead_lag.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_lead_lag_test.go b/executor/aggfuncs/func_lead_lag_test.go index a911ee4eb5b0c..9dc49c19208d6 100644 --- a/executor/aggfuncs/func_lead_lag_test.go +++ b/executor/aggfuncs/func_lead_lag_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_max_min.go b/executor/aggfuncs/func_max_min.go index d3662aff258d5..dd3e8e47d4102 100644 --- a/executor/aggfuncs/func_max_min.go +++ b/executor/aggfuncs/func_max_min.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_max_min_test.go b/executor/aggfuncs/func_max_min_test.go index 37a41722871da..f49edcdf65bb6 100644 --- a/executor/aggfuncs/func_max_min_test.go +++ b/executor/aggfuncs/func_max_min_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_ntile.go b/executor/aggfuncs/func_ntile.go index fd25009fa4039..059392b1cda41 100644 --- a/executor/aggfuncs/func_ntile.go +++ b/executor/aggfuncs/func_ntile.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_ntile_test.go b/executor/aggfuncs/func_ntile_test.go index 46b9349bf05c3..da820a9d6c3bc 100644 --- a/executor/aggfuncs/func_ntile_test.go +++ b/executor/aggfuncs/func_ntile_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_percent_rank.go b/executor/aggfuncs/func_percent_rank.go index af0cac7401aa5..2afe6a92d5200 100644 --- a/executor/aggfuncs/func_percent_rank.go +++ b/executor/aggfuncs/func_percent_rank.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_percent_rank_test.go b/executor/aggfuncs/func_percent_rank_test.go index f452609d61423..ce174a2342be8 100644 --- a/executor/aggfuncs/func_percent_rank_test.go +++ b/executor/aggfuncs/func_percent_rank_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_percentile.go b/executor/aggfuncs/func_percentile.go index 3821dc101a937..3499b4cd71a44 100644 --- a/executor/aggfuncs/func_percentile.go +++ b/executor/aggfuncs/func_percentile.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_percentile_test.go b/executor/aggfuncs/func_percentile_test.go index b5f3732ee48cb..798bb53dfe7d7 100644 --- a/executor/aggfuncs/func_percentile_test.go +++ b/executor/aggfuncs/func_percentile_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_rank.go b/executor/aggfuncs/func_rank.go index da298721dd6fe..ce8b17754cf8c 100644 --- a/executor/aggfuncs/func_rank.go +++ b/executor/aggfuncs/func_rank.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_rank_test.go b/executor/aggfuncs/func_rank_test.go index b8588e6378f65..eeb5f13724dcf 100644 --- a/executor/aggfuncs/func_rank_test.go +++ b/executor/aggfuncs/func_rank_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_stddevpop.go b/executor/aggfuncs/func_stddevpop.go index 9098020cbd146..307c26ceb8864 100644 --- a/executor/aggfuncs/func_stddevpop.go +++ b/executor/aggfuncs/func_stddevpop.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_stddevsamp.go b/executor/aggfuncs/func_stddevsamp.go index 443e0dc1cfd32..80935ae5de11c 100644 --- a/executor/aggfuncs/func_stddevsamp.go +++ b/executor/aggfuncs/func_stddevsamp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_sum.go b/executor/aggfuncs/func_sum.go index 77cc6745ddf65..35b4adbc30164 100644 --- a/executor/aggfuncs/func_sum.go +++ b/executor/aggfuncs/func_sum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_sum_test.go b/executor/aggfuncs/func_sum_test.go index 701b3d36059da..2d7308ba6da4d 100644 --- a/executor/aggfuncs/func_sum_test.go +++ b/executor/aggfuncs/func_sum_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_value.go b/executor/aggfuncs/func_value.go index 001a913de45c3..6ad1a9bd6e0ed 100644 --- a/executor/aggfuncs/func_value.go +++ b/executor/aggfuncs/func_value.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_value_test.go b/executor/aggfuncs/func_value_test.go index b937d4fad261b..97a03bee0fd03 100644 --- a/executor/aggfuncs/func_value_test.go +++ b/executor/aggfuncs/func_value_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_varpop.go b/executor/aggfuncs/func_varpop.go index fcd7ae6806b18..54148821d60f6 100644 --- a/executor/aggfuncs/func_varpop.go +++ b/executor/aggfuncs/func_varpop.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/func_varsamp.go b/executor/aggfuncs/func_varsamp.go index 5b0b15338943b..7c9029b7a08e4 100644 --- a/executor/aggfuncs/func_varsamp.go +++ b/executor/aggfuncs/func_varsamp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/row_number.go b/executor/aggfuncs/row_number.go index b1f95a008ec9b..d73bb5874784c 100644 --- a/executor/aggfuncs/row_number.go +++ b/executor/aggfuncs/row_number.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/row_number_test.go b/executor/aggfuncs/row_number_test.go index 7f57115453bbb..3a76be76be719 100644 --- a/executor/aggfuncs/row_number_test.go +++ b/executor/aggfuncs/row_number_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggfuncs/window_func_test.go b/executor/aggfuncs/window_func_test.go index 143f427fbeac8..a6d2a9e75d333 100644 --- a/executor/aggfuncs/window_func_test.go +++ b/executor/aggfuncs/window_func_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggregate.go b/executor/aggregate.go index cf5bf5687e07f..4896bdaf1ec5f 100644 --- a/executor/aggregate.go +++ b/executor/aggregate.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/aggregate_test.go b/executor/aggregate_test.go index df3be90097f64..3d981ed9fdf12 100644 --- a/executor/aggregate_test.go +++ b/executor/aggregate_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/analyze.go b/executor/analyze.go index 07cb6cdec4e60..67cc4cbd54385 100644 --- a/executor/analyze.go +++ b/executor/analyze.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/analyze_test.go b/executor/analyze_test.go index 79fa6bf3ae641..0230549a089f3 100644 --- a/executor/analyze_test.go +++ b/executor/analyze_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/apply_cache.go b/executor/apply_cache.go index eab8e24f6768d..d30020b3cc6b1 100644 --- a/executor/apply_cache.go +++ b/executor/apply_cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/apply_cache_test.go b/executor/apply_cache_test.go index 5c8af4b44b3a1..47a0b992a5166 100644 --- a/executor/apply_cache_test.go +++ b/executor/apply_cache_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/batch_checker.go b/executor/batch_checker.go index 4705038c4f537..ed0af152a2560 100644 --- a/executor/batch_checker.go +++ b/executor/batch_checker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/batch_point_get.go b/executor/batch_point_get.go index b51f7ef709ef6..ce29c4c49aacc 100644 --- a/executor/batch_point_get.go +++ b/executor/batch_point_get.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/batch_point_get_test.go b/executor/batch_point_get_test.go index 114134ac61513..5c9c035b8d63f 100644 --- a/executor/batch_point_get_test.go +++ b/executor/batch_point_get_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/benchmark_test.go b/executor/benchmark_test.go index 6ff4022c5a8c8..63a97915f5ee6 100644 --- a/executor/benchmark_test.go +++ b/executor/benchmark_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/bind.go b/executor/bind.go index 42552f1dcdee1..94fd329275524 100644 --- a/executor/bind.go +++ b/executor/bind.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/brie.go b/executor/brie.go index f170af1739a19..9fa177e3ae6c8 100644 --- a/executor/brie.go +++ b/executor/brie.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/brie_test.go b/executor/brie_test.go index db417da114736..87ae456d35b4d 100644 --- a/executor/brie_test.go +++ b/executor/brie_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/builder.go b/executor/builder.go index 1e10e3640f802..c888facf4e369 100644 --- a/executor/builder.go +++ b/executor/builder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/change.go b/executor/change.go index bb9ec0cf1cee0..f9b58cc9c0855 100644 --- a/executor/change.go +++ b/executor/change.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/checksum.go b/executor/checksum.go index 62543068820e9..00b1e46d75590 100644 --- a/executor/checksum.go +++ b/executor/checksum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/chunk_size_control_test.go b/executor/chunk_size_control_test.go index 7c33f3fd9c3e9..0a3a0df24bb13 100644 --- a/executor/chunk_size_control_test.go +++ b/executor/chunk_size_control_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/collation_test.go b/executor/collation_test.go index b6fb6a53843aa..a2ea15ad489d4 100644 --- a/executor/collation_test.go +++ b/executor/collation_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/compiler.go b/executor/compiler.go index 8c310b004f310..551411e57cd68 100644 --- a/executor/compiler.go +++ b/executor/compiler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/concurrent_map.go b/executor/concurrent_map.go index 3d6ef1082f605..191c890621dc8 100644 --- a/executor/concurrent_map.go +++ b/executor/concurrent_map.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/concurrent_map_test.go b/executor/concurrent_map_test.go index 1566ebc8b4934..ebf2da277ed4f 100644 --- a/executor/concurrent_map_test.go +++ b/executor/concurrent_map_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/coprocessor.go b/executor/coprocessor.go index 93f7dbcf40366..4eeab5d6d70c5 100644 --- a/executor/coprocessor.go +++ b/executor/coprocessor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/cte.go b/executor/cte.go index 4fe3414b97154..3ce82c3920559 100644 --- a/executor/cte.go +++ b/executor/cte.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/cte_table_reader.go b/executor/cte_table_reader.go index 94fedf01fd93e..efd5a0387e6cb 100644 --- a/executor/cte_table_reader.go +++ b/executor/cte_table_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/cte_test.go b/executor/cte_test.go index d5ec86a03bb05..27bfb9f86c30c 100644 --- a/executor/cte_test.go +++ b/executor/cte_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/ddl.go b/executor/ddl.go index 13d5f3c1b6900..dd0ca83fbcc1e 100644 --- a/executor/ddl.go +++ b/executor/ddl.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/ddl_test.go b/executor/ddl_test.go index 63b41fa1b6898..338f920a345a2 100644 --- a/executor/ddl_test.go +++ b/executor/ddl_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/delete.go b/executor/delete.go index 16f0e9c421b19..93b0e32e5d381 100644 --- a/executor/delete.go +++ b/executor/delete.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/delete_test.go b/executor/delete_test.go index 55ab9b80fd1d7..639be55450003 100644 --- a/executor/delete_test.go +++ b/executor/delete_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/distsql.go b/executor/distsql.go index aee323bdf37c3..c31d023317a80 100644 --- a/executor/distsql.go +++ b/executor/distsql.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/distsql_test.go b/executor/distsql_test.go index 847d1aa2a9e15..8a5120e593717 100644 --- a/executor/distsql_test.go +++ b/executor/distsql_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/errors.go b/executor/errors.go index ca19ecba51373..f592921122d9b 100644 --- a/executor/errors.go +++ b/executor/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/executor.go b/executor/executor.go index 6e59f1f7a4abf..f7e828cc3600a 100644 --- a/executor/executor.go +++ b/executor/executor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/executor_pkg_test.go b/executor/executor_pkg_test.go index c427156ba073b..80e6d9902b760 100644 --- a/executor/executor_pkg_test.go +++ b/executor/executor_pkg_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/executor_required_rows_test.go b/executor/executor_required_rows_test.go index 44c9a5d910dfd..02c52d65e8880 100644 --- a/executor/executor_required_rows_test.go +++ b/executor/executor_required_rows_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/executor_test.go b/executor/executor_test.go index e0cdefb03693a..47c57da0c52e1 100644 --- a/executor/executor_test.go +++ b/executor/executor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/explain.go b/executor/explain.go index 4e6116975b978..9871c291929e4 100644 --- a/executor/explain.go +++ b/executor/explain.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/explain_test.go b/executor/explain_test.go index a0ce1a1eb2e0c..098ae23d5ac8e 100644 --- a/executor/explain_test.go +++ b/executor/explain_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/explain_unit_test.go b/executor/explain_unit_test.go index 1276575f47c28..299a547709cd3 100644 --- a/executor/explain_unit_test.go +++ b/executor/explain_unit_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/explainfor_test.go b/executor/explainfor_test.go index 89b9d934a4858..4c5f9fd6438cf 100644 --- a/executor/explainfor_test.go +++ b/executor/explainfor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/grant.go b/executor/grant.go index 0d5a8cc2e46d4..22bc5963b5c79 100644 --- a/executor/grant.go +++ b/executor/grant.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/grant_test.go b/executor/grant_test.go index 6e6369e40bd7b..c422aef2f4f73 100644 --- a/executor/grant_test.go +++ b/executor/grant_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/hash_table.go b/executor/hash_table.go index cd356d0549a5f..912c072594077 100644 --- a/executor/hash_table.go +++ b/executor/hash_table.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/hash_table_test.go b/executor/hash_table_test.go index 3458002987f1e..c7e3c60f50ae8 100644 --- a/executor/hash_table_test.go +++ b/executor/hash_table_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_advise.go b/executor/index_advise.go index 00ae3a23840c0..5c6bdce4e07f0 100644 --- a/executor/index_advise.go +++ b/executor/index_advise.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_advise_test.go b/executor/index_advise_test.go index 9d7dd6c43208d..694721cf5001c 100644 --- a/executor/index_advise_test.go +++ b/executor/index_advise_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_lookup_hash_join.go b/executor/index_lookup_hash_join.go index ed7da54baf3f5..d794d3253e105 100644 --- a/executor/index_lookup_hash_join.go +++ b/executor/index_lookup_hash_join.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_lookup_join.go b/executor/index_lookup_join.go index 4f9ce5e1ac194..f5869b7ef3e8f 100644 --- a/executor/index_lookup_join.go +++ b/executor/index_lookup_join.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_lookup_join_test.go b/executor/index_lookup_join_test.go index 08feb3556d3ec..992f77e8dfb14 100644 --- a/executor/index_lookup_join_test.go +++ b/executor/index_lookup_join_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_lookup_merge_join.go b/executor/index_lookup_merge_join.go index a16ffca0a771d..d468acd35d39c 100644 --- a/executor/index_lookup_merge_join.go +++ b/executor/index_lookup_merge_join.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_merge_reader.go b/executor/index_merge_reader.go index e55424dc3ccf7..b60dd2c2dbfe6 100644 --- a/executor/index_merge_reader.go +++ b/executor/index_merge_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/index_merge_reader_test.go b/executor/index_merge_reader_test.go index 73322d3581755..51620b861a94a 100644 --- a/executor/index_merge_reader_test.go +++ b/executor/index_merge_reader_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/infoschema_reader.go b/executor/infoschema_reader.go index f95b7d1d8214f..852e6162155a3 100644 --- a/executor/infoschema_reader.go +++ b/executor/infoschema_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/infoschema_reader_test.go b/executor/infoschema_reader_test.go index 6e594532781f9..3fd851fb93d44 100644 --- a/executor/infoschema_reader_test.go +++ b/executor/infoschema_reader_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/insert.go b/executor/insert.go index f0b84091240fa..c598232e895f1 100644 --- a/executor/insert.go +++ b/executor/insert.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/insert_common.go b/executor/insert_common.go index af273aa854017..492dfdc836273 100644 --- a/executor/insert_common.go +++ b/executor/insert_common.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/insert_test.go b/executor/insert_test.go index 3ee4780932860..23fd0ba99cba8 100644 --- a/executor/insert_test.go +++ b/executor/insert_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_common.go b/executor/inspection_common.go index 20f97bcb0724a..c3622c115efe6 100644 --- a/executor/inspection_common.go +++ b/executor/inspection_common.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_common_test.go b/executor/inspection_common_test.go index eb4f8db8ceca6..61eb1cfb20e9f 100644 --- a/executor/inspection_common_test.go +++ b/executor/inspection_common_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_profile.go b/executor/inspection_profile.go index 478f0cc6aba42..90ea2bc224c5f 100644 --- a/executor/inspection_profile.go +++ b/executor/inspection_profile.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_result.go b/executor/inspection_result.go index 1faa2e83150c5..bb26993824684 100644 --- a/executor/inspection_result.go +++ b/executor/inspection_result.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_result_test.go b/executor/inspection_result_test.go index c12fac1370b3a..f10cbc8500049 100644 --- a/executor/inspection_result_test.go +++ b/executor/inspection_result_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_summary.go b/executor/inspection_summary.go index 2a01cab6dc402..e57a9221c2bb7 100644 --- a/executor/inspection_summary.go +++ b/executor/inspection_summary.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/inspection_summary_test.go b/executor/inspection_summary_test.go index f703a3c17bae4..f07c04cf8d061 100644 --- a/executor/inspection_summary_test.go +++ b/executor/inspection_summary_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/join.go b/executor/join.go index 1a3f62de47ac1..b73d20cf54e27 100644 --- a/executor/join.go +++ b/executor/join.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/join_pkg_test.go b/executor/join_pkg_test.go index 2ee00382be53b..1f7b00b687160 100644 --- a/executor/join_pkg_test.go +++ b/executor/join_pkg_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/join_test.go b/executor/join_test.go index a5ca48e7b1976..35d5a914d6470 100644 --- a/executor/join_test.go +++ b/executor/join_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/joiner.go b/executor/joiner.go index 8b2faea437154..ecfab11f66822 100644 --- a/executor/joiner.go +++ b/executor/joiner.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/joiner_test.go b/executor/joiner_test.go index e9c76a28a665b..aca761803a711 100644 --- a/executor/joiner_test.go +++ b/executor/joiner_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/load_data.go b/executor/load_data.go index fc1ba8196b922..cc6ff16347b53 100644 --- a/executor/load_data.go +++ b/executor/load_data.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/load_stats.go b/executor/load_stats.go index 473a14150e711..d59651e29200a 100644 --- a/executor/load_stats.go +++ b/executor/load_stats.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/main_test.go b/executor/main_test.go index dc50dc65feb79..dbd7e4c057811 100644 --- a/executor/main_test.go +++ b/executor/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/mem_reader.go b/executor/mem_reader.go index 5dcfedc76188e..dfd30471df8a0 100644 --- a/executor/mem_reader.go +++ b/executor/mem_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/memory_test.go b/executor/memory_test.go index c02f0f5bca4b6..f6b395b285a5f 100644 --- a/executor/memory_test.go +++ b/executor/memory_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/memtable_reader.go b/executor/memtable_reader.go index 6fa43f9fe120d..699a61bd2ce07 100644 --- a/executor/memtable_reader.go +++ b/executor/memtable_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/memtable_reader_test.go b/executor/memtable_reader_test.go index 94a8b49ca26bb..4440318b18d78 100644 --- a/executor/memtable_reader_test.go +++ b/executor/memtable_reader_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/merge_join.go b/executor/merge_join.go index d6374910a53b9..a28cb93c4648d 100644 --- a/executor/merge_join.go +++ b/executor/merge_join.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/merge_join_test.go b/executor/merge_join_test.go index c58eb89181ef5..9cf56fe1716c8 100644 --- a/executor/merge_join_test.go +++ b/executor/merge_join_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/metrics_reader.go b/executor/metrics_reader.go index d13d9cc20eb34..0329226bcaac0 100644 --- a/executor/metrics_reader.go +++ b/executor/metrics_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/metrics_reader_test.go b/executor/metrics_reader_test.go index 8d75ac41fd96e..365d04152d17d 100644 --- a/executor/metrics_reader_test.go +++ b/executor/metrics_reader_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/mpp_gather.go b/executor/mpp_gather.go index e517a0130ec4f..e64ae56407ae6 100644 --- a/executor/mpp_gather.go +++ b/executor/mpp_gather.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/oomtest/oom_test.go b/executor/oomtest/oom_test.go index fdd26589fac62..984e0dc73e90b 100644 --- a/executor/oomtest/oom_test.go +++ b/executor/oomtest/oom_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/opt_rule_blacklist.go b/executor/opt_rule_blacklist.go index 76cdc74ea1d11..0d915c9eb6966 100644 --- a/executor/opt_rule_blacklist.go +++ b/executor/opt_rule_blacklist.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/parallel_apply.go b/executor/parallel_apply.go index 636ec96ad2868..9ebe3bde46640 100644 --- a/executor/parallel_apply.go +++ b/executor/parallel_apply.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/parallel_apply_test.go b/executor/parallel_apply_test.go index 93448f0e3f92f..809b4c5247e5a 100644 --- a/executor/parallel_apply_test.go +++ b/executor/parallel_apply_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/partition_table.go b/executor/partition_table.go index e888332fee396..f38c2f1b01861 100644 --- a/executor/partition_table.go +++ b/executor/partition_table.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/partition_table_test.go b/executor/partition_table_test.go index 92d999108ae4a..6c61797db5a3d 100644 --- a/executor/partition_table_test.go +++ b/executor/partition_table_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/pipelined_window.go b/executor/pipelined_window.go index add7fa2ff453b..41c09d8216efd 100644 --- a/executor/pipelined_window.go +++ b/executor/pipelined_window.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/plan_recreator.go b/executor/plan_recreator.go index 6205262ce0db5..0ba2c74ccc991 100644 --- a/executor/plan_recreator.go +++ b/executor/plan_recreator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/point_get.go b/executor/point_get.go index 6bc96f3e755e3..bcdedb260fb06 100644 --- a/executor/point_get.go +++ b/executor/point_get.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/point_get_test.go b/executor/point_get_test.go index 0d6798b9d4449..a352766850b7d 100644 --- a/executor/point_get_test.go +++ b/executor/point_get_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/prepared.go b/executor/prepared.go index e6d2e197d00b8..d4e5d647f2c65 100644 --- a/executor/prepared.go +++ b/executor/prepared.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/prepared_test.go b/executor/prepared_test.go index e0e2c19ee0f22..ea587d60280ae 100644 --- a/executor/prepared_test.go +++ b/executor/prepared_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/projection.go b/executor/projection.go index 5e0f54d258a26..4a680010fcb7d 100644 --- a/executor/projection.go +++ b/executor/projection.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/reload_expr_pushdown_blacklist.go b/executor/reload_expr_pushdown_blacklist.go index 384c522f8c4a2..9ed6618153771 100644 --- a/executor/reload_expr_pushdown_blacklist.go +++ b/executor/reload_expr_pushdown_blacklist.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/replace.go b/executor/replace.go index e1c70f07a15b6..78fb519049d84 100644 --- a/executor/replace.go +++ b/executor/replace.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/revoke.go b/executor/revoke.go index c15bdb17e0d2b..606f9ea95785f 100644 --- a/executor/revoke.go +++ b/executor/revoke.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/revoke_test.go b/executor/revoke_test.go index 67b4bd0954d6b..dd9318153a004 100644 --- a/executor/revoke_test.go +++ b/executor/revoke_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/rowid_test.go b/executor/rowid_test.go index 19ca30791f095..d7664f1e0fb1c 100644 --- a/executor/rowid_test.go +++ b/executor/rowid_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/sample.go b/executor/sample.go index a1ec7b09bad9f..fc25b65bda315 100644 --- a/executor/sample.go +++ b/executor/sample.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/sample_test.go b/executor/sample_test.go index dec765a2bb555..315ac10eaf1ac 100644 --- a/executor/sample_test.go +++ b/executor/sample_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/select_into.go b/executor/select_into.go index 6afe7c66dde10..52be2ed13af6d 100644 --- a/executor/select_into.go +++ b/executor/select_into.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/select_into_test.go b/executor/select_into_test.go index e9b268703ff26..b0fd447b21939 100644 --- a/executor/select_into_test.go +++ b/executor/select_into_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/seqtest/prepared_test.go b/executor/seqtest/prepared_test.go index 1b54221a224b5..879325267f2b2 100644 --- a/executor/seqtest/prepared_test.go +++ b/executor/seqtest/prepared_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/seqtest/seq_executor_test.go b/executor/seqtest/seq_executor_test.go index 6923347f6189f..72f4ebb95b9f2 100644 --- a/executor/seqtest/seq_executor_test.go +++ b/executor/seqtest/seq_executor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/set.go b/executor/set.go index e303efe1a5520..b874f235e22ff 100644 --- a/executor/set.go +++ b/executor/set.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/set_config.go b/executor/set_config.go index c9734db27d548..5cfe6d037d8d6 100644 --- a/executor/set_config.go +++ b/executor/set_config.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/set_test.go b/executor/set_test.go index 667f4ecf3880a..c28cb5f90bafa 100644 --- a/executor/set_test.go +++ b/executor/set_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/show.go b/executor/show.go index 295c1db8142b8..5d307ccbcd0e1 100644 --- a/executor/show.go +++ b/executor/show.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/show_placement.go b/executor/show_placement.go index 60745d0f3b5b9..d074deca6e7e4 100644 --- a/executor/show_placement.go +++ b/executor/show_placement.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/show_placement_test.go b/executor/show_placement_test.go index 485a60f218a85..6b9303d59d37f 100644 --- a/executor/show_placement_test.go +++ b/executor/show_placement_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/show_stats.go b/executor/show_stats.go index 5a5f6a6d5b632..44a0f16761eb6 100644 --- a/executor/show_stats.go +++ b/executor/show_stats.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/show_stats_test.go b/executor/show_stats_test.go index 323082be757da..c93de9f7e938e 100644 --- a/executor/show_stats_test.go +++ b/executor/show_stats_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/show_test.go b/executor/show_test.go index ff630bc5cae2a..613d4e3c8c43c 100644 --- a/executor/show_test.go +++ b/executor/show_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/shuffle.go b/executor/shuffle.go index 9ad4ff522e4cd..a71e388c02bac 100644 --- a/executor/shuffle.go +++ b/executor/shuffle.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/shuffle_test.go b/executor/shuffle_test.go index 59ce06b4e26dc..d93f31fa2cfc0 100644 --- a/executor/shuffle_test.go +++ b/executor/shuffle_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/simple.go b/executor/simple.go index bbe136ad97f6d..0f19fce0f2b4e 100644 --- a/executor/simple.go +++ b/executor/simple.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/simple_test.go b/executor/simple_test.go index 425e7d5204731..bcea09d715c0b 100644 --- a/executor/simple_test.go +++ b/executor/simple_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/slow_query.go b/executor/slow_query.go index 7817d4b2ab51d..8633f7a5e00f0 100755 --- a/executor/slow_query.go +++ b/executor/slow_query.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/slow_query_test.go b/executor/slow_query_test.go index 28861b4e67a5d..c9cb125143993 100644 --- a/executor/slow_query_test.go +++ b/executor/slow_query_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/sort.go b/executor/sort.go index 5259ae0041e6e..d7f36d9e03b1f 100644 --- a/executor/sort.go +++ b/executor/sort.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/sort_test.go b/executor/sort_test.go index 57c8a9fc6d71f..aa87075115076 100644 --- a/executor/sort_test.go +++ b/executor/sort_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/split.go b/executor/split.go index a611c31678437..ec63a54902717 100644 --- a/executor/split.go +++ b/executor/split.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/split_test.go b/executor/split_test.go index b457a08a560da..c3e7dbc51dff9 100644 --- a/executor/split_test.go +++ b/executor/split_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/stale_txn_test.go b/executor/stale_txn_test.go index 6ac9b075ced56..623fab09bc6ff 100644 --- a/executor/stale_txn_test.go +++ b/executor/stale_txn_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/statement_context_test.go b/executor/statement_context_test.go index 6a512d824992e..514ca53f238b8 100644 --- a/executor/statement_context_test.go +++ b/executor/statement_context_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/table_reader.go b/executor/table_reader.go index 0ab10a6f829dd..e9cb8a149e71f 100644 --- a/executor/table_reader.go +++ b/executor/table_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/table_readers_required_rows_test.go b/executor/table_readers_required_rows_test.go index a97ac1afc4ba9..7166229813e14 100644 --- a/executor/table_readers_required_rows_test.go +++ b/executor/table_readers_required_rows_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/tiflash_test.go b/executor/tiflash_test.go index 362ae3e337213..ee48820dde220 100644 --- a/executor/tiflash_test.go +++ b/executor/tiflash_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/trace.go b/executor/trace.go index f0faa25ed504b..985ec2dfaefce 100644 --- a/executor/trace.go +++ b/executor/trace.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/trace_test.go b/executor/trace_test.go index 70bdcc35aa056..c360ee82f0856 100644 --- a/executor/trace_test.go +++ b/executor/trace_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/union_iter.go b/executor/union_iter.go index d490a8f70c387..bd56d476d6d0f 100644 --- a/executor/union_iter.go +++ b/executor/union_iter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/union_iter_test.go b/executor/union_iter_test.go index 1f51f2fa8d51f..0bd92ed7add40 100644 --- a/executor/union_iter_test.go +++ b/executor/union_iter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/union_scan.go b/executor/union_scan.go index 9a332887c7b46..6289f23015b61 100644 --- a/executor/union_scan.go +++ b/executor/union_scan.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/union_scan_test.go b/executor/union_scan_test.go index 31f9cc6b98670..5e0727458230e 100644 --- a/executor/union_scan_test.go +++ b/executor/union_scan_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/update.go b/executor/update.go index 3a00f3c183cc9..5b946958302ab 100644 --- a/executor/update.go +++ b/executor/update.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/update_test.go b/executor/update_test.go index 49a980ec01676..d22b8af74353a 100644 --- a/executor/update_test.go +++ b/executor/update_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/utils.go b/executor/utils.go index dcd2a394331d6..47fe32a93aa68 100644 --- a/executor/utils.go +++ b/executor/utils.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/utils_test.go b/executor/utils_test.go index 4bba62668d572..2cc64849ca922 100644 --- a/executor/utils_test.go +++ b/executor/utils_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/window.go b/executor/window.go index 19e92687fffda..fc8d8fff385a1 100644 --- a/executor/window.go +++ b/executor/window.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/window_test.go b/executor/window_test.go index 970d7f7354100..6cbe826abff97 100644 --- a/executor/window_test.go +++ b/executor/window_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/write.go b/executor/write.go index 29e172878becb..d64969286769c 100644 --- a/executor/write.go +++ b/executor/write.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/write_concurrent_test.go b/executor/write_concurrent_test.go index a0be46778fe75..58e7f37ef4777 100644 --- a/executor/write_concurrent_test.go +++ b/executor/write_concurrent_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/executor/write_test.go b/executor/write_test.go index b9496cebb3da9..4a2445bbd4189 100644 --- a/executor/write_test.go +++ b/executor/write_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/agg_to_pb.go b/expression/aggregation/agg_to_pb.go index d3c9ef9b7e3c2..eb425f41a4b54 100644 --- a/expression/aggregation/agg_to_pb.go +++ b/expression/aggregation/agg_to_pb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/agg_to_pb_test.go b/expression/aggregation/agg_to_pb_test.go index 5030959eed08b..f8b50a94a73b3 100644 --- a/expression/aggregation/agg_to_pb_test.go +++ b/expression/aggregation/agg_to_pb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/aggregation.go b/expression/aggregation/aggregation.go index 39ae1190dcb94..5f932e3e4d646 100644 --- a/expression/aggregation/aggregation.go +++ b/expression/aggregation/aggregation.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/aggregation_test.go b/expression/aggregation/aggregation_test.go index 307382e08f46c..059405cae9e84 100644 --- a/expression/aggregation/aggregation_test.go +++ b/expression/aggregation/aggregation_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/avg.go b/expression/aggregation/avg.go index 7d861119e6568..cd7e53fd2d354 100644 --- a/expression/aggregation/avg.go +++ b/expression/aggregation/avg.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/base_func.go b/expression/aggregation/base_func.go index 731bc265736c7..d1eb6dbafe9fe 100644 --- a/expression/aggregation/base_func.go +++ b/expression/aggregation/base_func.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/bench_test.go b/expression/aggregation/bench_test.go index c3f72695709cd..4bd13183fff78 100644 --- a/expression/aggregation/bench_test.go +++ b/expression/aggregation/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/bit_and.go b/expression/aggregation/bit_and.go index 28269d038faee..fcb4aeb806874 100644 --- a/expression/aggregation/bit_and.go +++ b/expression/aggregation/bit_and.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/bit_or.go b/expression/aggregation/bit_or.go index d6cfc09d57a5d..f5709a0575ca8 100644 --- a/expression/aggregation/bit_or.go +++ b/expression/aggregation/bit_or.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/bit_xor.go b/expression/aggregation/bit_xor.go index bce700e37b29a..e30210746d0d3 100644 --- a/expression/aggregation/bit_xor.go +++ b/expression/aggregation/bit_xor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/concat.go b/expression/aggregation/concat.go index fe132bd2849b7..21b3e0d787954 100644 --- a/expression/aggregation/concat.go +++ b/expression/aggregation/concat.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/count.go b/expression/aggregation/count.go index 91ab8f741e06e..a2c59dcbd361a 100644 --- a/expression/aggregation/count.go +++ b/expression/aggregation/count.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/descriptor.go b/expression/aggregation/descriptor.go index 10408a374cbc7..c37fb8974b818 100644 --- a/expression/aggregation/descriptor.go +++ b/expression/aggregation/descriptor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/explain.go b/expression/aggregation/explain.go index 74a915b573830..bf71db41bbae6 100644 --- a/expression/aggregation/explain.go +++ b/expression/aggregation/explain.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/first_row.go b/expression/aggregation/first_row.go index b49da7f6edcf0..bcb06b5caa825 100644 --- a/expression/aggregation/first_row.go +++ b/expression/aggregation/first_row.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/max_min.go b/expression/aggregation/max_min.go index 1d5e2e1b82813..be25c7160a188 100644 --- a/expression/aggregation/max_min.go +++ b/expression/aggregation/max_min.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/sum.go b/expression/aggregation/sum.go index aeae368a0f7c9..9e0f6ab2a4c31 100644 --- a/expression/aggregation/sum.go +++ b/expression/aggregation/sum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/util.go b/expression/aggregation/util.go index a90003dec40f1..9bcd03c7b2f53 100644 --- a/expression/aggregation/util.go +++ b/expression/aggregation/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/aggregation/window_func.go b/expression/aggregation/window_func.go index 64e412ad2149a..9bc85b70bdf3b 100644 --- a/expression/aggregation/window_func.go +++ b/expression/aggregation/window_func.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/bench_test.go b/expression/bench_test.go index 1d926fd6cb1e6..6046ffe8287b5 100644 --- a/expression/bench_test.go +++ b/expression/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin.go b/expression/builtin.go index 3625602eb8fea..444130c7a58ce 100644 --- a/expression/builtin.go +++ b/expression/builtin.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_arithmetic.go b/expression/builtin_arithmetic.go index 3a87e02581f60..d46ecd9e189a3 100644 --- a/expression/builtin_arithmetic.go +++ b/expression/builtin_arithmetic.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_arithmetic_test.go b/expression/builtin_arithmetic_test.go index 0086b1ae2806c..38dd8ebdce433 100644 --- a/expression/builtin_arithmetic_test.go +++ b/expression/builtin_arithmetic_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_arithmetic_vec.go b/expression/builtin_arithmetic_vec.go index 967aa70b88ec5..12eb0bb1a63dd 100644 --- a/expression/builtin_arithmetic_vec.go +++ b/expression/builtin_arithmetic_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_arithmetic_vec_test.go b/expression/builtin_arithmetic_vec_test.go index 25d372112efe4..9682e6f6b2f5f 100644 --- a/expression/builtin_arithmetic_vec_test.go +++ b/expression/builtin_arithmetic_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_cast.go b/expression/builtin_cast.go index 4ce886c64e116..5330e4e199363 100644 --- a/expression/builtin_cast.go +++ b/expression/builtin_cast.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_cast_bench_test.go b/expression/builtin_cast_bench_test.go index 70ed8702ab79a..4acdbb404c0be 100644 --- a/expression/builtin_cast_bench_test.go +++ b/expression/builtin_cast_bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_cast_test.go b/expression/builtin_cast_test.go index 57bdeed1afaec..d46449bddc675 100644 --- a/expression/builtin_cast_test.go +++ b/expression/builtin_cast_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_cast_vec.go b/expression/builtin_cast_vec.go index 87e3115ce6606..219501bd75055 100644 --- a/expression/builtin_cast_vec.go +++ b/expression/builtin_cast_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_cast_vec_test.go b/expression/builtin_cast_vec_test.go index 4cbcfd9aa1a1b..a5759620da316 100644 --- a/expression/builtin_cast_vec_test.go +++ b/expression/builtin_cast_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_compare.go b/expression/builtin_compare.go index f0dec95b51fc1..5903126371b43 100644 --- a/expression/builtin_compare.go +++ b/expression/builtin_compare.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_compare_test.go b/expression/builtin_compare_test.go index 9d11d8b5ad18a..db8a08d5e4919 100644 --- a/expression/builtin_compare_test.go +++ b/expression/builtin_compare_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_compare_vec.go b/expression/builtin_compare_vec.go index 2c0dd19a65228..d620565b39f43 100644 --- a/expression/builtin_compare_vec.go +++ b/expression/builtin_compare_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_compare_vec_generated.go b/expression/builtin_compare_vec_generated.go index c7410919a8c1e..e9615296b24c1 100644 --- a/expression/builtin_compare_vec_generated.go +++ b/expression/builtin_compare_vec_generated.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_compare_vec_generated_test.go b/expression/builtin_compare_vec_generated_test.go index 0d40a6c4dbd86..053d865a1fa85 100644 --- a/expression/builtin_compare_vec_generated_test.go +++ b/expression/builtin_compare_vec_generated_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_compare_vec_test.go b/expression/builtin_compare_vec_test.go index 27f10fae05c60..5e37007d23f69 100644 --- a/expression/builtin_compare_vec_test.go +++ b/expression/builtin_compare_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_control.go b/expression/builtin_control.go index e40311eb614a5..ecaaa51b86354 100644 --- a/expression/builtin_control.go +++ b/expression/builtin_control.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_control_test.go b/expression/builtin_control_test.go index 7f6e35aaa8626..b696d79dc2020 100644 --- a/expression/builtin_control_test.go +++ b/expression/builtin_control_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_control_vec_generated.go b/expression/builtin_control_vec_generated.go index 775a1b2283453..8766dedbfa569 100644 --- a/expression/builtin_control_vec_generated.go +++ b/expression/builtin_control_vec_generated.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_control_vec_generated_test.go b/expression/builtin_control_vec_generated_test.go index 74b77b504b46a..c584ed27d73df 100644 --- a/expression/builtin_control_vec_generated_test.go +++ b/expression/builtin_control_vec_generated_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_encryption.go b/expression/builtin_encryption.go index e8a62a2dfb4d3..1bf63b7badc30 100644 --- a/expression/builtin_encryption.go +++ b/expression/builtin_encryption.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_encryption_test.go b/expression/builtin_encryption_test.go index 1bffb5f0177bd..9d63b6bd99aa8 100644 --- a/expression/builtin_encryption_test.go +++ b/expression/builtin_encryption_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_encryption_vec.go b/expression/builtin_encryption_vec.go index 61d297f681302..e314816f61d5e 100644 --- a/expression/builtin_encryption_vec.go +++ b/expression/builtin_encryption_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_encryption_vec_test.go b/expression/builtin_encryption_vec_test.go index 8f7dbc5be2fc0..34c8bc39a98bb 100644 --- a/expression/builtin_encryption_vec_test.go +++ b/expression/builtin_encryption_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_info.go b/expression/builtin_info.go index 381869098b35a..f81ead486eae4 100644 --- a/expression/builtin_info.go +++ b/expression/builtin_info.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_info_test.go b/expression/builtin_info_test.go index 3784cb95aaa34..3ab8347d6ecb1 100644 --- a/expression/builtin_info_test.go +++ b/expression/builtin_info_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_info_vec.go b/expression/builtin_info_vec.go index 7b98d44098052..d96feb873a5cd 100644 --- a/expression/builtin_info_vec.go +++ b/expression/builtin_info_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_info_vec_test.go b/expression/builtin_info_vec_test.go index 474d1c80d9320..4606139044798 100644 --- a/expression/builtin_info_vec_test.go +++ b/expression/builtin_info_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_json.go b/expression/builtin_json.go index 089b2d71a3ec8..73c047f8e9a56 100644 --- a/expression/builtin_json.go +++ b/expression/builtin_json.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_json_test.go b/expression/builtin_json_test.go index 0a9c2e9922724..3fc91fc1893c3 100644 --- a/expression/builtin_json_test.go +++ b/expression/builtin_json_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_json_vec.go b/expression/builtin_json_vec.go index 107a7d63cb133..281ad88f9efdc 100644 --- a/expression/builtin_json_vec.go +++ b/expression/builtin_json_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_json_vec_test.go b/expression/builtin_json_vec_test.go index cfbb039b65cc2..4f3db7b526c2f 100644 --- a/expression/builtin_json_vec_test.go +++ b/expression/builtin_json_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_like.go b/expression/builtin_like.go index 5700e69a8d807..ad60d05a06b74 100644 --- a/expression/builtin_like.go +++ b/expression/builtin_like.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_like_test.go b/expression/builtin_like_test.go index 1a9cd26121e9e..d8be70e87e342 100644 --- a/expression/builtin_like_test.go +++ b/expression/builtin_like_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_like_vec.go b/expression/builtin_like_vec.go index ebdd072e8eee4..f5ba0090b61b2 100644 --- a/expression/builtin_like_vec.go +++ b/expression/builtin_like_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_like_vec_test.go b/expression/builtin_like_vec_test.go index a902253573de3..964b63c4a278d 100644 --- a/expression/builtin_like_vec_test.go +++ b/expression/builtin_like_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_math.go b/expression/builtin_math.go index c2a33c4fd86f6..7891c30e69fc2 100644 --- a/expression/builtin_math.go +++ b/expression/builtin_math.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_math_test.go b/expression/builtin_math_test.go index a19bb7048f10c..cd5983170bceb 100644 --- a/expression/builtin_math_test.go +++ b/expression/builtin_math_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_math_vec.go b/expression/builtin_math_vec.go index 4896f5716800f..0835a8ad2aad8 100644 --- a/expression/builtin_math_vec.go +++ b/expression/builtin_math_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_math_vec_test.go b/expression/builtin_math_vec_test.go index 5c9f8aa4dd010..f6c60f473bb7f 100644 --- a/expression/builtin_math_vec_test.go +++ b/expression/builtin_math_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_miscellaneous.go b/expression/builtin_miscellaneous.go index c73299211b7a9..bced141c09a59 100644 --- a/expression/builtin_miscellaneous.go +++ b/expression/builtin_miscellaneous.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_miscellaneous_test.go b/expression/builtin_miscellaneous_test.go index 6fc25f6d563b8..65cba1bb43016 100644 --- a/expression/builtin_miscellaneous_test.go +++ b/expression/builtin_miscellaneous_test.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_miscellaneous_vec.go b/expression/builtin_miscellaneous_vec.go index 9da9a14375713..4ffad69ad8660 100644 --- a/expression/builtin_miscellaneous_vec.go +++ b/expression/builtin_miscellaneous_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_miscellaneous_vec_test.go b/expression/builtin_miscellaneous_vec_test.go index 4644811458681..ca85f95481c03 100644 --- a/expression/builtin_miscellaneous_vec_test.go +++ b/expression/builtin_miscellaneous_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_op.go b/expression/builtin_op.go index 591411a73ed1a..807905a092ebe 100644 --- a/expression/builtin_op.go +++ b/expression/builtin_op.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_op_test.go b/expression/builtin_op_test.go index cc87e0cbef863..ced34f6a8f2b7 100644 --- a/expression/builtin_op_test.go +++ b/expression/builtin_op_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_op_vec.go b/expression/builtin_op_vec.go index 6bbe39cb80ff3..6ce308fe421a9 100644 --- a/expression/builtin_op_vec.go +++ b/expression/builtin_op_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_op_vec_test.go b/expression/builtin_op_vec_test.go index 78f84e53a1253..0d273b8f05844 100644 --- a/expression/builtin_op_vec_test.go +++ b/expression/builtin_op_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_other.go b/expression/builtin_other.go index 0f352543181a2..dd821e91d25ec 100644 --- a/expression/builtin_other.go +++ b/expression/builtin_other.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_other_test.go b/expression/builtin_other_test.go index 2f504ef29fdf1..2ec41a5835896 100644 --- a/expression/builtin_other_test.go +++ b/expression/builtin_other_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_other_vec.go b/expression/builtin_other_vec.go index 61a3e1e391f09..f2019651f3934 100644 --- a/expression/builtin_other_vec.go +++ b/expression/builtin_other_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_other_vec_generated.go b/expression/builtin_other_vec_generated.go index ae6e52a5c7805..36712ed7a5018 100644 --- a/expression/builtin_other_vec_generated.go +++ b/expression/builtin_other_vec_generated.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_other_vec_generated_test.go b/expression/builtin_other_vec_generated_test.go index 121c95998d7d7..58c5ba486fd79 100644 --- a/expression/builtin_other_vec_generated_test.go +++ b/expression/builtin_other_vec_generated_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_other_vec_test.go b/expression/builtin_other_vec_test.go index b042de216115d..a3db2407209d1 100644 --- a/expression/builtin_other_vec_test.go +++ b/expression/builtin_other_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_regexp_vec_const_test.go b/expression/builtin_regexp_vec_const_test.go index cf01dc4d1894e..df4729310db6c 100644 --- a/expression/builtin_regexp_vec_const_test.go +++ b/expression/builtin_regexp_vec_const_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_string.go b/expression/builtin_string.go index 304939829a9da..46108b9c715b2 100644 --- a/expression/builtin_string.go +++ b/expression/builtin_string.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_string_test.go b/expression/builtin_string_test.go index 185cfa0d90b9e..559e5c88cc452 100644 --- a/expression/builtin_string_test.go +++ b/expression/builtin_string_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_string_vec.go b/expression/builtin_string_vec.go index f07a10c28b230..95cff31bd5fc5 100644 --- a/expression/builtin_string_vec.go +++ b/expression/builtin_string_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_string_vec_generated.go b/expression/builtin_string_vec_generated.go index 9d0ce5eb1c9b5..8c016c04dc123 100644 --- a/expression/builtin_string_vec_generated.go +++ b/expression/builtin_string_vec_generated.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_string_vec_generated_test.go b/expression/builtin_string_vec_generated_test.go index a3e1603c0c364..2cb82e860ff7e 100644 --- a/expression/builtin_string_vec_generated_test.go +++ b/expression/builtin_string_vec_generated_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_string_vec_test.go b/expression/builtin_string_vec_test.go index 870bd31609198..2c32911759cb0 100644 --- a/expression/builtin_string_vec_test.go +++ b/expression/builtin_string_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_test.go b/expression/builtin_test.go index 9f5a0f5c2018a..5f8bee25fd56d 100644 --- a/expression/builtin_test.go +++ b/expression/builtin_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_time.go b/expression/builtin_time.go index 445d623f17579..d1da8382f164f 100644 --- a/expression/builtin_time.go +++ b/expression/builtin_time.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_time_test.go b/expression/builtin_time_test.go index b8ef7f9d4a36e..a4ac49a5c6817 100644 --- a/expression/builtin_time_test.go +++ b/expression/builtin_time_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_time_vec.go b/expression/builtin_time_vec.go index 5ec12d5039d77..6d4d68ef2d53b 100644 --- a/expression/builtin_time_vec.go +++ b/expression/builtin_time_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_time_vec_generated.go b/expression/builtin_time_vec_generated.go index 535c54b9138b6..7f245095cc264 100644 --- a/expression/builtin_time_vec_generated.go +++ b/expression/builtin_time_vec_generated.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_time_vec_generated_test.go b/expression/builtin_time_vec_generated_test.go index 9d35c8a84c348..c39b8b3803964 100644 --- a/expression/builtin_time_vec_generated_test.go +++ b/expression/builtin_time_vec_generated_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_time_vec_test.go b/expression/builtin_time_vec_test.go index 389c257460e1b..da0164c6930b2 100644 --- a/expression/builtin_time_vec_test.go +++ b/expression/builtin_time_vec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_vectorized.go b/expression/builtin_vectorized.go index e59b95d3056c2..d40d068abe00b 100644 --- a/expression/builtin_vectorized.go +++ b/expression/builtin_vectorized.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/builtin_vectorized_test.go b/expression/builtin_vectorized_test.go index 11b9b1ff77c10..3b0fe67f720e0 100644 --- a/expression/builtin_vectorized_test.go +++ b/expression/builtin_vectorized_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/chunk_executor.go b/expression/chunk_executor.go index f99002bd499b0..9d1fec03b555b 100644 --- a/expression/chunk_executor.go +++ b/expression/chunk_executor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/collation.go b/expression/collation.go index 3d187143fe000..988cfb519712d 100644 --- a/expression/collation.go +++ b/expression/collation.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/collation_test.go b/expression/collation_test.go index 698528baadce4..7fec323e396bd 100644 --- a/expression/collation_test.go +++ b/expression/collation_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/column.go b/expression/column.go index 15b137c88f24c..2cdc78c29e3e7 100644 --- a/expression/column.go +++ b/expression/column.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/column_test.go b/expression/column_test.go index 41f5bdbe16349..c35208e5eea6d 100644 --- a/expression/column_test.go +++ b/expression/column_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/constant.go b/expression/constant.go index 4b76900213403..cee826d2b99cc 100644 --- a/expression/constant.go +++ b/expression/constant.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/constant_fold.go b/expression/constant_fold.go index c698d4a0a9536..7293134fa5bc1 100644 --- a/expression/constant_fold.go +++ b/expression/constant_fold.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/constant_fold_test.go b/expression/constant_fold_test.go index 7270595295920..cbdd966804bfa 100644 --- a/expression/constant_fold_test.go +++ b/expression/constant_fold_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/constant_propagation.go b/expression/constant_propagation.go index 1c691b6800538..222611639e40a 100644 --- a/expression/constant_propagation.go +++ b/expression/constant_propagation.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/constant_propagation_test.go b/expression/constant_propagation_test.go index 7419203ddb5e4..56c6a89351943 100644 --- a/expression/constant_propagation_test.go +++ b/expression/constant_propagation_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/constant_test.go b/expression/constant_test.go index 5bf9ced9fa40f..ab08091339424 100644 --- a/expression/constant_test.go +++ b/expression/constant_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/distsql_builtin.go b/expression/distsql_builtin.go index 7fd61b30fa3fa..a56cae7be8505 100644 --- a/expression/distsql_builtin.go +++ b/expression/distsql_builtin.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/distsql_builtin_test.go b/expression/distsql_builtin_test.go index 7cad3e354605e..b1cb54bf54d04 100644 --- a/expression/distsql_builtin_test.go +++ b/expression/distsql_builtin_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/errors.go b/expression/errors.go index b4905b1e9b1f5..69da58efea6b5 100644 --- a/expression/errors.go +++ b/expression/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/evaluator.go b/expression/evaluator.go index bc2a5cb0924a2..d8cf7bdfed2e3 100644 --- a/expression/evaluator.go +++ b/expression/evaluator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/evaluator_test.go b/expression/evaluator_test.go index 58f498a4b3f86..a4d3f2b8c3705 100644 --- a/expression/evaluator_test.go +++ b/expression/evaluator_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/explain.go b/expression/explain.go index c1f80571ea871..a25d53ccbd339 100644 --- a/expression/explain.go +++ b/expression/explain.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/expr_to_pb.go b/expression/expr_to_pb.go index dc031145d0d95..0117f57ea4158 100644 --- a/expression/expr_to_pb.go +++ b/expression/expr_to_pb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/expr_to_pb_test.go b/expression/expr_to_pb_test.go index 6b548bc733bbf..ecf607b8f21ed 100644 --- a/expression/expr_to_pb_test.go +++ b/expression/expr_to_pb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/expression.go b/expression/expression.go index 353f7fea209cc..0b9e5817b6b24 100644 --- a/expression/expression.go +++ b/expression/expression.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/expression_test.go b/expression/expression_test.go index 40eed2c946207..6ec33a65040fd 100644 --- a/expression/expression_test.go +++ b/expression/expression_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/flag_simplify_test.go b/expression/flag_simplify_test.go index 0e9e579aa51dd..a9f23e19ea099 100644 --- a/expression/flag_simplify_test.go +++ b/expression/flag_simplify_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/function_traits.go b/expression/function_traits.go index 7bf2730a6f360..877dec805086a 100644 --- a/expression/function_traits.go +++ b/expression/function_traits.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/function_traits_test.go b/expression/function_traits_test.go index e9919de19d2b6..23a60a8fb9e52 100644 --- a/expression/function_traits_test.go +++ b/expression/function_traits_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/generator/compare_vec.go b/expression/generator/compare_vec.go index 49302a542a3bf..f57ccac84b9b3 100644 --- a/expression/generator/compare_vec.go +++ b/expression/generator/compare_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -37,6 +38,7 @@ const header = `// Copyright 2019 PingCAP, Inc. // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -171,7 +173,7 @@ func (b *builtin{{ .compare.CompareName }}{{ .type.TypeName }}Sig) vectorized() `)) var builtinCoalesceCompareVecTpl = template.Must(template.New("").Parse(` -// NOTE: Coalesce just return the first non-null item, but vectorization do each item, which would incur additional errors. If this case happen, +// NOTE: Coalesce just return the first non-null item, but vectorization do each item, which would incur additional errors. If this case happen, // the vectorization falls back to the scalar execution. func (b *builtin{{ .compare.CompareName }}{{ .type.TypeName }}Sig) fallbackEval{{ .type.TypeName }}(input *chunk.Chunk, result *chunk.Column) error { n := input.NumRows() diff --git a/expression/generator/control_vec.go b/expression/generator/control_vec.go index 6f7c158e9ea75..64444b243570d 100644 --- a/expression/generator/control_vec.go +++ b/expression/generator/control_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -36,6 +37,7 @@ const header = `// Copyright 2019 PingCAP, Inc. // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -51,7 +53,7 @@ import ( ) // NOTE: Control expressions optionally evaluate some branches depending on conditions, but vectorization executes all -// branches, during which the unnecessary branches may return errors or warnings. To avoid this case, when branches +// branches, during which the unnecessary branches may return errors or warnings. To avoid this case, when branches // meet errors or warnings, the vectorization falls back the scalar execution. ` @@ -168,13 +170,13 @@ func (b *builtinCaseWhen{{ .TypeName }}Sig) vecEval{{ .TypeName }}(input *chunk. eLseSlice = bufElse.{{ .TypeNameInColumn }}s() {{- end }} } - + {{- if .Fixed }} result.Resize{{ .TypeNameInColumn }}(n, false) resultSlice := result.{{ .TypeNameInColumn }}s() {{- else }} result.Reserve{{ .TypeNameInColumn }}(n) - {{- end }} + {{- end }} ROW: for i := 0; i < n; i++ { for j := 0; j < l/2; j++ { @@ -202,7 +204,7 @@ ROW: result.AppendNull() } else { result.Append{{ .TypeNameInColumn }}(eLse.Get{{ .TypeNameInColumn }}(i)) - } + } {{- end }} } else { {{- if .Fixed }} @@ -406,7 +408,7 @@ func (b *builtinIf{{ .TypeName }}Sig) vecEval{{ .TypeName }}(input *chunk.Chunk, } return b.fallbackEval{{ .TypeName }}(input, result) } - + buf2, err := b.bufAllocator.get() if err != nil { return err @@ -478,6 +480,7 @@ var testFile = template.Must(template.New("testFile").Parse(`// Copyright 2019 P // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/generator/helper/helper.go b/expression/generator/helper/helper.go index a70aca043a18f..fa76c9869f8a7 100644 --- a/expression/generator/helper/helper.go +++ b/expression/generator/helper/helper.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/generator/other_vec.go b/expression/generator/other_vec.go index 278b48ee4d2d7..40910774b9c0a 100644 --- a/expression/generator/other_vec.go +++ b/expression/generator/other_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -36,6 +37,7 @@ const header = `// Copyright 2019 PingCAP, Inc. // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -265,6 +267,7 @@ var testFile = template.Must(template.New("").Parse(`// Copyright 2019 PingCAP, // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/generator/string_vec.go b/expression/generator/string_vec.go index 7959fb5e554f9..df8b9a1c09ff9 100644 --- a/expression/generator/string_vec.go +++ b/expression/generator/string_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -37,6 +38,7 @@ const header = `// Copyright 2021 PingCAP, Inc. // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/generator/time_vec.go b/expression/generator/time_vec.go index bb6b4c5fd2be4..77928bf4f0339 100644 --- a/expression/generator/time_vec.go +++ b/expression/generator/time_vec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -38,6 +39,7 @@ var addOrSubTime = template.Must(template.New("").Parse(` // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -646,6 +648,7 @@ var testFile = template.Must(template.New("").Funcs(testFileFuncs).Parse(` // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/helper.go b/expression/helper.go index d9f1e22610b62..962a48bb49ea5 100644 --- a/expression/helper.go +++ b/expression/helper.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/helper_test.go b/expression/helper_test.go index 2e23e750bbbb2..31d7ebc4468ad 100644 --- a/expression/helper_test.go +++ b/expression/helper_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/integration_test.go b/expression/integration_test.go index ccda15a361e39..ddc528d4a45ad 100644 --- a/expression/integration_test.go +++ b/expression/integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/partition_pruner.go b/expression/partition_pruner.go index b3531b27d0508..16a2dfb777777 100644 --- a/expression/partition_pruner.go +++ b/expression/partition_pruner.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/rand.go b/expression/rand.go index 39a804982cd52..f33331374f197 100644 --- a/expression/rand.go +++ b/expression/rand.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/rand_test.go b/expression/rand_test.go index ea09d7881ecfd..2d5d7bd16a681 100644 --- a/expression/rand_test.go +++ b/expression/rand_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/scalar_function.go b/expression/scalar_function.go index ddec6e9e3e7dc..630c9e43a8eba 100644 --- a/expression/scalar_function.go +++ b/expression/scalar_function.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/scalar_function_test.go b/expression/scalar_function_test.go index c5f52e3309532..6d748141d81b8 100644 --- a/expression/scalar_function_test.go +++ b/expression/scalar_function_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/schema.go b/expression/schema.go index f8ea2af063e9c..ffef53f70de7a 100644 --- a/expression/schema.go +++ b/expression/schema.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/schema_test.go b/expression/schema_test.go index 8003760711d2c..3bbec67c10b50 100644 --- a/expression/schema_test.go +++ b/expression/schema_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/simple_rewriter.go b/expression/simple_rewriter.go index e0e9f41fd1bbf..46486576b9117 100644 --- a/expression/simple_rewriter.go +++ b/expression/simple_rewriter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/typeinfer_test.go b/expression/typeinfer_test.go index e0324123bbaae..335fa4b1aaa25 100644 --- a/expression/typeinfer_test.go +++ b/expression/typeinfer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/util.go b/expression/util.go index 9cb9c0cbe1961..18c027c966f60 100644 --- a/expression/util.go +++ b/expression/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/util_test.go b/expression/util_test.go index ed9ba8448b116..da57b33da88fa 100644 --- a/expression/util_test.go +++ b/expression/util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/expression/vectorized.go b/expression/vectorized.go index 6abf7773398b2..a6e7f04a84d44 100644 --- a/expression/vectorized.go +++ b/expression/vectorized.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/builder.go b/infoschema/builder.go index 88e8b71add319..88847ba544c5a 100644 --- a/infoschema/builder.go +++ b/infoschema/builder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/cache.go b/infoschema/cache.go index d7c17f65716e3..1e2191e4699da 100644 --- a/infoschema/cache.go +++ b/infoschema/cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/cache_test.go b/infoschema/cache_test.go index 404ae5afcefbf..71263e0216001 100644 --- a/infoschema/cache_test.go +++ b/infoschema/cache_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/cluster.go b/infoschema/cluster.go index efa35c48420ae..c2449b91dd868 100644 --- a/infoschema/cluster.go +++ b/infoschema/cluster.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/error.go b/infoschema/error.go index cb49e48419dec..b9c0854bab051 100644 --- a/infoschema/error.go +++ b/infoschema/error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/infoschema.go b/infoschema/infoschema.go index 41b5b2c2f6e7c..e9131bff5d822 100644 --- a/infoschema/infoschema.go +++ b/infoschema/infoschema.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/infoschema_test.go b/infoschema/infoschema_test.go index 06eee146d438e..746053d697685 100644 --- a/infoschema/infoschema_test.go +++ b/infoschema/infoschema_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/metric_table_def.go b/infoschema/metric_table_def.go index f971e8b225ff3..b27217a316c03 100644 --- a/infoschema/metric_table_def.go +++ b/infoschema/metric_table_def.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/metrics_schema.go b/infoschema/metrics_schema.go index 3b4654f90f7f2..244e87076d52c 100644 --- a/infoschema/metrics_schema.go +++ b/infoschema/metrics_schema.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/metrics_schema_test.go b/infoschema/metrics_schema_test.go index 1ef567e2d3da4..29b0a0e6fb3fb 100644 --- a/infoschema/metrics_schema_test.go +++ b/infoschema/metrics_schema_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/perfschema/const.go b/infoschema/perfschema/const.go index 157ce4c7ae7c9..13ab10a699eeb 100644 --- a/infoschema/perfschema/const.go +++ b/infoschema/perfschema/const.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/perfschema/init.go b/infoschema/perfschema/init.go index 465cf83a54635..3fb01504c79aa 100644 --- a/infoschema/perfschema/init.go +++ b/infoschema/perfschema/init.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/perfschema/main_test.go b/infoschema/perfschema/main_test.go index 3336bddfec172..068cebc3f3cb0 100644 --- a/infoschema/perfschema/main_test.go +++ b/infoschema/perfschema/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/perfschema/tables.go b/infoschema/perfschema/tables.go index 76c76f2c3cb33..acbe5b8103211 100644 --- a/infoschema/perfschema/tables.go +++ b/infoschema/perfschema/tables.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/perfschema/tables_test.go b/infoschema/perfschema/tables_test.go index d2d819d2a6e87..8a0d0f9db2952 100644 --- a/infoschema/perfschema/tables_test.go +++ b/infoschema/perfschema/tables_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/tables.go b/infoschema/tables.go index 140a1d15446c7..5e92704f6c703 100644 --- a/infoschema/tables.go +++ b/infoschema/tables.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/infoschema/tables_test.go b/infoschema/tables_test.go index 2033786541f30..ca10d6214ac5e 100644 --- a/infoschema/tables_test.go +++ b/infoschema/tables_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/cachedb.go b/kv/cachedb.go index c5ca2ded60b8e..4586e6e6db5a5 100644 --- a/kv/cachedb.go +++ b/kv/cachedb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/checker.go b/kv/checker.go index 6312e6e0e5ddd..071b8463b5258 100644 --- a/kv/checker.go +++ b/kv/checker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/checker_test.go b/kv/checker_test.go index 91a6bc92a5ca3..3143bd36ecfcd 100644 --- a/kv/checker_test.go +++ b/kv/checker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/error.go b/kv/error.go index 7a2b469bc1bf7..7032ea7f01f5a 100644 --- a/kv/error.go +++ b/kv/error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/error_test.go b/kv/error_test.go index d58d3115b98a3..6ad773bfe213d 100644 --- a/kv/error_test.go +++ b/kv/error_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/fault_injection.go b/kv/fault_injection.go index 83341562b4348..af875d39ea1b6 100644 --- a/kv/fault_injection.go +++ b/kv/fault_injection.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/fault_injection_test.go b/kv/fault_injection_test.go index 294d485f2c935..689b1015faac5 100644 --- a/kv/fault_injection_test.go +++ b/kv/fault_injection_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/interface_mock_test.go b/kv/interface_mock_test.go index f91eb103e6a5b..9429d678d54be 100644 --- a/kv/interface_mock_test.go +++ b/kv/interface_mock_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/iter.go b/kv/iter.go index 6cfb4008fac8d..13bf851b06117 100644 --- a/kv/iter.go +++ b/kv/iter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/key.go b/kv/key.go index baa6b4885b515..f8d37244b9062 100644 --- a/kv/key.go +++ b/kv/key.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/key_test.go b/kv/key_test.go index fcbb28b7f2ffa..af4b6b58f1725 100644 --- a/kv/key_test.go +++ b/kv/key_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/keyflags.go b/kv/keyflags.go index 8e721061409d1..66f94380c7a50 100644 --- a/kv/keyflags.go +++ b/kv/keyflags.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/kv.go b/kv/kv.go index 29d3e0fa73f5b..11fe882f38c7a 100644 --- a/kv/kv.go +++ b/kv/kv.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/main_test.go b/kv/main_test.go index be16515b4e8ae..e87d9dd2a9916 100644 --- a/kv/main_test.go +++ b/kv/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/mock_test.go b/kv/mock_test.go index da51782511849..e3e7d7e095edf 100644 --- a/kv/mock_test.go +++ b/kv/mock_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/mpp.go b/kv/mpp.go index c3965831ae05b..4e3f70532c9d2 100644 --- a/kv/mpp.go +++ b/kv/mpp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/option.go b/kv/option.go index 6b1e830e12984..5e5a806136c09 100644 --- a/kv/option.go +++ b/kv/option.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/txn.go b/kv/txn.go index 1b8ab34904300..27884cdd19fa3 100644 --- a/kv/txn.go +++ b/kv/txn.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/txn_scope_var.go b/kv/txn_scope_var.go index c2a24a29c2bb3..9e9b6f76f452a 100644 --- a/kv/txn_scope_var.go +++ b/kv/txn_scope_var.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/txn_test.go b/kv/txn_test.go index 4a742951346b2..b57dfab4dff74 100644 --- a/kv/txn_test.go +++ b/kv/txn_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/utils.go b/kv/utils.go index d738e6b07dd5a..36a313246ea91 100644 --- a/kv/utils.go +++ b/kv/utils.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/utils_test.go b/kv/utils_test.go index 80c801d7bbb99..bd7689026c18a 100644 --- a/kv/utils_test.go +++ b/kv/utils_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/variables.go b/kv/variables.go index b4042fb5886cf..f0c5b4726820b 100644 --- a/kv/variables.go +++ b/kv/variables.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/version.go b/kv/version.go index f009215863e88..137b47d32995a 100644 --- a/kv/version.go +++ b/kv/version.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/kv/version_test.go b/kv/version_test.go index cd4aeb7c50205..ebea2f4aa8422 100644 --- a/kv/version_test.go +++ b/kv/version_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/lock/lock.go b/lock/lock.go index ecfc8093a5243..a3301435c305c 100644 --- a/lock/lock.go +++ b/lock/lock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/autoid.go b/meta/autoid/autoid.go index cf61beaff9781..b080d35e344a2 100644 --- a/meta/autoid/autoid.go +++ b/meta/autoid/autoid.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/autoid_test.go b/meta/autoid/autoid_test.go index 649855211f094..1b92726abb8ff 100644 --- a/meta/autoid/autoid_test.go +++ b/meta/autoid/autoid_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/bench_test.go b/meta/autoid/bench_test.go index 9cc8fbfdf1d8e..24c71870399b7 100644 --- a/meta/autoid/bench_test.go +++ b/meta/autoid/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/errors.go b/meta/autoid/errors.go index 777de466b7704..90d9fcc6a310e 100644 --- a/meta/autoid/errors.go +++ b/meta/autoid/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/main_test.go b/meta/autoid/main_test.go index e2d58f1ced7d7..a5e8e915db0db 100644 --- a/meta/autoid/main_test.go +++ b/meta/autoid/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/memid.go b/meta/autoid/memid.go index 39db68e3bc33d..597a564bef2d8 100644 --- a/meta/autoid/memid.go +++ b/meta/autoid/memid.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/memid_test.go b/meta/autoid/memid_test.go index 7b71534e80575..700bfc5fd5a23 100644 --- a/meta/autoid/memid_test.go +++ b/meta/autoid/memid_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/autoid/seq_autoid_test.go b/meta/autoid/seq_autoid_test.go index 8c2a1baa846b9..8cef4d21a171f 100644 --- a/meta/autoid/seq_autoid_test.go +++ b/meta/autoid/seq_autoid_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/main_test.go b/meta/main_test.go index e6f34f4df31da..858d4bbb6f6e6 100644 --- a/meta/main_test.go +++ b/meta/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/meta.go b/meta/meta.go index e52bc41290b68..e222cc126ddd3 100644 --- a/meta/meta.go +++ b/meta/meta.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/meta/meta_test.go b/meta/meta_test.go index 341b15981188e..15cf516eeaa81 100644 --- a/meta/meta_test.go +++ b/meta/meta_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/bindinfo.go b/metrics/bindinfo.go index 2b5da872811d7..47722b1502322 100644 --- a/metrics/bindinfo.go +++ b/metrics/bindinfo.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/ddl.go b/metrics/ddl.go index c92a8f72379fb..47e043519c9c5 100644 --- a/metrics/ddl.go +++ b/metrics/ddl.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/distsql.go b/metrics/distsql.go index 9eef1c62f0310..9bec9d7646827 100644 --- a/metrics/distsql.go +++ b/metrics/distsql.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/domain.go b/metrics/domain.go index 3bc9782afe420..ab6d9df5ae0d8 100644 --- a/metrics/domain.go +++ b/metrics/domain.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/executor.go b/metrics/executor.go index 57b6d2afdabcf..6702832ebe9ac 100644 --- a/metrics/executor.go +++ b/metrics/executor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/gc_worker.go b/metrics/gc_worker.go index 6ca39f6901eb2..ad20286d5817d 100644 --- a/metrics/gc_worker.go +++ b/metrics/gc_worker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/main_test.go b/metrics/main_test.go index 1ee572d5dd914..2e27c2eec0544 100644 --- a/metrics/main_test.go +++ b/metrics/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/meta.go b/metrics/meta.go index b4135c330caef..519ba6a0924a1 100644 --- a/metrics/meta.go +++ b/metrics/meta.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/metrics.go b/metrics/metrics.go index ebf70459224b7..772663f530575 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/metrics_test.go b/metrics/metrics_test.go index 95944fe0ddbb1..eb6aefdaf3fa0 100644 --- a/metrics/metrics_test.go +++ b/metrics/metrics_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/owner.go b/metrics/owner.go index 595fce11b42a8..7f00b5816db92 100644 --- a/metrics/owner.go +++ b/metrics/owner.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/server.go b/metrics/server.go index f83c7afee2732..860127b1321b0 100644 --- a/metrics/server.go +++ b/metrics/server.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/session.go b/metrics/session.go index 500dd17981efa..0058104788f21 100644 --- a/metrics/session.go +++ b/metrics/session.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/sli.go b/metrics/sli.go index 2e926de099997..381be0208957c 100644 --- a/metrics/sli.go +++ b/metrics/sli.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/stats.go b/metrics/stats.go index a37bb08232bb2..a3347dd597716 100644 --- a/metrics/stats.go +++ b/metrics/stats.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/metrics/telemetry.go b/metrics/telemetry.go index 054001f1a7c48..7db666d8dc737 100644 --- a/metrics/telemetry.go +++ b/metrics/telemetry.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/owner/fail_test.go b/owner/fail_test.go index 4ce291af10cbb..bf8f10565c9e7 100644 --- a/owner/fail_test.go +++ b/owner/fail_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/owner/main_test.go b/owner/main_test.go index ab9498a86833c..ba940ab9a3d5d 100644 --- a/owner/main_test.go +++ b/owner/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/owner/manager.go b/owner/manager.go index 4bf8508434d6a..d0773728da25b 100644 --- a/owner/manager.go +++ b/owner/manager.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/owner/manager_test.go b/owner/manager_test.go index 9f923437ea73f..4059310fb0c93 100644 --- a/owner/manager_test.go +++ b/owner/manager_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/owner/mock.go b/owner/mock.go index 0e4435eaf881f..622ca2b632d6c 100644 --- a/owner/mock.go +++ b/owner/mock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/enforcer_rules.go b/planner/cascades/enforcer_rules.go index 5d80845769c5e..87908ae1a1063 100644 --- a/planner/cascades/enforcer_rules.go +++ b/planner/cascades/enforcer_rules.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/enforcer_rules_test.go b/planner/cascades/enforcer_rules_test.go index adfdba887b51d..8c8fae1d6da73 100644 --- a/planner/cascades/enforcer_rules_test.go +++ b/planner/cascades/enforcer_rules_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/implementation_rules.go b/planner/cascades/implementation_rules.go index 3b4c07b685902..b686d17d72469 100644 --- a/planner/cascades/implementation_rules.go +++ b/planner/cascades/implementation_rules.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/integration_test.go b/planner/cascades/integration_test.go index 78a9d4aacc111..d09b23acabf76 100644 --- a/planner/cascades/integration_test.go +++ b/planner/cascades/integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/optimize.go b/planner/cascades/optimize.go index 8e9ea74dba72d..0d1a0969d7568 100644 --- a/planner/cascades/optimize.go +++ b/planner/cascades/optimize.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/optimize_test.go b/planner/cascades/optimize_test.go index 3fbceccf3feee..d040a374065be 100644 --- a/planner/cascades/optimize_test.go +++ b/planner/cascades/optimize_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/stringer.go b/planner/cascades/stringer.go index 5a78c0274963f..5bf84a7047422 100644 --- a/planner/cascades/stringer.go +++ b/planner/cascades/stringer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/stringer_test.go b/planner/cascades/stringer_test.go index c9a64772d8145..806754235b69f 100644 --- a/planner/cascades/stringer_test.go +++ b/planner/cascades/stringer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/transformation_rules.go b/planner/cascades/transformation_rules.go index 9961509299a52..fed1525f2ae85 100644 --- a/planner/cascades/transformation_rules.go +++ b/planner/cascades/transformation_rules.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/cascades/transformation_rules_test.go b/planner/cascades/transformation_rules_test.go index 2f3d0240cbcee..69f1c5dc3096c 100644 --- a/planner/cascades/transformation_rules_test.go +++ b/planner/cascades/transformation_rules_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/cache.go b/planner/core/cache.go index dd691ba80f86b..4f80a159b0728 100644 --- a/planner/core/cache.go +++ b/planner/core/cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/cache_test.go b/planner/core/cache_test.go index 262497e50a24e..2a9648a6357f5 100644 --- a/planner/core/cache_test.go +++ b/planner/core/cache_test.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/cacheable_checker.go b/planner/core/cacheable_checker.go index b78e02fa6a1fb..db2a6bce7970b 100644 --- a/planner/core/cacheable_checker.go +++ b/planner/core/cacheable_checker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/cacheable_checker_test.go b/planner/core/cacheable_checker_test.go index 7d6db5dd611d5..b0cd7e3da779e 100644 --- a/planner/core/cacheable_checker_test.go +++ b/planner/core/cacheable_checker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/cbo_test.go b/planner/core/cbo_test.go index d7aa29b17155d..a3cf245b19885 100644 --- a/planner/core/cbo_test.go +++ b/planner/core/cbo_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/common_plans.go b/planner/core/common_plans.go index e7efa7db28665..afda92d2a0849 100644 --- a/planner/core/common_plans.go +++ b/planner/core/common_plans.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/encode.go b/planner/core/encode.go index 985f05869b518..443f0f8f55ec0 100644 --- a/planner/core/encode.go +++ b/planner/core/encode.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/enforce_mpp_test.go b/planner/core/enforce_mpp_test.go index 6036ae7dbc1c7..d20615b75d8fa 100644 --- a/planner/core/enforce_mpp_test.go +++ b/planner/core/enforce_mpp_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/errors.go b/planner/core/errors.go index 2ddb1b5552d30..3b9668289dc12 100644 --- a/planner/core/errors.go +++ b/planner/core/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/errors_test.go b/planner/core/errors_test.go index 2f17297484fe4..7be4355956419 100644 --- a/planner/core/errors_test.go +++ b/planner/core/errors_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/exhaust_physical_plans.go b/planner/core/exhaust_physical_plans.go index ce56dfcf81a39..7d905c0720262 100644 --- a/planner/core/exhaust_physical_plans.go +++ b/planner/core/exhaust_physical_plans.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/exhaust_physical_plans_test.go b/planner/core/exhaust_physical_plans_test.go index ed7a47b87cece..7a9f7e7b16b5d 100644 --- a/planner/core/exhaust_physical_plans_test.go +++ b/planner/core/exhaust_physical_plans_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/explain.go b/planner/core/explain.go index 9ed849f19b796..03e6a6c50aa00 100644 --- a/planner/core/explain.go +++ b/planner/core/explain.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/expression_rewriter.go b/planner/core/expression_rewriter.go index f359e3f83c61e..1a3554c7a308e 100644 --- a/planner/core/expression_rewriter.go +++ b/planner/core/expression_rewriter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/expression_rewriter_test.go b/planner/core/expression_rewriter_test.go index 6e78d0773ac91..a622dc76272ae 100644 --- a/planner/core/expression_rewriter_test.go +++ b/planner/core/expression_rewriter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/expression_test.go b/planner/core/expression_test.go index 4461db382b47a..316b99143f7b4 100644 --- a/planner/core/expression_test.go +++ b/planner/core/expression_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/find_best_task.go b/planner/core/find_best_task.go index 32e9e13de01a9..9766c25cd8a13 100644 --- a/planner/core/find_best_task.go +++ b/planner/core/find_best_task.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/find_best_task_test.go b/planner/core/find_best_task_test.go index c744282db0c45..2c9170a182a68 100644 --- a/planner/core/find_best_task_test.go +++ b/planner/core/find_best_task_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/fragment.go b/planner/core/fragment.go index 8adcbf127ff26..ee9495c5b88c3 100644 --- a/planner/core/fragment.go +++ b/planner/core/fragment.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/handle_cols.go b/planner/core/handle_cols.go index 6e7c712817c50..4e37ee820de9a 100644 --- a/planner/core/handle_cols.go +++ b/planner/core/handle_cols.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/hashcode.go b/planner/core/hashcode.go index 966e24ef07c8b..42acce8d9401f 100644 --- a/planner/core/hashcode.go +++ b/planner/core/hashcode.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/hints.go b/planner/core/hints.go index cddd36d5caf30..91b2ed01ac62a 100644 --- a/planner/core/hints.go +++ b/planner/core/hints.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/indexmerge_test.go b/planner/core/indexmerge_test.go index 361161689bbde..4ffe137f8668d 100644 --- a/planner/core/indexmerge_test.go +++ b/planner/core/indexmerge_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/initialize.go b/planner/core/initialize.go index cbf099baf4113..5a32d0294e952 100644 --- a/planner/core/initialize.go +++ b/planner/core/initialize.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/integration_partition_test.go b/planner/core/integration_partition_test.go index f99bef2e66cc4..009b37b883c8f 100644 --- a/planner/core/integration_partition_test.go +++ b/planner/core/integration_partition_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/integration_test.go b/planner/core/integration_test.go index b18f1649bdef2..f52f75b5cd33f 100644 --- a/planner/core/integration_test.go +++ b/planner/core/integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/logical_plan_builder.go b/planner/core/logical_plan_builder.go index 8b68ee47018b5..e8407a5b15190 100644 --- a/planner/core/logical_plan_builder.go +++ b/planner/core/logical_plan_builder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/logical_plan_test.go b/planner/core/logical_plan_test.go index 05efc42482fc8..ba842b08d5906 100644 --- a/planner/core/logical_plan_test.go +++ b/planner/core/logical_plan_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/logical_plans.go b/planner/core/logical_plans.go index b6084fb339466..54f5690879ed1 100644 --- a/planner/core/logical_plans.go +++ b/planner/core/logical_plans.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/logical_plans_test.go b/planner/core/logical_plans_test.go index 08617ce93d480..cf45a4f6ef28a 100644 --- a/planner/core/logical_plans_test.go +++ b/planner/core/logical_plans_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/memtable_predicate_extractor.go b/planner/core/memtable_predicate_extractor.go index 870875c311a7c..20a4e9cab8eef 100644 --- a/planner/core/memtable_predicate_extractor.go +++ b/planner/core/memtable_predicate_extractor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/memtable_predicate_extractor_test.go b/planner/core/memtable_predicate_extractor_test.go index 3cc16efe3504d..3bf40344a7b2e 100644 --- a/planner/core/memtable_predicate_extractor_test.go +++ b/planner/core/memtable_predicate_extractor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/mock.go b/planner/core/mock.go index eac3315fcdeac..1cb203b052136 100644 --- a/planner/core/mock.go +++ b/planner/core/mock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/optimizer.go b/planner/core/optimizer.go index 7994e1f65ae64..d406248ebfac9 100644 --- a/planner/core/optimizer.go +++ b/planner/core/optimizer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/optimizer_test.go b/planner/core/optimizer_test.go index c8e27fb15d759..d619ebd6d4b46 100644 --- a/planner/core/optimizer_test.go +++ b/planner/core/optimizer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/partition_prune.go b/planner/core/partition_prune.go index c10032c0a498a..d41c4ea28c323 100644 --- a/planner/core/partition_prune.go +++ b/planner/core/partition_prune.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/partition_pruner_test.go b/planner/core/partition_pruner_test.go index e4de5a2c654e6..9f2a7ac29e8da 100644 --- a/planner/core/partition_pruner_test.go +++ b/planner/core/partition_pruner_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/partition_pruning_test.go b/planner/core/partition_pruning_test.go index 12f43e49525b5..4c4469ee716d0 100644 --- a/planner/core/partition_pruning_test.go +++ b/planner/core/partition_pruning_test.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/pb_to_plan.go b/planner/core/pb_to_plan.go index a453596a0f288..bd35c11cc2205 100644 --- a/planner/core/pb_to_plan.go +++ b/planner/core/pb_to_plan.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/physical_plan_test.go b/planner/core/physical_plan_test.go index ca4898e5daf39..b93d20501c372 100644 --- a/planner/core/physical_plan_test.go +++ b/planner/core/physical_plan_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/physical_plans.go b/planner/core/physical_plans.go index 7a2fd0c87654f..97c49dc927773 100644 --- a/planner/core/physical_plans.go +++ b/planner/core/physical_plans.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/plan.go b/planner/core/plan.go index 5e5baec4e385c..458da3f632590 100644 --- a/planner/core/plan.go +++ b/planner/core/plan.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/plan_test.go b/planner/core/plan_test.go index e34ad13851dc8..344aef414b890 100644 --- a/planner/core/plan_test.go +++ b/planner/core/plan_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/plan_to_pb.go b/planner/core/plan_to_pb.go index 582cfaf758b82..b128847869790 100644 --- a/planner/core/plan_to_pb.go +++ b/planner/core/plan_to_pb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/plan_to_pb_test.go b/planner/core/plan_to_pb_test.go index 0162cce7397b5..b61c9d0b73f23 100644 --- a/planner/core/plan_to_pb_test.go +++ b/planner/core/plan_to_pb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/planbuilder.go b/planner/core/planbuilder.go index 409a9715aebad..23eb31fd586f7 100644 --- a/planner/core/planbuilder.go +++ b/planner/core/planbuilder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/planbuilder_test.go b/planner/core/planbuilder_test.go index 0f9205be76412..98f430a11b195 100644 --- a/planner/core/planbuilder_test.go +++ b/planner/core/planbuilder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/point_get_plan.go b/planner/core/point_get_plan.go index 74398381cbf90..8038ff2e42550 100644 --- a/planner/core/point_get_plan.go +++ b/planner/core/point_get_plan.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/point_get_plan_test.go b/planner/core/point_get_plan_test.go index b67bcf08cb465..9d426ed719cfc 100644 --- a/planner/core/point_get_plan_test.go +++ b/planner/core/point_get_plan_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/prepare_test.go b/planner/core/prepare_test.go index 0bd050a05ebdc..45b019990d3f7 100644 --- a/planner/core/prepare_test.go +++ b/planner/core/prepare_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/preprocess.go b/planner/core/preprocess.go index 2efc7dedf5f3d..4d1909ac804ae 100644 --- a/planner/core/preprocess.go +++ b/planner/core/preprocess.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/preprocess_test.go b/planner/core/preprocess_test.go index e28c26c1bfa60..1123609b425d3 100644 --- a/planner/core/preprocess_test.go +++ b/planner/core/preprocess_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/property_cols_prune.go b/planner/core/property_cols_prune.go index 9cd83adc412de..65c15a6c8d66c 100644 --- a/planner/core/property_cols_prune.go +++ b/planner/core/property_cols_prune.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/resolve_indices.go b/planner/core/resolve_indices.go index fba0ab68f661d..59af155d05a57 100644 --- a/planner/core/resolve_indices.go +++ b/planner/core/resolve_indices.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_aggregation_elimination.go b/planner/core/rule_aggregation_elimination.go index 079b2a76bace5..209c08c37375b 100644 --- a/planner/core/rule_aggregation_elimination.go +++ b/planner/core/rule_aggregation_elimination.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_aggregation_push_down.go b/planner/core/rule_aggregation_push_down.go index e02583355910e..4ad2e6f260c6a 100644 --- a/planner/core/rule_aggregation_push_down.go +++ b/planner/core/rule_aggregation_push_down.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_build_key_info.go b/planner/core/rule_build_key_info.go index 2d8355014017b..9776619366756 100644 --- a/planner/core/rule_build_key_info.go +++ b/planner/core/rule_build_key_info.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_column_pruning.go b/planner/core/rule_column_pruning.go index 5e46dac53a980..77154520bcffe 100644 --- a/planner/core/rule_column_pruning.go +++ b/planner/core/rule_column_pruning.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_decorrelate.go b/planner/core/rule_decorrelate.go index d9107fc1466cb..6d8480fc8cad8 100644 --- a/planner/core/rule_decorrelate.go +++ b/planner/core/rule_decorrelate.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_eliminate_projection.go b/planner/core/rule_eliminate_projection.go index ebc6b23d2b57d..608cb7ec88486 100644 --- a/planner/core/rule_eliminate_projection.go +++ b/planner/core/rule_eliminate_projection.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_generate_column_substitute.go b/planner/core/rule_generate_column_substitute.go index 53259f2f986f0..1be0c49477cbf 100644 --- a/planner/core/rule_generate_column_substitute.go +++ b/planner/core/rule_generate_column_substitute.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_inject_extra_projection.go b/planner/core/rule_inject_extra_projection.go index 911c531ceb4f0..8f9f474648b30 100644 --- a/planner/core/rule_inject_extra_projection.go +++ b/planner/core/rule_inject_extra_projection.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_inject_extra_projection_test.go b/planner/core/rule_inject_extra_projection_test.go index 6b1f44e0e53e6..42fb37a901a54 100644 --- a/planner/core/rule_inject_extra_projection_test.go +++ b/planner/core/rule_inject_extra_projection_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_join_elimination.go b/planner/core/rule_join_elimination.go index d52653dd8340a..d8cc3581b5bad 100644 --- a/planner/core/rule_join_elimination.go +++ b/planner/core/rule_join_elimination.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_join_reorder.go b/planner/core/rule_join_reorder.go index 2aa0ced4c1f7d..2c2d87b87219b 100644 --- a/planner/core/rule_join_reorder.go +++ b/planner/core/rule_join_reorder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_join_reorder_dp.go b/planner/core/rule_join_reorder_dp.go index d6583a0423f45..ea14ab47373ee 100644 --- a/planner/core/rule_join_reorder_dp.go +++ b/planner/core/rule_join_reorder_dp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_join_reorder_dp_test.go b/planner/core/rule_join_reorder_dp_test.go index 36abaef5e7c9a..120563cc514f1 100644 --- a/planner/core/rule_join_reorder_dp_test.go +++ b/planner/core/rule_join_reorder_dp_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_join_reorder_greedy.go b/planner/core/rule_join_reorder_greedy.go index ebc0fb13ea5c0..01ddf6ec85c13 100644 --- a/planner/core/rule_join_reorder_greedy.go +++ b/planner/core/rule_join_reorder_greedy.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_max_min_eliminate.go b/planner/core/rule_max_min_eliminate.go index b50c1129d0f49..ce381fff70fae 100644 --- a/planner/core/rule_max_min_eliminate.go +++ b/planner/core/rule_max_min_eliminate.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_partition_processor.go b/planner/core/rule_partition_processor.go index af3eb2d581419..8305a4430f26e 100644 --- a/planner/core/rule_partition_processor.go +++ b/planner/core/rule_partition_processor.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_predicate_push_down.go b/planner/core/rule_predicate_push_down.go index b591343870ce4..1776a119378e0 100644 --- a/planner/core/rule_predicate_push_down.go +++ b/planner/core/rule_predicate_push_down.go @@ -7,6 +7,7 @@ // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_result_reorder.go b/planner/core/rule_result_reorder.go index d97820740dbc1..3a4069e9945fc 100644 --- a/planner/core/rule_result_reorder.go +++ b/planner/core/rule_result_reorder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_result_reorder_test.go b/planner/core/rule_result_reorder_test.go index 1d1453527b8b1..452857a1c966a 100644 --- a/planner/core/rule_result_reorder_test.go +++ b/planner/core/rule_result_reorder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/rule_topn_push_down.go b/planner/core/rule_topn_push_down.go index 755c7712e5b40..60a8fb92b39af 100644 --- a/planner/core/rule_topn_push_down.go +++ b/planner/core/rule_topn_push_down.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/stats.go b/planner/core/stats.go index 3a21a6f14d904..294da6931ba6b 100644 --- a/planner/core/stats.go +++ b/planner/core/stats.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/stats_test.go b/planner/core/stats_test.go index 6ff110f8cd540..dc9f80ae4a65d 100644 --- a/planner/core/stats_test.go +++ b/planner/core/stats_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/stringer.go b/planner/core/stringer.go index 346b5b50e5742..914cdc1dfe6c2 100644 --- a/planner/core/stringer.go +++ b/planner/core/stringer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/task.go b/planner/core/task.go index c651d81b1a1d3..9f2a18ff9969e 100644 --- a/planner/core/task.go +++ b/planner/core/task.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/trace.go b/planner/core/trace.go index 828007dd710cc..5f20520093473 100644 --- a/planner/core/trace.go +++ b/planner/core/trace.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/core/util.go b/planner/core/util.go index 19ce0a47673a2..fc0d1444c2015 100644 --- a/planner/core/util.go +++ b/planner/core/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/base.go b/planner/implementation/base.go index e1fe47c157e15..c1437a5d0f9cb 100644 --- a/planner/implementation/base.go +++ b/planner/implementation/base.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/base_test.go b/planner/implementation/base_test.go index c830a7b09e8cf..b1b73ed0604c3 100644 --- a/planner/implementation/base_test.go +++ b/planner/implementation/base_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/datasource.go b/planner/implementation/datasource.go index a6bb9141fd0b3..1a760cc47cac1 100644 --- a/planner/implementation/datasource.go +++ b/planner/implementation/datasource.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/join.go b/planner/implementation/join.go index 35abf19e8086c..f24791e9a987e 100644 --- a/planner/implementation/join.go +++ b/planner/implementation/join.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/main_test.go b/planner/implementation/main_test.go index e1bcbdda4ef4f..b7a2088709314 100644 --- a/planner/implementation/main_test.go +++ b/planner/implementation/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/simple_plans.go b/planner/implementation/simple_plans.go index 0a727576b3950..e10293c042080 100644 --- a/planner/implementation/simple_plans.go +++ b/planner/implementation/simple_plans.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/implementation/sort.go b/planner/implementation/sort.go index 92025048954e4..32261b34c1204 100644 --- a/planner/implementation/sort.go +++ b/planner/implementation/sort.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/expr_iterator.go b/planner/memo/expr_iterator.go index e479c2cdd1dd4..39e5ae20f873f 100644 --- a/planner/memo/expr_iterator.go +++ b/planner/memo/expr_iterator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/expr_iterator_test.go b/planner/memo/expr_iterator_test.go index 58dad9a4b566d..d0cec2ac2a659 100644 --- a/planner/memo/expr_iterator_test.go +++ b/planner/memo/expr_iterator_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/group.go b/planner/memo/group.go index d3c7af9010e9a..a1d2f7c907085 100644 --- a/planner/memo/group.go +++ b/planner/memo/group.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/group_expr.go b/planner/memo/group_expr.go index cdb681d8460ae..e7f931eb6f60a 100644 --- a/planner/memo/group_expr.go +++ b/planner/memo/group_expr.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/group_expr_test.go b/planner/memo/group_expr_test.go index cb4cebce53c14..5257a96a8511b 100644 --- a/planner/memo/group_expr_test.go +++ b/planner/memo/group_expr_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/group_test.go b/planner/memo/group_test.go index 9d45b3b091e60..73ac5f4e351d1 100644 --- a/planner/memo/group_test.go +++ b/planner/memo/group_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/implementation.go b/planner/memo/implementation.go index 542fde64cd577..5d3166e602789 100644 --- a/planner/memo/implementation.go +++ b/planner/memo/implementation.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/main_test.go b/planner/memo/main_test.go index 1cba8d55c6153..784f011a9ddee 100644 --- a/planner/memo/main_test.go +++ b/planner/memo/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/pattern.go b/planner/memo/pattern.go index b16b937b1b72f..8edca36eee497 100644 --- a/planner/memo/pattern.go +++ b/planner/memo/pattern.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/memo/pattern_test.go b/planner/memo/pattern_test.go index cedbc35f76b22..9d0ee17039d49 100644 --- a/planner/memo/pattern_test.go +++ b/planner/memo/pattern_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/optimize.go b/planner/optimize.go index 05ba86f3bbce7..531ee924c395f 100644 --- a/planner/optimize.go +++ b/planner/optimize.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/property/logical_property.go b/planner/property/logical_property.go index 2a45e55c73c23..786185aa940fd 100644 --- a/planner/property/logical_property.go +++ b/planner/property/logical_property.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/property/physical_property.go b/planner/property/physical_property.go index 05cc12cbde3fc..4a48e091c4d56 100644 --- a/planner/property/physical_property.go +++ b/planner/property/physical_property.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/property/stats_info.go b/planner/property/stats_info.go index e8340d3fe9a1e..79dff7a41d091 100644 --- a/planner/property/stats_info.go +++ b/planner/property/stats_info.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/property/task_type.go b/planner/property/task_type.go index 3e60947f4b02d..1bc825795ed5f 100644 --- a/planner/property/task_type.go +++ b/planner/property/task_type.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/util/byitem.go b/planner/util/byitem.go index 550bb93572cbe..d6a58a91c5d41 100644 --- a/planner/util/byitem.go +++ b/planner/util/byitem.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/planner/util/path.go b/planner/util/path.go index 5a29d007c29db..2aa38ac2da718 100644 --- a/planner/util/path.go +++ b/planner/util/path.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/audit.go b/plugin/audit.go index 2150cd83c03aa..c64255e1b293d 100644 --- a/plugin/audit.go +++ b/plugin/audit.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/conn_ip_example/conn_ip_example.go b/plugin/conn_ip_example/conn_ip_example.go index 182b3b7432324..ed9fb40c04c3e 100644 --- a/plugin/conn_ip_example/conn_ip_example.go +++ b/plugin/conn_ip_example/conn_ip_example.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/conn_ip_example/conn_ip_example_test.go b/plugin/conn_ip_example/conn_ip_example_test.go index 9af700b6ae1db..811722123cbe1 100644 --- a/plugin/conn_ip_example/conn_ip_example_test.go +++ b/plugin/conn_ip_example/conn_ip_example_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/conn_ip_example/main_test.go b/plugin/conn_ip_example/main_test.go index b03fb8b49fa34..640b8d3aa5108 100644 --- a/plugin/conn_ip_example/main_test.go +++ b/plugin/conn_ip_example/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/const.go b/plugin/const.go index 88ba5432110d6..ca285e4436492 100644 --- a/plugin/const.go +++ b/plugin/const.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/const_test.go b/plugin/const_test.go index f75ca4d4138b7..89985068bc8a2 100644 --- a/plugin/const_test.go +++ b/plugin/const_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/errors.go b/plugin/errors.go index 721129edee23c..7b7fe758dd430 100644 --- a/plugin/errors.go +++ b/plugin/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/helper.go b/plugin/helper.go index 1d81cd9ac952b..394d8e4928c07 100644 --- a/plugin/helper.go +++ b/plugin/helper.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/helper_test.go b/plugin/helper_test.go index d0701ea789099..3bf7d14cc600c 100644 --- a/plugin/helper_test.go +++ b/plugin/helper_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/integration_test.go b/plugin/integration_test.go index 9015a9be276e0..d00e8587bba98 100644 --- a/plugin/integration_test.go +++ b/plugin/integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/main_test.go b/plugin/main_test.go index 25773ec64f3c5..48633eff506ae 100644 --- a/plugin/main_test.go +++ b/plugin/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/plugin.go b/plugin/plugin.go index 613dc06dbc4e7..368cb79e785c8 100644 --- a/plugin/plugin.go +++ b/plugin/plugin.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/plugin_test.go b/plugin/plugin_test.go index f07e9d1fcac8a..cfcc85ef310f3 100644 --- a/plugin/plugin_test.go +++ b/plugin/plugin_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/spi.go b/plugin/spi.go index ad8b89dc9dd6e..a4633008f3554 100644 --- a/plugin/spi.go +++ b/plugin/spi.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/plugin/spi_test.go b/plugin/spi_test.go index 08ca1c0c28a85..02cd623f01c5b 100644 --- a/plugin/spi_test.go +++ b/plugin/spi_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privilege.go b/privilege/privilege.go index c4051e91c6375..2b77e53069ab7 100644 --- a/privilege/privilege.go +++ b/privilege/privilege.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privileges/cache.go b/privilege/privileges/cache.go index 8dae461be63fd..ce7538508a011 100644 --- a/privilege/privileges/cache.go +++ b/privilege/privileges/cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privileges/cache_test.go b/privilege/privileges/cache_test.go index 01685af8c4271..5d03b8bf6e1e6 100644 --- a/privilege/privileges/cache_test.go +++ b/privilege/privileges/cache_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privileges/errors.go b/privilege/privileges/errors.go index daadc33b43c2a..e1f995840771f 100644 --- a/privilege/privileges/errors.go +++ b/privilege/privileges/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privileges/main_test.go b/privilege/privileges/main_test.go index 0ec8d11995c16..0d43ce5c21a4a 100644 --- a/privilege/privileges/main_test.go +++ b/privilege/privileges/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privileges/privileges.go b/privilege/privileges/privileges.go index 1e8aaf882fcba..32edb4c214e18 100644 --- a/privilege/privileges/privileges.go +++ b/privilege/privileges/privileges.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/privilege/privileges/privileges_test.go b/privilege/privileges/privileges_test.go index 83cff430317b2..bde166daedab7 100644 --- a/privilege/privileges/privileges_test.go +++ b/privilege/privileges/privileges_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/buffered_read_conn.go b/server/buffered_read_conn.go index 3eced761b2f0c..cbd932ff74eb9 100644 --- a/server/buffered_read_conn.go +++ b/server/buffered_read_conn.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/column.go b/server/column.go index 677dc702eec13..425e8d60b40e0 100644 --- a/server/column.go +++ b/server/column.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/column_test.go b/server/column_test.go index c87f972811aed..97445b470b51a 100644 --- a/server/column_test.go +++ b/server/column_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/conn.go b/server/conn.go index 110b5c292d83f..400a6bf57b55f 100644 --- a/server/conn.go +++ b/server/conn.go @@ -29,6 +29,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/conn_stmt.go b/server/conn_stmt.go index 237c1f599e6b1..b9ecfd150418c 100644 --- a/server/conn_stmt.go +++ b/server/conn_stmt.go @@ -29,6 +29,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/conn_stmt_test.go b/server/conn_stmt_test.go index 038e05cb348eb..3157d1925855d 100644 --- a/server/conn_stmt_test.go +++ b/server/conn_stmt_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/conn_test.go b/server/conn_test.go index b5c11bef4a5e8..1676d28764afe 100644 --- a/server/conn_test.go +++ b/server/conn_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/driver.go b/server/driver.go index 405c879f3093e..c937cf07f963b 100644 --- a/server/driver.go +++ b/server/driver.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/driver_tidb.go b/server/driver_tidb.go index 581b7525d3ca9..c0e0a811c4e6b 100644 --- a/server/driver_tidb.go +++ b/server/driver_tidb.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/driver_tidb_test.go b/server/driver_tidb_test.go index 9f49d6a58c806..14726f8d40b7c 100644 --- a/server/driver_tidb_test.go +++ b/server/driver_tidb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/http_handler.go b/server/http_handler.go index bbcaaa4e229c7..c2788788b311f 100644 --- a/server/http_handler.go +++ b/server/http_handler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/http_handler_test.go b/server/http_handler_test.go index 37384f99daab9..81ae3ce570053 100644 --- a/server/http_handler_test.go +++ b/server/http_handler_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/http_status.go b/server/http_status.go index ae1cdf6434e47..d55d04c043a5f 100644 --- a/server/http_status.go +++ b/server/http_status.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/packetio.go b/server/packetio.go index 9958ae3c3f675..4fb41556650e1 100644 --- a/server/packetio.go +++ b/server/packetio.go @@ -29,6 +29,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/packetio_test.go b/server/packetio_test.go index b5aaa8267f13d..ddf1dc1daaa6e 100644 --- a/server/packetio_test.go +++ b/server/packetio_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/rpc_server.go b/server/rpc_server.go index b0120b424f043..67965ac381f4d 100644 --- a/server/rpc_server.go +++ b/server/rpc_server.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/server.go b/server/server.go index 97de74075c4f6..db593ad0c608d 100644 --- a/server/server.go +++ b/server/server.go @@ -23,6 +23,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/server_test.go b/server/server_test.go index 49f0baff52335..f2d0b54792f66 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/sql_info_fetcher.go b/server/sql_info_fetcher.go index 57f51f544b90b..4f4fe6e02344f 100644 --- a/server/sql_info_fetcher.go +++ b/server/sql_info_fetcher.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/stat.go b/server/stat.go index 7e1f115fa8a57..9725a7ec5e480 100644 --- a/server/stat.go +++ b/server/stat.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/statistics_handler.go b/server/statistics_handler.go index 034cbd8c24339..256e8e610128d 100644 --- a/server/statistics_handler.go +++ b/server/statistics_handler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/statistics_handler_test.go b/server/statistics_handler_test.go index 4eb1e35f89752..d3a1af67e1c0d 100644 --- a/server/statistics_handler_test.go +++ b/server/statistics_handler_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/tidb_test.go b/server/tidb_test.go index b6da1ace593f5..6ef3050fba3ed 100644 --- a/server/tidb_test.go +++ b/server/tidb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build !race diff --git a/server/tokenlimiter.go b/server/tokenlimiter.go index a1993779bf053..57f917479fae2 100644 --- a/server/tokenlimiter.go +++ b/server/tokenlimiter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/util.go b/server/util.go index 561f352513a9d..2022b405bfbdb 100644 --- a/server/util.go +++ b/server/util.go @@ -29,6 +29,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/server/util_test.go b/server/util_test.go index 475b7b78ce02a..2702fa856c51e 100644 --- a/server/util_test.go +++ b/server/util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/bench_test.go b/session/bench_test.go index df0fbec0fceb3..3fd67eb7b9b1f 100644 --- a/session/bench_test.go +++ b/session/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/bootstrap.go b/session/bootstrap.go index 01ea22012b02b..3ea5cf1c655d5 100644 --- a/session/bootstrap.go +++ b/session/bootstrap.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/bootstrap_test.go b/session/bootstrap_test.go index 26208f6e91aaa..379af1a905dae 100644 --- a/session/bootstrap_test.go +++ b/session/bootstrap_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/clustered_index_test.go b/session/clustered_index_test.go index 24efe49f26334..06554e9baef73 100644 --- a/session/clustered_index_test.go +++ b/session/clustered_index_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/isolation_test.go b/session/isolation_test.go index 59049c2633a47..fcac60418aa4c 100644 --- a/session/isolation_test.go +++ b/session/isolation_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/pessimistic_test.go b/session/pessimistic_test.go index 46f7763a708af..2ac4e19175f34 100644 --- a/session/pessimistic_test.go +++ b/session/pessimistic_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/schema_amender.go b/session/schema_amender.go index 2f62e57acf103..52b150837f224 100644 --- a/session/schema_amender.go +++ b/session/schema_amender.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/schema_amender_test.go b/session/schema_amender_test.go index 6bd55fcf8f74f..e5341cc04b363 100644 --- a/session/schema_amender_test.go +++ b/session/schema_amender_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/session.go b/session/session.go index ed6c565e0c993..c5542e781ac1b 100644 --- a/session/session.go +++ b/session/session.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/session_fail_test.go b/session/session_fail_test.go index 45725c37a4cd9..2e293f106ff6d 100644 --- a/session/session_fail_test.go +++ b/session/session_fail_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/session_test.go b/session/session_test.go index 0b1a35aa3aa86..6b87fb554342e 100644 --- a/session/session_test.go +++ b/session/session_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/tidb.go b/session/tidb.go index 583c5074e6805..d7c0046fe485a 100644 --- a/session/tidb.go +++ b/session/tidb.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/tidb_test.go b/session/tidb_test.go index 836c3bd2d96d5..a66707bd3fc33 100644 --- a/session/tidb_test.go +++ b/session/tidb_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/txn.go b/session/txn.go index 9a99a1f8dd343..edb778427b064 100644 --- a/session/txn.go +++ b/session/txn.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/session/txninfo/txn_info.go b/session/txninfo/txn_info.go index 25633bf2e7c85..c82612bd64235 100644 --- a/session/txninfo/txn_info.go +++ b/session/txninfo/txn_info.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/binloginfo/binloginfo.go b/sessionctx/binloginfo/binloginfo.go index a2d1047e93c65..3404181730239 100644 --- a/sessionctx/binloginfo/binloginfo.go +++ b/sessionctx/binloginfo/binloginfo.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/binloginfo/binloginfo_test.go b/sessionctx/binloginfo/binloginfo_test.go index 4e52d2b100da6..305af7ecf0256 100644 --- a/sessionctx/binloginfo/binloginfo_test.go +++ b/sessionctx/binloginfo/binloginfo_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/context.go b/sessionctx/context.go index 2a25292b3a17b..3a16be864ed47 100644 --- a/sessionctx/context.go +++ b/sessionctx/context.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/context_test.go b/sessionctx/context_test.go index a06ee540796c3..073ee65b76d89 100644 --- a/sessionctx/context_test.go +++ b/sessionctx/context_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/stmtctx/stmtctx.go b/sessionctx/stmtctx/stmtctx.go index c77fcd4d9d211..0689c4551b197 100644 --- a/sessionctx/stmtctx/stmtctx.go +++ b/sessionctx/stmtctx/stmtctx.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/stmtctx/stmtctx_test.go b/sessionctx/stmtctx/stmtctx_test.go index 5614691c903f2..0bdfa43647db8 100644 --- a/sessionctx/stmtctx/stmtctx_test.go +++ b/sessionctx/stmtctx/stmtctx_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/error.go b/sessionctx/variable/error.go index c3029447b00b7..e21489ede15b7 100644 --- a/sessionctx/variable/error.go +++ b/sessionctx/variable/error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/mock_globalaccessor.go b/sessionctx/variable/mock_globalaccessor.go index 525ce9fa9efff..c1a09361380fc 100644 --- a/sessionctx/variable/mock_globalaccessor.go +++ b/sessionctx/variable/mock_globalaccessor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/noop.go b/sessionctx/variable/noop.go index 4c7694a642564..da418df174696 100644 --- a/sessionctx/variable/noop.go +++ b/sessionctx/variable/noop.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/sequence_state.go b/sessionctx/variable/sequence_state.go index 65e2a364d5ab4..bb8b468da2de9 100644 --- a/sessionctx/variable/sequence_state.go +++ b/sessionctx/variable/sequence_state.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/session.go b/sessionctx/variable/session.go index 949d1a494fdc5..d7f97e657318c 100644 --- a/sessionctx/variable/session.go +++ b/sessionctx/variable/session.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/session_test.go b/sessionctx/variable/session_test.go index e3b0c146b1116..d2f850cb0f435 100644 --- a/sessionctx/variable/session_test.go +++ b/sessionctx/variable/session_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/statusvar.go b/sessionctx/variable/statusvar.go index ce7d17de09705..ff004f84566a2 100644 --- a/sessionctx/variable/statusvar.go +++ b/sessionctx/variable/statusvar.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/statusvar_test.go b/sessionctx/variable/statusvar_test.go index 5e00500634be8..aac63a89cdb3e 100644 --- a/sessionctx/variable/statusvar_test.go +++ b/sessionctx/variable/statusvar_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/sysvar.go b/sessionctx/variable/sysvar.go index ddfff2133a71f..44a449a95e289 100644 --- a/sessionctx/variable/sysvar.go +++ b/sessionctx/variable/sysvar.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/sysvar_test.go b/sessionctx/variable/sysvar_test.go index ecea3c494ad2a..9d2696bc04917 100644 --- a/sessionctx/variable/sysvar_test.go +++ b/sessionctx/variable/sysvar_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/tidb_vars.go b/sessionctx/variable/tidb_vars.go index e4d41d0772c0d..06e1e37fc06e3 100644 --- a/sessionctx/variable/tidb_vars.go +++ b/sessionctx/variable/tidb_vars.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/varsutil.go b/sessionctx/variable/varsutil.go index 3682235528e4d..caa3967881222 100644 --- a/sessionctx/variable/varsutil.go +++ b/sessionctx/variable/varsutil.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/sessionctx/variable/varsutil_test.go b/sessionctx/variable/varsutil_test.go index 84cfe36f24337..f9e6504caa29f 100644 --- a/sessionctx/variable/varsutil_test.go +++ b/sessionctx/variable/varsutil_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/analyze.go b/statistics/analyze.go index c4780dcd69281..eb6fc26ace963 100644 --- a/statistics/analyze.go +++ b/statistics/analyze.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/analyze_jobs.go b/statistics/analyze_jobs.go index d74a2f9dffca7..07b9bd8769fce 100644 --- a/statistics/analyze_jobs.go +++ b/statistics/analyze_jobs.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/analyze_jobs_test.go b/statistics/analyze_jobs_test.go index 559d284f51296..cd73cfa7bd6a1 100644 --- a/statistics/analyze_jobs_test.go +++ b/statistics/analyze_jobs_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/builder.go b/statistics/builder.go index d3d66294650b2..13edd2457fd75 100644 --- a/statistics/builder.go +++ b/statistics/builder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/cmsketch.go b/statistics/cmsketch.go index 80a72b77b8c63..87d7848e4042a 100644 --- a/statistics/cmsketch.go +++ b/statistics/cmsketch.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/cmsketch_test.go b/statistics/cmsketch_test.go index 48be1e716e178..65d1d882827bd 100644 --- a/statistics/cmsketch_test.go +++ b/statistics/cmsketch_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/estimate.go b/statistics/estimate.go index 952034186bdb8..5ae12b68f11a7 100644 --- a/statistics/estimate.go +++ b/statistics/estimate.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/feedback.go b/statistics/feedback.go index 5c06cc072e227..74fbfff879e7e 100644 --- a/statistics/feedback.go +++ b/statistics/feedback.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/feedback_test.go b/statistics/feedback_test.go index 12b87ffa57c3f..72fc106b99ded 100644 --- a/statistics/feedback_test.go +++ b/statistics/feedback_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/fmsketch.go b/statistics/fmsketch.go index 9ee68bc1e98e9..a0e81c354ffe8 100644 --- a/statistics/fmsketch.go +++ b/statistics/fmsketch.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/fmsketch_test.go b/statistics/fmsketch_test.go index 91d0bbea69a23..ef7c397b8def8 100644 --- a/statistics/fmsketch_test.go +++ b/statistics/fmsketch_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/bootstrap.go b/statistics/handle/bootstrap.go index 99189221a0444..8107ac1229edb 100644 --- a/statistics/handle/bootstrap.go +++ b/statistics/handle/bootstrap.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/ddl.go b/statistics/handle/ddl.go index 6f7c37556a36c..d7b26bcd5577c 100644 --- a/statistics/handle/ddl.go +++ b/statistics/handle/ddl.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/ddl_test.go b/statistics/handle/ddl_test.go index 6bdd897270b8d..becaea1b29684 100644 --- a/statistics/handle/ddl_test.go +++ b/statistics/handle/ddl_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/dump.go b/statistics/handle/dump.go index 36971076b4644..c9b49397ebe39 100644 --- a/statistics/handle/dump.go +++ b/statistics/handle/dump.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/dump_test.go b/statistics/handle/dump_test.go index f0c7c2fb09110..87a2716745343 100644 --- a/statistics/handle/dump_test.go +++ b/statistics/handle/dump_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/gc.go b/statistics/handle/gc.go index 82c85e3f467f8..02862290d2efd 100644 --- a/statistics/handle/gc.go +++ b/statistics/handle/gc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/gc_test.go b/statistics/handle/gc_test.go index f934f8973fe6c..ac54ea337080a 100644 --- a/statistics/handle/gc_test.go +++ b/statistics/handle/gc_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/handle.go b/statistics/handle/handle.go index a518d6430a279..1b4ffa33d1bcc 100644 --- a/statistics/handle/handle.go +++ b/statistics/handle/handle.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/handle_test.go b/statistics/handle/handle_test.go index ca44f560d6e02..f12a83b5fe440 100644 --- a/statistics/handle/handle_test.go +++ b/statistics/handle/handle_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/update.go b/statistics/handle/update.go index 6038a1c0213a3..7d3f66bf51499 100644 --- a/statistics/handle/update.go +++ b/statistics/handle/update.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/update_list_test.go b/statistics/handle/update_list_test.go index d5e07b7697a74..d8f39af6c9723 100644 --- a/statistics/handle/update_list_test.go +++ b/statistics/handle/update_list_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/handle/update_test.go b/statistics/handle/update_test.go index 39dcdfefb299e..fa6af0def052f 100644 --- a/statistics/handle/update_test.go +++ b/statistics/handle/update_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/histogram.go b/statistics/histogram.go index 7b2c7610b4b7d..9ec1663ff3efc 100644 --- a/statistics/histogram.go +++ b/statistics/histogram.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/histogram_test.go b/statistics/histogram_test.go index 57958fe759279..6ec7047f1eea6 100644 --- a/statistics/histogram_test.go +++ b/statistics/histogram_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/integration_test.go b/statistics/integration_test.go index 865c323510693..8af2818c95d1f 100644 --- a/statistics/integration_test.go +++ b/statistics/integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package statistics_test diff --git a/statistics/row_sampler.go b/statistics/row_sampler.go index db9b0c235cf2c..4263d4f91530e 100644 --- a/statistics/row_sampler.go +++ b/statistics/row_sampler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/sample.go b/statistics/sample.go index 28d40c3af6744..45166d2c8ffca 100644 --- a/statistics/sample.go +++ b/statistics/sample.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/sample_test.go b/statistics/sample_test.go index 3624b233395ae..98a978f7bc0f3 100644 --- a/statistics/sample_test.go +++ b/statistics/sample_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/scalar.go b/statistics/scalar.go index e8f585f450a32..2b3d0ad5d711e 100644 --- a/statistics/scalar.go +++ b/statistics/scalar.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/scalar_test.go b/statistics/scalar_test.go index bf895e908dcf2..a99342cfe57da 100644 --- a/statistics/scalar_test.go +++ b/statistics/scalar_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/selectivity.go b/statistics/selectivity.go index 7e604e509a1bb..f757e5299c1e0 100644 --- a/statistics/selectivity.go +++ b/statistics/selectivity.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/selectivity_test.go b/statistics/selectivity_test.go index f8c551b11d0e6..b5057eba564a5 100644 --- a/statistics/selectivity_test.go +++ b/statistics/selectivity_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/statistics_test.go b/statistics/statistics_test.go index a6f1d31afbec7..a34e4c91fa291 100644 --- a/statistics/statistics_test.go +++ b/statistics/statistics_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/statistics/table.go b/statistics/table.go index 93887b28d0270..34f8d2f0c3ac0 100644 --- a/statistics/table.go +++ b/statistics/table.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/batch_coprocessor_test.go b/store/batch_coprocessor_test.go index 964f07cb8d56d..7f48a35302e6e 100644 --- a/store/batch_coprocessor_test.go +++ b/store/batch_coprocessor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/batch_coprocessor.go b/store/copr/batch_coprocessor.go index 4397a6d025a9e..a6587982cebf6 100644 --- a/store/copr/batch_coprocessor.go +++ b/store/copr/batch_coprocessor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/batch_request_sender.go b/store/copr/batch_request_sender.go index 4d2a9cda36909..256aa5c0dd468 100644 --- a/store/copr/batch_request_sender.go +++ b/store/copr/batch_request_sender.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/coprocessor.go b/store/copr/coprocessor.go index d731176f8ef9f..ca7d84d195a60 100644 --- a/store/copr/coprocessor.go +++ b/store/copr/coprocessor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/coprocessor_cache.go b/store/copr/coprocessor_cache.go index 9de2138ddd7ed..35987347fb0f2 100644 --- a/store/copr/coprocessor_cache.go +++ b/store/copr/coprocessor_cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/coprocessor_cache_test.go b/store/copr/coprocessor_cache_test.go index bb3cd0d526ccd..d95d7e133ede1 100644 --- a/store/copr/coprocessor_cache_test.go +++ b/store/copr/coprocessor_cache_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/coprocessor_test.go b/store/copr/coprocessor_test.go index 41e96c7772503..a5a01ad33e447 100644 --- a/store/copr/coprocessor_test.go +++ b/store/copr/coprocessor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/key_ranges.go b/store/copr/key_ranges.go index 6b26d1026c785..048353df8970b 100644 --- a/store/copr/key_ranges.go +++ b/store/copr/key_ranges.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/key_ranges_test.go b/store/copr/key_ranges_test.go index eb1755c53a32f..a6e125eda002e 100644 --- a/store/copr/key_ranges_test.go +++ b/store/copr/key_ranges_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/mpp.go b/store/copr/mpp.go index 1b8736d0072df..f50e36b89da73 100644 --- a/store/copr/mpp.go +++ b/store/copr/mpp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/region_cache.go b/store/copr/region_cache.go index f8a8268181708..c2ea13ec1885a 100644 --- a/store/copr/region_cache.go +++ b/store/copr/region_cache.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/copr/store.go b/store/copr/store.go index 7545133918d31..1783ee294f8e1 100644 --- a/store/copr/store.go +++ b/store/copr/store.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/backoff/backoff.go b/store/driver/backoff/backoff.go index 6a6e271a08cc8..593c8ebc4c22e 100644 --- a/store/driver/backoff/backoff.go +++ b/store/driver/backoff/backoff.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/error/error.go b/store/driver/error/error.go index ecee025a4f293..b093c4cc968ef 100644 --- a/store/driver/error/error.go +++ b/store/driver/error/error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/options/options.go b/store/driver/options/options.go index bc0000becf9d7..495764a81f29d 100644 --- a/store/driver/options/options.go +++ b/store/driver/options/options.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/sql_fail_test.go b/store/driver/sql_fail_test.go index e873224689afa..cb7f790ae0d8a 100644 --- a/store/driver/sql_fail_test.go +++ b/store/driver/sql_fail_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/tikv_driver.go b/store/driver/tikv_driver.go index 5f3acd02298f5..52285f8de41bf 100644 --- a/store/driver/tikv_driver.go +++ b/store/driver/tikv_driver.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/batch_getter.go b/store/driver/txn/batch_getter.go index 603997e3392bf..272ae0fd9843e 100644 --- a/store/driver/txn/batch_getter.go +++ b/store/driver/txn/batch_getter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/batch_getter_test.go b/store/driver/txn/batch_getter_test.go index f33bf8c24c1ad..20dc3a0a70428 100644 --- a/store/driver/txn/batch_getter_test.go +++ b/store/driver/txn/batch_getter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package txn diff --git a/store/driver/txn/binlog.go b/store/driver/txn/binlog.go index e0668704a9b4b..86989c315d448 100644 --- a/store/driver/txn/binlog.go +++ b/store/driver/txn/binlog.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/driver_test.go b/store/driver/txn/driver_test.go index 30a7ce8a9e034..d639a9062a2ea 100644 --- a/store/driver/txn/driver_test.go +++ b/store/driver/txn/driver_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package txn diff --git a/store/driver/txn/error.go b/store/driver/txn/error.go index f25e0922600d0..0e60d76560d4e 100644 --- a/store/driver/txn/error.go +++ b/store/driver/txn/error.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/scanner.go b/store/driver/txn/scanner.go index f56db6d42a025..33a8f9b468ed6 100644 --- a/store/driver/txn/scanner.go +++ b/store/driver/txn/scanner.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/snapshot.go b/store/driver/txn/snapshot.go index 11f88f24b210f..7cb0e6e946575 100644 --- a/store/driver/txn/snapshot.go +++ b/store/driver/txn/snapshot.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/txn_driver.go b/store/driver/txn/txn_driver.go index 59d99025be862..b76e6d60f16ad 100644 --- a/store/driver/txn/txn_driver.go +++ b/store/driver/txn/txn_driver.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/txn/unionstore_driver.go b/store/driver/txn/unionstore_driver.go index d58eca5fd552d..e074ff9ca09b9 100644 --- a/store/driver/txn/unionstore_driver.go +++ b/store/driver/txn/unionstore_driver.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/driver/util_test.go b/store/driver/util_test.go index 241d134755f1d..e7fa1e0840b6e 100644 --- a/store/driver/util_test.go +++ b/store/driver/util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/gcworker/gc_worker.go b/store/gcworker/gc_worker.go index d90ec6119241e..4103a83bcd5bb 100644 --- a/store/gcworker/gc_worker.go +++ b/store/gcworker/gc_worker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/gcworker/gc_worker_test.go b/store/gcworker/gc_worker_test.go index 0f4e851eabe97..86828f00a8702 100644 --- a/store/gcworker/gc_worker_test.go +++ b/store/gcworker/gc_worker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/helper/helper.go b/store/helper/helper.go index 20437193e2902..df86de66974df 100644 --- a/store/helper/helper.go +++ b/store/helper/helper.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/helper/helper_test.go b/store/helper/helper_test.go index ee9fde944e4a3..332a59a6a9348 100644 --- a/store/helper/helper_test.go +++ b/store/helper/helper_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/cluster_test.go b/store/mockstore/cluster_test.go index be150126b2ea4..5bdfeb2fcff52 100644 --- a/store/mockstore/cluster_test.go +++ b/store/mockstore/cluster_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/aggregate.go b/store/mockstore/mockcopr/aggregate.go index 25f7c84611cbb..0a0dd6d6cfb56 100644 --- a/store/mockstore/mockcopr/aggregate.go +++ b/store/mockstore/mockcopr/aggregate.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/analyze.go b/store/mockstore/mockcopr/analyze.go index b016096314de4..0ece917928b4c 100644 --- a/store/mockstore/mockcopr/analyze.go +++ b/store/mockstore/mockcopr/analyze.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/checksum.go b/store/mockstore/mockcopr/checksum.go index 1ba4e44b400c2..38afdd15ceff6 100644 --- a/store/mockstore/mockcopr/checksum.go +++ b/store/mockstore/mockcopr/checksum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/cop_handler_dag.go b/store/mockstore/mockcopr/cop_handler_dag.go index fb7b6ef1b9607..9814e10ccc8d7 100644 --- a/store/mockstore/mockcopr/cop_handler_dag.go +++ b/store/mockstore/mockcopr/cop_handler_dag.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/cop_handler_dag_test.go b/store/mockstore/mockcopr/cop_handler_dag_test.go index 201980f91e1e4..a6fca2a67d929 100644 --- a/store/mockstore/mockcopr/cop_handler_dag_test.go +++ b/store/mockstore/mockcopr/cop_handler_dag_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/copr_handler.go b/store/mockstore/mockcopr/copr_handler.go index 75aede593e89c..f3c5d19b9d18c 100644 --- a/store/mockstore/mockcopr/copr_handler.go +++ b/store/mockstore/mockcopr/copr_handler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/executor.go b/store/mockstore/mockcopr/executor.go index 9c9cbfe03c973..423ff108caed5 100644 --- a/store/mockstore/mockcopr/executor.go +++ b/store/mockstore/mockcopr/executor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/executor_test.go b/store/mockstore/mockcopr/executor_test.go index a7afced4bfada..882fddd6dd084 100644 --- a/store/mockstore/mockcopr/executor_test.go +++ b/store/mockstore/mockcopr/executor_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/rpc_copr.go b/store/mockstore/mockcopr/rpc_copr.go index e77d0d5f66963..b883106240c8f 100644 --- a/store/mockstore/mockcopr/rpc_copr.go +++ b/store/mockstore/mockcopr/rpc_copr.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockcopr/topn.go b/store/mockstore/mockcopr/topn.go index 7b1d79948e329..68b0c498170e8 100644 --- a/store/mockstore/mockcopr/topn.go +++ b/store/mockstore/mockcopr/topn.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockstorage/storage.go b/store/mockstore/mockstorage/storage.go index 6e2145e4a7e34..83a40661e24d3 100644 --- a/store/mockstore/mockstorage/storage.go +++ b/store/mockstore/mockstorage/storage.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/mockstore.go b/store/mockstore/mockstore.go index c371e3dbdb6fb..3684d8faf5819 100644 --- a/store/mockstore/mockstore.go +++ b/store/mockstore/mockstore.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/redirector.go b/store/mockstore/redirector.go index d92c6a64552a1..2b899d44eae65 100644 --- a/store/mockstore/redirector.go +++ b/store/mockstore/redirector.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/tikv.go b/store/mockstore/tikv.go index e35d1939c19d1..1cac5abd32d5b 100644 --- a/store/mockstore/tikv.go +++ b/store/mockstore/tikv.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/tikv_test.go b/store/mockstore/tikv_test.go index af5c229570ae2..900ccc8d64dd7 100644 --- a/store/mockstore/tikv_test.go +++ b/store/mockstore/tikv_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore.go b/store/mockstore/unistore.go index da4b79d0c90e1..7e04b2a8ae737 100644 --- a/store/mockstore/unistore.go +++ b/store/mockstore/unistore.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/client/client.go b/store/mockstore/unistore/client/client.go index d8ea5e37848b8..ba03029585785 100644 --- a/store/mockstore/unistore/client/client.go +++ b/store/mockstore/unistore/client/client.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cluster.go b/store/mockstore/unistore/cluster.go index c1b2c27144a82..2d2843f2fe041 100644 --- a/store/mockstore/unistore/cluster.go +++ b/store/mockstore/unistore/cluster.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/config/config.go b/store/mockstore/unistore/config/config.go index b91644240c4b9..51f1f2c5d054f 100644 --- a/store/mockstore/unistore/config/config.go +++ b/store/mockstore/unistore/config/config.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/analyze.go b/store/mockstore/unistore/cophandler/analyze.go index 189a558282e8a..94191012696a7 100644 --- a/store/mockstore/unistore/cophandler/analyze.go +++ b/store/mockstore/unistore/cophandler/analyze.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/closure_exec.go b/store/mockstore/unistore/cophandler/closure_exec.go index 696a1497b068e..ad37f86fe156f 100644 --- a/store/mockstore/unistore/cophandler/closure_exec.go +++ b/store/mockstore/unistore/cophandler/closure_exec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/cop_handler.go b/store/mockstore/unistore/cophandler/cop_handler.go index fa3b5ec694aa5..00013d6e97112 100644 --- a/store/mockstore/unistore/cophandler/cop_handler.go +++ b/store/mockstore/unistore/cophandler/cop_handler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/cop_handler_test.go b/store/mockstore/unistore/cophandler/cop_handler_test.go index c013d04c404a3..cf446b63a5f59 100644 --- a/store/mockstore/unistore/cophandler/cop_handler_test.go +++ b/store/mockstore/unistore/cophandler/cop_handler_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/mpp.go b/store/mockstore/unistore/cophandler/mpp.go index bed35eebee01e..5df3c4364b970 100644 --- a/store/mockstore/unistore/cophandler/mpp.go +++ b/store/mockstore/unistore/cophandler/mpp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/mpp_exec.go b/store/mockstore/unistore/cophandler/mpp_exec.go index 956182619ac5d..80466c80403a6 100644 --- a/store/mockstore/unistore/cophandler/mpp_exec.go +++ b/store/mockstore/unistore/cophandler/mpp_exec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/cophandler/topn.go b/store/mockstore/unistore/cophandler/topn.go index d773b9b20c543..c6b766589fbfd 100644 --- a/store/mockstore/unistore/cophandler/topn.go +++ b/store/mockstore/unistore/cophandler/topn.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/lockstore/arena.go b/store/mockstore/unistore/lockstore/arena.go index 5de71fb381727..bf02e5020e935 100644 --- a/store/mockstore/unistore/lockstore/arena.go +++ b/store/mockstore/unistore/lockstore/arena.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/lockstore/iterator.go b/store/mockstore/unistore/lockstore/iterator.go index 257c4655e2292..b812d50d183c8 100644 --- a/store/mockstore/unistore/lockstore/iterator.go +++ b/store/mockstore/unistore/lockstore/iterator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/lockstore/load_dump.go b/store/mockstore/unistore/lockstore/load_dump.go index e3c46d28ea10d..dca102ab0b0ed 100644 --- a/store/mockstore/unistore/lockstore/load_dump.go +++ b/store/mockstore/unistore/lockstore/load_dump.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/lockstore/lockstore.go b/store/mockstore/unistore/lockstore/lockstore.go index d609e409fd5a9..02da0c06aed5a 100644 --- a/store/mockstore/unistore/lockstore/lockstore.go +++ b/store/mockstore/unistore/lockstore/lockstore.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/lockstore/lockstore_test.go b/store/mockstore/unistore/lockstore/lockstore_test.go index 541cd7c8aff87..39191adbb719c 100644 --- a/store/mockstore/unistore/lockstore/lockstore_test.go +++ b/store/mockstore/unistore/lockstore/lockstore_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/metrics/metrics.go b/store/mockstore/unistore/metrics/metrics.go index 95d70fbe99757..a94f938b77cc7 100644 --- a/store/mockstore/unistore/metrics/metrics.go +++ b/store/mockstore/unistore/metrics/metrics.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/mock.go b/store/mockstore/unistore/mock.go index 818016436f922..cb136bf6bf079 100644 --- a/store/mockstore/unistore/mock.go +++ b/store/mockstore/unistore/mock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/pd.go b/store/mockstore/unistore/pd.go index 3254d6c1d0bfb..cb56bcbfc778f 100644 --- a/store/mockstore/unistore/pd.go +++ b/store/mockstore/unistore/pd.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/pd/client.go b/store/mockstore/unistore/pd/client.go index 39da0df04ab01..bd37bfa2ede2e 100644 --- a/store/mockstore/unistore/pd/client.go +++ b/store/mockstore/unistore/pd/client.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/raw_handler.go b/store/mockstore/unistore/raw_handler.go index 3d405d05868d9..3e8aa30423ec7 100644 --- a/store/mockstore/unistore/raw_handler.go +++ b/store/mockstore/unistore/raw_handler.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/raw_handler_test.go b/store/mockstore/unistore/raw_handler_test.go index 5396cc2dadad6..f35ca516f0600 100644 --- a/store/mockstore/unistore/raw_handler_test.go +++ b/store/mockstore/unistore/raw_handler_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/rpc.go b/store/mockstore/unistore/rpc.go index 419132e190c9f..0e80e41f7a36e 100644 --- a/store/mockstore/unistore/rpc.go +++ b/store/mockstore/unistore/rpc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/dbreader/db_reader.go b/store/mockstore/unistore/tikv/dbreader/db_reader.go index 6e3909ada740f..78ea3acb09e8c 100644 --- a/store/mockstore/unistore/tikv/dbreader/db_reader.go +++ b/store/mockstore/unistore/tikv/dbreader/db_reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -21,6 +22,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/deadlock.go b/store/mockstore/unistore/tikv/deadlock.go index de2eaf8fa61d9..da1851f66769e 100644 --- a/store/mockstore/unistore/tikv/deadlock.go +++ b/store/mockstore/unistore/tikv/deadlock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/detector.go b/store/mockstore/unistore/tikv/detector.go index b86804696a670..3b8a636420813 100644 --- a/store/mockstore/unistore/tikv/detector.go +++ b/store/mockstore/unistore/tikv/detector.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Copyright 2019-present PingCAP, Inc. @@ -20,6 +21,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/detector_test.go b/store/mockstore/unistore/tikv/detector_test.go index c47260f886275..93b781e86a250 100644 --- a/store/mockstore/unistore/tikv/detector_test.go +++ b/store/mockstore/unistore/tikv/detector_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Copyright 2019-present PingCAP, Inc. @@ -20,6 +21,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/errors.go b/store/mockstore/unistore/tikv/errors.go index bce76319320c9..6043f2fd7a753 100644 --- a/store/mockstore/unistore/tikv/errors.go +++ b/store/mockstore/unistore/tikv/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/inner_server.go b/store/mockstore/unistore/tikv/inner_server.go index de65e67db1d5b..38327558cda44 100644 --- a/store/mockstore/unistore/tikv/inner_server.go +++ b/store/mockstore/unistore/tikv/inner_server.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/mock_region.go b/store/mockstore/unistore/tikv/mock_region.go index 123f2b25d9dea..9233447cf921d 100644 --- a/store/mockstore/unistore/tikv/mock_region.go +++ b/store/mockstore/unistore/tikv/mock_region.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/mvcc.go b/store/mockstore/unistore/tikv/mvcc.go index 3d2f60388de99..47a59a3cb1f75 100644 --- a/store/mockstore/unistore/tikv/mvcc.go +++ b/store/mockstore/unistore/tikv/mvcc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/mvcc/db_writer.go b/store/mockstore/unistore/tikv/mvcc/db_writer.go index f4b97a2b1e097..4b04fca54de52 100644 --- a/store/mockstore/unistore/tikv/mvcc/db_writer.go +++ b/store/mockstore/unistore/tikv/mvcc/db_writer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/mvcc/mvcc.go b/store/mockstore/unistore/tikv/mvcc/mvcc.go index 9c15accaf0517..a8ae16a9321d6 100644 --- a/store/mockstore/unistore/tikv/mvcc/mvcc.go +++ b/store/mockstore/unistore/tikv/mvcc/mvcc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/mvcc/tikv.go b/store/mockstore/unistore/tikv/mvcc/tikv.go index f57ae607a1f0d..ef12e2f9eadb1 100644 --- a/store/mockstore/unistore/tikv/mvcc/tikv.go +++ b/store/mockstore/unistore/tikv/mvcc/tikv.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/mvcc_test.go b/store/mockstore/unistore/tikv/mvcc_test.go index c2564a5b4ebdf..05e061ac55749 100644 --- a/store/mockstore/unistore/tikv/mvcc_test.go +++ b/store/mockstore/unistore/tikv/mvcc_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/pberror/pberror.go b/store/mockstore/unistore/tikv/pberror/pberror.go index ef5859695eee4..2348041f566b7 100644 --- a/store/mockstore/unistore/tikv/pberror/pberror.go +++ b/store/mockstore/unistore/tikv/pberror/pberror.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/region.go b/store/mockstore/unistore/tikv/region.go index 372b39f6dd667..932841c968927 100644 --- a/store/mockstore/unistore/tikv/region.go +++ b/store/mockstore/unistore/tikv/region.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/server.go b/store/mockstore/unistore/tikv/server.go index 58aabc0de638d..8038acac31922 100644 --- a/store/mockstore/unistore/tikv/server.go +++ b/store/mockstore/unistore/tikv/server.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/server_batch.go b/store/mockstore/unistore/tikv/server_batch.go index e8931339320a3..cb2828c4758f7 100644 --- a/store/mockstore/unistore/tikv/server_batch.go +++ b/store/mockstore/unistore/tikv/server_batch.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/util.go b/store/mockstore/unistore/tikv/util.go index 80c1a4e4fc0b0..ad9641e8f9e9e 100644 --- a/store/mockstore/unistore/tikv/util.go +++ b/store/mockstore/unistore/tikv/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/tikv/write.go b/store/mockstore/unistore/tikv/write.go index d518d50e9e2cb..0218e5df51a3c 100644 --- a/store/mockstore/unistore/tikv/write.go +++ b/store/mockstore/unistore/tikv/write.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/util/lockwaiter/lockwaiter.go b/store/mockstore/unistore/util/lockwaiter/lockwaiter.go index b2a40fdb947dc..de8dda34e4068 100644 --- a/store/mockstore/unistore/util/lockwaiter/lockwaiter.go +++ b/store/mockstore/unistore/util/lockwaiter/lockwaiter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/mockstore/unistore/util/lockwaiter/lockwaiter_test.go b/store/mockstore/unistore/util/lockwaiter/lockwaiter_test.go index f7218216b312e..ffbaaf2463be7 100644 --- a/store/mockstore/unistore/util/lockwaiter/lockwaiter_test.go +++ b/store/mockstore/unistore/util/lockwaiter/lockwaiter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/store.go b/store/store.go index 48c6a587ecde0..3cb84f27394a0 100644 --- a/store/store.go +++ b/store/store.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/store/store_test.go b/store/store_test.go index 3f4a44cecc189..98a3acf365289 100644 --- a/store/store_test.go +++ b/store/store_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/structure/hash.go b/structure/hash.go index 1110eb5244440..b0e7b15ca526f 100644 --- a/structure/hash.go +++ b/structure/hash.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/structure/list.go b/structure/list.go index c55109a197b56..63ca285cbc5e3 100644 --- a/structure/list.go +++ b/structure/list.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/structure/string.go b/structure/string.go index 57a1fa4ec2dfe..bdec023107fab 100644 --- a/structure/string.go +++ b/structure/string.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/structure/structure.go b/structure/structure.go index e46160c71d599..7fcf3557bccee 100644 --- a/structure/structure.go +++ b/structure/structure.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/structure/structure_test.go b/structure/structure_test.go index 6781fddd32ca0..993483563427e 100644 --- a/structure/structure_test.go +++ b/structure/structure_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/structure/type.go b/structure/type.go index 8470ff245b416..8e1437c2c4e4b 100644 --- a/structure/type.go +++ b/structure/type.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/column.go b/table/column.go index 6b9c2996b7509..69068c492e7d8 100644 --- a/table/column.go +++ b/table/column.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/column_test.go b/table/column_test.go index 30736ad13c016..e4de47e913e20 100644 --- a/table/column_test.go +++ b/table/column_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/index.go b/table/index.go index 336efb7f574c2..0b64adb484446 100644 --- a/table/index.go +++ b/table/index.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/main_test.go b/table/main_test.go index 71a934ad637fe..91463fb0b5f8c 100644 --- a/table/main_test.go +++ b/table/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/table.go b/table/table.go index cde04d90cc78c..a3440b01f9b4f 100644 --- a/table/table.go +++ b/table/table.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/table_test.go b/table/table_test.go index abb6dbc5ea922..43061568eb2e1 100644 --- a/table/table_test.go +++ b/table/table_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/tables/index.go b/table/tables/index.go index afb9275c2dad9..b592c894f74ad 100644 --- a/table/tables/index.go +++ b/table/tables/index.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/tables/index_test.go b/table/tables/index_test.go index 2c0a417746d42..426e5e488d28c 100644 --- a/table/tables/index_test.go +++ b/table/tables/index_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/tables/partition.go b/table/tables/partition.go index 603c83bcd05b4..de0a778b5a2ca 100644 --- a/table/tables/partition.go +++ b/table/tables/partition.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/tables/partition_test.go b/table/tables/partition_test.go index 8e8449013217c..f6a4fc5fc3ef4 100644 --- a/table/tables/partition_test.go +++ b/table/tables/partition_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/tables/tables.go b/table/tables/tables.go index b43110c2e4a05..0a957a659b27a 100644 --- a/table/tables/tables.go +++ b/table/tables/tables.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/table/tables/tables_test.go b/table/tables/tables_test.go index ad33599ac7d8c..cfcc00d35f937 100644 --- a/table/tables/tables_test.go +++ b/table/tables/tables_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tablecodec/bench_test.go b/tablecodec/bench_test.go index b6e4afc663d1b..8175fedc2df38 100644 --- a/tablecodec/bench_test.go +++ b/tablecodec/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tablecodec/tablecodec.go b/tablecodec/tablecodec.go index de766831bc245..2fca105e8e259 100644 --- a/tablecodec/tablecodec.go +++ b/tablecodec/tablecodec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tablecodec/tablecodec_test.go b/tablecodec/tablecodec_test.go index ada284edc0bca..88f001ef5b173 100644 --- a/tablecodec/tablecodec_test.go +++ b/tablecodec/tablecodec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/cte_test/cte_test.go b/telemetry/cte_test/cte_test.go index 4278f4740a937..6eaff23ee88e2 100644 --- a/telemetry/cte_test/cte_test.go +++ b/telemetry/cte_test/cte_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data.go b/telemetry/data.go index fa1de90efe092..374551df7dd30 100644 --- a/telemetry/data.go +++ b/telemetry/data.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_cluster_hardware.go b/telemetry/data_cluster_hardware.go index 9070f06f024e5..611ae2e005384 100644 --- a/telemetry/data_cluster_hardware.go +++ b/telemetry/data_cluster_hardware.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_cluster_hardware_test.go b/telemetry/data_cluster_hardware_test.go index 0dbf0183a82fa..9980f08dc6b54 100644 --- a/telemetry/data_cluster_hardware_test.go +++ b/telemetry/data_cluster_hardware_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_cluster_info.go b/telemetry/data_cluster_info.go index 5497170e2794d..a1569c3e67634 100644 --- a/telemetry/data_cluster_info.go +++ b/telemetry/data_cluster_info.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_feature_usage.go b/telemetry/data_feature_usage.go index 7f6787f9a2120..a85dc3fd238aa 100644 --- a/telemetry/data_feature_usage.go +++ b/telemetry/data_feature_usage.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_feature_usage_test.go b/telemetry/data_feature_usage_test.go index 0c1b71f5e9cdf..bf1727b58e11f 100644 --- a/telemetry/data_feature_usage_test.go +++ b/telemetry/data_feature_usage_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_slow_query.go b/telemetry/data_slow_query.go index e3023e5211561..6a5b388021891 100644 --- a/telemetry/data_slow_query.go +++ b/telemetry/data_slow_query.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_telemetry_host_extra.go b/telemetry/data_telemetry_host_extra.go index 33c64a5654086..ad200dd1b2a3a 100644 --- a/telemetry/data_telemetry_host_extra.go +++ b/telemetry/data_telemetry_host_extra.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/data_window.go b/telemetry/data_window.go index 54e7f8bcc3daf..0da4d9bd4d82a 100644 --- a/telemetry/data_window.go +++ b/telemetry/data_window.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/id.go b/telemetry/id.go index c9369b05f514f..dac130826596a 100644 --- a/telemetry/id.go +++ b/telemetry/id.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/main_test.go b/telemetry/main_test.go index 7aa7be2965a79..f498d16a2d564 100644 --- a/telemetry/main_test.go +++ b/telemetry/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/status.go b/telemetry/status.go index b1ed12d7d762a..b41a59ebbe55d 100644 --- a/telemetry/status.go +++ b/telemetry/status.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/telemetry.go b/telemetry/telemetry.go index 85e6554ab5296..481d077087cba 100644 --- a/telemetry/telemetry.go +++ b/telemetry/telemetry.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/telemetry_test.go b/telemetry/telemetry_test.go index 28b976c2e33c2..6978c0ef42da3 100644 --- a/telemetry/telemetry_test.go +++ b/telemetry/telemetry_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/util.go b/telemetry/util.go index e53db64cd722b..bdbe8816201fc 100644 --- a/telemetry/util.go +++ b/telemetry/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/telemetry/util_test.go b/telemetry/util_test.go index f2f5c43ffe48b..a9c374d35ca52 100644 --- a/telemetry/util_test.go +++ b/telemetry/util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/testkit/asynctestkit.go b/testkit/asynctestkit.go index ffa1d86429643..907b940c4b378 100644 --- a/testkit/asynctestkit.go +++ b/testkit/asynctestkit.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/testkit/handle.go b/testkit/handle.go index 1082671d34c2f..f4a6befcd2d75 100644 --- a/testkit/handle.go +++ b/testkit/handle.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/testkit/mockstore.go b/testkit/mockstore.go index 7bad3b1caeb3b..8dc2152e52fad 100644 --- a/testkit/mockstore.go +++ b/testkit/mockstore.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/testkit/result.go b/testkit/result.go index a889334557c90..72ad99baf56de 100644 --- a/testkit/result.go +++ b/testkit/result.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/testkit/testdata/testdata.go b/testkit/testdata/testdata.go index 39d40ae18fdf4..7db57eb1dcbfb 100644 --- a/testkit/testdata/testdata.go +++ b/testkit/testdata/testdata.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/testkit/testkit.go b/testkit/testkit.go index acad311033517..19d515fb2eba7 100644 --- a/testkit/testkit.go +++ b/testkit/testkit.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/globalkilltest/Makefile b/tests/globalkilltest/Makefile index 82509521acd72..f64515f09d1ca 100644 --- a/tests/globalkilltest/Makefile +++ b/tests/globalkilltest/Makefile @@ -8,6 +8,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/tests/globalkilltest/global_kill_test.go b/tests/globalkilltest/global_kill_test.go index 2386a794e984f..1681fefe5b737 100644 --- a/tests/globalkilltest/global_kill_test.go +++ b/tests/globalkilltest/global_kill_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/globalkilltest/run-tests.sh b/tests/globalkilltest/run-tests.sh index 8b884e8b6c5f4..32216631d9624 100755 --- a/tests/globalkilltest/run-tests.sh +++ b/tests/globalkilltest/run-tests.sh @@ -9,6 +9,7 @@ # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/tests/graceshutdown/Makefile b/tests/graceshutdown/Makefile index f1f028514b1c0..01af95528e402 100644 --- a/tests/graceshutdown/Makefile +++ b/tests/graceshutdown/Makefile @@ -8,6 +8,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/tests/graceshutdown/graceshutdown_test.go b/tests/graceshutdown/graceshutdown_test.go index 9fd448435aa84..060a47e9a55e8 100644 --- a/tests/graceshutdown/graceshutdown_test.go +++ b/tests/graceshutdown/graceshutdown_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/graceshutdown/run-tests.sh b/tests/graceshutdown/run-tests.sh index a4def89eaf845..41b0a84bab8ee 100755 --- a/tests/graceshutdown/run-tests.sh +++ b/tests/graceshutdown/run-tests.sh @@ -9,6 +9,7 @@ # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/tidb-server/main.go b/tidb-server/main.go index 2e3315a0511e5..e65ef97ad1ef3 100644 --- a/tidb-server/main.go +++ b/tidb-server/main.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tidb-server/main_test.go b/tidb-server/main_test.go index 0ca87addaabb0..5ad6e1e32d004 100644 --- a/tidb-server/main_test.go +++ b/tidb-server/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tools/check/check-errdoc.sh b/tools/check/check-errdoc.sh index 56d64ba282ca9..db1695bd9f976 100755 --- a/tools/check/check-errdoc.sh +++ b/tools/check/check-errdoc.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # diff --git a/tools/check/check-gogenerate.sh b/tools/check/check-gogenerate.sh index fb55ae571c753..e700d49a85927 100755 --- a/tools/check/check-gogenerate.sh +++ b/tools/check/check-gogenerate.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/tools/check/check-tidy.sh b/tools/check/check-tidy.sh index bb4e789db82c4..7c818fa05124a 100755 --- a/tools/check/check-tidy.sh +++ b/tools/check/check-tidy.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # diff --git a/tools/check/check_parser_replace.sh b/tools/check/check_parser_replace.sh index efb7ca27f4d6a..7ee27dd78dcad 100755 --- a/tools/check/check_parser_replace.sh +++ b/tools/check/check_parser_replace.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/tools/check/check_testSuite.sh b/tools/check/check_testSuite.sh index 5d9766ddf24fa..efe24decbce1f 100755 --- a/tools/check/check_testSuite.sh +++ b/tools/check/check_testSuite.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. diff --git a/types/benchmark_test.go b/types/benchmark_test.go index 91d3d5cce9f0e..1b1cfc1a24a07 100644 --- a/types/benchmark_test.go +++ b/types/benchmark_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/binary_literal.go b/types/binary_literal.go index 0da3e5c0bb982..93a0d59d4e873 100644 --- a/types/binary_literal.go +++ b/types/binary_literal.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/binary_literal_test.go b/types/binary_literal_test.go index 4847477f748d3..2e50e48d38185 100644 --- a/types/binary_literal_test.go +++ b/types/binary_literal_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/compare.go b/types/compare.go index f9fb7f84054c5..f43314c9185d3 100644 --- a/types/compare.go +++ b/types/compare.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/compare_test.go b/types/compare_test.go index 4e509ec55c2ee..df060e7e6ffd4 100644 --- a/types/compare_test.go +++ b/types/compare_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/const_test.go b/types/const_test.go index 131df7dd6f464..f2714d9cb8dfb 100644 --- a/types/const_test.go +++ b/types/const_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/convert.go b/types/convert.go index f3ab3c69ad807..f6b88597e9964 100644 --- a/types/convert.go +++ b/types/convert.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/convert_test.go b/types/convert_test.go index 664b919170c58..4f17cb2012420 100644 --- a/types/convert_test.go +++ b/types/convert_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/core_time.go b/types/core_time.go index 482156a44582e..161180dd3b166 100644 --- a/types/core_time.go +++ b/types/core_time.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/core_time_test.go b/types/core_time_test.go index f45dac6f58bd4..af0aab6c6d2f2 100644 --- a/types/core_time_test.go +++ b/types/core_time_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/datum.go b/types/datum.go index 02188dfc2dbe0..4368a6631e6f1 100644 --- a/types/datum.go +++ b/types/datum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/datum_eval.go b/types/datum_eval.go index a2d4d744b4d60..5e36248f24d0c 100644 --- a/types/datum_eval.go +++ b/types/datum_eval.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/datum_test.go b/types/datum_test.go index ef3dc177b0a16..eac684ba1c783 100644 --- a/types/datum_test.go +++ b/types/datum_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/enum.go b/types/enum.go index f80e3c3e6b07c..d21c63ab18c7b 100644 --- a/types/enum.go +++ b/types/enum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/enum_test.go b/types/enum_test.go index df97b649a72df..b37457368e0f7 100644 --- a/types/enum_test.go +++ b/types/enum_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/errors.go b/types/errors.go index bb006c921ff04..4df07a28b362a 100644 --- a/types/errors.go +++ b/types/errors.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/errors_test.go b/types/errors_test.go index ef472b702c0d1..93a46618e4f94 100644 --- a/types/errors_test.go +++ b/types/errors_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/etc.go b/types/etc.go index db1bc53c8e012..91563ba321aeb 100644 --- a/types/etc.go +++ b/types/etc.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/etc_test.go b/types/etc_test.go index aa15804185ff5..c4d8448d7c4e6 100644 --- a/types/etc_test.go +++ b/types/etc_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/eval_type.go b/types/eval_type.go index 3eb17cae856f9..798d7da7943e7 100644 --- a/types/eval_type.go +++ b/types/eval_type.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/explain_format.go b/types/explain_format.go index e574912308790..0a44d0ffa583a 100644 --- a/types/explain_format.go +++ b/types/explain_format.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/export_test.go b/types/export_test.go index ab09c4de70fa4..3f1b3c8d12345 100644 --- a/types/export_test.go +++ b/types/export_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/field_name.go b/types/field_name.go index 330c26041e544..f7d6771321714 100644 --- a/types/field_name.go +++ b/types/field_name.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/field_type.go b/types/field_type.go index 706d7cf595a7e..1799ec19392af 100644 --- a/types/field_type.go +++ b/types/field_type.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/field_type_test.go b/types/field_type_test.go index caab2e2df7b86..76cc46c33b04e 100644 --- a/types/field_type_test.go +++ b/types/field_type_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/format_test.go b/types/format_test.go index 269b1741d2028..e4b7149c3e8f5 100644 --- a/types/format_test.go +++ b/types/format_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/fsp.go b/types/fsp.go index a3b15c61389b6..ffad73c42a48c 100644 --- a/types/fsp.go +++ b/types/fsp.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/fsp_test.go b/types/fsp_test.go index f8e3b210b6300..dc62206e68b36 100644 --- a/types/fsp_test.go +++ b/types/fsp_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/helper.go b/types/helper.go index 4a12467fbc495..2da6bd7275d5f 100644 --- a/types/helper.go +++ b/types/helper.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/helper_test.go b/types/helper_test.go index 935b49c0ade69..6523f7af65cb9 100644 --- a/types/helper_test.go +++ b/types/helper_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/binary.go b/types/json/binary.go index 80647dabe7e85..8e51470a44496 100644 --- a/types/json/binary.go +++ b/types/json/binary.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/binary_functions.go b/types/json/binary_functions.go index 3e587bec08c85..897cc3e5d6e9a 100644 --- a/types/json/binary_functions.go +++ b/types/json/binary_functions.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/binary_functions_test.go b/types/json/binary_functions_test.go index 9b1662599bfc3..375a6100ed3a6 100644 --- a/types/json/binary_functions_test.go +++ b/types/json/binary_functions_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package json diff --git a/types/json/binary_test.go b/types/json/binary_test.go index d6a8c0bcf1c02..2d7fe58ee4eb8 100644 --- a/types/json/binary_test.go +++ b/types/json/binary_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/constants.go b/types/json/constants.go index 5a9d7cec19109..64abfe32a19a9 100644 --- a/types/json/constants.go +++ b/types/json/constants.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/main_test.go b/types/json/main_test.go index d80d8796a849f..a8cf27b5e9331 100644 --- a/types/json/main_test.go +++ b/types/json/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/path_expr.go b/types/json/path_expr.go index ede4ce11aa89b..9500d759daa9b 100644 --- a/types/json/path_expr.go +++ b/types/json/path_expr.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/json/path_expr_test.go b/types/json/path_expr_test.go index 5fa79dc5f4546..c4aa96333d719 100644 --- a/types/json/path_expr_test.go +++ b/types/json/path_expr_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/mydecimal.go b/types/mydecimal.go index b9428c5fef3ef..73fc0a346529b 100644 --- a/types/mydecimal.go +++ b/types/mydecimal.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/mydecimal_benchmark_test.go b/types/mydecimal_benchmark_test.go index 6f747c7913c83..206c30a383e5a 100644 --- a/types/mydecimal_benchmark_test.go +++ b/types/mydecimal_benchmark_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/mydecimal_test.go b/types/mydecimal_test.go index d4d4021a676d2..df2dfca5632a7 100644 --- a/types/mydecimal_test.go +++ b/types/mydecimal_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/overflow.go b/types/overflow.go index c1533d4a4451c..4b17c79984fd1 100644 --- a/types/overflow.go +++ b/types/overflow.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/overflow_test.go b/types/overflow_test.go index 78d214f39bf3b..dadb4848a57b8 100644 --- a/types/overflow_test.go +++ b/types/overflow_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/parser_driver/main_test.go b/types/parser_driver/main_test.go index 75cdb714aa82f..b1e6a35776689 100644 --- a/types/parser_driver/main_test.go +++ b/types/parser_driver/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/parser_driver/special_cmt_ctrl.go b/types/parser_driver/special_cmt_ctrl.go index 1a8c6d21cd87f..850f57e2b937a 100644 --- a/types/parser_driver/special_cmt_ctrl.go +++ b/types/parser_driver/special_cmt_ctrl.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/parser_driver/value_expr.go b/types/parser_driver/value_expr.go index d3f358994f5be..f89ce7f386df7 100644 --- a/types/parser_driver/value_expr.go +++ b/types/parser_driver/value_expr.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/parser_driver/value_expr_test.go b/types/parser_driver/value_expr_test.go index 695adcc9528dd..8972fe92792de 100644 --- a/types/parser_driver/value_expr_test.go +++ b/types/parser_driver/value_expr_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/set.go b/types/set.go index 9c369d8104d41..2be763951eca6 100644 --- a/types/set.go +++ b/types/set.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/set_test.go b/types/set_test.go index 37188740c2f46..7bd9675c7a115 100644 --- a/types/set_test.go +++ b/types/set_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/time.go b/types/time.go index ba6a52b52e42f..5f20a7b59d9db 100644 --- a/types/time.go +++ b/types/time.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/types/time_test.go b/types/time_test.go index 10dddd672866b..5aed6e42bb939 100644 --- a/types/time_test.go +++ b/types/time_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/admin/admin.go b/util/admin/admin.go index c35b6cd908a5d..040cd43601fe2 100644 --- a/util/admin/admin.go +++ b/util/admin/admin.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/admin/admin_integration_test.go b/util/admin/admin_integration_test.go index a19a31c9d6410..fc222265713ac 100644 --- a/util/admin/admin_integration_test.go +++ b/util/admin/admin_integration_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/admin/admin_test.go b/util/admin/admin_test.go index 889e6f7aa1e4e..9e9a40c64609f 100644 --- a/util/admin/admin_test.go +++ b/util/admin/admin_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/admin/main_test.go b/util/admin/main_test.go index 306c75aed0b32..b4242e21591ee 100644 --- a/util/admin/main_test.go +++ b/util/admin/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/arena/arena.go b/util/arena/arena.go index a8f8e1ab63950..62f83098ad922 100644 --- a/util/arena/arena.go +++ b/util/arena/arena.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/arena/arena_test.go b/util/arena/arena_test.go index a1fdb49677866..696afc5e594af 100644 --- a/util/arena/arena_test.go +++ b/util/arena/arena_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/arena/main_test.go b/util/arena/main_test.go index 31a940b60a3c5..020d3424cc9b8 100644 --- a/util/arena/main_test.go +++ b/util/arena/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/bitmap/concurrent.go b/util/bitmap/concurrent.go index cdc65ebcf9671..1ca214588cf78 100644 --- a/util/bitmap/concurrent.go +++ b/util/bitmap/concurrent.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/bitmap/concurrent_test.go b/util/bitmap/concurrent_test.go index 41d8ed270b2b9..41e0c4291f6bc 100644 --- a/util/bitmap/concurrent_test.go +++ b/util/bitmap/concurrent_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/bitmap/main_test.go b/util/bitmap/main_test.go index c6e4ac7842731..c32a6a56b6c2a 100644 --- a/util/bitmap/main_test.go +++ b/util/bitmap/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/checksum/checksum.go b/util/checksum/checksum.go index ef90f44e7cb00..7a3a1672abc9b 100644 --- a/util/checksum/checksum.go +++ b/util/checksum/checksum.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/checksum/checksum_test.go b/util/checksum/checksum_test.go index 3512b5f0dbc7d..6460cf5942208 100644 --- a/util/checksum/checksum_test.go +++ b/util/checksum/checksum_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/checksum/main_test.go b/util/checksum/main_test.go index 401ea56cf4cd1..4212ee3bc431c 100644 --- a/util/checksum/main_test.go +++ b/util/checksum/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/chunk.go b/util/chunk/chunk.go index 7a8b4fb8d7581..8f2323a52e4e1 100644 --- a/util/chunk/chunk.go +++ b/util/chunk/chunk.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/chunk_test.go b/util/chunk/chunk_test.go index 4bdf05c6e9bb9..a6438656b250a 100644 --- a/util/chunk/chunk_test.go +++ b/util/chunk/chunk_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/chunk_util.go b/util/chunk/chunk_util.go index b0d20b2c2af67..5e96d73e71fe9 100644 --- a/util/chunk/chunk_util.go +++ b/util/chunk/chunk_util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/chunk_util_test.go b/util/chunk/chunk_util_test.go index 1eaba85c43c53..510b5a482fa94 100644 --- a/util/chunk/chunk_util_test.go +++ b/util/chunk/chunk_util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/codec.go b/util/chunk/codec.go index 2858fb89b55a7..87ef95dafb5d0 100644 --- a/util/chunk/codec.go +++ b/util/chunk/codec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/codec_test.go b/util/chunk/codec_test.go index 3e8f1322e92b2..690cdf319983b 100644 --- a/util/chunk/codec_test.go +++ b/util/chunk/codec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/column.go b/util/chunk/column.go index 0de00f0f45e71..7e3f304df3cbb 100644 --- a/util/chunk/column.go +++ b/util/chunk/column.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/column_test.go b/util/chunk/column_test.go index d123498ab4c71..991425e8bfbfe 100644 --- a/util/chunk/column_test.go +++ b/util/chunk/column_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/compare.go b/util/chunk/compare.go index 2c93082ab7351..8b74a7051bb3c 100644 --- a/util/chunk/compare.go +++ b/util/chunk/compare.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/disk.go b/util/chunk/disk.go index a9f7eecec3641..d69f76fb623e3 100644 --- a/util/chunk/disk.go +++ b/util/chunk/disk.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/disk_test.go b/util/chunk/disk_test.go index a3cd929a4886f..f789d38750168 100644 --- a/util/chunk/disk_test.go +++ b/util/chunk/disk_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/iterator.go b/util/chunk/iterator.go index 7f01faf944c77..9b253b4bc576a 100644 --- a/util/chunk/iterator.go +++ b/util/chunk/iterator.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/iterator_test.go b/util/chunk/iterator_test.go index 3f757acc91ff9..59f40da0fe22e 100644 --- a/util/chunk/iterator_test.go +++ b/util/chunk/iterator_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/list.go b/util/chunk/list.go index 8ab7d27d86948..4f0b8417583b4 100644 --- a/util/chunk/list.go +++ b/util/chunk/list.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/list_test.go b/util/chunk/list_test.go index fc33341abaa62..6cd698274ed29 100644 --- a/util/chunk/list_test.go +++ b/util/chunk/list_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/main_test.go b/util/chunk/main_test.go index 23406b9689292..bc9a0900ec180 100644 --- a/util/chunk/main_test.go +++ b/util/chunk/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/mutrow.go b/util/chunk/mutrow.go index 46a9a3a1fe850..301bfcd70832c 100644 --- a/util/chunk/mutrow.go +++ b/util/chunk/mutrow.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/mutrow_test.go b/util/chunk/mutrow_test.go index d55603ff848c6..88184cf87ed6a 100644 --- a/util/chunk/mutrow_test.go +++ b/util/chunk/mutrow_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/pool.go b/util/chunk/pool.go index 2ae410000b852..4debe388157c2 100644 --- a/util/chunk/pool.go +++ b/util/chunk/pool.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/pool_test.go b/util/chunk/pool_test.go index 0cdc34a2ab96f..c36f00ac2381d 100644 --- a/util/chunk/pool_test.go +++ b/util/chunk/pool_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/row.go b/util/chunk/row.go index 8494df6f8d4c9..b16c24fcd2bd6 100644 --- a/util/chunk/row.go +++ b/util/chunk/row.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/row_container.go b/util/chunk/row_container.go index 0ef0b573e1bb2..9059cb665b7e7 100644 --- a/util/chunk/row_container.go +++ b/util/chunk/row_container.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/chunk/row_container_test.go b/util/chunk/row_container_test.go index a39346e34ff80..0e192950cdd6f 100644 --- a/util/chunk/row_container_test.go +++ b/util/chunk/row_container_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/bench_test.go b/util/codec/bench_test.go index 6e6034f73760c..5273325f44231 100644 --- a/util/codec/bench_test.go +++ b/util/codec/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/bytes.go b/util/codec/bytes.go index 118c01ba0d1c8..c061146ba191a 100644 --- a/util/codec/bytes.go +++ b/util/codec/bytes.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/bytes_test.go b/util/codec/bytes_test.go index 0c75dfc49d847..5f108367074b4 100644 --- a/util/codec/bytes_test.go +++ b/util/codec/bytes_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/codec.go b/util/codec/codec.go index 2f9ce666ed643..4c09f9dc5ec89 100644 --- a/util/codec/codec.go +++ b/util/codec/codec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/codec_test.go b/util/codec/codec_test.go index 204590421a91e..dd5b582b0cb43 100644 --- a/util/codec/codec_test.go +++ b/util/codec/codec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/collation_test.go b/util/codec/collation_test.go index dfc37ccb2367b..2713133168fdc 100644 --- a/util/codec/collation_test.go +++ b/util/codec/collation_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/decimal.go b/util/codec/decimal.go index 92cdb04f2f662..68f0bd31799e8 100644 --- a/util/codec/decimal.go +++ b/util/codec/decimal.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/decimal_test.go b/util/codec/decimal_test.go index d9d0441b61a75..1c01914e90092 100644 --- a/util/codec/decimal_test.go +++ b/util/codec/decimal_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/float.go b/util/codec/float.go index 39ce634459cc6..df8d697463cbe 100644 --- a/util/codec/float.go +++ b/util/codec/float.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/main_test.go b/util/codec/main_test.go index c8bac25ed92ab..cdc978b14d253 100644 --- a/util/codec/main_test.go +++ b/util/codec/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/codec/number.go b/util/codec/number.go index 47912e813b2fc..02d2c02d43003 100644 --- a/util/codec/number.go +++ b/util/codec/number.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/bin.go b/util/collate/bin.go index 637ef745248e5..c43767ee88971 100644 --- a/util/collate/bin.go +++ b/util/collate/bin.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/collate.go b/util/collate/collate.go index 78540ea48f220..84ea1856f9fe2 100644 --- a/util/collate/collate.go +++ b/util/collate/collate.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/collate_test.go b/util/collate/collate_test.go index 103a74e46cbac..0b779cfc2fcaa 100644 --- a/util/collate/collate_test.go +++ b/util/collate/collate_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/general_ci.go b/util/collate/general_ci.go index bfa94148610d4..ee1cb4980f4bf 100644 --- a/util/collate/general_ci.go +++ b/util/collate/general_ci.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/main_test.go b/util/collate/main_test.go index 08be28cdf654a..e82127b7013c9 100644 --- a/util/collate/main_test.go +++ b/util/collate/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/pinyin_tidb_as_cs.go b/util/collate/pinyin_tidb_as_cs.go index 565680e2cff56..c0b2bab04f380 100644 --- a/util/collate/pinyin_tidb_as_cs.go +++ b/util/collate/pinyin_tidb_as_cs.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/unicode_ci.go b/util/collate/unicode_ci.go index aceffeafd9783..0e80669531f4f 100644 --- a/util/collate/unicode_ci.go +++ b/util/collate/unicode_ci.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/collate/unicode_ci_data.go b/util/collate/unicode_ci_data.go index 5248c02a96732..36d81cca64e76 100644 --- a/util/collate/unicode_ci_data.go +++ b/util/collate/unicode_ci_data.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/cteutil/main_test.go b/util/cteutil/main_test.go index 774e099c33e13..f882348ac05cc 100644 --- a/util/cteutil/main_test.go +++ b/util/cteutil/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/cteutil/storage.go b/util/cteutil/storage.go index d2607892db62c..19b1bd5151fdc 100644 --- a/util/cteutil/storage.go +++ b/util/cteutil/storage.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/cteutil/storage_test.go b/util/cteutil/storage_test.go index 0ec29a691026f..8e553544dcefb 100644 --- a/util/cteutil/storage_test.go +++ b/util/cteutil/storage_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/dbterror/main_test.go b/util/dbterror/main_test.go index 43bbc23005455..7879e9d1a6904 100644 --- a/util/dbterror/main_test.go +++ b/util/dbterror/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/dbterror/terror.go b/util/dbterror/terror.go index 3f8918efa9ddf..c66b9cea665c8 100644 --- a/util/dbterror/terror.go +++ b/util/dbterror/terror.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/dbterror/terror_test.go b/util/dbterror/terror_test.go index da507f34c5b9a..aae2d9688549d 100644 --- a/util/dbterror/terror_test.go +++ b/util/dbterror/terror_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/deadlockhistory/deadlock_history.go b/util/deadlockhistory/deadlock_history.go index 5509c883f50e6..97bab64928775 100644 --- a/util/deadlockhistory/deadlock_history.go +++ b/util/deadlockhistory/deadlock_history.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/deadlockhistory/deadlock_history_test.go b/util/deadlockhistory/deadlock_history_test.go index 63d4e05ae01fd..ccd10b6c1f493 100644 --- a/util/deadlockhistory/deadlock_history_test.go +++ b/util/deadlockhistory/deadlock_history_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/deadlockhistory/main_test.go b/util/deadlockhistory/main_test.go index 3327030a8ac87..f5d8af7b1f799 100644 --- a/util/deadlockhistory/main_test.go +++ b/util/deadlockhistory/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/disjointset/int_set.go b/util/disjointset/int_set.go index 0881b4aa1b03f..05846e3840850 100644 --- a/util/disjointset/int_set.go +++ b/util/disjointset/int_set.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/disjointset/int_set_test.go b/util/disjointset/int_set_test.go index 3c6072c2414f6..4f6753a255d4d 100644 --- a/util/disjointset/int_set_test.go +++ b/util/disjointset/int_set_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/disjointset/main_test.go b/util/disjointset/main_test.go index 2d5559e618905..9ae4a8269842b 100644 --- a/util/disjointset/main_test.go +++ b/util/disjointset/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/disk/tempDir.go b/util/disk/tempDir.go index 7c0a1a9d45239..bb56d3338aadc 100644 --- a/util/disk/tempDir.go +++ b/util/disk/tempDir.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/disk/tempDir_test.go b/util/disk/tempDir_test.go index 436f53a4c4a7f..9081d83d759be 100644 --- a/util/disk/tempDir_test.go +++ b/util/disk/tempDir_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/disk/tracker.go b/util/disk/tracker.go index bcdd13720a8fe..57502ebeab7fc 100644 --- a/util/disk/tracker.go +++ b/util/disk/tracker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/domainutil/repair_vars.go b/util/domainutil/repair_vars.go index f45081e96fa53..da41d53254665 100644 --- a/util/domainutil/repair_vars.go +++ b/util/domainutil/repair_vars.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/encrypt/aes.go b/util/encrypt/aes.go index f158c60f2ed66..6a61f85a14d9a 100644 --- a/util/encrypt/aes.go +++ b/util/encrypt/aes.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/encrypt/aes_layer.go b/util/encrypt/aes_layer.go index fe67e659299ed..e2bd80f6ae179 100644 --- a/util/encrypt/aes_layer.go +++ b/util/encrypt/aes_layer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/encrypt/aes_layer_test.go b/util/encrypt/aes_layer_test.go index 4bee05f02546c..9005660fe3caa 100644 --- a/util/encrypt/aes_layer_test.go +++ b/util/encrypt/aes_layer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/encrypt/aes_test.go b/util/encrypt/aes_test.go index 99e491815d946..e0dbce3417c2a 100644 --- a/util/encrypt/aes_test.go +++ b/util/encrypt/aes_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/encrypt/crypt.go b/util/encrypt/crypt.go index 3531fada7c34f..0adc2e419166f 100644 --- a/util/encrypt/crypt.go +++ b/util/encrypt/crypt.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/encrypt/crypt_test.go b/util/encrypt/crypt_test.go index d99136f6209dd..e168d7482c45f 100644 --- a/util/encrypt/crypt_test.go +++ b/util/encrypt/crypt_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/execdetails/execdetails.go b/util/execdetails/execdetails.go index e17e12ffdac78..4c3b1d9ddfd51 100644 --- a/util/execdetails/execdetails.go +++ b/util/execdetails/execdetails.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/execdetails/execdetails_test.go b/util/execdetails/execdetails_test.go index 47829fab53952..2fa5f4dd50df4 100644 --- a/util/execdetails/execdetails_test.go +++ b/util/execdetails/execdetails_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/execdetails/main_test.go b/util/execdetails/main_test.go index 6e15bd2767c81..a55b06c98e775 100644 --- a/util/execdetails/main_test.go +++ b/util/execdetails/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package execdetails diff --git a/util/expensivequery/expensivequerey_test.go b/util/expensivequery/expensivequerey_test.go index 71ce4793d6fb1..dc7ab46282f54 100644 --- a/util/expensivequery/expensivequerey_test.go +++ b/util/expensivequery/expensivequerey_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/expensivequery/expensivequery.go b/util/expensivequery/expensivequery.go index 38ef0379183ef..f30bca5db29ce 100644 --- a/util/expensivequery/expensivequery.go +++ b/util/expensivequery/expensivequery.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/expensivequery/memory_usage_alarm.go b/util/expensivequery/memory_usage_alarm.go index dbe13ccb973bc..391893e928bdd 100644 --- a/util/expensivequery/memory_usage_alarm.go +++ b/util/expensivequery/memory_usage_alarm.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/fastrand/main_test.go b/util/fastrand/main_test.go index 97a85d8376992..fb2255c79e252 100644 --- a/util/fastrand/main_test.go +++ b/util/fastrand/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/fastrand/random.go b/util/fastrand/random.go index 2766d90d176b9..efab152a19d3a 100644 --- a/util/fastrand/random.go +++ b/util/fastrand/random.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/fastrand/random_test.go b/util/fastrand/random_test.go index 4d5d18e932bb3..57587a63c6f5b 100644 --- a/util/fastrand/random_test.go +++ b/util/fastrand/random_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/filesort/filesort.go b/util/filesort/filesort.go index 509ab0f876adc..f7f77ac1b9c8a 100644 --- a/util/filesort/filesort.go +++ b/util/filesort/filesort.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/filesort/filesort_test.go b/util/filesort/filesort_test.go index d518f28e9ac1d..7d71c55337813 100644 --- a/util/filesort/filesort_test.go +++ b/util/filesort/filesort_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/format/format.go b/util/format/format.go index 0a14a6d362650..4e19244a42cb6 100644 --- a/util/format/format.go +++ b/util/format/format.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/format/format_test.go b/util/format/format_test.go index b0ea2061e18f2..efe33b75f11c8 100644 --- a/util/format/format_test.go +++ b/util/format/format_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/format/main_test.go b/util/format/main_test.go index bcb6bc03de850..66294a0dbadfb 100644 --- a/util/format/main_test.go +++ b/util/format/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/gcutil/gcutil.go b/util/gcutil/gcutil.go index f3537889fb8e0..ab88f840dded6 100644 --- a/util/gcutil/gcutil.go +++ b/util/gcutil/gcutil.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/generatedexpr/gen_expr_test.go b/util/generatedexpr/gen_expr_test.go index 51c28e7d069cc..1c0493e30cd49 100644 --- a/util/generatedexpr/gen_expr_test.go +++ b/util/generatedexpr/gen_expr_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/generatedexpr/generated_expr.go b/util/generatedexpr/generated_expr.go index 3414296baf66b..7a07ea31b9eab 100644 --- a/util/generatedexpr/generated_expr.go +++ b/util/generatedexpr/generated_expr.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/generatedexpr/main_test.go b/util/generatedexpr/main_test.go index b30d0f5d32e23..d5418deebddcf 100644 --- a/util/generatedexpr/main_test.go +++ b/util/generatedexpr/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/gogc.go b/util/gogc.go index 67d69a476848b..044fb45131573 100644 --- a/util/gogc.go +++ b/util/gogc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/hack/hack.go b/util/hack/hack.go index 849b64e8c0e4e..60ad6aab9adf4 100644 --- a/util/hack/hack.go +++ b/util/hack/hack.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/hack/hack_test.go b/util/hack/hack_test.go index 9443115eb9cf8..bc6e2dffc7d51 100644 --- a/util/hack/hack_test.go +++ b/util/hack/hack_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/hack/main_test.go b/util/hack/main_test.go index 7ba1c66748f4f..aaa708c42a033 100644 --- a/util/hack/main_test.go +++ b/util/hack/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/hint/hint_processor.go b/util/hint/hint_processor.go index 0cf43f7d01e33..e61e1846132e0 100644 --- a/util/hint/hint_processor.go +++ b/util/hint/hint_processor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/israce/israce.go b/util/israce/israce.go index b85e49b2597ff..0e2bd2580159f 100644 --- a/util/israce/israce.go +++ b/util/israce/israce.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/israce/norace.go b/util/israce/norace.go index 2b5fc74abeca9..8043db3cd3ac2 100644 --- a/util/israce/norace.go +++ b/util/israce/norace.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/keydecoder/keydecoder.go b/util/keydecoder/keydecoder.go index f5c84d9c6627c..185fd6077499d 100644 --- a/util/keydecoder/keydecoder.go +++ b/util/keydecoder/keydecoder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/keydecoder/keydecoder_test.go b/util/keydecoder/keydecoder_test.go index 691f084bbe3b9..3d6e7ebad27a0 100644 --- a/util/keydecoder/keydecoder_test.go +++ b/util/keydecoder/keydecoder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/keydecoder/main_test.go b/util/keydecoder/main_test.go index 4f4ed6bc7b73f..6900f8e304ec0 100644 --- a/util/keydecoder/main_test.go +++ b/util/keydecoder/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/kvcache/main_test.go b/util/kvcache/main_test.go index caefb0eeb4beb..90e09a3a45e77 100644 --- a/util/kvcache/main_test.go +++ b/util/kvcache/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/kvcache/simple_lru.go b/util/kvcache/simple_lru.go index aec402adb09ed..eb6ed426f02f3 100644 --- a/util/kvcache/simple_lru.go +++ b/util/kvcache/simple_lru.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/kvcache/simple_lru_test.go b/util/kvcache/simple_lru_test.go index 98f92cc686b5f..3498be84174b3 100644 --- a/util/kvcache/simple_lru_test.go +++ b/util/kvcache/simple_lru_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/localpool/localpool.go b/util/localpool/localpool.go index 0f77e6f02c17b..ec7bba4547396 100644 --- a/util/localpool/localpool.go +++ b/util/localpool/localpool.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/localpool/localpool_norace.go b/util/localpool/localpool_norace.go index c509ae5c552e1..ffb875c800d4f 100644 --- a/util/localpool/localpool_norace.go +++ b/util/localpool/localpool_norace.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/localpool/localpool_race.go b/util/localpool/localpool_race.go index e204557d0d9bb..da45876634b40 100644 --- a/util/localpool/localpool_race.go +++ b/util/localpool/localpool_race.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/localpool/localpool_test.go b/util/localpool/localpool_test.go index 938e30b5d6284..7a0530b89db1a 100644 --- a/util/localpool/localpool_test.go +++ b/util/localpool/localpool_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/localpool/main_test.go b/util/localpool/main_test.go index 9b1110e85c45d..fb21dcc42f4f5 100644 --- a/util/localpool/main_test.go +++ b/util/localpool/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/logutil/hex.go b/util/logutil/hex.go index 1bff4ec591404..2794fa87a206c 100644 --- a/util/logutil/hex.go +++ b/util/logutil/hex.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/logutil/hex_test.go b/util/logutil/hex_test.go index 6ed350517924a..c9ce8713fe7ea 100644 --- a/util/logutil/hex_test.go +++ b/util/logutil/hex_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/logutil/log.go b/util/logutil/log.go index 66bee73e69fb3..5f522ee098e6b 100644 --- a/util/logutil/log.go +++ b/util/logutil/log.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/logutil/log_test.go b/util/logutil/log_test.go index 4c5232c50cd1f..c8c4c89c3f4f2 100644 --- a/util/logutil/log_test.go +++ b/util/logutil/log_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/logutil/main_test.go b/util/logutil/main_test.go index 2a8d44c950f3a..7d833f0bd86ef 100644 --- a/util/logutil/main_test.go +++ b/util/logutil/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/main_test.go b/util/main_test.go index 75990b684f303..1b930670688d0 100644 --- a/util/main_test.go +++ b/util/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/math/main_test.go b/util/math/main_test.go index b280d55f3fddd..c10b457e497a8 100644 --- a/util/math/main_test.go +++ b/util/math/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/math/math.go b/util/math/math.go index a23f88110d1b5..68ed5f9c7ae77 100644 --- a/util/math/math.go +++ b/util/math/math.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/math/math_test.go b/util/math/math_test.go index 28048844dac1c..39d3e4241d7e1 100644 --- a/util/math/math_test.go +++ b/util/math/math_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/memory/action.go b/util/memory/action.go index fbbcae15fdca1..b4c9fb18f4277 100644 --- a/util/memory/action.go +++ b/util/memory/action.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/memory/bench_test.go b/util/memory/bench_test.go index 3de9a5f24c748..10e4b312de565 100644 --- a/util/memory/bench_test.go +++ b/util/memory/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/memory/main_test.go b/util/memory/main_test.go index 77294993e5a4c..03d7f7d266e77 100644 --- a/util/memory/main_test.go +++ b/util/memory/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/memory/meminfo.go b/util/memory/meminfo.go index 3ba93e826ad5e..5392f4956d944 100644 --- a/util/memory/meminfo.go +++ b/util/memory/meminfo.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/memory/tracker.go b/util/memory/tracker.go index 64b5552debefc..cda7a67ad278b 100644 --- a/util/memory/tracker.go +++ b/util/memory/tracker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/memory/tracker_test.go b/util/memory/tracker_test.go index 1ae045eb2a6c3..a49ffe6e5d1c3 100644 --- a/util/memory/tracker_test.go +++ b/util/memory/tracker_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/misc.go b/util/misc.go index aab8605f452e6..5555e257d69c7 100644 --- a/util/misc.go +++ b/util/misc.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/misc_test.go b/util/misc_test.go index b16c547e37fcb..fdd6e2b5ca341 100644 --- a/util/misc_test.go +++ b/util/misc_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mock/client.go b/util/mock/client.go index 72a8422be7509..5dc4c8f90945d 100644 --- a/util/mock/client.go +++ b/util/mock/client.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mock/context.go b/util/mock/context.go index 55909570e4b89..64009a6f967d6 100644 --- a/util/mock/context.go +++ b/util/mock/context.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mock/main_test.go b/util/mock/main_test.go index 5eb43faf2259f..11d845761a1ec 100644 --- a/util/mock/main_test.go +++ b/util/mock/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mock/mock_test.go b/util/mock/mock_test.go index 2a41d3b6c681b..764fc9c2f32f1 100644 --- a/util/mock/mock_test.go +++ b/util/mock/mock_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mock/store.go b/util/mock/store.go index cec973c9d386f..1037a763591fb 100644 --- a/util/mock/store.go +++ b/util/mock/store.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mvmap/fnv.go b/util/mvmap/fnv.go index d9e27aaafd107..c67637a41d3c1 100644 --- a/util/mvmap/fnv.go +++ b/util/mvmap/fnv.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mvmap/mvmap.go b/util/mvmap/mvmap.go index c26e95a1e9c2b..055397a26809b 100644 --- a/util/mvmap/mvmap.go +++ b/util/mvmap/mvmap.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/mvmap/mvmap_test.go b/util/mvmap/mvmap_test.go index b3a241919c9fa..75817d74692b7 100644 --- a/util/mvmap/mvmap_test.go +++ b/util/mvmap/mvmap_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/parser/ast.go b/util/parser/ast.go index de460f24378fd..b05b13b6a4945 100644 --- a/util/parser/ast.go +++ b/util/parser/ast.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/parser/ast_test.go b/util/parser/ast_test.go index 177caf16f1978..276a2b7c31767 100644 --- a/util/parser/ast_test.go +++ b/util/parser/ast_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/parser/parser.go b/util/parser/parser.go index 101b4bd6f5a7a..441ddbcf26183 100644 --- a/util/parser/parser.go +++ b/util/parser/parser.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/parser/parser_test.go b/util/parser/parser_test.go index c92fa76a11620..9d5f8d4646103 100644 --- a/util/parser/parser_test.go +++ b/util/parser/parser_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/pdapi/const.go b/util/pdapi/const.go index 314cffcc8887b..29428b477c878 100644 --- a/util/pdapi/const.go +++ b/util/pdapi/const.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/plancodec/codec.go b/util/plancodec/codec.go index 65fd2c64b899f..28284020aca16 100644 --- a/util/plancodec/codec.go +++ b/util/plancodec/codec.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/plancodec/codec_test.go b/util/plancodec/codec_test.go index 67a8a89787c90..1b8af9f0b14dc 100644 --- a/util/plancodec/codec_test.go +++ b/util/plancodec/codec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/plancodec/id.go b/util/plancodec/id.go index b0e8e16e2de62..b6f699c3b9837 100644 --- a/util/plancodec/id.go +++ b/util/plancodec/id.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/plancodec/id_test.go b/util/plancodec/id_test.go index 860aa9eb43580..8c2590f5e28b9 100644 --- a/util/plancodec/id_test.go +++ b/util/plancodec/id_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/plancodec/main_test.go b/util/plancodec/main_test.go index 18a8e69e36290..31620cb293173 100644 --- a/util/plancodec/main_test.go +++ b/util/plancodec/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/prefix_helper.go b/util/prefix_helper.go index 3bb74d07f1c49..89553065d3bcb 100644 --- a/util/prefix_helper.go +++ b/util/prefix_helper.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/prefix_helper_test.go b/util/prefix_helper_test.go index 374f5064d6e28..d4fd2b539cc7c 100644 --- a/util/prefix_helper_test.go +++ b/util/prefix_helper_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/printer/main_test.go b/util/printer/main_test.go index e2346d73db26a..ae6fbd3e45509 100644 --- a/util/printer/main_test.go +++ b/util/printer/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/printer/printer.go b/util/printer/printer.go index 3c5217503896f..38c8441f5c324 100644 --- a/util/printer/printer.go +++ b/util/printer/printer.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/printer/printer_test.go b/util/printer/printer_test.go index 51002490fddec..38c73fabbd7eb 100644 --- a/util/printer/printer_test.go +++ b/util/printer/printer_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/processinfo.go b/util/processinfo.go index 64f98a6c06abb..61f918e6dc2a8 100644 --- a/util/processinfo.go +++ b/util/processinfo.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/processinfo_test.go b/util/processinfo_test.go index eca0c7ac998d5..8edaeb7f4e6a2 100644 --- a/util/processinfo_test.go +++ b/util/processinfo_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/flamegraph.go b/util/profile/flamegraph.go index 9a0d60c7e5a0c..2e356279725e7 100644 --- a/util/profile/flamegraph.go +++ b/util/profile/flamegraph.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/flamegraph_test.go b/util/profile/flamegraph_test.go index 8594308b0d549..634e1286ef8cf 100644 --- a/util/profile/flamegraph_test.go +++ b/util/profile/flamegraph_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/main_test.go b/util/profile/main_test.go index aaa8444f2c9fe..cd5b368a787de 100644 --- a/util/profile/main_test.go +++ b/util/profile/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/profile.go b/util/profile/profile.go index ff817032617fe..3746aa4947d63 100644 --- a/util/profile/profile.go +++ b/util/profile/profile.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/profile_test.go b/util/profile/profile_test.go index 78e6586412534..e8cff9c8daaaa 100644 --- a/util/profile/profile_test.go +++ b/util/profile/profile_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/trackerRecorder.go b/util/profile/trackerRecorder.go index 7c449ffa9113c..c8caeb161acf7 100644 --- a/util/profile/trackerRecorder.go +++ b/util/profile/trackerRecorder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/profile/trackerrecorder_test.go b/util/profile/trackerrecorder_test.go index ef0cb34c779ec..d1936673cfef8 100644 --- a/util/profile/trackerrecorder_test.go +++ b/util/profile/trackerrecorder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/checker.go b/util/ranger/checker.go index 60f651af1945d..926a953d65e5c 100644 --- a/util/ranger/checker.go +++ b/util/ranger/checker.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/detacher.go b/util/ranger/detacher.go index 6a07c531275cf..454e4bce7ea93 100644 --- a/util/ranger/detacher.go +++ b/util/ranger/detacher.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/main_test.go b/util/ranger/main_test.go index c14df41990630..461eb57e7393b 100644 --- a/util/ranger/main_test.go +++ b/util/ranger/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/points.go b/util/ranger/points.go index 92b2aafca814a..672af5d8bcc94 100644 --- a/util/ranger/points.go +++ b/util/ranger/points.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/ranger.go b/util/ranger/ranger.go index 44f07be6fe69b..a41aa9c34dd77 100644 --- a/util/ranger/ranger.go +++ b/util/ranger/ranger.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/ranger_test.go b/util/ranger/ranger_test.go index 23f46afbaa7a4..53ac42e26d3f9 100644 --- a/util/ranger/ranger_test.go +++ b/util/ranger/ranger_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/types.go b/util/ranger/types.go index 26548ac1815bb..4452e88ee6784 100644 --- a/util/ranger/types.go +++ b/util/ranger/types.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/ranger/types_test.go b/util/ranger/types_test.go index a229e3889a532..99cca8336932e 100644 --- a/util/ranger/types_test.go +++ b/util/ranger/types_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/resourcegrouptag/main_test.go b/util/resourcegrouptag/main_test.go index 7880492b5ef13..9bd1c8df16cd4 100644 --- a/util/resourcegrouptag/main_test.go +++ b/util/resourcegrouptag/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/resourcegrouptag/resource_group_tag_test.go b/util/resourcegrouptag/resource_group_tag_test.go index 19ecb8ac3578a..51ab5223f5e86 100644 --- a/util/resourcegrouptag/resource_group_tag_test.go +++ b/util/resourcegrouptag/resource_group_tag_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowDecoder/decoder.go b/util/rowDecoder/decoder.go index 35413904fe3d8..0de9e91ce5f76 100644 --- a/util/rowDecoder/decoder.go +++ b/util/rowDecoder/decoder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowDecoder/decoder_test.go b/util/rowDecoder/decoder_test.go index f9c0d92e28250..5ecfa5282e414 100644 --- a/util/rowDecoder/decoder_test.go +++ b/util/rowDecoder/decoder_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowDecoder/main_test.go b/util/rowDecoder/main_test.go index f3ed3ee715f43..0e93bf3104a9b 100644 --- a/util/rowDecoder/main_test.go +++ b/util/rowDecoder/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/bench_test.go b/util/rowcodec/bench_test.go index 9602f7fa0adfa..8a8d9b3adb782 100644 --- a/util/rowcodec/bench_test.go +++ b/util/rowcodec/bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/common.go b/util/rowcodec/common.go index 0df891024ddfb..5e8e54e83f45a 100644 --- a/util/rowcodec/common.go +++ b/util/rowcodec/common.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/decoder.go b/util/rowcodec/decoder.go index 0efd50ecaf27c..87909c1445267 100644 --- a/util/rowcodec/decoder.go +++ b/util/rowcodec/decoder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/encoder.go b/util/rowcodec/encoder.go index 1c222f3104beb..c89b0b4a519d6 100644 --- a/util/rowcodec/encoder.go +++ b/util/rowcodec/encoder.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/export_test.go b/util/rowcodec/export_test.go index 39862dc91a5dc..47cd7b73eee6f 100644 --- a/util/rowcodec/export_test.go +++ b/util/rowcodec/export_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/row.go b/util/rowcodec/row.go index 8eb07dfbde9e9..2cafab6c875a9 100644 --- a/util/rowcodec/row.go +++ b/util/rowcodec/row.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/rowcodec/rowcodec_test.go b/util/rowcodec/rowcodec_test.go index b676127abf379..c7ff304705721 100644 --- a/util/rowcodec/rowcodec_test.go +++ b/util/rowcodec/rowcodec_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/selection/main_test.go b/util/selection/main_test.go index a3e8b9afa5ecc..91e31ed6c5bb3 100644 --- a/util/selection/main_test.go +++ b/util/selection/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/selection/selection.go b/util/selection/selection.go index db1a801cec44f..987e798d77096 100644 --- a/util/selection/selection.go +++ b/util/selection/selection.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/selection/selection_test.go b/util/selection/selection_test.go index ad23d9d2ca82a..e8eb5ffed0336 100644 --- a/util/selection/selection_test.go +++ b/util/selection/selection_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sem/main_test.go b/util/sem/main_test.go index 608f6625343df..81af71ff59d39 100644 --- a/util/sem/main_test.go +++ b/util/sem/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sem/sem.go b/util/sem/sem.go index 6a29c81c24a93..0012b24927cab 100644 --- a/util/sem/sem.go +++ b/util/sem/sem.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sem/sem_test.go b/util/sem/sem_test.go index 0025dd9109ac0..b9eb1a7400135 100644 --- a/util/sem/sem_test.go +++ b/util/sem/sem_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/float64_set.go b/util/set/float64_set.go index 31760962317f3..b8d3cee2a9c82 100644 --- a/util/set/float64_set.go +++ b/util/set/float64_set.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/float64_set_test.go b/util/set/float64_set_test.go index b6f48384f405f..062f3ad918568 100644 --- a/util/set/float64_set_test.go +++ b/util/set/float64_set_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/int_set.go b/util/set/int_set.go index 9fde4ebc06c9d..c83707004eb80 100644 --- a/util/set/int_set.go +++ b/util/set/int_set.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/int_set_test.go b/util/set/int_set_test.go index 8c760380b566b..d4cbcd8a6006e 100644 --- a/util/set/int_set_test.go +++ b/util/set/int_set_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/main_test.go b/util/set/main_test.go index 47e1233f5cc6f..d119da45ccb6b 100644 --- a/util/set/main_test.go +++ b/util/set/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/set_with_memory_usage.go b/util/set/set_with_memory_usage.go index da4047a0c52b6..1b078122123cd 100644 --- a/util/set/set_with_memory_usage.go +++ b/util/set/set_with_memory_usage.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/string_set.go b/util/set/string_set.go index 1bd0dbf77dce5..a008612b6ee12 100644 --- a/util/set/string_set.go +++ b/util/set/string_set.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/set/string_set_test.go b/util/set/string_set_test.go index 35a56662f2691..4f16f834020c8 100644 --- a/util/set/string_set_test.go +++ b/util/set/string_set_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/signal/signal_posix.go b/util/signal/signal_posix.go index 83036c57999c2..c36f8605bb600 100644 --- a/util/signal/signal_posix.go +++ b/util/signal/signal_posix.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build linux darwin freebsd unix diff --git a/util/signal/signal_wasm.go b/util/signal/signal_wasm.go index e177c5ef1845a..69c19c73b1da0 100644 --- a/util/signal/signal_wasm.go +++ b/util/signal/signal_wasm.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/signal/signal_windows.go b/util/signal/signal_windows.go index b93382f5ebaf7..a6bf2da1fe547 100644 --- a/util/signal/signal_windows.go +++ b/util/signal/signal_windows.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build windows diff --git a/util/sli/sli.go b/util/sli/sli.go index 056a31a645b2c..3332e06464e47 100644 --- a/util/sli/sli.go +++ b/util/sli/sli.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/slice/main_test.go b/util/slice/main_test.go index 7abf6551f28f7..2da7631bca34f 100644 --- a/util/slice/main_test.go +++ b/util/slice/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/slice/slice.go b/util/slice/slice.go index 9aded94ffc6fc..078772d58c15a 100644 --- a/util/slice/slice.go +++ b/util/slice/slice.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/slice/slice_test.go b/util/slice/slice_test.go index 9905d5604ffa1..318309f46d3d1 100644 --- a/util/slice/slice_test.go +++ b/util/slice/slice_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sqlexec/main_test.go b/util/sqlexec/main_test.go index 1a7091e6b32b1..7aa194b084bf0 100644 --- a/util/sqlexec/main_test.go +++ b/util/sqlexec/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sqlexec/restricted_sql_executor.go b/util/sqlexec/restricted_sql_executor.go index 296d53d612237..2ccfe1762c011 100644 --- a/util/sqlexec/restricted_sql_executor.go +++ b/util/sqlexec/restricted_sql_executor.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sqlexec/utils.go b/util/sqlexec/utils.go index 1ffc29b72d8e0..8fa6bdd4d804a 100644 --- a/util/sqlexec/utils.go +++ b/util/sqlexec/utils.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sqlexec/utils_test.go b/util/sqlexec/utils_test.go index 2f46682b0f07d..ef74f9d633436 100644 --- a/util/sqlexec/utils_test.go +++ b/util/sqlexec/utils_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/evicted.go b/util/stmtsummary/evicted.go index 4d79bb5d57e11..8a48739e93777 100644 --- a/util/stmtsummary/evicted.go +++ b/util/stmtsummary/evicted.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/evicted_test.go b/util/stmtsummary/evicted_test.go index b47bc04a1545e..728b0818f4dd5 100644 --- a/util/stmtsummary/evicted_test.go +++ b/util/stmtsummary/evicted_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/main_test.go b/util/stmtsummary/main_test.go index be7863aa4a711..99143834fd420 100644 --- a/util/stmtsummary/main_test.go +++ b/util/stmtsummary/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/reader.go b/util/stmtsummary/reader.go index 0296344f99c14..16e88550656be 100644 --- a/util/stmtsummary/reader.go +++ b/util/stmtsummary/reader.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/statement_summary.go b/util/stmtsummary/statement_summary.go index 3177a4f76592b..f611121d847dd 100644 --- a/util/stmtsummary/statement_summary.go +++ b/util/stmtsummary/statement_summary.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/statement_summary_test.go b/util/stmtsummary/statement_summary_test.go index 55df8489ed7a0..35a3aa18a4cae 100644 --- a/util/stmtsummary/statement_summary_test.go +++ b/util/stmtsummary/statement_summary_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/variables.go b/util/stmtsummary/variables.go index 96f6b0fac7076..f1d82d0158448 100644 --- a/util/stmtsummary/variables.go +++ b/util/stmtsummary/variables.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stmtsummary/variables_test.go b/util/stmtsummary/variables_test.go index 167de5cf0d7e8..2927f4bd96fc6 100644 --- a/util/stmtsummary/variables_test.go +++ b/util/stmtsummary/variables_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stringutil/main_test.go b/util/stringutil/main_test.go index da7082999621f..7f012cc923dba 100644 --- a/util/stringutil/main_test.go +++ b/util/stringutil/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stringutil/string_util.go b/util/stringutil/string_util.go index 1647911729811..b42373e3d796d 100644 --- a/util/stringutil/string_util.go +++ b/util/stringutil/string_util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/stringutil/string_util_test.go b/util/stringutil/string_util_test.go index 60acb31c20387..f9451a4a9918a 100644 --- a/util/stringutil/string_util_test.go +++ b/util/stringutil/string_util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sys/linux/main_test.go b/util/sys/linux/main_test.go index cc471a893af75..4c190736347de 100644 --- a/util/sys/linux/main_test.go +++ b/util/sys/linux/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sys/linux/sys_linux.go b/util/sys/linux/sys_linux.go index 9768159562408..35aa33a4a6f2e 100644 --- a/util/sys/linux/sys_linux.go +++ b/util/sys/linux/sys_linux.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build linux diff --git a/util/sys/linux/sys_other.go b/util/sys/linux/sys_other.go index d049a88c5782f..b984c528dc074 100644 --- a/util/sys/linux/sys_other.go +++ b/util/sys/linux/sys_other.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build !linux diff --git a/util/sys/linux/sys_test.go b/util/sys/linux/sys_test.go index c22928f284a74..6522df0d2e08d 100644 --- a/util/sys/linux/sys_test.go +++ b/util/sys/linux/sys_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package linux_test diff --git a/util/sys/storage/main_test.go b/util/sys/storage/main_test.go index bdc947996bd59..846992285e92a 100644 --- a/util/sys/storage/main_test.go +++ b/util/sys/storage/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sys/storage/sys_other.go b/util/sys/storage/sys_other.go index 6b71082b9c8f7..b90a942b39169 100644 --- a/util/sys/storage/sys_other.go +++ b/util/sys/storage/sys_other.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sys/storage/sys_posix.go b/util/sys/storage/sys_posix.go index eca79d44c7223..3e6f3c4c6cc06 100644 --- a/util/sys/storage/sys_posix.go +++ b/util/sys/storage/sys_posix.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sys/storage/sys_test.go b/util/sys/storage/sys_test.go index 28d2d1c858b6e..fd73c81c07dcf 100644 --- a/util/sys/storage/sys_test.go +++ b/util/sys/storage/sys_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/sys/storage/sys_windows.go b/util/sys/storage/sys_windows.go index b78a26c163675..21b2f0f744d59 100644 --- a/util/sys/storage/sys_windows.go +++ b/util/sys/storage/sys_windows.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/systimemon/main_test.go b/util/systimemon/main_test.go index f01d62e29ce85..2d5053b2b2a93 100644 --- a/util/systimemon/main_test.go +++ b/util/systimemon/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/systimemon/systime_mon.go b/util/systimemon/systime_mon.go index f7e89a86b4bbe..67b23ed894b5b 100644 --- a/util/systimemon/systime_mon.go +++ b/util/systimemon/systime_mon.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/systimemon/systime_mon_test.go b/util/systimemon/systime_mon_test.go index 4ac43dc21af92..3950db9a9c52e 100644 --- a/util/systimemon/systime_mon_test.go +++ b/util/systimemon/systime_mon_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/tableutil/tableutil.go b/util/tableutil/tableutil.go index 446cd170333aa..106c162a3915e 100644 --- a/util/tableutil/tableutil.go +++ b/util/tableutil/tableutil.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/testbridge/bridge.go b/util/testbridge/bridge.go index e792bfbb879ac..383de45fe495a 100644 --- a/util/testbridge/bridge.go +++ b/util/testbridge/bridge.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/testkit/testkit.go b/util/testkit/testkit.go index 1e3ac0947aaf1..e82dfd60296e8 100644 --- a/util/testkit/testkit.go +++ b/util/testkit/testkit.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/testkit/testkit_test.go b/util/testkit/testkit_test.go index f90554d6fc416..21aceedf868c5 100644 --- a/util/testkit/testkit_test.go +++ b/util/testkit/testkit_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/testleak/add-leaktest.sh b/util/testleak/add-leaktest.sh index 18b23d6da4f58..1ebb778655fb8 100755 --- a/util/testleak/add-leaktest.sh +++ b/util/testleak/add-leaktest.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # diff --git a/util/testleak/check-leaktest.sh b/util/testleak/check-leaktest.sh index 62083b9014363..add7f923cd0cb 100755 --- a/util/testleak/check-leaktest.sh +++ b/util/testleak/check-leaktest.sh @@ -9,6 +9,7 @@ # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # diff --git a/util/testleak/fake.go b/util/testleak/fake.go index 5d4ad573f69d6..1ee90fb62b9ff 100644 --- a/util/testleak/fake.go +++ b/util/testleak/fake.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build !leak diff --git a/util/testleak/leaktest.go b/util/testleak/leaktest.go index 2180263f00266..b3e860dd0a4f4 100644 --- a/util/testleak/leaktest.go +++ b/util/testleak/leaktest.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // +build leak diff --git a/util/testutil/testutil.go b/util/testutil/testutil.go index dcd654497ce34..29aababcb08f1 100644 --- a/util/testutil/testutil.go +++ b/util/testutil/testutil.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/testutil/testutil_test.go b/util/testutil/testutil_test.go index 07dbc917c60c3..7503e79b135a8 100644 --- a/util/testutil/testutil_test.go +++ b/util/testutil/testutil_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/texttree/main_test.go b/util/texttree/main_test.go index 26bafa5524311..af4e400aeaa61 100644 --- a/util/texttree/main_test.go +++ b/util/texttree/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/texttree/texttree.go b/util/texttree/texttree.go index 0d910fb6f2e06..13aa7e0408467 100644 --- a/util/texttree/texttree.go +++ b/util/texttree/texttree.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/texttree/texttree_test.go b/util/texttree/texttree_test.go index 8375361397151..6a3646c6596eb 100644 --- a/util/texttree/texttree_test.go +++ b/util/texttree/texttree_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/timeutil/main_test.go b/util/timeutil/main_test.go index a864bc11d613e..910501d567d05 100644 --- a/util/timeutil/main_test.go +++ b/util/timeutil/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/timeutil/time.go b/util/timeutil/time.go index e9914ba4ef350..e2524485b4a76 100644 --- a/util/timeutil/time.go +++ b/util/timeutil/time.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/timeutil/time_test.go b/util/timeutil/time_test.go index 9a15938d01b25..59f3a2c0d390f 100644 --- a/util/timeutil/time_test.go +++ b/util/timeutil/time_test.go @@ -12,6 +12,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/main_test.go b/util/topsql/main_test.go index 3772615add3a3..8b2fb2640a028 100644 --- a/util/topsql/main_test.go +++ b/util/topsql/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/reporter/client.go b/util/topsql/reporter/client.go index efc33c71e6088..994189250e52b 100644 --- a/util/topsql/reporter/client.go +++ b/util/topsql/reporter/client.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/reporter/main_test.go b/util/topsql/reporter/main_test.go index 84505af739be9..a828a948fb4fd 100644 --- a/util/topsql/reporter/main_test.go +++ b/util/topsql/reporter/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/reporter/reporter.go b/util/topsql/reporter/reporter.go index 03e4fb673f27d..4449d2d4a7297 100644 --- a/util/topsql/reporter/reporter.go +++ b/util/topsql/reporter/reporter.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/reporter/reporter_test.go b/util/topsql/reporter/reporter_test.go index 34d454aca3280..6001212a766a2 100644 --- a/util/topsql/reporter/reporter_test.go +++ b/util/topsql/reporter/reporter_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/topsql.go b/util/topsql/topsql.go index c7f1ec0705872..cfec946a9e194 100644 --- a/util/topsql/topsql.go +++ b/util/topsql/topsql.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/topsql_test.go b/util/topsql/topsql_test.go index ce0776b3f6ac7..bb4562a98258d 100644 --- a/util/topsql/topsql_test.go +++ b/util/topsql/topsql_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/tracecpu/mock/mock.go b/util/topsql/tracecpu/mock/mock.go index c0546a5528b1f..cbc7397a25c04 100644 --- a/util/topsql/tracecpu/mock/mock.go +++ b/util/topsql/tracecpu/mock/mock.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/topsql/tracecpu/profile.go b/util/topsql/tracecpu/profile.go index c068278b26169..2fe6697dd4ff9 100644 --- a/util/topsql/tracecpu/profile.go +++ b/util/topsql/tracecpu/profile.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/tracing/main_test.go b/util/tracing/main_test.go index 54845f9fdc98f..17e67ecd40ea8 100644 --- a/util/tracing/main_test.go +++ b/util/tracing/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/tracing/noop_bench_test.go b/util/tracing/noop_bench_test.go index 76b940231c195..4fcc8d28d1be0 100644 --- a/util/tracing/noop_bench_test.go +++ b/util/tracing/noop_bench_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/tracing/util.go b/util/tracing/util.go index 4f6f8327131fa..34953c72482a6 100644 --- a/util/tracing/util.go +++ b/util/tracing/util.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/tracing/util_test.go b/util/tracing/util_test.go index 34d60e7551073..7b54289041723 100644 --- a/util/tracing/util_test.go +++ b/util/tracing/util_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/versioninfo/versioninfo.go b/util/versioninfo/versioninfo.go index 6673d8eba00b9..563a97e6356d9 100644 --- a/util/versioninfo/versioninfo.go +++ b/util/versioninfo/versioninfo.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/vitess/main_test.go b/util/vitess/main_test.go index ca0d6adae2a3f..a66f334f9bba9 100644 --- a/util/vitess/main_test.go +++ b/util/vitess/main_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/vitess/vitess_hash.go b/util/vitess/vitess_hash.go index 53e5e4e6435a7..c2ccb14408110 100644 --- a/util/vitess/vitess_hash.go +++ b/util/vitess/vitess_hash.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/util/vitess/vitess_hash_test.go b/util/vitess/vitess_hash_test.go index 95f32db444df5..769c0d5c0cc4f 100644 --- a/util/vitess/vitess_hash_test.go +++ b/util/vitess/vitess_hash_test.go @@ -8,6 +8,7 @@ // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License.