~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/user_var.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
drop table t1;
173
173
 
174
174
#
175
 
# Bug #7498 User variable SET saves SIGNED BIGINT as UNSIGNED BIGINT
 
175
# Bug #7498 User variable SET saves SIGNED BIGINT as BIGINT
176
176
#
177
177
 
178
178
# First part, set user var to large number and select it
182
182
# Second part, set user var from large number in table
183
183
# then select it
184
184
CREATE TABLE `bigfailure` (
185
 
  `afield` BIGINT UNSIGNED NOT NULL
 
185
  `afield` BIGINT NOT NULL
186
186
);
187
187
INSERT INTO `bigfailure` VALUES (18446744071710965857);
188
188
SELECT * FROM bigfailure;