Skip to content
Snippets Groups Projects
Commit 94479e8d authored by Nikita Pettik's avatar Nikita Pettik Committed by Kirill Yukhin
Browse files

Hotfix for b7d595ac

It was forgotten to update result file of sql/bind.test.lua
in previous patch. Let's fix that and refresh sql/bind.result with
up-to-date results.

(cherry picked from commit 0894bec2)
parent c5246686
No related branches found
No related tags found
No related merge requests found
......@@ -78,11 +78,11 @@ execute('SELECT ?, ?, ?', {1, 2, 3})
---
- metadata:
- name: '?'
type: UNSIGNED
type: INTEGER
- name: '?'
type: UNSIGNED
type: INTEGER
- name: '?'
type: UNSIGNED
type: INTEGER
rows:
- [1, 2, 3]
...
......@@ -108,11 +108,11 @@ execute('SELECT ?, :value1, @value2', parameters)
---
- metadata:
- name: '?'
type: UNSIGNED
type: INTEGER
- name: :value1
type: UNSIGNED
type: INTEGER
- name: '@value2'
type: UNSIGNED
type: INTEGER
rows:
- [10, 11, 12]
...
......@@ -150,21 +150,21 @@ execute('SELECT :value3, ?, :value1, ?, ?, @value2, ?, :value3', parameters)
---
- metadata:
- name: :value3
type: UNSIGNED
type: INTEGER
- name: '?'
type: UNSIGNED
type: INTEGER
- name: :value1
type: UNSIGNED
type: INTEGER
- name: '?'
type: UNSIGNED
type: INTEGER
- name: '?'
type: UNSIGNED
type: INTEGER
- name: '@value2'
type: UNSIGNED
type: INTEGER
- name: '?'
type: boolean
- name: :value3
type: UNSIGNED
type: INTEGER
rows:
- [1, 2, 3, 4, 5, 6, null, 1]
...
......@@ -193,9 +193,9 @@ execute('SELECT ? AS kek, ? AS kek2', {1, 2})
---
- metadata:
- name: KEK
type: UNSIGNED
type: INTEGER
- name: KEK2
type: UNSIGNED
type: INTEGER
rows:
- [1, 2]
...
......@@ -244,7 +244,7 @@ execute('SELECT ? AS big_uint', {0xefffffffffffffff})
---
- metadata:
- name: BIG_UINT
type: UNSIGNED
type: INTEGER
rows:
- [17293822569102704640]
...
......@@ -291,7 +291,7 @@ execute('SELECT ? ', {18446744073709551615ULL})
---
- metadata:
- name: '?'
type: UNSIGNED
type: INTEGER
rows:
- [18446744073709551615]
...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment