-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: jinhai <haijin.chn@gmail.com>
- Loading branch information
Showing
5 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright(C) 2023 InfiniFlow, Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://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. | ||
|
||
import pandas as pd | ||
from numpy import dtype | ||
|
||
import infinity | ||
from infinity.common import NetworkAddress, REMOTE_HOST | ||
|
||
# test insert and output float with upper bound dimension and lower bound dimension and empty dimension | ||
|
||
# test filter/groupby/sort/limit embedding column failed. | ||
|
||
# test count(embedding_column) correctly and other aggregate function on embedding columns are failed. | ||
|
||
# test multiple embedding column insert/delete/update more the one data block which row count is more than 8192. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright(C) 2023 InfiniFlow, Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://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. | ||
|
||
import pandas as pd | ||
from numpy import dtype | ||
|
||
import infinity | ||
from infinity.common import NetworkAddress, REMOTE_HOST | ||
|
||
# test insert and output float with upper bound and lower bound and zero value | ||
|
||
# test select where various float expression/function filter, including upper bound and lower bound and zero value | ||
|
||
# test output with various float expression/function, including upper bound and lower bound and zero value | ||
|
||
# test aggregate with various float expression/function, including upper bound and lower bound and zero value | ||
|
||
# test group by various float expression/function, including upper bound and lower bound and zero value | ||
|
||
# test sort by various float expression/function, including upper bound and lower bound and zero value | ||
|
||
# test limit by various float expression/function, including upper bound and lower bound and zero value | ||
|
||
# test sort and limit by various float expression/function, including upper bound and lower bound and zero value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright(C) 2023 InfiniFlow, Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://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. | ||
|
||
import pandas as pd | ||
from numpy import dtype | ||
|
||
import infinity | ||
from infinity.common import NetworkAddress, REMOTE_HOST | ||
|
||
# test insert and output integer with upper bound and lower bound and zero value | ||
|
||
# test select where various integer expression/function filter, including upper bound and lower bound and zero value | ||
|
||
# test output with various integer expression/function, including upper bound and lower bound and zero value | ||
|
||
# test aggregate with various integer expression/function, including upper bound and lower bound and zero value | ||
|
||
# test group by various integer expression/function, including upper bound and lower bound and zero value | ||
|
||
# test sort by various integer expression/function, including upper bound and lower bound and zero value | ||
|
||
# test limit by various integer expression/function, including upper bound and lower bound and zero value | ||
|
||
# test sort and limit by various integer expression/function, including upper bound and lower bound and zero value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright(C) 2023 InfiniFlow, Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://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. | ||
|
||
import pandas as pd | ||
from numpy import dtype | ||
|
||
import infinity | ||
from infinity.common import NetworkAddress, REMOTE_HOST | ||
|
||
# create a table, one column data are all inline varchar, output correctly. | ||
# create a table, one column data are all inline varchar, and more than one block, output correctly. | ||
# create a table, one column data are all outline varchar, output correctly. | ||
# create a table, one column data are all outline varchar, and more than one block, output correctly. | ||
# where clause with varchar column ==, <>, >, >=, <, <= operator. | ||
# where clause with varchar column AND OR NOT, not supported. | ||
# where clause with varchar column IS NULL, IS NOT NULL expression. supported? | ||
# aggregate with varchar column | ||
# group by on varchar column | ||
# sort by on varchar column | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters