Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
|
6318a58f24 |
|
@ -7,6 +7,9 @@ mockFunctions:
|
|||
- mockUtcTime
|
||||
sumViews: true
|
||||
defaultDefiner: root@localhost
|
||||
localRemotes:
|
||||
- local
|
||||
- docker
|
||||
deprecMarkRegex: __$
|
||||
deprecCommentRegex: ^@deprecated [0-9]{4}-[0-9]{2}-[0-9]{2}
|
||||
deprecDateRegex: '[0-9]{4}-[0-9]{2}-[0-9]{2}'
|
||||
|
|
|
@ -371,9 +371,12 @@ class Push extends Command {
|
|||
const oldSql = await engine.fetchRoutine(type, schema, name);
|
||||
const oldSum = engine.getShaSum(type, schema, name);
|
||||
|
||||
const localRemote = opts.remote == null
|
||||
|| opts.localRemotes?.indexOf(opts.remote) !== -1;
|
||||
|
||||
const isMockFn = type == 'function'
|
||||
&& schema == opts.versionSchema
|
||||
&& opts.remote == 'local'
|
||||
&& localRemote
|
||||
&& opts.mockDate
|
||||
&& opts.mockFunctions
|
||||
&& opts.mockFunctions.indexOf(name) !== -1;
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@verdnatura/myt",
|
||||
"version": "1.6.10",
|
||||
"version": "1.6.13",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@verdnatura/myt",
|
||||
"version": "1.6.10",
|
||||
"version": "1.6.13",
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"@sqltools/formatter": "^1.2.5",
|
||||
|
@ -1169,6 +1169,7 @@
|
|||
"resolved": "https://registry.npmjs.org/nodegit/-/nodegit-0.27.0.tgz",
|
||||
"integrity": "sha512-E9K4gPjWiA0b3Tx5lfWCzG7Cvodi2idl3V5UD2fZrOrHikIfrN7Fc2kWLtMUqqomyoToYJLeIC8IV7xb1CYRLA==",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"fs-extra": "^7.0.0",
|
||||
"got": "^10.7.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdnatura/myt",
|
||||
"version": "1.6.12",
|
||||
"version": "1.6.13",
|
||||
"author": "Verdnatura Levante SL",
|
||||
"description": "MySQL version control",
|
||||
"license": "GPL-3.0",
|
||||
|
|
Loading…
Reference in New Issue