-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Index SPI - types&interfaces, implementation for MySQL #356
Open
Idokah
wants to merge
33
commits into
adapter-v2
Choose a base branch
from
index-spi
base: adapter-v2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Idokah
force-pushed
the
index-spi
branch
2 times, most recently
from
December 4, 2022 14:57
b75dbe5
to
9c9cec4
Compare
MXPOL
reviewed
Dec 7, 2022
return new Promise((resolve, reject) => { | ||
promise.catch((e: any) => { | ||
console.log('failed to create index', e); | ||
this.failedIndexes[index.name] = ({ ...index, status: DomainIndexStatus.FAILED, error: this.translateErrorCodes(e) }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe extract this to a function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if I understand which part?
* lint fixes * enable husky
* refactor app_data_e2e * .
Idokah
force-pushed
the
managed-adapter
branch
from
December 15, 2022 09:16
dbe7104
to
d3a5647
Compare
* filter by date v3 * remove ts-ignore
* implementing errors spi * wip * added some tests * wip * changed 400 to 500 * applied pr commesnts * wip * use data test support * fix duplicate item insert test * lint Co-authored-by: Ido Kahlon <[email protected]>
Idokah
changed the title
Index SPI - types&interfaces, implementation for MySQL - WIP
Index SPI - types&interfaces, implementation for MySQL
Dec 21, 2022
* feat: new collection related types * refactor: collection spi update * feat: list all collection in the new format * feat: getColumnCapabilitiesFor implementation in MySql * feat: new type and interface methods * feat: new collection implementations * feat: changeColumn mysql implementation * feat: new collection routes * feat: some of the functions of the class will be optional * feat: stream collection api * test: expect to the right things * feat: give subtype to field type * test: new collection e2e tests * feat: clear cache when refreshing * tests: delete collection test * feat: new column compare function and tests * test: extract some function in class * refactor: rename function in schema utils * style: some lint fixes * style: some lint fixes * style: some lint fixes * refactor: extracted function from schema provider * test: new tests for schema utils * test: remove unsupported field types from gen * refactor: deleted old schema routes * test: disable schema hooks test * test: disabled test * test: refactor some tests * refactor: delete old schema functions * refactor: extract some internal logic to function * refactor: removed schemas tests * refactor: schema import names * test: schema hooks tests rename and skip * refactor: lint fixes + extract collection types to a new file * lint fixes after rebase * test: new collection update test - change type * fix: added collection name to catch in change type * Change float default precision (#380) * new number column - float ,mysql float- percision (15,2) * fix unit tests * test: moved some tests Co-authored-by: Ido Kahlon <[email protected]> Co-authored-by: Ido Kahlon <[email protected]>
Idokah
force-pushed
the
managed-adapter
branch
from
January 11, 2023 13:33
6d063bd
to
051006d
Compare
Idokah
force-pushed
the
managed-adapter
branch
3 times, most recently
from
February 7, 2023 14:49
afd93fc
to
6f0ce45
Compare
Idokah
force-pushed
the
managed-adapter
branch
from
October 2, 2023 07:49
2543146
to
07f9081
Compare
MXPOL
force-pushed
the
managed-adapter
branch
from
October 31, 2023 15:17
6977336
to
83d0af1
Compare
Idokah
force-pushed
the
managed-adapter
branch
from
November 22, 2023 10:50
49a50a1
to
0abfc0e
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
EDIT:
need to fix -
ERROR 1170 (42000): BLOB/TEXT column '' used in key specification without a key length
if the column type is text and length is not specified, need to configure the index length.