From 94479e8d6c4f9455a47ad60ef58a754a07544e10 Mon Sep 17 00:00:00 2001
From: Nikita Pettik <korablev@tarantool.org>
Date: Thu, 15 Aug 2019 18:02:03 +0300
Subject: [PATCH] Hotfix for b7d595ac3

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 0894bec230bfb969116731aa8fa82653825a8dfb)
---
 test/sql/bind.result | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/test/sql/bind.result b/test/sql/bind.result
index acb7f2a2d7..86126e86f8 100644
--- a/test/sql/bind.result
+++ b/test/sql/bind.result
@@ -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]
 ...
-- 
GitLab